Skip to content

Commit ddf761c

Browse files
authored
Merge branch 'MicrosoftDocs:main' into heidist-toc-proto
2 parents 80d6915 + 1339476 commit ddf761c

File tree

158 files changed

+7548
-498
lines changed

Some content is hidden

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

158 files changed

+7548
-498
lines changed

articles/ai-services/speech-service/batch-synthesis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ To submit a batch synthesis request, construct the HTTP PUT request path and bod
4848
- Optionally you can set the `description`, `timeToLiveInHours`, and other properties. For more information, see [batch synthesis properties](batch-synthesis-properties.md).
4949

5050
> [!NOTE]
51-
> The maximum JSON payload size that will be accepted is 2 megabytes. Each Speech resource can have up to 300 batch synthesis jobs that are running concurrently.
51+
> The maximum JSON payload size that will be accepted is 2 megabytes.
5252
5353
Set the required `YourSynthesisId` in path. The `YourSynthesisId` have to be unique. It must be 3-64 long, contains only numbers, letters, hyphens, underscores and dots, starts and ends with a letter or number.
5454

articles/ai-services/speech-service/bring-your-own-storage-speech-resource.md

Lines changed: 89 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,100 @@ Consider the following rules when planning BYOS-enabled Speech resource configur
4848

4949
## Create and configure BYOS-enabled Speech resource
5050

51-
This section describes how to create a BYOS enabled Speech resource.
51+
This section describes how to create a BYOS enabled Speech resource.
52+
5253

5354
### Request access to BYOS for your Azure subscriptions
5455

5556
You need to request access to BYOS functionality for each of the Azure subscriptions you plan to use. To request access, fill and submit [Cognitive Services & Applied AI Customer Managed Keys and Bring Your Own Storage access request form](https://aka.ms/cogsvc-cmk). Wait for the request to be approved.
5657

58+
### (Optional) Check whether Azure subscription has access to BYOS
59+
60+
You can quickly check whether your Azure subscription has access to BYOS. This check uses [preview features](/azure/azure-resource-manager/management/preview-features) functionality of Azure.
61+
62+
# [Azure portal](#tab/portal)
63+
64+
This functionality isn't available through Azure portal.
65+
66+
> [!NOTE]
67+
> You may view the list of preview features for a given Azure subscription as explained in [this article](/azure/azure-resource-manager/management/preview-features), however note that not all preview features, including BYOS are visible this way.
68+
69+
# [PowerShell](#tab/powershell)
70+
71+
To check whether an Azure subscription has access to BYOS with PowerShell, we use [Get-AzProviderFeature](/powershell/module/az.resources/get-azproviderfeature) command.
72+
73+
You can [install PowerShell locally](/powershell/azure/install-azure-powershell) or use [Azure Cloud Shell](../../cloud-shell/overview.md).
74+
75+
If you use local installation of PowerShell, connect to your Azure account using `Connect-AzAccount` command before trying the following script.
76+
77+
```azurepowershell
78+
# Target subscription parameters
79+
# REPLACE WITH YOUR CONFIGURATION VALUES
80+
$azureSubscriptionId = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
81+
82+
# Select the right subscription
83+
Set-AzContext -SubscriptionId $azureSubscriptionId
84+
85+
# Check whether the Azure subscription has access to BYOS
86+
Get-AzProviderFeature -ListAvailable -ProviderNamespace "Microsoft.CognitiveServices" | where-object FeatureName -Match byox
87+
```
88+
89+
If you get the response like this, your subscription has access to BYOS.
90+
```powershell
91+
FeatureName ProviderName RegistrationState
92+
----------- ------------ -----------------
93+
byoxPreview Microsoft.CognitiveServices Registered
94+
```
95+
96+
If you get empty response or `RegistrationState` value is `NotRegistered` then your Azure subscription doesn't have access to BYOS and you need to [request it](#request-access-to-byos-for-your-azure-subscriptions).
97+
98+
# [Azure CLI](#tab/azure-cli)
99+
100+
To check whether an Azure subscription has access to BYOS with Azure CLI, we use [az feature show](/cli/azure/feature) command.
101+
102+
You can [install Azure CLI locally](/cli/azure/install-azure-cli) or use [Azure Cloud Shell](../../cloud-shell/overview.md).
103+
104+
> [!NOTE]
105+
> The following script doesn't use variables because variable usage differs, depending on the platform where Azure CLI runs. See information on Azure CLI variable usage in [this article](/cli/azure/azure-cli-variables).
106+
107+
If you use local installation of Azure CLI, connect to your Azure account using `az login` command before trying the following script.
108+
109+
```azurecli
110+
az account set --subscription "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
111+
112+
az feature show --name byoxPreview --namespace Microsoft.CognitiveServices --output table
113+
```
114+
115+
If you get the response like this, your subscription has access to BYOS.
116+
```dos
117+
Name RegistrationState
118+
--------------------------------------- -------------------
119+
Microsoft.CognitiveServices/byoxPreview Registered
120+
```
121+
If you get empty response or `RegistrationState` value is `NotRegistered` then your Azure subscription doesn't have access to BYOS and you need to [request it](#request-access-to-byos-for-your-azure-subscriptions).
122+
123+
> [!Tip]
124+
> See additional commands related to listing Azure subscription preview features in [this article](/azure/azure-resource-manager/management/preview-features).
125+
126+
# [REST](#tab/rest)
127+
128+
To check through REST API whether an Azure subscription has access to BYOS use [Features - List](/rest/api/resources/features/list) request from Azure Resource Manager REST API.
129+
130+
If your subscription has access to BYOS, the REST response will contain the following element:
131+
```json
132+
{
133+
"properties": {
134+
"state": "Registered"
135+
},
136+
"id": "/subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/byoxPreview",
137+
"type": "Microsoft.Features/providers/features",
138+
"name": "Microsoft.CognitiveServices/byoxPreview"
139+
}
140+
```
141+
If the REST response doesn't contain the reference to `byoxPreview` feature or its state is `NotRegistered` then your Azure subscription doesn't have access to BYOS and you need to [request it](#request-access-to-byos-for-your-azure-subscriptions).
142+
***
143+
144+
57145
### Plan and prepare your Storage account
58146

59147
If you use Azure portal to create a BYOS-enabled Speech resource, an associated Storage account can be created automatically. For all other provisioning methods (Azure CLI, PowerShell, REST API Request) you need to use existing Storage account.

articles/ai-services/speech-service/speech-services-quotas-and-limits.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ These limits aren't adjustable. For more information on batch synthesis latency,
8686

8787
| Quota | Free (F0) | Standard (S0) |
8888
|-----|-----|-----|
89-
|REST API limit | Not available for F0 | 50 requests per 5 seconds |
90-
| Max JSON payload size to create a synthesis job | N/A | 500 kilobytes |
91-
| Concurrent active synthesis jobs | N/A | 200 |
92-
| Max number of text inputs per synthesis job | N/A | 1000 |
89+
|REST API limit | Not available for F0 | 100 requests per 10 seconds |
90+
| Max JSON payload size to create a synthesis job | N/A | 2 megabytes |
91+
| Concurrent active synthesis jobs | N/A | No limit |
92+
| Max number of text inputs per synthesis job | N/A | 10000 |
9393
|Max time to live for a synthesis job since it being in the final state | N/A | Up to 31 days (specified using properties) |
9494

9595
#### Custom neural voice - professional

articles/aks/quickstart-event-grid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In this quickstart, you create an AKS cluster and subscribe to AKS events.
2121
* [Azure CLI][azure-cli-install] or [Azure PowerShell][azure-powershell-install] installed.
2222

2323
> [!NOTE]
24-
> In case there are issues specifically with EventGrid notifications, as can be seen here [Service Outages](https://azure.status.microsoft/status), please note that AKS operations wont be impacted and they are independent of Event Grid outages.
24+
> In case there are issues specifically with EventGrid notifications, as can be seen here [Service Outages](https://azure.status.microsoft/status), please note that AKS operations won't be impacted and they are independent of Event Grid outages.
2525
2626
## Create an AKS cluster
2727

articles/app-service/environment/version-comparison.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 'App Service Environment version comparison'
33
description: This article provides an overview of the App Service Environment versions and feature differences between them.
44
author: seligj95
5-
ms.date: 7/24/2023
5+
ms.date: 4/22/2024
66
ms.author: jordanselig
77
ms.topic: article
88
---
@@ -65,6 +65,7 @@ App Service Environment v3 runs on the latest [Virtual Machine Scale Sets](../..
6565
|---------|---------|---------|---------|
6666
|IP-based Transport Layer Security (TLS) or Secure Sockets Layer (SSL) binding with your apps |Yes |Yes |No |
6767
|Custom domain suffix |Yes (requires SNI based TLS connection) |Yes (only supported with certain API versions) |[Yes](how-to-custom-domain-suffix.md) |
68+
|Default host name|If you have a custom domain suffix, the default host name includes your custom domain suffix and is in the form *APP-NAME.internal.contoso.com*. |If you have a custom domain suffix, the default host name includes your custom domain suffix and is in the form *APP-NAME.internal.contoso.com*. |The default host name always uses the App Service Environment default domain suffix and is in the form *APP-NAME.ASE-NAME.appserviceenvironment.net*. App Service Environment v3 keeps the default domain suffix when you add a custom domain suffix. If you add a custom domain suffix, the custom domain suffix configuration is under the `customDnsSuffixConfiguration` property. |
6869
|Support for App Service Managed Certificates |No |No |No |
6970

7071
### Backup and restore
@@ -185,4 +186,4 @@ Due to hardware changes between the versions, there are some regions where App S
185186
> [App Service Environment v3 Networking](networking.md)
186187
187188
> [!div class="nextstepaction"]
188-
> [Using an App Service Environment v3](using.md)
189+
> [Using an App Service Environment v3](using.md)

articles/automation/automation-linux-hrw-install.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: This article tells how to install an agent-based Hybrid Runbook Wo
44
services: automation
55
ms.subservice: process-automation
66
ms.custom: linux-related-content
7-
ms.date: 09/17/2023
7+
ms.date: 04/21/2024
88
ms.topic: conceptual
99
---
1010

@@ -58,9 +58,14 @@ The Hybrid Runbook Worker feature supports the following distributions. All oper
5858
16.04 LTS | Xenial Xerus
5959
14.04 LTS | Trusty Tahr
6060

61+
> [!NOTE]
62+
> Hybrid Worker would follow support timelines of the OS vendor.
63+
6164
> [!IMPORTANT]
6265
> Before enabling the Update Management feature, which depends on the system Hybrid Runbook Worker role, confirm the distributions it supports [here](update-management/operating-system-requirements.md).
6366
67+
68+
6469
### Minimum requirements
6570

6671
The minimum requirements for a Linux system and user Hybrid Runbook Worker are:

articles/automation/automation-windows-hrw-install.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deploy an agent-based Windows Hybrid Runbook Worker in Automation
33
description: This article tells how to deploy an agent-based Hybrid Runbook Worker that you can use to run runbooks on Windows-based machines in your local datacenter or cloud environment.
44
services: automation
55
ms.subservice: process-automation
6-
ms.date: 09/17/2023
6+
ms.date: 04/21/2024
77
ms.topic: conceptual
88
---
99

@@ -50,6 +50,9 @@ The Hybrid Runbook Worker feature supports the following operating systems:
5050
* Windows 8 Enterprise and Pro
5151
* Windows 7 SP1
5252

53+
> [!NOTE]
54+
> Hybrid Worker would follow support timelines of the OS vendor.
55+
5356
### Minimum requirements
5457

5558
The minimum requirements for a Windows system and user Hybrid Runbook Worker are:

articles/azure-arc/index.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,7 @@ additionalContent:
169169
- title: Azure IoT Operations Preview – enabled by Azure Arc
170170
summary: Azure IoT Operations is a unified data plane for the edge that helps organizations deploy the industrial metaverse.
171171
url: /azure/iot-operations/
172+
# Card
173+
- title: Azure Arc site manager (preview)
174+
summary: Use Arc sites to represent your on-premises environments and see centralized monitoring information across your edge infrastructure.
175+
url: /azure/azure-arc/site-manager/
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- name: Azure
2+
tocHref: /azure
3+
topicHref: /azure/index
4+
items:
5+
- name: Azure Arc
6+
tocHref: /azure/azure-arc
7+
topicHref: /azure/azure-arc
8+
items:
9+
- name: Site manager
10+
tocHref: /azure/azure-arc/site-manager
11+
topicHref: /azure/azure-arc/site-manager
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
title: Frequently asked questions
3+
description: "Frequently asked questions to understand and troubleshoot Azure Arc sites and site manager"
4+
author: kgremban
5+
ms.author: kgremban
6+
ms.service: azure-arc
7+
#ms.subservice: site-manager
8+
ms.topic: faq #Don't change
9+
ms.date: 02/16/2024
10+
ms.custom: references_regions
11+
12+
#customer intent: As a customer, I want answers to questions so that I can answer my own questions.
13+
14+
---
15+
16+
# Frequently asked questions: Azure Arc site manager (preview)
17+
18+
The following are frequently asked questions and answers for Azure Arc site manager.
19+
20+
**Question:** I have resources in the resource group, which aren't yet supported by site manager. Do I need to move them?
21+
22+
**Answer:** Site manager provides status aggregation for only the supported resource types. Resources of other types won't be managed via site manager. They continue to function normally as they would without otherwise.
23+
24+
**Question:** Does site manager have a subscription or fee for usage?
25+
26+
**Answer:** Site manager is free. However, the Azure services that integrated with sites and site manager might have a fee. Additionally, alerts used with site manager via monitor might have fees as well.
27+
28+
**Question:** What regions are currently supported via site manager? What regions of these supported regions aren't fully supported?
29+
30+
**Answer:** Site manager supports resources that exist in [supported regions](https://azure.microsoft.com/explore/global-infrastructure/products-by-region/?products=azure-arc&regions=all), with a few exceptions. For the following regions, connectivity and update status aren't supported for Arc-enabled machines or Arc-enabled Kubernetes clusters:
31+
32+
* Brazil South
33+
* UAE North
34+
* South Africa North

0 commit comments

Comments
 (0)