Skip to content

Commit 3fb7c1e

Browse files
Merge pull request #252109 from SnehaSudhirG/release-update-management-center-ga
Dirty PR
2 parents d82805b + 234b2c3 commit 3fb7c1e

File tree

224 files changed

+2796
-796
lines changed

Some content is hidden

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

224 files changed

+2796
-796
lines changed

articles/active-directory-domain-services/policy-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Built-in policy definitions for Azure Active Directory Domain Services
33
description: Lists Azure Policy built-in policy definitions for Azure Active Directory Domain Services. These built-in policy definitions provide common approaches to managing your Azure resources.
4-
ms.date: 09/15/2023
4+
ms.date: 09/19/2023
55
ms.service: active-directory
66
ms.subservice: domain-services
77
author: justinha

articles/ai-services/manage-resources.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ This article provides instructions on how to recover an Azure AI services resour
2828

2929
Your subscription must have `Microsoft.CognitiveServices/locations/resourceGroups/deletedAccounts/delete` permissions to purge resources, such as [Cognitive Services Contributor](../role-based-access-control/built-in-roles.md#cognitive-services-contributor) or [Contributor](../role-based-access-control/built-in-roles.md#contributor).
3030

31-
## Recover a deleted resource
31+
When using `Contributor` to purge a resource the role must be assigned at the subscription level. If the role assignment is only present at the resource or resource group level you will be unable to access the purge functionality.
32+
33+
## Recover a deleted resource
3234

3335
To recover a deleted Azure AI services resource, use the following commands. Where applicable, replace:
3436

articles/ai-services/policy-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Built-in policy definitions for Azure AI services
33
description: Lists Azure Policy built-in policy definitions for Azure AI services. These built-in policy definitions provide common approaches to managing your Azure resources.
4-
ms.date: 09/13/2023
4+
ms.date: 09/19/2023
55
author: nitinme
66
ms.author: nitinme
77
ms.service: cognitive-services

articles/ai-services/speech-service/language-identification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: cognitive-services
99
ms.subservice: speech-service
1010
ms.custom: devx-track-extended-java, devx-track-js, devx-track-python
1111
ms.topic: how-to
12-
ms.date: 04/19/2023
12+
ms.date: 9/19/2023
1313
ms.author: eur
1414
zone_pivot_groups: programming-languages-speech-services-nomore-variant
1515
---
@@ -592,7 +592,7 @@ var autoDetectSourceLanguageConfig = SpeechSDK.AutoDetectSourceLanguageConfig.fr
592592
You use Speech translation when you need to identify the language in an audio source and then translate it to another language. For more information, see [Speech translation overview](speech-translation.md).
593593

594594
> [!NOTE]
595-
> Speech translation with language identification is only supported with Speech SDKs in C#, C++, and Python.
595+
> Speech translation with language identification is only supported with Speech SDKs in C#, C++, JavaScript, and Python.
596596
> Currently for speech translation with language identification, you must create a SpeechConfig from the `wss://{region}.stt.speech.microsoft.com/speech/universal/v2` endpoint string, as shown in code examples. In a future SDK release you won't need to set it.
597597
::: zone pivot="programming-language-csharp"
598598

articles/aks/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -691,6 +691,8 @@
691691
items:
692692
- name: Deploy an application that uses OpenAI on Azure Kubernetes Service (AKS)
693693
href: open-ai-quickstart.md
694+
- name: Secure access to Azure OpenAI from Azure Kubernetes Service (AKS)
695+
href: open-ai-secure-access-quickstart.md
694696
- name: DevOps
695697
items:
696698
- name: Azure DevOps Project

articles/aks/learn/quick-windows-container-deploy-cli.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ In this section, we create an AKS cluster with the following configuration:
123123
124124
After a few minutes, the command completes and returns JSON-formatted information about the cluster. Occasionally, the cluster can take longer than a few minutes to provision. Allow up to 10 minutes for provisioning.
125125
126-
## Add a Windows node pool
126+
## Add a node pool
127+
128+
### [Add a Windows node pool](#tab/add-windows-node-pool)
127129
128130
By default, an AKS cluster is created with a node pool that can run Linux containers. You have to add another node pool that can run Windows Server containers alongside the Linux node pool.
129131
@@ -138,7 +140,7 @@ By default, an AKS cluster is created with a node pool that can run Linux contai
138140
--node-count 1
139141
```
140142
141-
## Add a Windows Server 2019 or Windows Server 2022 node pool
143+
### [Add a Windows Server 2019 or Windows Server 2022 node pool](#tab/add-windows-server-2019-or-2022-node-pool)
142144
143145
AKS supports Windows Server 2019 and 2022 node pools. Windows Server 2022 is the default operating system for Kubernetes versions 1.25.0 and higher. Windows Server 2019 is the default OS for earlier versions. To use Windows Server 2019 or Windows Server 2022, you need to specify the following parameters:
144146
@@ -162,6 +164,8 @@ AKS supports Windows Server 2019 and 2022 node pools. Windows Server 2022 is the
162164
--node-count 1
163165
```
164166
167+
---
168+
165169
## Connect to the cluster
166170
167171
You use [kubectl][kubectl], the Kubernetes command-line client, to manage your Kubernetes clusters. If you use Azure Cloud Shell, `kubectl` is already installed. To you want to install `kubectl` locally, you can use the [`az aks install-cli`][az-aks-install-cli] command.

articles/aks/learn/quick-windows-container-deploy-powershell.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ In this section, we create an AKS cluster with the following configuration:
8686
8787
After a few minutes, the command completes and returns JSON-formatted information about the cluster. Occasionally, the cluster can take longer than a few minutes to provision. Allow up to 10 minutes for provisioning.
8888
89-
## Add a Windows node pool
89+
## Add a node pool
90+
91+
### [Add a Windows node pool](#tab/add-windows-node-pool)
9092
9193
By default, an AKS cluster is created with a node pool that can run Linux containers. You have to add another node pool that can run Windows Server containers alongside the Linux node pool.
9294
@@ -96,7 +98,7 @@ By default, an AKS cluster is created with a node pool that can run Linux contai
9698
New-AzAksNodePool -ResourceGroupName myResourceGroup -ClusterName myAKSCluster -VmSetType VirtualMachineScaleSets -OsType Windows -Name npwin
9799
```
98100
99-
## Add a Windows Server 2019 or Windows Server 2022 node pool
101+
### [Add a Windows Server 2019 or Windows Server 2022 node pool](#tab/add-windows-server-2019-or-2022-node-pool)
100102
101103
AKS supports Windows Server 2019 and 2022 node pools. Windows Server 2022 is the default operating system for Kubernetes versions 1.25.0 and higher. Windows Server 2019 is the default OS for earlier versions. To use Windows Server 2019 or Windows Server 2022, you need to specify the following parameters:
102104
@@ -115,6 +117,8 @@ AKS supports Windows Server 2019 and 2022 node pools. Windows Server 2022 is the
115117
New-AzAksNodePool -ResourceGroupName myResourceGroup -ClusterName myAKSCluster -VmSetType VirtualMachineScaleSets -OsType Windows -OsSKU Windows2019 Windows -Name npwin
116118
```
117119
120+
---
121+
118122
## Connect to the cluster
119123
120124
You use [kubectl][kubectl], the Kubernetes command-line client, to manage your Kubernetes clusters. If you use Azure Cloud Shell, `kubectl` is already installed. To you want to install `kubectl` locally, you can use the `Install-AzAzAksCliTool` cmdlet.
57.5 KB
Loading

0 commit comments

Comments
 (0)