Sync-VBRCloudTenantResource
Short Description
Refreshes information about current usage of backup resources by a cloud tenant.
Applies to
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Requires a cloud provider license.
Syntax
Sync-VBRCloudTenantResource -CloudTenantResource <VBRCloudTenantResource[]> [<CommonParameters>] |
Detailed Description
This cmdlet updates the information about the cloud tenant current usage of the backup resources. You can see the refreshed backup resource quotas in the user interface of Veeam Backup & Replication.
Parameters
Parameter | Description | Type | Required | Position | Accept |
---|---|---|---|---|---|
CloudTenantResource | Specifies backup resources of the cloud tenant account. The cmdlet will refresh information about current usage of these backup resources. | Accepts the VBRCloudTenantResource[] object. To get this object, run the Get-VBRCloudTenant cmdlet and use the resources parameter. | True | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
None.
Examples
Refreshing Information about Tenant's Backup Resources
This example shows how to refresh the backup resource quota for the ABC Company tenant.
$tenant = Get-VBRCloudTenant -Name "ABC Company" $resources = $tenant.resources[0] Sync-VBRCloudTenantResource -CloudTenantResource $resources |
Perform the following steps:
- Run the Get-VBRCloudTenant cmdlet. Specify the Name parameter value. Save the result to the $tenant variable.
- Use the resources parameter of the $tenant variable. Save the result to the $resources variable.
- Run the Sync-VBRCloudTenantResource cmdlet. Set the $resources variable as the CloudTenantResource parameter value.
Related Commands