Skip to content

Commit 6d74d10

Browse files
minor changes
1 parent b53437a commit 6d74d10

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

articles/backup/archive-tier-support.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Archive Tier support overview
33
description: Learn about Archive Tier Support for Azure Backup.
44
ms.topic: overview
55
ms.date: 10/21/2021
6-
ms.custom: devx-track-azurepowershell
6+
ms.custom: references_regions
77
---
88

99
# About Archive Tier support
@@ -29,9 +29,9 @@ Archive tier supports the following workloads:
2929

3030
Archive tier supports the following clients:
3131

32-
- [PowerShell](/azure/backup/use-archive-tier-support&tabs=powershell#tabpanel_1_powershell)
33-
- [CLI](/azure/backup/use-archive-tier-support&tabs=CLIl#tabpanel_1_cli)
34-
- [Azure portal](/azure/backup/use-archive-tier-support&tabs=azure-portall#tabpanel_1_azure-portal)
32+
- [PowerShell](/azure/backup/use-archive-tier-support&pivots=client-powershelltier)
33+
- [CLI](/azure/backup/use-archive-tier-support&pivots=client-clitier)
34+
- [Azure portal](/azure/backup/use-archive-tier-support&pivots=client-portaltier)
3535

3636
## How Azure Backup moves recovery points to the vault-archive tier?
3737

articles/backup/use-archive-tier-support.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ zone_pivot_groups: backup-client-powershelltier-clitier-portaltier
1212

1313
::: zone pivot="client-powershelltier"
1414

15-
16-
15+
This article provides the procedure to backup of long-term retention points in the archive tier, and snapshots and the Standard tier using PowerShell.
1716

1817
## Supported workloads
1918

@@ -25,7 +24,7 @@ zone_pivot_groups: backup-client-powershelltier-clitier-portaltier
2524

2625
1. Download the [latest](https://github.com/PowerShell/PowerShell/releases) version of PowerShell from GitHub.
2726

28-
1. Run the following command in PowerShell:
27+
1. Run the following cmdlet in PowerShell:
2928

3029
```azurepowershell
3130
install-module -name Az.RecoveryServices -Repository PSGallery -RequiredVersion 4.4.0 -AllowPrerelease -force
@@ -73,7 +72,7 @@ zone_pivot_groups: backup-client-powershelltier-clitier-portaltier
7372
$bckItm = $BackupItemList | Where-Object {$_.FriendlyName -eq '<dbName>' -and $_.ContainerName -match '<vmName>'}
7473
```
7574
76-
1. (Optionsl) Add the date range for which you want to view the recovery points. For example, if you want to view the recovery points from the last 120 days, use the following command:
75+
1. (Optional) Add the date range for which you want to view the recovery points. For example, if you want to view the recovery points from the last 120 days, use the following cmdlet:
7776
7877
```azurepowershell
7978
$startDate = (Get-Date).AddDays(-120)
@@ -139,11 +138,11 @@ Move-AzRecoveryServicesBackupRecoveryPoint -VaultId $vault.ID -RecoveryPoint $rp
139138

140139
Where, `$rp[0]` is the first recovery point in the list. If you want to move other recovery points, use `$rp[1]`, `$rp[2]`, and so on.
141140

142-
This command moves an archivable recovery point to archive. It returns a job that can be used to track the move operation, both from portal and with PowerShell.
141+
This cmdlet moves an archivable recovery point to archive. It returns a job that can be used to track the move operation, both from portal and with PowerShell.
143142

144143
## View archived recovery points
145144

146-
This command returns all archived recovery points.
145+
This cmdlet returns all archived recovery points.
147146

148147
```azurepowershell
149148
$rp = Get-AzRecoveryServicesBackupRecoveryPoint -VaultId $vault.ID -Item $bckItm -Tier VaultArchive -StartDate $startdate.ToUniversalTime() -EndDate $enddate.ToUniversalTime()
@@ -168,7 +167,7 @@ For more information about the various restore methods for Azure virtual machine
168167
Restore-AzRecoveryServicesBackupItem -VaultLocation $vault.Location -RehydratePriority "Standard" -RehydrateDuration 15 -RecoveryPoint $rp -StorageAccountName "SampleSA" -StorageAccountResourceGroupName "SArgName" -TargetResourceGroupName $vault.ResourceGroupName -VaultId $vault.ID
169168
```
170169

171-
To restore SQL Server, follow [these steps](backup-azure-sql-automation.md#restore-sql-dbs). The `Restore-AzRecoveryServicesBackupItem` command requires two additional parameters, `RehydrationDuration` and `RehydrationPriority`.
170+
To restore SQL Server, follow [these steps](backup-azure-sql-automation.md#restore-sql-dbs). The `Restore-AzRecoveryServicesBackupItem` cmdlet requires two additional parameters, `RehydrationDuration` and `RehydrationPriority`.
172171

173172
## View jobs
174173

@@ -178,7 +177,7 @@ To view the move and restore jobs, use the following PowerShell cmdlet:
178177
Get-AzRecoveryServicesBackupJob -VaultId $vault.ID
179178
```
180179

181-
### Move recovery points to archive tier at scale
180+
## Move recovery points to archive tier at scale
182181

183182
You can now use sample scripts to perform at scale operations. [Learn more](https://github.com/hiaga/Az.RecoveryServices/blob/master/README.md) about how to run the sample scripts. You can download the scripts from [here](https://github.com/hiaga/Az.RecoveryServices).
184183

@@ -195,6 +194,8 @@ You can also write a script as per your requirements or modify the above sample
195194

196195
::: zone pivot="client-clitier"
197196

197+
This article provides the procedure to backup of long-term retention points in the archive tier, and snapshots and the Standard tier using command-line interface (CLI).
198+
198199
## Supported workloads
199200

200201
| Workloads | Operations |
@@ -215,14 +216,14 @@ You can also write a script as per your requirements or modify the above sample
215216
az login
216217
```
217218

218-
3. Set Subscription Context using the following command:
219+
3. Set Subscription Context:
219220

220221
```azurecli
221222
az account set –s <subscriptionId>
222223
```
223224
## View archivable recovery points
224225

225-
You can move the archivable recovery points to the vault-archive tier using the following commands. [Learn more] about the eligibility criteria.
226+
You can move the archivable recovery points to the vault-archive tier using the following commands. [Learn more](archive-tier-support.md#supported-workloads) about the eligibility criteria.
226227

227228
- **For Azure Virtual Machines**
228229

@@ -260,7 +261,7 @@ Run the following command:
260261
az backup recoverypoint list -g {rg} -v {vault} -c {container} -i {item} --backup-management-type { AzureIaasVM} --workload-type {VM} --recommended-for-archive
261262
```
262263

263-
[Learn more]() about recommendation set.
264+
[Learn more](archive-tier-support.md#archive-recommendations-only-for-azure-virtual-machines) about recommendation set.
264265

265266
>[!Note]
266267
>- Cost savings depends on various reasons and might not be the same for every instance.
@@ -341,8 +342,7 @@ Run the following commands:
341342
342343
::: zone pivot="client-portaltier"
343344
344-
345-
345+
This article provides the procedure to backup of long-term retention points in the archive tier, and snapshots and the Standard tier using Azure portal.
346346
347347
## Supported workloads
348348
@@ -353,7 +353,7 @@ Run the following commands:
353353
354354
## View archived recovery points
355355
356-
You can now view all the recovery points that have beenare moved to archive.
356+
You can now view all the recovery points that have are moved to archive.
357357
358358
:::image type="content" source="./media/use-archive-tier-support/view-recovery-points-list-inline.png" alt-text="Screenshot showing the list of recovery points." lightbox="./media/use-archive-tier-support/view-recovery-points-list-expanded.png":::
359359
@@ -370,11 +370,11 @@ Follow these steps:
370370
371371
:::image type="content" source="./media/use-archive-tier-support/view-old-recovery-points-inline.png" alt-text="Screenshot showing the process to view recovery points that are older than 7 days." lightbox="./media/use-archive-tier-support/view-old-recovery-points-expanded.png":::
372372
373-
3. Select _Long term retention points can be moved to archive. Tomove all ‘eligible recovery points’ to archive tier, click here_ to view all eligible archivable points to be moved to archive.
373+
3. To view all eligible archivable points to be moved to archive, select _Long term retention points can be moved to archive. To move all ‘eligible recovery points’ to archive tier, click here_.
374374
375375
:::image type="content" source="./media/use-archive-tier-support/view-all-eligible-archivable-points-for-move-inline.png" alt-text="Screenshot showing the process to view all eligible archivable points to be moved to archive." lightbox="./media/use-archive-tier-support/view-all-eligible-archivable-points-for-move-expanded.png":::
376376
377-
All archivable recovery points appears.
377+
All archivable recovery points appear.
378378
379379
380380
[Learn more](archive-tier-support.md#supported-workloads) about eligibility criteria.
@@ -388,13 +388,13 @@ Follow these steps:
388388
389389
You can monitor the progress in backup jobs.
390390
391-
### Restore
391+
## Restore
392392
393393
To restore the recovery points that are moved to archive, you need to add the required parameters for rehydration duration and rehydration priority.
394394
395395
:::image type="content" source="./media/use-archive-tier-support/restore-in-portal.png" alt-text="Screenshot showing the process to restore recovery points in the portal.":::
396396
397-
### View jobs
397+
## View jobs
398398
399399
:::image type="content" source="./media/use-archive-tier-support/view-jobs-portal.png" alt-text="Screenshot showing the process to view jobs in the portal.":::
400400

0 commit comments

Comments
 (0)