Skip to content

Commit 51de116

Browse files
author
gitName
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into wkspcgw
2 parents 8c90319 + 8da0465 commit 51de116

File tree

7 files changed

+367
-311
lines changed

7 files changed

+367
-311
lines changed

articles/communication-services/concepts/voice-video-calling/real-time-text.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.subservice: calling
1616
# Real Time Text (RTT) Overview
1717

1818
>[!NOTE]
19-
>RTT is an accessibility compliance requirement for voice and video platforms in the EU. You can find more information about this here: [Directive 2019/882](https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32019L0882)
19+
>RTT is an accessibility compliance requirement for voice and video platforms in the EU starting June 30, 2025. You can find more information about this here: [Directive 2019/882](https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32019L0882)
2020
2121
Real Time Text (RTT) provides developers with the ability to transmit text in near real-time during a call. This feature is designed to empower individuals who have difficulty speaking, ensuring their text messages are displayed prominently to other meeting participants, similar to spoken communication. RTT enhances accessibility by allowing participants to communicate effectively through typed messages that are broadcast instantly character by character, without having to press a "send" key.
2222

@@ -53,6 +53,9 @@ The `RealTimeTextInfo` (or `RealTimeTextDetails` on certain platforms) class is
5353

5454
Developers can subscribe to RTT events through a single event subscription, allowing them to manage their own list and ordering of RTT messages. This approach aligns with the Captions API, facilitating easier integration and maintenance. The UI is responsible for binding the data to the screen, managing the display list, and handling text input interactions based on message finalization.
5555

56+
>[!NOTE]
57+
>RTT Teams Interlop is not functional yet.
58+
5659
### Privacy Concerns
5760
Real-Time Text (RTT) is only available during the call or meeting. Azure Communication Services doesn't store these text exchanges anywhere. Many countries/regions and states have laws and regulations that apply to the storing of data. It is your responsibility to use RTT in compliance with the law should you choose to store any of the data generated through RTT. You must obtain consent from the parties involved in a manner that complies with the laws applicable to each participant.
5861

articles/communication-services/quickstarts/voice-video-calling/get-started-with-real-time-text.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ zone_pivot_groups: acs-programming-languages-java-swift-csharp
1414

1515

1616

17-
# Real Time Text
17+
# Quickstart RTT within your application
1818

1919
[!INCLUDE [Public Preview Disclaimer](../../includes/public-preview-include-document.md)]
2020

21+
>[!NOTE]
22+
>RTT is an accessibility compliance requirement for voice and video platforms in the EU starting June 30, 2025. You can find more information about this here: [Directive 2019/882](https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32019L0882).
23+
2124
Learn how to integrate Real Time Text (RTT) into your calling applications to enhance accessibility and ensure that all participants can communicate effectively during meetings.
2225

2326
RTT allows users who have difficulty speaking to participate actively by typing their messages, which are then broadcast in near real-time to other meeting participants. This feature operates seamlessly alongside existing captions and ensures that typed messages are promptly delivered without disrupting the flow of conversation.
@@ -28,6 +31,9 @@ Real Time Text (RTT) is designed to facilitate communication for users who may h
2831

2932
On supported platforms, RTT data can be displayed alongside captions derived from Speech to Text, providing a comprehensive view of all communications during a call.
3033

34+
>[!NOTE]
35+
>RTT Teams Interlop is not functional yet.
36+
3137
## Naming Conventions
3238

3339
Different platforms may use varying terminology for RTT-related properties. Below is a summary of these differences:
@@ -70,5 +76,5 @@ The `RealTimeTextInfo` (or `RealTimeTextDetails` on Windows) class encapsulates
7076
## Next steps
7177

7278
For more information, see the following articles:
73-
79+
- [Real Time Text Conceptual Doc](../../concepts/voice-video-calling/real-time-text.md)
7480
- [Azure Communication Services Calling Documentation](../../concepts/voice-video-calling/calling-sdk-features.md)

articles/databox-online/azure-stack-edge-gpu-configure-tls-settings.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ metadata:
99

1010
ms.service: azure-stack-edge
1111
ms.topic: how-to
12-
ms.date: 03/21/2024
12+
ms.date: 02/27/2025
1313
ms.author: alkohli
1414
title: |
1515
Configure TLS 1.2 on Windows clients accessing Azure Stack Edge Pro device
1616
introduction: |
1717
[!INCLUDE [applies-to-GPU-and-pro-r-and-mini-r-skus](../../includes/azure-stack-edge-applies-to-gpu-pro-r-mini-r-sku.md)]
1818
19-
If you are using a Windows client to access your Azure Stack Edge Pro device, you are required to configure TLS 1.2 on your client. This article provides resources and guidelines to configure TLS 1.2 on your Windows client.
19+
If you use a Windows client to access your Azure Stack Edge Pro device, you are required to configure TLS 1.2 on your client. This article provides resources and guidelines to configure TLS 1.2 on your Windows client.
2020
2121
The guidelines provided here are based on testing performed on a client running Windows Server 2016.
2222
prerequisites:

articles/openshift/howto-infrastructure-nodes.md

Lines changed: 33 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,39 @@ Vnet:
213213
oc get machineset <machineset_name> -n openshift-machine-api -o jsonpath='{.spec.template.spec.providerSpec.value.vnet}'
214214
```
215215
216+
## DNS
217+
218+
Follow the instructions below to enable scheduling of DNS pods on the infrastructure nodes.
219+
220+
> [!NOTE]
221+
> This section is crucial to support log collection from infrastructure nodes, ensuring supportability of your deployment.
222+
>
223+
224+
1. Allow the DNS pods to run on the infrastructure nodes.
225+
226+
```
227+
oc edit dns.operator/default
228+
```
229+
230+
```
231+
apiVersion: operator.openshift.io/v1
232+
kind: DNS
233+
metadata:
234+
name: default
235+
spec:
236+
nodePlacement:
237+
tolerations:
238+
- operator: Exists
239+
```
240+
241+
1. Verify that DNS pods are scheduled onto all infra nodes.
242+
243+
```
244+
oc get ds/dns-default -n openshift-dns
245+
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
246+
dns-default 7 7 7 7 7 kubernetes.io/os=linux 35d
247+
```
248+
216249
## Moving workloads to the new infrastructure nodes
217250
218251
Use the instructions below to move your infrastructure workloads to the infrastructure nodes previously created.
@@ -359,30 +392,4 @@ Use this procedure for any additional ingress controllers you may have in the cl
359392
kube-state-metrics-574c5bfdd7-f7fjk 3/3 Running 0 2m49s 10.131.4.8 cz-cluster-hsmtw-infra-aro-machinesets-eastus-1-vr56r <none> <none>
360393
```
361394
362-
### DNS
363-
364-
1. Allow the DNS pods to run on the infrastructure nodes.
365-
366-
```
367-
oc edit dns.operator/default
368-
```
369-
370-
```
371-
apiVersion: operator.openshift.io/v1
372-
kind: DNS
373-
metadata:
374-
name: default
375-
spec:
376-
nodePlacement:
377-
tolerations:
378-
- operator: Exists
379-
```
380-
381-
1. Verify that DNS pods are scheduled onto all infra nodes.
382-
383-
```
384-
oc get ds/dns-default -n openshift-dns
385-
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
386-
dns-default 7 7 7 7 7 kubernetes.io/os=linux 35d
387-
```
388395

articles/virtual-network/toc.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,8 @@
230230
href: ./security-controls-policy.md
231231
- name: Azure security baseline for Virtual Network
232232
href: /azure/baselines/virtual-network-security-baseline?toc=%2Fazure%2Fvirtual-network%2Ftoc.json
233+
- name: Azure Security blog
234+
href: https://techcommunity.microsoft.com/category/azure-network-security/blog/azurenetworksecurityblog
233235
- name: DDoS protection
234236
items:
235237
- name: Overview
@@ -289,8 +291,8 @@
289291
items:
290292
- name: Build your skills with Microsoft Learn training
291293
href: /training/browse/
292-
- name: Networking blog
293-
href: https://azure.microsoft.com/blog/category/networking
294+
- name: Azure Networking blog
295+
href: https://techcommunity.microsoft.com/category/azure/blog/azurenetworkingblog
294296
- name: Networking feedback
295297
href: https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789
296298
- name: Pricing

0 commit comments

Comments
 (0)