Sync-VBRCloudTenantResource
Short Description
Refreshes information about current usage of backup resources by a cloud tenant.
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 Pipeline Input |
|---|---|---|---|---|---|
|
CloudTenantResource |
Specifies backup resources of the cloud tenant account. The cmdlet will refresh information about current usage of these backup resources.
Accepts the |
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
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-VBRCloudTenantReturns cloud tenant accounts. cmdlet. Specify theNameparameter value. Save the result to the$tenantvariable. - Use the
resourcesparameter of the$tenantvariable. Save the result to the$resourcesvariable. - Run the
Sync-VBRCloudTenantResourcecmdlet. Set the$resourcesvariable as theCloudTenantResourceparameter value.
Related Commands
Get-VBRCloudTenantReturns cloud tenant accounts.