Skip to content

Commit f3e9173

Browse files
authored
Merge pull request #203896 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 d38dc0f + aca1147 commit f3e9173

File tree

8 files changed

+17
-12
lines changed

8 files changed

+17
-12
lines changed

articles/active-directory/develop/active-directory-certificate-credentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To compute the assertion, you can use one of the many JWT libraries in the langu
3333
| --- | --- |
3434
| `alg` | Should be **RS256** |
3535
| `typ` | Should be **JWT** |
36-
| `x5t` | Base64url-encoded SHA-1 thumbprint of the X.509 certificate thumbprint. For example, given an X.509 certificate hash of `84E05C1D98BCE3A5421D225B140B36E86A3D5534` (Hex), the `x5t` claim would be `hOBcHZi846VCHSJbFAs26Go9VTQ=` (Base64url). |
36+
| `x5t` | Base64-encoded SHA-1 thumbprint of the X.509 certificate thumbprint. For example, given an X.509 certificate hash of `84E05C1D98BCE3A5421D225B140B36E86A3D5534` (Hex), the `x5t` claim would be `hOBcHZi846VCHSJbFAs26Go9VTQ=` (Base64). |
3737

3838
### Claims (payload)
3939

articles/active-directory/develop/reference-aadsts-error-codes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ The `error` field has several possible values - review the protocol documentatio
9494
| AADSTS50001 | InvalidResource - The resource is disabled or doesn't exist. Check your app's code to ensure that you have specified the exact resource URL for the resource you're trying to access. |
9595
| AADSTS50002 | NotAllowedTenant - Sign-in failed because of a restricted proxy access on the tenant. If it's your own tenant policy, you can change your restricted tenant settings to fix this issue. |
9696
| AADSTS500021 | Access to '{tenant}' tenant is denied. AADSTS500021 indicates that the tenant restriction feature is configured and that the user is trying to access a tenant that isn't in the list of allowed tenants specified in the header `Restrict-Access-To-Tenant`. For more information, see [Use tenant restrictions to manage access to SaaS cloud applications](../manage-apps/tenant-restrictions.md).|
97+
| AADSTS500022 | Access to '{tenant}' tenant is denied. AADSTS500022 indicates that the tenant restriction feature is configured and that the user is trying to access a tenant that isn't in the list of allowed tenants specified in the header `Restrict-Access-To-Tenant`. For more information, see [Use tenant restrictions to manage access to SaaS cloud applications](../manage-apps/tenant-restrictions.md).|
9798
| AADSTS50003 | MissingSigningKey - Sign-in failed because of a missing signing key or certificate. This might be because there was no signing key configured in the app. To learn more, see the troubleshooting article for error [AADSTS50003](/troubleshoot/azure/active-directory/error-code-aadsts50003-cert-or-key-not-configured). If you still see issues, contact the app owner or an app admin. |
9899
| AADSTS50005 | DevicePolicyError - User tried to log in to a device from a platform that's currently not supported through Conditional Access policy. |
99100
| AADSTS50006 | InvalidSignature - Signature verification failed because of an invalid signature. |

articles/api-management/api-management-policies.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ More information about policies:
1717
+ [Set or edit policies](set-edit-policies.md)
1818
+ [Policy expressions](api-management-policy-expressions.md)
1919

20+
> [!IMPORTANT]
21+
> [Limit call rate by subscription](api-management-access-restriction-policies.md#LimitCallRate) and [Set usage quota by subscription](api-management-access-restriction-policies.md#SetUsageQuota) have a dependency on the subscription key. A subscription key isn't required when using other policies.
22+
23+
2024
## [Access restriction policies](api-management-access-restriction-policies.md)
2125
- [Check HTTP header](api-management-access-restriction-policies.md#CheckHTTPHeader) - Enforces existence and/or value of an HTTP Header.
2226
- [Get authorization context](api-management-access-restriction-policies.md#GetAuthorizationContext) - Gets the authorization context of a specified [authorization](authorizations-overview.md) configured in the API Management instance.

articles/cloud-services-extended-support/schema-cscfg-networkconfiguration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom:
1212

1313
# Azure Cloud Services (extended support) config networkConfiguration schema
1414

15-
The `NetworkConfiguration` element of the service configuration file specifies Virtual Network and DNS values. These settings are optional for Cloud Services.
15+
The `NetworkConfiguration` element of the service configuration file specifies Virtual Network and DNS values. These settings are optional for Cloud Services (classic).
1616

1717
You can use the following resource to learn more about Virtual Networks and the associated schemas:
1818

articles/cognitive-services/language-service/custom-named-entity-recognition/concepts/evaluation-metrics.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ The model would have the following entity-level evaluation, for the *city* entit
7878
| False Positive | 1 | *Forrest* was incorrectly predicted as *city* while it should have been *person*. |
7979
| False Negative | 1 | *Frederick* was incorrectly predicted as *person* while it should have been *city*. |
8080

81-
* **Precision** = `#True_Positive / (#True_Positive + #False_Positive)` = `2 / (2 + 1) = 0.67`
82-
* **Recall** = `#True_Positive / (#True_Positive + #False_Negatives)` = `2 / (2 + 1) = 0.67`
83-
* **F1 Score** = `2 * Precision * Recall / (Precision + Recall)` = `(2 * 0.67 * 0.67) / (0.67 + 0.67) = 0.67`
81+
* **Precision** = `#True_Positive / (#True_Positive + #False_Positive)` = `1 / (1 + 1) = 0.5`
82+
* **Recall** = `#True_Positive / (#True_Positive + #False_Negatives)` = `1 / (1 + 1) = 0.5`
83+
* **F1 Score** = `2 * Precision * Recall / (Precision + Recall)` = `(2 * 0.5 * 0.5) / (0.5 + 0.5) = 0.5`
8484

8585
### Model-level evaluation for the collective model
8686

articles/container-apps/deploy-visual-studio-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Container images are stored inside of container registries. You can easily creat
6060

6161
3) Choose the subscription you would like to use to create your container registry and build your image, and then press enter to continue.
6262

63-
4) Select **+ Create new registry**, or if you already have a registry you'd like to use, select that item and skip to step 7.
63+
4) Select **+ Create new registry**, or if you already have a registry you'd like to use, select that item and skip to creating and deloying to the container app.
6464

6565
5) Enter a unique name for the new registry such as *msdocscapps123*, where 123 are unique numbers of your own choosing, and then press enter. Container registry names must be globally unique across all over Azure.
6666

articles/storage/files/storage-how-to-use-files-linux.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ uname -r
8484
--resource-group $resourceGroupName \
8585
--name $storageAccountName \
8686
--query "primaryEndpoints.file" --output tsv | tr -d '"')
87-
smbPath=$(echo $httpEndpoint | cut -c7-$(expr length $httpEndpoint))
87+
smbPath=$(echo $httpEndpoint | cut -c7-${#httpEndpoint})
8888
fileHost=$(echo $smbPath | tr -d "/")
8989
9090
nc -zvw3 $fileHost 445
@@ -126,7 +126,7 @@ httpEndpoint=$(az storage account show \
126126
--resource-group $resourceGroupName \
127127
--name $storageAccountName \
128128
--query "primaryEndpoints.file" --output tsv | tr -d '"')
129-
smbPath=$(echo $httpEndpoint | cut -c7-$(expr length $httpEndpoint))$fileShareName
129+
smbPath=$(echo $httpEndpoint | cut -c7-${#httpEndpoint})$fileShareName
130130
131131
storageAccountKey=$(az storage account keys list \
132132
--resource-group $resourceGroupName \
@@ -143,7 +143,7 @@ httpEndpoint=$(az storage account show \
143143
--resource-group $resourceGroupName \
144144
--name $storageAccountName \
145145
--query "primaryEndpoints.file" --output tsv | tr -d '"')
146-
smbPath=$(echo $httpEndpoint | cut -c7-$(expr length $httpEndpoint))$fileShareName
146+
smbPath=$(echo $httpEndpoint | cut -c7-${#httpEndpoint})$fileShareName
147147
148148
storageAccountKey=$(az storage account keys list \
149149
--resource-group $resourceGroupName \
@@ -160,7 +160,7 @@ httpEndpoint=$(az storage account show \
160160
--resource-group $resourceGroupName \
161161
--name $storageAccountName \
162162
--query "primaryEndpoints.file" --output tsv | tr -d '"')
163-
smbPath=$(echo $httpEndpoint | cut -c7-$(expr length $httpEndpoint))$fileShareName
163+
smbPath=$(echo $httpEndpoint | cut -c7-${#httpEndpoint})$fileShareName
164164
165165
storageAccountKey=$(az storage account keys list \
166166
--resource-group $resourceGroupName \
@@ -237,7 +237,7 @@ httpEndpoint=$(az storage account show \
237237
--resource-group $resourceGroupName \
238238
--name $storageAccountName \
239239
--query "primaryEndpoints.file" --output tsv | tr -d '"')
240-
smbPath=$(echo $httpEndpoint | cut -c7-$(expr length $httpEndpoint))$fileShareName
240+
smbPath=$(echo $httpEndpoint | cut -c7-${#httpEndpoint})$fileShareName
241241
242242
if [ -z "$(grep $smbPath\ $mntPath /etc/fstab)" ]; then
243243
echo "$smbPath $mntPath cifs nofail,credentials=$smbCredentialFile,serverino,nosharesock,actimeo=30" | sudo tee -a /etc/fstab > /dev/null

articles/virtual-machines/workloads/oracle/oracle-database-quick-create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ In this task you must configure some external endpoints for the database listene
100100
az network public-ip show ^
101101
--resource-group rg-oracle ^
102102
--name vmoracle19cPublicIP ^
103-
--query [ipAddress] ^
103+
--query "ipAddress" ^
104104
--output tsv
105105
```
106106

0 commit comments

Comments
 (0)