Skip to content

Commit 79572ab

Browse files
authored
Merge pull request #197610 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 9fcbdca + e294b5a commit 79572ab

File tree

15 files changed

+25
-16
lines changed

15 files changed

+25
-16
lines changed

articles/active-directory/saas-apps/uniflow-online-tutorial.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,19 @@ Follow these steps to enable Azure AD SSO in the Azure portal.
7575
| **Identifier** |
7676
|---------|
7777
| `https://<tenant_domain_name>.eu.uniflowonline.com` |
78+
| `https://<tenant_domain_name>.uk.uniflowonline.com` |
7879
| `https://<tenant_domain_name>.us.uniflowonline.com` |
7980
| `https://<tenant_domain_name>.sg.uniflowonline.com` |
8081
| `https://<tenant_domain_name>.jp.uniflowonline.com` |
8182
| `https://<tenant_domain_name>.au.uniflowonline.com` |
83+
8284

8385
b. In the **Sign on URL** text box, type a URL using one of the following patterns:
8486

8587
| **Sign on URL** |
8688
|---------|
8789
| `https://<tenant_domain_name>.eu.uniflowonline.com` |
90+
| `https://<tenant_domain_name>.uk.uniflowonline.com` |
8891
| `https://<tenant_domain_name>.us.uniflowonline.com` |
8992
| `https://<tenant_domain_name>.sg.uniflowonline.com` |
9093
| `https://<tenant_domain_name>.jp.uniflowonline.com` |

articles/application-gateway/how-to-troubleshoot-application-gateway-session-affinity-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Learn how to diagnose and resolve session affinity issues with Azure Application
1919

2020
## Overview
2121

22-
The cookie-based session affinity feature is useful when you want to keep a user session on the same server. By using gateway-managed cookies, the Application Gateway can direct subsequent traffic from a user session to the same server for processing. This is important in cases where session state is saved locally on the server for a user session.
22+
The cookie-based session affinity feature is useful to keep a user session on the same server. By using gateway-managed cookies, the Application Gateway can direct subsequent traffic from a user session to the same server for processing. This is important in cases where session state is saved locally on the server for a user session. Session affinity is also known as sticky sessions.
2323

2424
> [!NOTE]
2525
> Application Gateway v1 issues a cookie called ARRAffinity, which is used to direct traffic to the same backend pool member. In Application Gateway v2, this cookie has been renamed to ApplicationGatewayAffinity. For the purposes of this document, ApplicationGatewayAffinity will be used as an example, ARRAffinity can be substituted in where applicable for Application Gateway v1 instances.

articles/applied-ai-services/form-recognizer/service-limits.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ For the usage with [Form Recognizer SDK](quickstarts/try-v3-csharp-sdk.md), [For
2323
| **Concurrent Request limit** | 1 | 15 (default value) |
2424
| Adjustable | No<sup>2</sup> | Yes<sup>2</sup> |
2525
| **Compose Model limit** | 5 | 100 (default value) |
26+
| Adjustable | No<sup>2</sup> | No<sup>2</sup> |
2627
| **Custom neural model train** | 10 per month | 10 per month |
2728
| Adjustable | No<sup>2</sup> | Yes<sup>2</sup> |
2829

articles/azure-monitor/alerts/alerts-log-api-switch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ armclient PUT /subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>
6060
You can also use [Azure CLI](/cli/azure/reference-index#az-rest) tool:
6161

6262
```bash
63-
az rest --method post --url /subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.OperationalInsights/workspaces/<workspaceName>/alertsversion?api-version=2017-04-26-preview --body '{"scheduledQueryRulesEnabled": true}'
63+
az rest --method put --url /subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.OperationalInsights/workspaces/<workspaceName>/alertsversion?api-version=2017-04-26-preview --body '{"scheduledQueryRulesEnabled": true}'
6464
```
6565

6666
If the switch is successful, the response is:

articles/azure-monitor/app/nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ appInsights.start();
175175

176176
### Automatic web snippet injection (Preview)
177177

178-
Automatic web snippet injection allows you to enable [Application Insights Usage Experiences](usage-overview.md) and Browser Diagnostic Experiences with a simple configuration. It provides an easier alternative to manually adding the JavaScript snippet or NPM package to your JavaScript web code. For node server with configuration, set `enableAutoWebSnippetInjection` to `true` or alternatively set environment variable `APPLICATIONINSIGHTS_WEB_SNIPPET_ENABLED = true`. Automatic web snippet injection is available in Application Insights Node.js SDK version 2.3.0 or greater. See [Application Insights Node.js Github Readme](https://github.com/microsoft/ApplicationInsights-node.js#automatic-web-snippet-injectionpreview) for more information.
178+
Automatic web snippet injection allows you to enable [Application Insights Usage Experiences](usage-overview.md) and Browser Diagnostic Experiences with a simple configuration. It provides an easier alternative to manually adding the JavaScript snippet or NPM package to your JavaScript web code. For node server with configuration, set `enableAutoWebSnippetInjection` to `true` or alternatively set environment variable `APPLICATIONINSIGHTS_WEB_SNIPPET_ENABLED = true`. Automatic web snippet injection is available in Application Insights Node.js SDK version 2.3.0 or greater. See [Application Insights Node.js GitHub Readme](https://github.com/microsoft/ApplicationInsights-node.js#automatic-web-snippet-injectionpreview) for more information.
179179

180180
### Automatic third-party instrumentation
181181

articles/azure-resource-manager/bicep/bicep-functions-resource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ The identifier is returned in the following format:
651651

652652
You use this function to get the resource ID for resources that are [deployed to the management group](deploy-to-management-group.md) rather than a resource group. The returned ID differs from the value returned by the [resourceId](#resourceid) function by not including a subscription ID and a resource group value.
653653

654-
### managementGrouopResourceID example
654+
### managementGroupResourceID example
655655

656656
The following template creates a policy definition, and assign the policy defintion. It uses the `managementGroupResourceId` function to get the resource ID for policy definition.
657657

articles/azure-resource-manager/bicep/conditional-resource-deployment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ resource vmName_omsOnboarding 'Microsoft.Compute/virtualMachines/extensions@2017
9494
typeHandlerVersion: '1.0'
9595
autoUpgradeMinorVersion: true
9696
settings: {
97-
workspaceId: ((!empty(logAnalytics)) ? reference(logAnalytics, '2015-11-01-preview').customerId : json('null'))
97+
workspaceId: ((!empty(logAnalytics)) ? reference(logAnalytics, '2015-11-01-preview').customerId : null)
9898
}
9999
protectedSettings: {
100-
workspaceKey: ((!empty(logAnalytics)) ? listKeys(logAnalytics, '2015-11-01-preview').primarySharedKey : json('null'))
100+
workspaceKey: ((!empty(logAnalytics)) ? listKeys(logAnalytics, '2015-11-01-preview').primarySharedKey : null)
101101
}
102102
}
103103
}

articles/azure-vmware/configure-storage-policy.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,11 @@ You'll run the `Set-LocationStoragePolicy` cmdlet to Modify vSAN based storage p
118118

119119
You'll run the `Set-ClusterDefaultStoragePolicy` cmdlet to specify default storage policy for a cluster,
120120

121+
122+
>[!NOTE]
123+
>Changing the storage policy of the default management cluster (Cluster-1) isn't allowed.
124+
125+
121126
1. Select **Run command** > **Packages** > **Set-ClusterDefaultStoragePolicy**.
122127

123128
1. Provide the required values or change the default values, and then select **Run**.

articles/cognitive-services/QnAMaker/Overview/language-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Consider the following:
3232

3333
## Supporting multiple languages in one QnA Maker resource
3434

35-
This functionality is not supported in our current Generally Available (GA) stable release. Check out QnA Maker managed to test out this functionality.
35+
This functionality is not supported in our current Generally Available (GA) stable release. Check out [question answering](https://docs.microsoft.com/azure/cognitive-services/language-service/question-answering/overview) to test out this functionality.
3636

3737
## Supporting multiple languages in one knowledge base
3838

articles/governance/resource-graph/samples/advanced.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ az graph query -q "Resources | where type == 'microsoft.compute/virtualmachines'
435435
# [Azure PowerShell](#tab/azure-powershell)
436436

437437
```azurepowershell-interactive
438-
Search-AzGraph -Query "Resources | where type == 'microsoft.compute/virtualmachines' | extend JoinID = toupper(id), OSName = tostring(properties.osProfile.computerName), OSType = tostring(properties.storageProfile.osDisk.osType), VMSize = tostring(properties.hardwareProfile.vmSize) | join kind=leftouter( Resources | where type == 'microsoft.compute/virtualmachines/extensions' | extend VMId = toupper(substring(id, 0, indexof(id, '/extensions'))), ExtensionName = name ) on $left.JoinID == $right.VMId | summarize Extensions = make_list(ExtensionName) by id, OSName, OSType, VMSize | order by tolower(OSName) asc"
438+
Search-AzGraph -Query "Resources | where type == 'microsoft.compute/virtualmachines' | extend JoinID = toupper(id), OSName = tostring(properties.osProfile.computerName), OSType = tostring(properties.storageProfile.osDisk.osType), VMSize = tostring(properties.hardwareProfile.vmSize) | join kind=leftouter( Resources | where type == 'microsoft.compute/virtualmachines/extensions' | extend VMId = toupper(substring(id, 0, indexof(id, '/extensions'))), ExtensionName = name ) on `$left.JoinID == `$right.VMId | summarize Extensions = make_list(ExtensionName) by id, OSName, OSType, VMSize | order by tolower(OSName) asc"
439439
```
440440

441441
# [Portal](#tab/azure-portal)

0 commit comments

Comments
 (0)