--- title: "Get-VBRCloudTapeBackupTenantRepository" description: "This cmdlet returns the array of tenant cloud repositories. You can run this cmdlet from the service provider side only." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcloudtapebackuptenantrepository.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Tape Devices > Tenant to Tape > Get-VBRCloudTapeBackupTenantRepository" dateModified: "2026-08-19" --- # Get-VBRCloudTapeBackupTenantRepository ## Short Description Returns tenant cloud repositories. **Product Edition**: Enterprise Requires Cloud Connect license ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns the array of tenant cloud repositories. ::: important You can run this cmdlet from the service provider side only. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs for tenant backup repositories. The cmdlet will return the tenant backup repositories with the specified IDs.

Guid[]

True

Named

True (ByPropertyName, ByValue)

Name

Specifies an array of friendly names for tenant backup repositories. The cmdlet will return the tenant backup repositories with these names.

String[]

False

Named

True (ByPropertyName, ByValue)

TenantId

Specifies an array of tenant IDs. The cmdlet will return tenant backup repositories with the specified tenant IDs.

Guid[]

True

Named

True (ByPropertyName, ByValue)

`` 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). ## Output Object `VBRCloudTapeBackupTenantRepository` ## Examples ::: example ### Example 1. Getting All Tenant Cloud Repositories This command gets an array of all tenant cloud repositories. ``` Get-VBRCloudTapeBackupTenantRepository ``` ::: ::: example ### Example 2. Getting Tenant Cloud Repository by Repository ID This command gets a tenant cloud repository by the repository ID. ``` Get-VBRCloudTapeBackupTenantRepository -ID "0fccf7c9-1f90-49de-8bec-53a0697e04ab" ``` ::: ::: example ### Example 3. Getting Tenant Cloud Repository by Repository Name This command gets tenant cloud repositories by the tenant friendly name. ``` Get-VBRCloudTapeBackupTenantRepository -Name "New tenant" ``` ::: ::: example ### Example 4. Getting Tenant Cloud Repository by Tenant ID This command gets tenant cloud repositories by the tenant ID. ``` Get-VBRCloudTapeBackupTenantRepository -TenantId "4bff98a5-c49e-473c-8ce0-4203549b7560" ``` :::