Skip to content

Commit 6745130

Browse files
Merge pull request #313269 from MicrosoftDocs/main
Auto Publish – main to live - 2026-03-17 17:00 UTC
2 parents 670f80f + 6d1658d commit 6745130

18 files changed

Lines changed: 200 additions & 134 deletions

articles/azure-app-configuration/concept-enable-rbac.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,43 @@ const client = new AppConfigurationClient(myStoreEndpoint, new DefaultAzureCrede
224224
});
225225
```
226226

227+
### [Python](#tab/python)
228+
#### Python configuration provider
229+
230+
If your application uses the following package, audience can be configured by passing the keyword `audience` to the `load` method. Use version **2.4.0** or later of the following package.
231+
- `azure-appconfiguration-provider`
232+
233+
The following code snippet demonstrates how to load Azure App Configuration in a Python application with a cloud-specific audience.
234+
235+
```python
236+
from azure.appconfiguration.provider import load
237+
from azure.identity import DefaultAzureCredential
238+
239+
config = load(
240+
endpoint=myStoreEndpoint,
241+
credential=DefaultAzureCredential(),
242+
audience="{Cloud specific audience here}",
243+
)
244+
```
245+
246+
#### Azure SDK for Python
247+
248+
If your application uses the following package, audience can be configured by passing the `audience` keyword to the `AzureAppConfigurationClient` constructor. Use version **1.8.0** or later of the following package.
249+
- `azure-appconfiguration`
250+
251+
The following code snippet demonstrates how to instantiate a configuration client with a cloud-specific audience.
252+
253+
```python
254+
from azure.appconfiguration import AzureAppConfigurationClient
255+
from azure.identity import DefaultAzureCredential
256+
257+
client = AzureAppConfigurationClient(
258+
myStoreEndpoint,
259+
DefaultAzureCredential(),
260+
audience="{Cloud specific audience here}",
261+
)
262+
```
263+
227264
### [Go](#tab/go)
228265

229266
To configure the Entra ID audience, import the following packages in your Go application first:

articles/azure-netapp-files/advanced-ransomware-protection.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: azure-netapp-files
55
author: netapp-manishc
66
ms.service: azure-netapp-files
77
ms.topic: concept-article
8-
ms.date: 01/13/2026
8+
ms.date: 03/17/2026
99
ms.author: anfdocs
1010
ms.custom: references_regions
1111
# Customer intent: "As a data engineer, I want to understand the advanced ransomware protection features of Azure NetApp Files, so that I can safeguard the cloud file data against ransomware attacks."
@@ -56,7 +56,10 @@ Advanced ransomware protection (ARP) in Azure NetApp Files is a built-in capabil
5656
- UAE Central
5757
- UAE North
5858
- UK South
59-
- UK West
59+
- UK West
60+
- US Gov Arizona
61+
- US Gov Texas
62+
- US Gov Virginia
6063
- West Europe
6164
- West US
6265
- West US 2

articles/azure-netapp-files/azure-government.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: b-hchen
66
ms.service: azure-netapp-files
77
ms.custom: devx-track-azurecli, no-azure-ad-ps-ref
88
ms.topic: concept-article
9-
ms.date: 02/02/2026
9+
ms.date: 03/17/2026
1010
ms.author: anfdocs
1111
# Customer intent: As a government IT administrator, I want to understand how to access and utilize Azure NetApp Files in Azure Government, so that I can effectively manage mission-critical workloads within the dedicated cloud environment.
1212
---
@@ -25,7 +25,6 @@ All [Azure NetApp Files features](whats-new.md) available on Azure public cloud
2525

2626
| Azure NetApp Files features | Azure public cloud availability | Azure Government availability |
2727
|:--- |:--- |:--- |
28-
| Advanced ransomware protection | Preview | No |
2928
| Customer-managed keys with managed Hardware Security Module | Generally available | No |
3029
| Elastic zone-redundant storage service level | Preview | No |
3130
| File access logs | Generally available | [Partial support](manage-file-access-logs.md#supported-regions) |

articles/azure-netapp-files/azure-netapp-files-metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: azure-netapp-files
55
author: b-hchen
66
ms.service: azure-netapp-files
77
ms.topic: concept-article
8-
ms.date: 01/16/2026
8+
ms.date: 03/16/2026
99
ms.author: anfdocs
1010
# Customer intent: As a cloud storage administrator, I want to analyze performance and usage metrics for Azure NetApp Files, so that I can optimize storage provisioning and ensure efficient operation of my storage resources.
1111
---
@@ -314,7 +314,7 @@ Azure NetApp Files provides metrics on allocated storage, actual storage usage,
314314
The delay between when data is written to the source volume and when it’s available on the destination volume.
315315

316316
> [!NOTE]
317-
> When assessing the health status of the volume replication, consider the volume replication lag time. If the lag time is greater than the replication schedule, the replication volume won't catch up to the source. To resolve this issue, adjust the replication speed or the replication schedule.
317+
> When assessing the health status of the volume replication, consider the volume replication lag time. If the lag time is greater than the replication schedule, the replication volume won't catch up to the source. To resolve this issue, adjust the replication schedule.
318318
319319
- *Volume replication last transfer duration*
320320
The time taken for the most recent replication session to transfer all changed data (example: blocks, snapshots) from the source volume to the destination volume.

articles/azure-signalr/signalr-howto-troubleshoot-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This article provides troubleshooting guidance for some of the common issues tha
2323

2424
### Root cause
2525

26-
For HTTP/2, the max length for a single header is **4 K**, so if using browser to access Azure service, there's an error `ERR_CONNECTION_` for this limitation.
26+
For HTTP/2, the max length for a single header is **4 K**, so if you're using a browser to access the Azure service, you might encounter an error `ERR_CONNECTION_` for this limitation.
2727

2828
For HTTP/1.1, or C# clients, the max URI length is **12 K** and the max header length is **16 K**.
2929

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
description: 'Answers to common questions about'
55
ms.topic: faq
66
ms.service: azure-backup
7-
ms.date: 01/07/2026
7+
ms.date: 03/17/2026
88
author: AbhishekMallick-MS
99
ms.author: v-mallicka
1010
ms.custom: engagement-fy24
@@ -200,6 +200,8 @@ sections:
200200
Windows Server 2008, Windows Server 2008 R2 | 1700 GB
201201
Azure VM | See the [support matrix for Azure VM backup](./backup-support-matrix-iaas.md#vm-storage-support)
202202
203+
[!INCLUDE [end-of-support-notes-windows-server-2008.md](../../includes/end-of-support-notes-windows-server-2008.md)]
204+
203205
- question: |
204206
How is the data source size determined?
205207
answer: |

articles/backup/backup-azure-policy-supported-skus.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Supported VM SKUs for Azure Policy
3-
description: 'An article describing the supported VM SKUs (by Publisher, Image Offer and Image SKU) which are supported for the built-in Azure Policies provided by Backup'
3+
description: 'An article describing the supported Virtual Machine (VM) SKUs (by Publisher, Image Offer and Image SKU) which are supported for the built-in Azure Policies provided by Backup'
44
ms.topic: reference
5-
ms.date: 10/16/2024
5+
ms.date: 03/17/2026
66
ms.service: azure-backup
77
author: AbhishekMallick-MS
88
ms.author: v-mallicka
@@ -12,14 +12,18 @@ ms.author: v-mallicka
1212
# Supported VM SKUs for Azure Policy
1313

1414
> [!CAUTION]
15-
> This article references CentOS, a Linux distribution that is End Of Life (EOL) status. Please consider your use and planning accordingly. For more information, see the [CentOS End Of Life guidance](/azure/virtual-machines/workloads/centos/centos-end-of-life).
15+
> This article references CentOS, a Linux distribution that is End Of Life (EOL) status. Consider your use and planning accordingly. For more information, see the [CentOS End Of Life guidance](/azure/virtual-machines/workloads/centos/centos-end-of-life).
1616
17-
Azure Backup provides a built-in policy (using Azure Policy) that can be assigned to **all Azure VMs in a specified location within a subscription or resource group**. When this policy is assigned to a given scope, all new VMs created in that scope are automatically configured for backup to an **existing vault in the same location and subscription**. The table below lists all the VM SKUs supported by this policy.
17+
Azure Backup provides a built-in policy (using Azure Policy) that can be assigned to **all Azure Virtual Machines (VMs) in a specified location within a subscription or resource group**. When this policy is assigned to a given scope, all new VMs created in that scope are automatically configured for backup to an **existing vault in the same location and subscription**. The following table lists all the VM SKUs supported by this policy.
1818

1919
## Supported VMs*
2020

2121
**Policy Name:** Configure backup on VMs of a location to an existing central vault in the same location
2222

23+
The following table lists the supported VM SKUs for the built-in Azure Policy provided by Azure Backup.
24+
25+
[!INCLUDE [end-of-support-notes-windows-server-2008.md](../../includes/end-of-support-notes-windows-server-2008.md)]
26+
2327
Image Publisher | Image Offer | Image SKU
2428
--- | --- | ---
2529
MicrosoftWindowsServer | WindowsServer | Windows Server 2008 R2 SP1 (2008-R2-SP1)

articles/backup/backup-azure-restore-files-from-vm.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Recover files and folders from Azure VM backup
33
description: In this article, learn how to recover files and folders from an Azure virtual machine recovery point.
44
ms.topic: how-to
5-
ms.date: 09/18/2025
5+
ms.date: 03/17/2026
66
ms.custom: references_regions
77
ms.service: azure-backup
88
author: AbhishekMallick-MS
@@ -90,6 +90,8 @@ The VM on which you want to run the downloaded script must meet the following re
9090

9191
The following table shows the compatibility between server and computer operating systems. When recovering files, you can't restore files to a previous or future operating system version. For example, you can't restore a file from a Windows Server 2016 VM to Windows Server 2012 or a Windows 8 computer. You can restore files from a VM to the same server operating system, or to the compatible client operating system.
9292

93+
[!INCLUDE [end-of-support-notes-windows-server-2008.md](../../includes/end-of-support-notes-windows-server-2008.md)]
94+
9395
|Server OS | Compatible client OS |
9496
| --------------- | ---- |
9597
| Windows Server 2022 | Windows 11 and Windows 10 |

articles/backup/offline-backup-azure-data-box.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Offline backup by using Azure Data Box
33
description: Learn how you can use Azure Data Box to seed large initial backup data offline from the MARS Agent to a Recovery Services vault.
44
ms.topic: how-to
5-
ms.date: 04/18/2025
5+
ms.date: 03/17/2026
66
author: AbhishekMallick-MS
77
ms.author: v-mallicka
88
ms.service: azure-backup
@@ -46,6 +46,8 @@ The process to seed data from the MARS Agent by using Azure Data Box is supporte
4646
| Windows Server 2008 R2 SP1 64 bit | Standard, Enterprise, Datacenter, Foundation |
4747
| Windows Server 2008 SP2 64 bit | Standard, Enterprise, Datacenter |
4848

49+
[!INCLUDE [end-of-support-notes-windows-server-2008.md](../../includes/end-of-support-notes-windows-server-2008.md)]
50+
4951
### Backup data size and supported Data Box SKUs
5052

5153
| Backup data size (post-compression by MARS)* per server | Supported Azure Data Box SKU |

articles/backup/transport-layer-security.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Transport Layer Security in Azure Backup
33
description: Learn how to enable Azure Backup to use the encryption protocol Transport Layer Security (TLS) to keep data secure when being transferred over a network.
44
ms.topic: how-to
5-
ms.date: 09/25/2025
5+
ms.date: 03/17/2026
66
author: AbhishekMallick-MS
77
ms.author: v-mallicka
88
# Customer intent: As a system administrator, I want to enable TLS 1.2 in Azure Backup, so that I can ensure secure data transmission and protect sensitive backup information from vulnerabilities associated with older protocols.
@@ -16,6 +16,8 @@ This article describes how to enable Transport Layer Security (TLS) 1.2 for Azur
1616

1717
If the machine is running earlier versions of Windows, the corresponding updates noted below must be installed and the registry changes documented in the KB articles must be applied.
1818

19+
[!INCLUDE [end-of-support-notes-windows-server-2008.md](../../includes/end-of-support-notes-windows-server-2008.md)]
20+
1921
|Operating system |KB article |
2022
|---------|---------|
2123
|Windows Server 2008 SP2 | <https://support.microsoft.com/help/4019276> |

0 commit comments

Comments
 (0)