Skip to content

Commit a9b75ac

Browse files
Merge pull request #310920 from MicrosoftDocs/main
Auto Publish – main to live - 2026-01-27 12:00 UTC
2 parents ed7bc0c + dcbe09e commit a9b75ac

7 files changed

Lines changed: 16 additions & 16 deletions

articles/backup/backup-azure-database-postgresql-flex-restore-powershell.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Restore Azure Database for PostgreSQL - Flexible Server using Azure PowerShell
33
description: Learn how to restore Azure Database for PostgreSQL - Flexible Server using Azure PowerShell.
44
ms.topic: how-to
5-
ms.date: 02/28/2025
5+
ms.date: 01/27/2026
66
ms.service: azure-backup
77
ms.custom: devx-track-azurepowershell, ignite-2024
88
author: AbhishekMallick-MS
@@ -23,15 +23,15 @@ Let's use an existing Backup vault `TestBkpVault`, under the resource group `tes
2323
$TestBkpVault = Get-AzDataProtectionBackupVault -VaultName TestBkpVault -ResourceGroupName "testBkpVaultRG"
2424
```
2525

26-
## Set up permissions for restore
26+
## Set up permissions for PostgreSQL - Flexible Server restore
2727

2828
Backup vault uses managed identity to access other Azure resources. To restore from backup, Backup vault’s managed identity requires a set of permissions on the Azure PostgreSQL – Flexible Server to which the database should be restored.
2929

3030
To assign the relevant permissions for vault's system-assigned managed identity on the target PostgreSQL – Flexible Server, check the [set of permissions](backup-azure-database-postgresql-flex-overview.md#azure-backup-authentication-with-the-postgresql-server) needed to backup Azure PostgreSQL – Flexible Server database.
3131

3232
To restore the recovery point as files to a storage account, the [Backup vault's system-assigned managed identity needs access on the target storage account](./restore-azure-database-postgresql.md#restore-permissions-on-the-target-storage-account).
3333

34-
## Fetch the relevant recovery point
34+
## Fetch the relevant recovery point of PostgreSQL - Flexible Server
3535

3636
Fetch all instances using [Get-AzDataProtectionBackupInstance](/powershell/module/az.dataprotection/get-azdataprotectionbackupinstance) cmdlet and identify the relevant instance.
3737

@@ -58,7 +58,7 @@ Once the instance is identified, fetch the relevant recovery point.
5858
$rp = Get-AzDataProtectionRecoveryPoint -ResourceGroupName "testBkpVaultRG" -VaultName $TestBkpVault.Name -BackupInstanceName $AllInstances[2].BackupInstanceName
5959
```
6060

61-
## Prepare the restore request
61+
## Prepare the restore request for PostgreSQL - Flexible Server
6262

6363
You can restore the recovery point for a PostgreSQL – Flexible Server database as files only.
6464

@@ -100,15 +100,15 @@ pg_restore -h <hostname> -U <username> -j <Num of parallel jobs> -Fd -C -d <data
100100
If you have more than one database to restore, rerun the earlier cmdlet for each database.
101101
Also, by using multiple concurrent jobs `-j`, you can reduce the restore time of a large database on a **multi-vCore** target server. The number of jobs can be equal to or less than the number of `vCPUs` allocated for the target server.
102102

103-
## Trigger the restore
103+
## Trigger the restore for PostgreSQL - Flexible Server
104104

105105
To trigger the restore operation with the prepared request, use the [`Start-AzDataProtectionBackupInstanceRestore`](/powershell/module/az.dataprotection/start-azdataprotectionbackupinstancerestore) cmdlet
106106

107107
```azurepowershell-interactive
108108
Start-AzDataProtectionBackupInstanceRestore -BackupInstanceName $AllInstances[2].BackupInstanceName -ResourceGroupName "testBkpVaultRG" -VaultName $TestBkpVault.Name -Parameter $OssRestoreReq
109109
```
110110

111-
## Track jobs
111+
## Track jobs for PostgreSQL - Flexible Server restore
112112

113113
Track all jobs by using the [`Get-AzDataProtectionJob`](/powershell/module/az.dataprotection/get-azdataprotectionjob) cmdlet. You can list all jobs and fetch a particular job detail.
114114

articles/backup/backup-azure-database-postgresql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Back Up Azure Database for PostgreSQL by Using the Azure Portal
33
description: Learn how to back up Azure Database for PostgreSQL by using the Azure portal.
44
ms.topic: how-to
5-
ms.date: 08/18/2025
5+
ms.date: 01/27/2026
66
ms.service: azure-backup
77
author: AbhishekMallick-MS
88
ms.author: v-mallicka
@@ -26,7 +26,7 @@ You can configure a backup on multiple PostgreSQL databases across multiple Azur
2626

2727
:::image type="content" source="./media/backup-azure-database-postgresql/adding-backup-inline.png" alt-text="Screenshot that shows the button for adding a backup." lightbox="./media/backup-azure-database-postgresql/adding-backup-expanded.png":::
2828

29-
Alternatively, you can go to this page from the [Backup center](./backup-center-overview.md).
29+
Alternatively, you can go to this page from the [Resiliency](../resiliency/tutorial-configure-protection-datasource.md).
3030

3131
1. On the **Basics** tab, enter the required information.
3232

@@ -126,7 +126,7 @@ You can configure a backup on multiple PostgreSQL databases across multiple Azur
126126

127127
## <a name = "create-backup-policy"></a>Create a backup policy
128128

129-
You can create a backup policy during the flow for configuring a backup. Alternatively, go to **Backup center** > **Backup policies** > **Add**. You can also [create a backup policy for PostgreSQL databases using REST API](backup-azure-data-protection-use-rest-api-create-update-postgresql-policy.md).
129+
You can create a backup policy during the flow for configuring a backup. Alternatively, go to **Resiliency** > **Manage** > **Procection policies** > **+ Create policy**. You can also [create a backup policy for PostgreSQL databases using REST API](backup-azure-data-protection-use-rest-api-create-update-postgresql-policy.md).
130130

131131
1. On the **Create Backup Policy** pane, on the **Basics** tab, enter a name for the new policy.
132132

articles/backup/backup-azure-manage-vms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Manage and monitor Azure VM backups
33
description: Learn how to manage and monitor Azure VM backups by using the Azure Backup service.
44
ms.topic: how-to
5-
ms.date: 10/24/2025
5+
ms.date: 01/27/2026
66
ms.service: azure-backup
77
author: AbhishekMallick-MS
88
ms.author: v-mallicka
@@ -23,7 +23,7 @@ You can manage backups by using the dashboard and by drilling down to individual
2323

2424
:::image type="content" source="./media/backup-azure-manage-vms/bottom-slider-inline.png" alt-text="Screenshot showing the full dashboard view with slider." lightbox="./media/backup-azure-manage-vms/bottom-slider-expanded.png":::
2525

26-
[!INCLUDE [backup-center.md](../../includes/backup-center.md)]
26+
[!INCLUDE [resiliency.md](../../includes/resiliency.md)]
2727

2828
## View VMs on the dashboard
2929

articles/backup/manage-monitor-sql-database-backup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Manage and monitor SQL Server DBs on an Azure VM
33
description: This article describes how to manage and monitor SQL Server databases that are running on an Azure VM.
44
ms.topic: how-to
5-
ms.date: 12/19/2025
5+
ms.date: 01/27/2026
66
ms.service: azure-backup
77
author: AbhishekMallick-MS
88
ms.author: v-mallicka
@@ -134,7 +134,7 @@ In the vault dashboard, go to **Manage** > **Backup Policies** and choose the po
134134

135135
![Manage backup policy](./media/backup-azure-sql-database/modify-backup-policy.png)
136136

137-
![Modify backup policy](./media/backup-azure-sql-database/modify-backup-policy-impact.png)
137+
:::image type="content" source="./media/backup-azure-sql-database/modify-backup-policy-impact.png" alt-text="Screenshot that shows the impact of modifying a backup policy on associated backup items." lightbox="./media/backup-azure-sql-database/modify-backup-policy-impact.png":::
138138

139139
Policy modification will impact all the associated Backup Items and trigger corresponding **configure protection** jobs.
140140

1.69 KB
Loading

articles/backup/restore-azure-database-postgresql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Restore Azure Database for PostgreSQL by Using the Azure Portal
33
description: Learn about how to restore Azure Database for PostgreSQL backups.
44
ms.topic: how-to
5-
ms.date: 08/18/2025
5+
ms.date: 01/27/2026
66
ms.custom:
77
- devx-track-azurecli
88
- build-2025
@@ -24,7 +24,7 @@ You can restore a database to any Azure Database for PostgreSQL server of a diff
2424

2525
:::image type="content" source="./media/restore-azure-database-postgresql/select-database-for-restore-inline.png" alt-text="Screenshot that shows details for a backup instance." lightbox="./media/restore-azure-database-postgresql/select-database-for-restore-expanded.png":::
2626

27-
Alternatively, you can go to this page from the [Backup center](./backup-center-overview.md).
27+
Alternatively, you can go to this page from the [Resiliency](../resiliency/resiliency-overview.md).
2828

2929
1. On the **Select restore point** tab, select a recovery point from the list of all full backups available for the selected backup instance. By default, the latest recovery point is selected.
3030

articles/network-watcher/traffic-analytics-schema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The following table lists the fields in the schema and what they signify for vir
7373
> | **L7Protocol** | Protocol Name | Derived from destination port. |
7474
> | **FlowDirection** | - **I** = Inbound <br> - **O** = Outbound | Direction of the flow: in or out of the target resource per flow log. |
7575
> | **FlowStatus** | - **A** = Allowed <br> - **D** = Denied | Status of flow: allowed or denied by target resource per flow log. |
76-
> | **AclList** | \<SubscriptionID\>/\<resourcegroup_Name\>/\<NSG_Name\> | Network security group associated with the flow. |
76+
> | **AclGroup** | \<SubscriptionID\>/\<resourcegroup_Name\>/\<NSG_Name\> | Network security group associated with the flow. |
7777
> | **AclRule** | NSG_Rule_Name | Network security group rule that allowed or denied the flow. |
7878
> | **MACAddress** | MAC Address | MAC address of the NIC at which the flow was captured. |
7979
> | **SrcSubscription** | Subscription ID | Subscription ID of virtual network / network interface / virtual machine that the source IP in the flow belongs to. |

0 commit comments

Comments
 (0)