Skip to content

Commit 0c8ba7f

Browse files
authored
Merge pull request #218100 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents c557963 + 6ac8e62 commit 0c8ba7f

File tree

8 files changed

+13
-11
lines changed

8 files changed

+13
-11
lines changed

articles/active-directory/develop/troubleshoot-publisher-verification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ Most commonly caused when the verification is being performed via Graph API, and
235235

236236
This feature isn't supported for Microsoft consumer accounts. Only applications registered in Azure AD by an Azure AD user are supported.
237237

238-
Occurs when a consumer account (Hotmail, Messenger, OneDrive, MSN, Xbox Live, or Microsoft 365).
238+
Occurs when a consumer account is used for app registration (Hotmail, Messenger, OneDrive, MSN, Xbox Live, or Microsoft 365).
239239

240240
### InteractionRequired
241241

articles/active-directory/enterprise-users/groups-naming-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You can enforce naming policy for groups in two different ways:
3737

3838
### Prefix-suffix naming policy
3939

40-
The general structure of the naming convention is ‘Prefix[GroupName]Suffix’. While you can define multiple prefixes and suffixes, you can only have one instance of the [GroupName] in the setting. The prefixes or suffixes can be either fixed strings or user attributes such as \[Department\] that are substituted based on the user who is creating the group. The total allowable number of characters for your prefix and suffix strings including group name is 53 characters.
40+
The general structure of the naming convention is ‘Prefix[GroupName]Suffix’. While you can define multiple prefixes and suffixes, you can only have one instance of the [GroupName] in the setting. The prefixes or suffixes can be either fixed strings or user attributes such as \[Department\] that are substituted based on the user who is creating the group. The total allowable number of characters for your prefix and suffix strings including group name is 63 characters.
4141

4242
Prefixes and suffixes can contain special characters that are supported in group name and group alias. Any characters in the prefix or suffix that are not supported in the group alias are still applied in the group name, but removed from the group alias. Because of this restriction, the prefixes and suffixes applied to the group name might be different from the ones applied to the group alias.
4343

articles/active-directory/governance/lifecycle-workflow-versioning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Properties that will trigger the creation of a new version are as follows:
4747

4848

4949

50-
While new versions of these workflows are made as soon as you make the updates in the Azure portal, making a new version of a workflow using the API with Microsoft Graph requires running the workflow creation call again with the changes included. For a step by step guide for updating either tasks, or execution conditions, see: [Manage Workflow Versions](manage-workflow-tasks.md).
50+
While new versions of these workflows are made as soon as you make the updates in the Azure portal, creating a new version of a workflow using the API with Microsoft Graph requires running the createNewVersion method. For a step by step guide for updating either tasks, or execution conditions, see: [Manage Workflow Versions](manage-workflow-tasks.md).
5151

5252
> [!NOTE]
5353
> If the workflow is on-demand, the configure information associated with execution conditions will not be present.

articles/active-directory/roles/administrative-units.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ This article describes administrative units in Azure Active Directory (Azure AD)
2121

2222
Administrative units restrict permissions in a role to any portion of your organization that you define. You could, for example, use administrative units to delegate the [Helpdesk Administrator](permissions-reference.md#helpdesk-administrator) role to regional support specialists, so they can manage users only in the region that they support.
2323

24+
Users can be members of multiple administrative units. For example, you might add users to administrative units by geography and division; Megan Bowen might be in the "Seattle" and "Marketing" administrative units.
25+
2426
## Deployment scenario
2527

2628
It can be useful to restrict administrative scope by using administrative units in organizations that are made up of independent divisions of any kind. Consider the example of a large university that's made up of many autonomous schools (School of Business, School of Engineering, and so on). Each school has a team of IT admins who control access, manage users, and set policies for their school.

articles/azure-functions/event-messaging-bindings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.service: azure-functions
1111

1212
As a cloud computing service, Azure Functions is frequently used to move data between various Azure services. To make it easier for you to connect your code to other services, Functions implements a set of binding extensions to connect to these services. To learn more, see [Azure Functions triggers and bindings concepts](functions-triggers-bindings.md).
1313

14-
By definition, Azure Functions executions are stateless. If you need to connect your code to services in a more stateful way, consider instead using [Durable Functions](durable/durable-functions-overview.md) or [Azure Logic Apps?](../logic-apps/logic-apps-overview.md).
14+
By definition, Azure Functions executions are stateless. If you need to connect your code to services in a more stateful way, consider instead using [Durable Functions](durable/durable-functions-overview.md) or [Azure Logic Apps](../logic-apps/logic-apps-overview.md).
1515

1616
Triggers and bindings are provided to consuming and emitting data easier. There may be cases where you need more control over the service connection, or you just feel more comfortable using a client library provided by a service SDK. In those cases, you can use a client instance from the SDK in your function execution to access the service as you normally would. When using a client directly, you need to pay attention to the effect of scale and performance on client connections. To learn more, see the [guidance on using static clients](manage-connections.md#static-clients).
1717

@@ -40,4 +40,4 @@ For more information about Event Grid trigger and output binding definitions and
4040
To learn more about Event Grid with Functions, see the following articles:
4141

4242
+ [Azure Event Grid bindings for Azure Functions](functions-bindings-event-grid.md)
43-
+ [Tutorial: Automate resizing uploaded images using Event Grid](../event-grid/resize-images-on-storage-blob-upload-event.md?toc=%2fazure%2fazure-functions%2ftoc.json)
43+
+ [Tutorial: Automate resizing uploaded images using Event Grid](../event-grid/resize-images-on-storage-blob-upload-event.md?toc=%2fazure%2fazure-functions%2ftoc.json)

articles/batch/tutorial-parallel-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ In this tutorial, you convert MP4 media files in parallel to MP3 format using th
2525

2626
## Prerequisites
2727

28-
* [Python version 2.7 or 3.6+](https://www.python.org/downloads/)
28+
* [Python version 3.7+](https://www.python.org/downloads/)
2929

3030
* [pip](https://pip.pypa.io/en/stable/installing/) package manager
3131

articles/storage/blobs/storage-blobs-static-site-github-actions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ An Azure subscription and GitHub account.
7373
build:
7474
runs-on: ubuntu-latest
7575
steps:
76-
- uses: actions/checkout@v2
76+
- uses: actions/checkout@v3
7777
- uses: azure/login@v1
7878
with:
7979
creds: ${{ secrets.AZURE_CREDENTIALS }}
@@ -107,7 +107,7 @@ An Azure subscription and GitHub account.
107107
build:
108108
runs-on: ubuntu-latest
109109
steps:
110-
- uses: actions/checkout@v2
110+
- uses: actions/checkout@v3
111111
- uses: azure/login@v1
112112
with:
113113
creds: ${{ secrets.AZURE_CREDENTIALS }}
@@ -180,7 +180,7 @@ An Azure subscription and GitHub account.
180180
build:
181181
runs-on: ubuntu-latest
182182
steps:
183-
- uses: actions/checkout@v2
183+
- uses: actions/checkout@v3
184184
- uses: azure/login@v1
185185
with:
186186
client-id: ${{ secrets.AZURE_CLIENT_ID }}
@@ -220,7 +220,7 @@ An Azure subscription and GitHub account.
220220
build:
221221
runs-on: ubuntu-latest
222222
steps:
223-
- uses: actions/checkout@v2
223+
- uses: actions/checkout@v3
224224
- uses: azure/login@v1
225225
with:
226226
client-id: ${{ secrets.AZURE_CLIENT_ID }}

articles/virtual-network/service-tags-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ By default, service tags reflect the ranges for the entire cloud. Some service t
103103
| **GatewayManager** | Management traffic for deployments dedicated to Azure VPN Gateway and Application Gateway. | Inbound | No | No |
104104
| **GuestAndHybridManagement** | Azure Automation and Guest Configuration. | Outbound | No | Yes |
105105
| **HDInsight** | Azure HDInsight. | Inbound | Yes | No |
106-
| **Internet** | The IP address space that's outside the virtual network and reachable by the public internet.<br/><br/>The address range includes the [Azure-owned public IP address space](https://www.microsoft.com/download/details.aspx?id=56519). | Both | No | No |
106+
| **Internet** | The IP address space that's outside the virtual network and reachable by the public internet.<br/><br/>This service tag only applies where the traffic does not hit any other service tag.<br/><br/>The address range includes the [Azure-owned public IP address space](https://www.microsoft.com/download/details.aspx?id=56519). | Both | No | No |
107107
| **LogicApps** | Logic Apps. | Both | No | No |
108108
| **LogicAppsManagement** | Management traffic for Logic Apps. | Inbound | No | No |
109109
| **M365ManagementActivityApi** | The Office 365 Management Activity API provides information about various user, admin, system, and policy actions and events from Office 365 and Azure Active Directory activity logs. Customers and partners can use this information to create new or enhance existing operations, security, and compliance-monitoring solutions for the enterprise.<br/><br/>**Note**: This tag has a dependency on the **AzureActiveDirectory** tag. | Outbound | Yes | No |

0 commit comments

Comments
 (0)