Get-VBRCloudUnavailableBackupFile
Short Description
Returns a list of backup files that are no longer available in the cloud repository.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Detailed Description
This cmdlet returns a list of backup files that are no longer available in the cloud repository.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
CloudTenant | Specifies a cloud tenant account for which you want to get backup files that are no longer available in the cloud repository. | Accepts the IVBRCloudTenant object. To create this object, run the Get-VBRCloudTenant cmdlet. | True | Named | True (ByValue, ByPropertyName) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Output Object
The cmdlet returns the VBRCloudUnavailableBackupFile object that contains a list of backup files that are no longer available in the cloud repository.
Examples
Getting Unavailable Backup Files for Cloud Tenant Account
This example shows how to get a list of backup files that are no longer available in the cloud repository for the ABC Company cloud tenant account.
$tenant = Get-VBRCloudTenant -Name "ABC Company" $backupfiles = Get-VBRCloudUnavailableBackupFile -CloudTenant $tenant |
Perform the following steps:
- Run the Get-VBRCloudTenant cmdlet. Specify the Name parameter value. Save the result to the $tenant variable.
- Run the Start-VBRCloudTenantBackupEvacuation cmdlet. Set the $tenant variable as the CloudTenant parameter value.
Related Commands