Get-VBRCloudArchiveRestorePoint
Short Description
Returns restore points of tenant backups located in the archive tier.
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
|
Get-VBRCloudArchiveRestorePoint -Tenant <VBRCloudTenant> [-Id <Guid>] [<CommonParameters>] |
Detailed Description
This cmdlet returns restore points of tenant backups located in the archive tier.
The cloud provider needs to run this cmdlet when a tenant wants to restore backups stored in the archive extent of the scale-out backup repository. Since the tenant is not able to restore data on his side, he needs to contact the cloud provider and specify an ID of the restore point for backups that he wants to restore.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Id |
Specifies a restore point ID of tenant backups that you want to restore. |
|
False |
Named |
False |
|
Tenant |
Specifies a tenant whose data you want to restore.
Accepts the |
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRCloudArchiveRestorePoint object that contains a restore point of tenant backups located in the archive tier.
Examples
Getting Restore Point of Tenant Backup Stored in Archive Tier
This example shows how to get the 3e57a915-2755-4297-be14-deddb8564ca9 restore point of the ABC Company tenant.
|
$tenant = Get-VBRCloudTenant -Name "ABC Company" Get-VBRCloudArchiveRestorePoint -Tenant $tenant -Id "3e57a915-2755-4297-be14-deddb8564ca9" |
Perform the following steps:
- Run the
Get-VBRCloudTenantReturns cloud tenant accounts. cmdlet. Specify theNameparameter value. Save the result to the$tenantvariable. - Run the
Get-VBRCloudArchiveRestorePointcmdlet. Set the$tenantvariable as theTenantparameter value. Specify theIdparameter value.
Related Commands
Get-VBRCloudTenantReturns cloud tenant accounts.