--- title: "Get-VBRvCDCloudOrganizationvDC" description: "Returns organization VDCs. Platform: VMware Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: Name (Default) Id CloudProvider This cmdlet returns organization VDCs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrvcdcloudorganizationvdc.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Cloud Director Cloud Replication Job > Get-VBRvCDCloudOrganizationvDC" dateModified: "2026-08-19" --- # Get-VBRvCDCloudOrganizationvDC ## Short Description Returns organization VDCs. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns organization VDCs. ::: important This cmdlet is available for tenants only. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

CloudProvider

Specifies a cloud service provider. Veeam Backup & Replication will return the organization VDCs, managed by this cloud service provider.

Accepts the VBRCloudProvider[] object. To get this object, run the Get-VBRCloudProvider cmdlet.

VBRCloudProvider[]

False

Named

True (ByPropertyName, ByValue)

Id

Specifies an ID of organization VDCs that you want to get.

Guid[]

False

Named

False

Name

Specifies a name of organization VDCs that you want to get.

String[]

False

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). ## Output Object `VBRvCDCloudOrganizationvDC` ## Examples ::: example ### Example 1. Getting All Organization VCDs This command gets all organization VDCs. ``` Get-VBRvCDCloudOrganizationvDC ``` ::: ::: example ### Example 2. Getting Organization VCD by Name This command gets an organization VDC by the organization VDC name. ``` Get-VBRvCDCloudOrganizationvDC -Name "Organization VDC" ``` ::: ::: example ### Example 3. Getting Organization VCD by Name and Cloud Service Provider This example shows how to get an organization VDCs by specifying the name and the cloud service provider. ``` $provider = Get-VBRCloudProvider -Name "Organization VDC" Get-VBRvCDCloudOrganizationvDC -Name "Organization vDC" -CloudProvider $provider ``` Perform the following steps: 1. Run the [`Get-VBRCloudProvider`](get-vbrcloudprovider.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$provider` variable. 2. Run the `Get-VBRvCDCloudOrganizationvDC` cmdlet. Specify the `Name` parameter value. Set the `$provider` variable as the `CloudProvider` parameter value. ::: ## Related Commands [`Get-VBRCloudProvider`](get-vbrcloudprovider.md)