Skip to content

Commit 44f9b41

Browse files
authored
Merge pull request #253020 from MicrosoftDocs/main
9/27/2023 AM Publish
2 parents 6abca10 + 6b1fc1e commit 44f9b41

File tree

192 files changed

+1512
-891
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+1512
-891
lines changed

articles/active-directory/authentication/how-to-mfa-registration-campaign.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: active-directory
77
ms.subservice: authentication
88
ms.custom: ignite-2022
99
ms.topic: conceptual
10-
ms.date: 09/26/2023
10+
ms.date: 09/27/2023
1111

1212
ms.author: justinha
1313
author: mjsantani
@@ -140,7 +140,8 @@ Here are a few sample JSONs you can use to get started!
140140
{
141141
"registrationEnforcement": {
142142
"authenticationMethodsRegistrationCampaign": {
143-
"snoozeDurationInDays": 0,
143+
"snoozeDurationInDays": 1,
144+
"enforceRegistrationAfterAllowedSnoozes": true,
144145
"state": "enabled",
145146
"excludeTargets": [],
146147
"includeTargets": [
@@ -163,7 +164,8 @@ Here are a few sample JSONs you can use to get started!
163164
{
164165
"registrationEnforcement": {
165166
"authenticationMethodsRegistrationCampaign": {
166-
"snoozeDurationInDays": 0,
167+
"snoozeDurationInDays": 1,
168+
"enforceRegistrationAfterAllowedSnoozes": true,
167169
"state": "enabled",
168170
"excludeTargets": [],
169171
"includeTargets": [
@@ -190,7 +192,8 @@ Here are a few sample JSONs you can use to get started!
190192
{
191193
"registrationEnforcement": {
192194
"authenticationMethodsRegistrationCampaign": {
193-
"snoozeDurationInDays": 0,
195+
"snoozeDurationInDays": 1,
196+
"enforceRegistrationAfterAllowedSnoozes": true,
194197
"state": "enabled",
195198
"excludeTargets": [
196199
{

articles/active-directory/privileged-identity-management/pim-roles.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ For more information about the classic subscription administrator roles, see [Az
3737
We support all Microsoft 365 roles in the Microsoft Entra roles and Administrators portal experience, such as Exchange Administrator and SharePoint Administrator, but we don't support specific roles within Exchange RBAC or SharePoint RBAC. For more information about these Microsoft 365 services, see [Microsoft 365 admin roles](/office365/admin/add-users/about-admin-roles).
3838

3939
> [!NOTE]
40-
> - Eligible users for the SharePoint administrator role, the Device administrator role, and any roles trying to access the Microsoft Security & Compliance Center might experience delays of up to a few hours after activating their role. We are working with those teams to fix the issues.
41-
> - For information about delays activating the Azure AD Joined Device Local Administrator role, see [How to manage the local administrators group on Microsoft Entra joined devices](../devices/assign-local-admin.md#manage-the-azure-ad-joined-device-local-administrator-role).
40+
> For information about delays activating the Azure AD Joined Device Local Administrator role, see [How to manage the local administrators group on Microsoft Entra joined devices](../devices/assign-local-admin.md#manage-the-azure-ad-joined-device-local-administrator-role).
4241
4342
## Next steps
4443

articles/ai-services/computer-vision/includes/how-to-guides/analyze-image-40-python.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,14 @@ In your script, create a new [VisionSource](/python/api/azure-ai-vision/azure.ai
4242

4343
### Image file
4444

45+
In your script, create a new [VisionSource](/python/api/azure-ai-vision/azure.ai.vision.visionsource) object from the local image file you want to analyze.
46+
47+
```python
48+
vision_source = sdk.VisionSource(filename="sample.jpg")
49+
```
50+
51+
### Image buffer
52+
4553
In your script, first create an **image_source_buffer**. Get its **image_writer** and call the **write** method to copy the image data into the writer. Then create a new [vision_source](/python/api/azure-ai-vision/azure.ai.vision.visionsource) object from your **image_source_buffer**. In the following code example, `image_buffer` is a variable of type `bytes` containing the image data.
4654

4755
```python

articles/ai-services/openai/concepts/use-your-data.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ While Power Virtual Agents has features that leverage Azure OpenAI such as [gene
293293
294294
> [!NOTE]
295295
> Deploying to Power Virtual Agents from Azure OpenAI is only available to US regions.
296+
> Power Virtual Agents supports Azure Cognitive Search indexes with keyword or semantic search only. Other data sources and advanced features may not be supported.
296297
297298
#### Using the web app
298299

articles/aks/workload-identity-deploy-cluster.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deploy and configure an Azure Kubernetes Service (AKS) cluster with workl
33
description: In this Azure Kubernetes Service (AKS) article, you deploy an Azure Kubernetes Service cluster and configure it with an Azure AD workload identity.
44
ms.topic: article
55
ms.custom: devx-track-azurecli, devx-track-linux
6-
ms.date: 07/26/2023
6+
ms.date: 09/27/2023
77
---
88

99
# Deploy and configure workload identity on an Azure Kubernetes Service (AKS) cluster
@@ -149,7 +149,7 @@ EOF
149149
```
150150

151151
> [!IMPORTANT]
152-
> Ensure your application pods using workload identity have added the following label [azure.workload.identity/use: "true"] to your running pods/deployments, otherwise the pods will fail once restarted.
152+
> Ensure your application pods using workload identity have added the following label `azure.workload.identity/use: "true"` to your pod spec, otherwise the pods fail after their restarted.
153153
154154
```bash
155155
kubectl apply -f <your application>

articles/aks/workload-identity-overview.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This article helps you understand this new authentication feature, and reviews t
2525

2626
In the Azure Identity client libraries, choose one of the following approaches:
2727

28-
- Use `DefaultAzureCredential`, which will attempt to use the `WorkloadIdentityCredential`.
28+
- Use `DefaultAzureCredential`, which attempts to use the `WorkloadIdentityCredential`.
2929
- Create a `ChainedTokenCredential` instance that includes `WorkloadIdentityCredential`.
3030
- Use `WorkloadIdentityCredential` directly.
3131

@@ -40,7 +40,7 @@ The following table provides the **minimum** package version required for each l
4040
| Node.js | [@azure/identity](/javascript/api/overview/azure/identity-readme) | 3.2.0 |
4141
| Python | [azure-identity](/python/api/overview/azure/identity-readme) | 1.13.0 |
4242

43-
In the following code samples, `DefaultAzureCredential` is used. This credential type will use the environment variables injected by the Azure Workload Identity mutating webhook to authenticate with Azure Key Vault.
43+
In the following code samples, `DefaultAzureCredential` is used. This credential type uses the environment variables injected by the Azure Workload Identity mutating webhook to authenticate with Azure Key Vault.
4444

4545
## [.NET](#tab/dotnet)
4646

@@ -224,7 +224,7 @@ The following diagram summarizes the authentication sequence using OpenID Connec
224224

225225
### Webhook Certificate Auto Rotation
226226

227-
Similar to other webhook addons, the certificate will be rotated by cluster certificate [auto rotation][auto-rotation] operation.
227+
Similar to other webhook addons, the certificate is rotated by cluster certificate [auto rotation][auto-rotation] operation.
228228

229229
## Service account labels and annotations
230230

@@ -252,11 +252,11 @@ All annotations are optional. If the annotation isn't specified, the default val
252252
### Pod labels
253253

254254
> [!NOTE]
255-
> For applications using Workload Identity it is now required to add the label 'azure.workload.identity/use: "true"' pod label in order for AKS to move Workload Identity to a "Fail Close" scenario before GA to provide a consistent and reliable behavior for pods that need to use workload identity.
255+
> For applications using workload identity, it's required to add the label `azure.workload.identity/use: "true"` to the pod spec for AKS to move workload identity to a *Fail Close* scenario to provide a consistent and reliable behavior for pods that need to use workload identity. Otherwise the pods fail after their restarted.
256256
257257
|Label |Description |Recommended value |Required |
258258
|------|------------|------------------|---------|
259-
|`azure.workload.identity/use` | This label is required in the pod template spec. Only pods with this label will be mutated by the azure-workload-identity mutating admission webhook to inject the Azure specific environment variables and the projected service account token volume. |true |Yes |
259+
|`azure.workload.identity/use` | This label is required in the pod template spec. Only pods with this label are mutated by the azure-workload-identity mutating admission webhook to inject the Azure specific environment variables and the projected service account token volume. |true |Yes |
260260

261261
### Pod annotations
262262

articles/azure-arc/data/includes/azure-arc-data-preview-release.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ ms.topic: include
66
ms.date: 05/02/2023
77
---
88

9-
10-
At this time, a test or preview build is not available for the next release.
11-
129
<!--
1310
14-
Sept 2023 preview release is now available.
11+
At this time, a test or preview build is not available for the next release.
12+
-->
13+
14+
Oct 2023 test release is now available.
1515

1616
|Component|Value|
1717
|-----------|-----------|
18-
|Container images registry/repository |`mcr.microsoft.com/arcdata/preview`|
19-
|Container images tag |`v1.23.0_2023-09-12`|
18+
|Container images registry/repository |`mcr.microsoft.com/arcdata/test`|
19+
|Container images tag |`v1.24.0_2023-10-10`|
2020
|**CRD names and version:**| |
2121
|`activedirectoryconnectors.arcdata.microsoft.com`| v1beta1, v1beta2, v1, v2|
2222
|`datacontrollers.arcdata.microsoft.com`| v1beta1, v1 through v5|
@@ -33,12 +33,12 @@ Sept 2023 preview release is now available.
3333
|`telemetrycollectors.arcdata.microsoft.com`| v1beta1 through v1beta5|
3434
|`telemetryrouters.arcdata.microsoft.com`| v1beta1 through v1beta5|
3535
|Azure Resource Manager (ARM) API version|2023-01-15-preview|
36-
|`arcdata` Azure CLI extension version|1.5.5 ([Download](https://aka.ms/az-cli-arcdata-ext))|
37-
|Arc-enabled Kubernetes helm chart extension version|1.23.0|
36+
|`arcdata` Azure CLI extension version|1.5.6 ([Download](https://aka.ms/az-cli-arcdata-ext))|
37+
|Arc-enabled Kubernetes helm chart extension version|1.24.0|
3838
|Azure Arc Extension for Azure Data Studio<br/>`arc`<br/>`azcli`|<br/>1.8.0 ([Download](https://aka.ms/ads-arcdata-ext))</br>1.8.0 ([Download](https://aka.ms/ads-azcli-ext))|
3939
|SQL Database version | 957 |
4040

41-
-->
41+
4242

4343
<!--
4444
### Release notes

articles/azure-cache-for-redis/TOC.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,11 @@
4848
- name: Connect an AKS application to a cache
4949
href: cache-tutorial-aks-get-started.md
5050
- name: Use active geo-replication with an AKS-hosted application
51-
href: cache-tutorial-active-replication.md
51+
href: cache-tutorial-active-replication.md
52+
- name: Artificial Intelligence
53+
items:
54+
- name: Vector similarity search
55+
href: cache-tutorial-vector-similarity.md
5256
- name: ASP.NET
5357
items:
5458
- name: Use session state provider
@@ -87,6 +91,10 @@
8791
href: scripts/create-manage-premium-cache-cluster.md
8892
- name: Concepts
8993
items:
94+
- name: Artificial Intelligence
95+
items:
96+
- name: Vector Search
97+
href: cache-overview-vector-similarity.md
9098
- name: Resiliency
9199
items:
92100
- name: High availability

0 commit comments

Comments
 (0)