--- title: "Sync-VBRCloudTenantResource" 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." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/sync-vbrcloudtenantresource.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Veeam Cloud Connect Backup Resources > Sync-VBRCloudTenantResource" dateModified: "2026-08-19" --- # 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 [] ``` ## 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 VBRCloudTenantResource[] object. To get this object, run the Get-VBRCloudTenant cmdlet and use the resources parameter.

VBRCloudTenantResource[]

True

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### 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: 1. Run the [`Get-VBRCloudTenant`](get-vbrcloudtenant.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$tenant` variable. 2. Use the `resources` parameter of the `$tenant` variable. Save the result to the `$resources` variable. 3. Run the `Sync-VBRCloudTenantResource` cmdlet. Set the `$resources` variable as the `CloudTenantResource` parameter value. ::: ## Related Commands [`Get-VBRCloudTenant`](get-vbrcloudtenant.md)