Skip to content

Commit 4542f0d

Browse files
authored
Merge pull request #278121 from MicrosoftDocs/main
Merge main to live, 4 AM
2 parents d08fd40 + b168cf2 commit 4542f0d

File tree

16 files changed

+79
-21
lines changed

16 files changed

+79
-21
lines changed

articles/active-directory-b2c/TOC.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -824,8 +824,6 @@
824824
href: user-flow-versions-legacy.md
825825
- name: Resources
826826
items:
827-
- name: Azure Roadmap
828-
href: https://azure.microsoft.com/updates/?status=nowavailable,inpreview,indevelopment&category=identity,security&query=b2c
829827
- name: Frequently asked questions
830828
href: ./faq.yml
831829
displayName: FAQ
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
title: Content Credentials in Azure Text to Speech Avatar
3+
titleSuffix: Azure Text to Speech Avatar
4+
description: Learn about the content credentials feature, which lets you verify that a video was generated by the Azure text to speech avatar system.
5+
author: sally-baolian
6+
ms.author: v-baolianzou
7+
ms.service: azure-ai-speech
8+
ms.topic: conceptual
9+
ms.date: 6/11/2024
10+
manager: nitinme
11+
---
12+
13+
# Content credentials
14+
15+
The high-quality models in the Azure text to speech avatar feature generate realistic avatar videos from text input. To improve the transparency of the generated content, the Azure text to speech avatar provides content credentials, a tamper-evident way to disclose the origin and history of the content. Content credentials are based on an open technical specification from the [Coalition for Content Provenance and Authenticity (C2PA)](https://www.c2pa.org), a Joint Development Foundation project.
16+
17+
## What are content credentials?
18+
19+
Content credentials in the Azure text to speech avatar provide customers with information about the origin of an avatar video. This information is represented by a manifest attached to the video. The manifest is cryptographically signed by a certificate that traces back to Azure text to speech avatar.
20+
21+
The manifest contains several key pieces of information:
22+
23+
| Field name | Field content |
24+
| --- | --- |
25+
| `"generator"` | This field has a value of `"Microsoft Azure Text To Speech Avatar Service"` for all applicable videos, attesting to the AI-generated nature of the video. |
26+
| `"when"` | The timestamp of when the content credentials were created. |
27+
28+
Content credentials in the Azure text to speech avatar can help people understand when video content is generated by the Azure text to speech avatar system. For more information on how to responsibly build solutions with text to speech avatar models, visit the [Text to speech transparency note](/legal/cognitive-services/speech-service/text-to-speech/transparency-note?context=/azure/ai-services/speech-service/context/context).
29+
30+
## Limitations
31+
32+
The content credentials are only supported in video files generated by batch synthesis of text to speech avatar, and only `mp4` file format is supported.
33+
34+
## How do I leverage content credentials in my solution today?
35+
36+
You may leverage content credentials by:
37+
38+
- Ensuring that your Azure text to speech avatar generated video files contain content credentials
39+
40+
No additional set-up is necessary. Content credentials are automatically applied to all applicable videos generated by the Azure text to speech avatar.
41+
42+
## Verifying that a video file has content credentials
43+
44+
As for now, self-serve verification of content credentials for text to speech avatar video isn't yet available. You can contact [[email protected]](mailto:[email protected]) through email for verification of content credentials of Azure text to speech avatar generated videos.
45+
46+
## Next steps
47+
48+
* [Use batch synthesis for text to speech avatar](./batch-synthesis-avatar.md)

articles/ai-services/speech-service/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,8 @@ items:
200200
- name: What is text to speech avatar?
201201
href: text-to-speech-avatar/what-is-text-to-speech-avatar.md
202202
displayName: avatar
203+
- name: Content credentials
204+
href: text-to-speech-avatar/content-credentials.md
203205
- name: How to synthesize text to speech avatar
204206
items:
205207
- name: Real-time synthesis

articles/api-management/TOC.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -666,6 +666,7 @@
666666
- name: Workspaces breaking changes (June 2024)
667667
href: breaking-changes/workspaces-breaking-changes-june-2024.md
668668
- name: stv1 compute platform retirement (August 2024)
669+
href: breaking-changes/stv1-platform-retirement-august-2024.md
669670
- name: Git configuration retirement (March 2025)
670671
href: breaking-changes/git-configuration-retirement-march-2025.md
671672
- name: Direct management API retirement (March 2025)

articles/azure-app-configuration/reference-kubernetes-provider.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ spec:
457457

458458
### Feature Flags
459459

460-
In the following sample, feature flags with keys starting with `app1` and labels equivalent to `common` are downloaded and refreshed every 10 minutes.
460+
In the following sample, feature flags with keys starting with `app1` and labels equivalent to `common` are downloaded and refreshed every 10 minutes. Note that to populate feature flags in the generated ConfigMap, the `configMapData.type` property must be `json` or `yaml`.
461461

462462
``` yaml
463463
apiVersion: azconfig.io/v1
@@ -468,6 +468,9 @@ spec:
468468
endpoint: <your-app-configuration-store-endpoint>
469469
target:
470470
configMapName: configmap-created-by-appconfig-provider
471+
configMapData:
472+
type: json
473+
key: appSettings.json
471474
featureFlag:
472475
selectors:
473476
- keyFilter: app1*

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@ The following facilities are supported with the Syslog collector:
4949
* local6
5050
* local7
5151

52+
The following are the severity levels of the events:
53+
* info
54+
* notice
55+
* error
56+
* warning
57+
* critical
58+
5259
For some device types that don't allow local installation of Azure Monitor Agent, the agent can be installed instead on a dedicated Linux-based log forwarder. The originating device must be configured to send Syslog events to the Syslog daemon on this forwarder instead of the local daemon. For more information, see the [Sentinel tutorial](../../sentinel/forward-syslog-monitor-agent.md).
5360

5461
## Configure Syslog

articles/backup/backup-azure-vm-backup-faq.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ sections:
258258
259259
- question: Does Cross Subscription Restore support all Azure VM?
260260
answer: |
261-
No, it's unsupported for [Encrypted Azure VMs](backup-azure-vms-introduction.md#encryption-of-azure-vm-backups) and [Trusted Launch VMs](backup-support-matrix-iaas.md#tvm-backup).
261+
No, it's unsupported for [Encrypted Azure VMs](backup-azure-vms-introduction.md#encryption-of-azure-vm-backups).
262262
263263
- question: Can I use Azure VM snapshots to restore in another subscription?
264264
answer: |
@@ -282,7 +282,7 @@ sections:
282282
283283
- question: Does Cross Zonal Restore support all Azure VM?
284284
answer: |
285-
No, it's unsupported for [Encrypted Azure VMs](backup-azure-vms-introduction.md#encryption-of-azure-vm-backups) and [Trusted Launch VMs](backup-support-matrix-iaas.md#tvm-backup).
285+
No, it's unsupported for [Encrypted Azure VMs](backup-azure-vms-introduction.md#encryption-of-azure-vm-backups).
286286
287287
- question: Can I use Azure VM snapshots to restore in another zone?
288288
answer: |

articles/backup/backup-support-matrix-iaas.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Support matrix for Azure VM backups
33
description: Get a summary of support settings and limitations for backing up Azure VMs by using the Azure Backup service.
44
ms.topic: conceptual
5-
ms.date: 06/11/2024
5+
ms.date: 06/13/2024
66
ms.custom: references_regions, linux-related-content
77
ms.reviewer: sharrai
88
ms.service: backup
@@ -181,6 +181,7 @@ Configure standalone Azure VMs in Windows Storage Spaces | Not supported.
181181
Restore with managed identities | Supported for managed Azure VMs. <br><br> Not supported for classic and unmanaged Azure VMs. <br><br> Cross-region restore isn't supported with managed identities. <br><br> Currently, this is available in all Azure public and national cloud regions. <br><br> [Learn more](backup-azure-arm-restore-vms.md#restore-vms-with-managed-identities).
182182
<a name="tvm-backup">Back up trusted launch VMs</a> | Backup is supported. <br><br> Backup of trusted launch VMs is supported through [Enhanced policy](backup-azure-vms-enhanced-policy.md). You can enable backup through a [Recovery Services vault](./backup-azure-arm-vms-prepare.md), the [pane for managing a VM](./backup-during-vm-creation.md#start-a-backup-after-creating-the-vm), and the [pane for creating a VM](backup-during-vm-creation.md#create-a-vm-with-backup-configured). <br><br> **Feature details** <br><br> - Backup is supported in all regions where trusted launch VMs are available. <br><br> - Configuration of backups, alerts, and monitoring for trusted launch VMs is supported through the backup center. <br><br> - Migration of an existing [Gen2 VM](../virtual-machines/generation-2.md) (protected with Azure Backup) to a trusted launch VM is currently not supported. [Learn how to create a trusted launch VM](../virtual-machines/trusted-launch-portal.md?tabs=portal#deploy-a-trusted-launch-vm). <br><br> - Item-level restore is supported for the scenarios mentioned [here](backup-support-matrix-iaas.md#support-for-file-level-restore). <br><br> Note that if the trusted launch VM was created by converting a Standard VM, ensure that you remove all the recovery points created using Standard policy before enabling the backup operation for the VM.
183183
[Back up confidential VMs](../confidential-computing/confidential-vm-overview.md) | Unsupported. <br><br> Note that the following limited preview support scenarios are discontinued and currently not available: <br><br> - Backup of Confidential VMs with no confidential disk encryption. <br> - Backup of Confidential VMs with confidential OS disk encryption through a platform-managed key (PMK).
184+
Backup of VMs with SSE and CMK encryption using HSM | Supported. <br><br> You must assign the permissions get, wrap, and uwrap key to the Key Vault to User-assgined managed identity.
184185

185186
## VM storage support
186187

articles/hdinsight/hadoop/apache-hadoop-connect-hive-power-bi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to use Microsoft Power BI to visualize Hive data processe
44
ms.service: hdinsight
55
ms.topic: how-to
66
ms.custom: hdinsightactive
7-
ms.date: 06/26/2023
7+
ms.date: 06/13/2024
88
---
99

1010
# Visualize Apache Hive data with Microsoft Power BI using ODBC in Azure HDInsight

articles/hdinsight/hdinsight-linux-ambari-ssh-tunnel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to use an SSH tunnel to securely browse web resources hos
44
ms.service: hdinsight
55
ms.topic: how-to
66
ms.custom: hdinsightactive, linux-related-content
7-
ms.date: 07/12/2023
7+
ms.date: 06/13/2024
88
---
99

1010
# Use SSH tunneling to access Apache Ambari web UI, JobHistory, NameNode, Apache Oozie, and other UIs

0 commit comments

Comments
 (0)