Add-VBRCloudArchiveBackupAvailabilityPeriod
Short Description
Extends the availability of the tenant backup files located in the archive storage.
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
|
Add-VBRCloudArchiveBackupAvailabilityPeriod -RestorePoint <CCommonOib> -AvailabilityPeriodDays <UInt32> [-RunAsync] [<CommonParameters>] |
Detailed Description
Extends the availability of the tenant backup files located in the archive storage.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
AvailabilityPeriodDays |
Specifies a period in days during which the retrieved archive backup files will be available. |
|
True |
Named |
False |
|
RestorePoint |
Specifies the restore point for which you want to extend the availability.
Accepts the |
|
True |
Named |
True (ByPropertyName, ByValue) |
|
RunAsync |
Defines that the command returns immediately without waiting for the task to complete. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRCloudArchiveBackupAvailabilityPeriod object that contains settings of availability of the tenant backup files located in the archive storage.
Examples
Extending Availability of Tenant Backup Files Located in Archive Storage
This example shows how to extend availability of the 3e57a915-2755-4297-be14-deddb8564ca9 restore point of the ABC Company tenant.
|
$tenant = Get-VBRCloudTenant -Name "ABC Company" $restorepoint = Get-VBRCloudArchiveRestorePoint -Tenant $tenant -Id "3e57a915-2755-4297-be14-deddb8564ca9" Add-VBRCloudArchiveBackupAvailabilityPeriod -RestorePoint $restorepoint -AvailabilityPeriodDays 5 |
Perform the following steps:
- Run the
Get-VBRCloudTenantReturns cloud tenant accounts. cmdlet. Specify theNameparameter value. Save the result to the$tenantvariable. - Run the
Get-VBRCloudArchiveRestorePointReturns restore points of tenant backups located in the archive tier. cmdlet. Set the$tenantvariable as theTenantparameter value. Specify theIdparameter value. Save the result to the$restorepointvariable. - Run the
Add-VBRCloudArchiveBackupAvailabilityPeriodcmdlet. Set the$restorepointvariable as theRestorePointparameter value. Specify theAvailabilityPeriodDaysparameter value.
Related Commands
Get-VBRCloudTenantReturns cloud tenant accounts.Get-VBRCloudArchiveRestorePointReturns restore points of tenant backups located in the archive tier.