Skip to content

Commit 53cdd1d

Browse files
Merge branch 'main' into patch-17
2 parents 436b5d6 + 98942c6 commit 53cdd1d

File tree

98 files changed

+1262
-134
lines changed

Some content is hidden

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

98 files changed

+1262
-134
lines changed

articles/ai-services/speech-service/includes/quickstarts/intent-recognition/javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Now we'll add some basic UI for input boxes, reference the Speech SDK's JavaScri
5151
<td><h1 style="font-weight:500;">Microsoft Azure AI Speech SDK JavaScript Quickstart</h1></td>
5252
</tr>
5353
<tr>
54-
<td align="right"><a href="https://learn.microsoft.com~/articles/ai-services/speech-service/get-started" target="_blank">Subscription</a>:</td>
54+
<td align="right"><a href="https://learn.microsoft.com/azure/ai-services/speech-service/overview" target="_blank">Subscription</a>:</td>
5555
<td><input id="subscriptionKey" type="text" size="40" value="subscription"></td>
5656
</tr>
5757
<tr>

articles/ai-services/speech-service/includes/release-notes/release-notes-stt.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ Real-time speech to text with diariazation is now generally available.
1414

1515
Check out [Real-time diarization quickstart](../../get-started-stt-diarization.md) to learn more about how to create speech to text applications that use diarization to distinguish between the different speakers who participate in the conversation.
1616

17+
#### Speech to Text model Update
18+
19+
[Real-time Speech to Text](../../how-to-recognize-speech.md) has released new models with bilingual capabilities. The `en-IN` model now support both English and Hindi bilingual scenarios and offers improved accuracy. Arabic locales (`ar-AE`, `ar-BH`, `ar-DZ`, `ar-IL`, `ar-IQ`, `ar-KW`, `ar-LB`, `ar-LY`, `ar-MA`, `ar-OM`, `ar-PS`, `ar-QA`, `ar-SA`, `ar-SY`, `ar-TN`, `ar-YE`) are now equipped with bilingual support for English, enhanced accuracy and call center support.
20+
21+
[Batch transcription](../../batch-transcription.md) has launched models with new architecture for `es-ES`, `es-MX`, `fr-FR`, `it-IT`, `ja-JP`, `ko-KR`, `pt-BR`, `zh-CN`. These models significantly enhance readability and entity recognition.
22+
1723
### March 2024 release
1824

1925
#### Whisper general availability (GA)

articles/azure-monitor/agents/data-collection-syslog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ You need:
189189
- A Log Analytics workspace where you have at least [contributor rights](../logs/manage-access.md#azure-rbac).
190190
- A [data collection endpoint](../essentials/data-collection-endpoint-overview.md#create-a-data-collection-endpoint).
191191
- [Permissions to create DCR objects](../essentials/data-collection-rule-create-edit.md#permissions) in the workspace.
192+
- Syslog messages must follow RFC standards ([RFC5424](https://www.ietf.org/rfc/rfc5424.txt) or [RFC3164](https://www.ietf.org/rfc/rfc3164.txt))
192193

193194
## Syslog record properties
194195

articles/azure-monitor/agents/gateway.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,11 @@ The Log Analytics gateway is available in these languages:
8181

8282
### Supported encryption protocols
8383

84-
The Log Analytics gateway supports only Transport Layer Security (TLS) 1.0, 1.1, and 1.2. It doesn't support Secure Sockets Layer (SSL). To ensure the security of data in transit to Log Analytics, configure the gateway to use at least TLS 1.2. Older versions of TLS or SSL are vulnerable. Although they currently allow backward compatibility, avoid using them.
84+
The Log Analytics gateway supports only Transport Layer Security (TLS) 1.0, 1.1, 1.2 and 1.3. It doesn't support Secure Sockets Layer (SSL). To ensure the security of data in transit to Log Analytics, configure the gateway to use at least TLS 1.3. Although they currently allow for backward compatibility, avoid using older versions because they are vunerable.
8585

8686
For additional information, review [Sending data securely using TLS](../logs/data-security.md#sending-data-securely-using-tls).
8787

88+
8889
>[!NOTE]
8990
>The gateway is a forwarding proxy that doesn’t store any data. Once the agent establishes connection with Azure Monitor, it follows the same encryption flow with or without the gateway. The data is encrypted between the client and the endpoint. Since the gateway is just a tunnel, it doesn’t have the ability the inspect what is being sent.
9091

articles/event-grid/webhook-event-delivery.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ If you're using any other type of endpoint, such as an HTTP trigger based Azure
2626

2727
Event Grid supports a manual validation handshake. If you're creating an event subscription with an SDK or tool that uses API version 2018-05-01-preview or later, Event Grid sends a `validationUrl` property in the data portion of the subscription validation event. To complete the handshake, find that URL in the event data and do a GET request to it. You can use either a REST client or your web browser.
2828

29-
The provided URL is valid for **5 minutes**. During that time, the provisioning state of the event subscription is `AwaitingManualAction`. If you don't complete the manual validation within 5 minutes, the provisioning state is set to `Failed`. You have to create the event subscription again before starting the manual validation.
29+
The provided URL is valid for **10 minutes**. During that time, the provisioning state of the event subscription is `AwaitingManualAction`. If you don't complete the manual validation within 10 minutes, the provisioning state is set to `Failed`. You have to create the event subscription again before starting the manual validation.
3030

31-
This authentication mechanism also requires the webhook endpoint to return an HTTP status code of 200 so that it knows that the POST for the validation event was accepted before it can be put in the manual validation mode. In other words, if the endpoint returns 200 but doesn't return back a validation response synchronously, the mode is transitioned to the manual validation mode. If there's a GET on the validation URL within 5 minutes, the validation handshake is considered to be successful.
31+
This authentication mechanism also requires the webhook endpoint to return an HTTP status code of 200 so that it knows that the POST for the validation event was accepted before it can be put in the manual validation mode. In other words, if the endpoint returns 200 but doesn't return back a validation response synchronously, the mode is transitioned to the manual validation mode. If there's a GET on the validation URL within 10 minutes, the validation handshake is considered to be successful.
3232

3333
> [!NOTE]
3434
> Using self-signed certificates for validation isn't supported. Use a signed certificate from a commercial certificate authority (CA) instead.

articles/site-recovery/tutorial-shared-disk.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,32 @@ To disable replication of your cluster with Azure Site Recovery, follow these st
218218
:::image type="content" source="media/tutorial-shared-disk/disable-replication.png" alt-text="Screenshot showing disable replication.":::
219219

220220

221+
## Commonly asked questions
222+
223+
224+
#### Is PowerShell supported for Azure Site Recovery with shared disks?
225+
No, PowerShell support for shared disks will be available as part of General Availability.
226+
227+
#### Can we enable replication for only some of the VMs attached to a shared disk?
228+
No, enable replication can only be enabled successfully when all the VMs attached to a shared disk are selected.
229+
230+
#### Is it possible to exclude shared disks and enable replication for only some of the VMs in a cluster?
231+
Yes, the first time you don’t select all the VMs in Enable Replication, a warning appears mentioning the unselected VMs attached to the shared disk. If you still proceed, unselect the shared disk replication by selecting ‘No’ for the storage option in Replication Settings tab.
232+
233+
234+
#### Can new shared disks be added to a protected cluster?
235+
No, if new shared disks need to be added, disable the replication for the already protected cluster. Enable a new cluster protection with a new cluster name for the modified infrastructure.
236+
237+
#### Can we select both crash-consistent and app-consistent recovery points?
238+
Yes, both types of recovery points are generated. However, during Public Preview only crash-consistent and the Latest Processed recovery points are supported. App-consistent recovery points and Latest recovery point will be available as part of General Availability.
239+
240+
#### Can we use recovery plans to failover Azure Site Recovery enabled VMs with shared disks?
241+
No, recovery plans are not supported for shared disks in Azure Site Recovery.
242+
243+
#### Why is there no health status for VMs with shared disks in the monitoring plane, whether test failover is completed or not?
244+
The health status warning due to test failover will be available as part of General Availability.
245+
246+
221247
## Next steps
222248

223249
Learn more about:

includes/policy/standards/asb/rp-controls/microsoft.sql-dp-3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: davidsmatlak
33
ms.service: azure-policy
44
ms.topic: include
5-
ms.date: 04/11/2024
5+
ms.date: 04/17/2024
66
ms.author: davidsmatlak
77
ms.custom: generated
88
---

includes/policy/standards/asb/rp-controls/microsoft.sql-dp-4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: davidsmatlak
33
ms.service: azure-policy
44
ms.topic: include
5-
ms.date: 04/11/2024
5+
ms.date: 04/17/2024
66
ms.author: davidsmatlak
77
ms.custom: generated
88
---

includes/policy/standards/asb/rp-controls/microsoft.sql-dp-5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: davidsmatlak
33
ms.service: azure-policy
44
ms.topic: include
5-
ms.date: 04/11/2024
5+
ms.date: 04/17/2024
66
ms.author: davidsmatlak
77
ms.custom: generated
88
---

includes/policy/standards/asb/rp-controls/microsoft.sql-im-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: davidsmatlak
33
ms.service: azure-policy
44
ms.topic: include
5-
ms.date: 04/11/2024
5+
ms.date: 04/17/2024
66
ms.author: davidsmatlak
77
ms.custom: generated
88
---

0 commit comments

Comments
 (0)