Skip to content

Commit b6ceae9

Browse files
Merge pull request #298694 from AbhishekMallick01/Apr-23-2025-Incubation
Incubation <50 visitors - Restore Disk via REST
2 parents 1fc8834 + d136825 commit b6ceae9

File tree

6 files changed

+33
-15
lines changed

6 files changed

+33
-15
lines changed

articles/backup/backup-managed-disks-cli.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Back up Azure Managed Disks using Azure CLI
33
description: Learn how to back up Azure Managed Disks using Azure CLI.
44
ms.topic: how-to
55
ms.custom: devx-track-azurecli, engagement-fy24
6-
ms.date: 04/16/2025
6+
ms.date: 04/23/2025
77
author: jyothisuri
88
ms.author: jsuri
99
---
@@ -487,6 +487,12 @@ You can also use Az.ResourceGraph to track all jobs across all Backup vaults. Us
487487
az dataprotection job list-from-resourcegraph --datasource-type AzureDisk --status Completed
488488
```
489489

490-
## Next step
490+
## Next steps
491491

492-
[Restore Azure Managed Disks using Azure CLI](restore-managed-disks-cli.md)
492+
[Restore Azure Managed Disks using Azure CLI](restore-managed-disks-cli.md).
493+
494+
## Related content
495+
496+
- [Create a backup policy to protect Managed Disk using REST API](backup-azure-dataprotection-use-rest-api-create-update-disk-policy.md).
497+
- [Back up Managed Disk using REST API](backup-azure-dataprotection-use-rest-api-backup-disks.md).
498+
- [Restore Managed Disk using REST API](backup-azure-dataprotection-use-rest-api-restore-disks.md).

articles/backup/backup-managed-disks-ps.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Back up Azure Managed Disks using Azure PowerShell
33
description: Learn how to back up Azure Managed Disks using Azure PowerShell.
44
ms.topic: how-to
5-
ms.date: 04/16/2025
5+
ms.date: 04/23/2025
66
ms.custom: devx-track-azurepowershell
77
author: jyothisuri
88
ms.author: jsuri
@@ -251,4 +251,10 @@ You can also use Az.ResourceGraph to track all jobs across all backup vaults. Us
251251

252252
## Next steps
253253

254-
- [Restore Azure Managed Disks using Azure PowerShell](restore-managed-disks-ps.md)
254+
[Restore Azure Managed Disks using Azure PowerShell](restore-managed-disks-ps.md).
255+
256+
## Related content
257+
258+
- [Create a backup policy to protect Managed Disk using REST API](backup-azure-dataprotection-use-rest-api-create-update-disk-policy.md).
259+
- [Back up Managed Disk using REST API](backup-azure-dataprotection-use-rest-api-backup-disks.md).
260+
- [Restore Managed Disk using REST API](backup-azure-dataprotection-use-rest-api-restore-disks.md).

articles/backup/backup-managed-disks.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Back up Azure Managed Disks
33
description: Learn how to back up Azure Managed Disks from the Azure portal.
44
ms.topic: how-to
5-
ms.date: 04/16/2025
5+
ms.date: 04/23/2025
66
ms.service: azure-backup
77
author: jyothisuri
88
ms.author: jsuri
@@ -222,4 +222,10 @@ The Azure Backup service creates a job for scheduled backups or if you trigger o
222222

223223
## Next steps
224224

225-
- [Restore Azure Managed Disks](restore-managed-disks.md)
225+
[Restore Azure Managed Disks](restore-managed-disks.md).
226+
227+
## Related content
228+
229+
- [Create a backup policy to protect Managed Disk using REST API](backup-azure-dataprotection-use-rest-api-create-update-disk-policy.md).
230+
- [Back up Managed Disk using REST API](backup-azure-dataprotection-use-rest-api-backup-disks.md).
231+
- [Restore Managed Disk using REST API](backup-azure-dataprotection-use-rest-api-restore-disks.md).

articles/backup/restore-managed-disks-cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ title: Restore Azure Managed Disks via Azure CLI
33
description: Learn how to restore Azure Managed Disks using Azure CLI.
44
ms.topic: how-to
55
ms.custom: devx-track-azurecli
6-
ms.date: 07/30/2024
6+
ms.date: 04/23/2025
77
author: jyothisuri
88
ms.author: jsuri
99
---
1010

1111
# Restore Azure Managed Disks using Azure CLI
1212

13-
This article describes how to restore [Azure Managed Disks](/azure/virtual-machines/managed-disks-overview) from a restore point created by Azure Backup using Azure CLI.
13+
This article describes how to restore [Azure Managed Disks](/azure/virtual-machines/managed-disks-overview) from a restore point created by Azure Backup using Azure CLI. You can also [restore Managed Disk using REST API](backup-azure-dataprotection-use-rest-api-restore-disks.md).
1414

1515
> [!IMPORTANT]
1616
> Support for Azure Managed Disks backup and restore via CLI is in preview and available as an extension in Az 2.15.0 version and later. The extension is automatically installed when you run the **az dataprotection** commands. [Learn more](/cli/azure/azure-cli-extensions-overview) about extensions.
@@ -27,7 +27,7 @@ Backup vault uses managed identity to access other Azure resources. To restore f
2727

2828
Backup vault uses a system-assigned managed identity, which is restricted to one per resource and is tied to the lifecycle of this resource. You can grant permissions to the managed identity by using the Azure role-based access control (Azure RBAC). Managed identity is a service principal of a special type that may only be used with Azure resources. Learn more about [Managed Identities](../active-directory/managed-identities-azure-resources/overview.md).
2929

30-
Assign the relevant permissions for vault's system-assigned managed identity on the target resource group where the disks will be restored/created as mentioned [here](restore-managed-disks.md#restore-to-create-a-new-disk).
30+
Assign the relevant permissions for vault's system-assigned managed identity on the target resource group where the disks should be restored/created as mentioned [here](restore-managed-disks.md#restore-to-create-a-new-disk).
3131

3232
### Fetching the relevant recovery point
3333

@@ -181,7 +181,7 @@ az dataprotection recovery-point list --backup-instance-name diskrg-CLITestDisk-
181181

182182
### Preparing the restore request
183183

184-
Construct the ARM ID of the new disk to be created with the target resource group, to which permissions were assigned as detailed [above](#setting-up-permissions), and the required disk name. We'll use an example of a disk named _CLITestDisk2_, under a resource group _targetrg_, under a different subscription.
184+
Construct the ARM ID of the new disk to be created with the target resource group, to which permissions were assigned as detailed [above](#setting-up-permissions), and the required disk name. Let's use an example of a disk named _CLITestDisk2_, under a resource group _targetrg_, under a different subscription.
185185

186186
```azurecli-interactive
187187
$targetDiskId = /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx/resourceGroups/targetrg/providers/Microsoft.Compute/disks/CLITestDisk2

articles/backup/restore-managed-disks-ps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ title: Restore Azure Managed Disks via Azure PowerShell
33
description: Learn how to restore Azure Managed Disks using Azure PowerShell.
44
ms.topic: how-to
55
ms.custom: devx-track-azurepowershell
6-
ms.date: 07/30/2024
6+
ms.date: 04/23/2025
77
author: jyothisuri
88
ms.author: jsuri
99
---
1010

1111
# Restore Azure Managed Disks using Azure PowerShell
1212

13-
This article explains how to restore [Azure Managed Disks](/azure/virtual-machines/managed-disks-overview) from a restore point created by Azure Backup.
13+
This article describes how to restore [Azure Managed Disks](/azure/virtual-machines/managed-disks-overview) from a restore point created by Azure Backup. You can also [restore Managed Disk using REST API](backup-azure-dataprotection-use-rest-api-restore-disks.md).
1414

1515
Currently, the Original-Location Recovery (OLR) option of restoring by replacing existing the source disk from where the backups were taken isn't supported. You can restore from a recovery point to create a new disk either in the same resource group as that of the source disk from where the backups were taken or in any other resource group. This is known as Alternate-Location Recovery (ALR) and this helps to keep both the source disk and the restored (new) disk.
1616

articles/backup/restore-managed-disks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: Restore Azure Managed Disks
33
description: Learn how to restore Azure Managed Disks from the Azure portal.
44
ms.topic: how-to
5-
ms.date: 07/18/2024
5+
ms.date: 04/23/2025
66
author: jyothisuri
77
ms.author: jsuri
88
---
99

1010
# Restore Azure Managed Disks
1111

12-
This article explains how to restore [Azure Managed Disks](/azure/virtual-machines/managed-disks-overview) from a restore point created by Azure Backup.
12+
This article describes how to restore [Azure Managed Disks](/azure/virtual-machines/managed-disks-overview) from a restore point created by Azure Backup. You can also [restore Managed Disk using REST API](backup-azure-dataprotection-use-rest-api-restore-disks.md).
1313

1414
Currently, the Original-Location Recovery (OLR) option of restoring by replacing existing the source disk from where the backups were taken isn't supported. You can restore from a recovery point to create a new disk either in the same resource group as that of the source disk from where the backups were taken or in any other resource group. This is known as Alternate-Location Recovery (ALR) and this helps to keep both the source disk and the restored (new) disk.
1515

0 commit comments

Comments
 (0)