This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBRvCDCloudOrganizationvDC

Short Description

Returns Organization vDCs.

Applies to

Platform: VMware

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

Get-VBRvCDCloudOrganizationvDC [-Name <string>] [-Id <guid>] [-CloudProvider <VBRCloudProvider[]>][<CommonParameters>]

Detailed Description

This cmdlet returns Organization vDCs.

Get-VBRvCDCloudOrganizationvDC Important!

This cmdlet is available for tenants only.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Name

Specifies a name of Organization vDCs that you want to get.

False

Named

True (ByValue,
ByPropertyName)

False

Id

Specifies an ID of Organization vDCs that you want to get.

False

Named

True (ByValue,
ByPropertyName)

False

CloudProvider

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

Accepts the VBRCloudProvider type.

False

Named

True (ByValue,
ByPropertyName)

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Return Type

Example 1

This command gets all Organization vDCs.

Get-VBRvCDCloudOrganizationvDC

Example 2

This command gets an Organization vDC by the Organization vDC name.

Get-VBRvCDCloudOrganizationvDC -Name "Organization vDC"

Example 3

This example shows how to get an Organization vDCs by specifying the name and the cloud service provider.

  1. Run Get-VBRCloudProvider with the Name parameter to get the necessary cloud provider. Save the result to the $provider variable.
  2. Run Get-VBRvCDCloudOrganizationvDC with the $provider varilable.

$provider = Get-VBRCloudProvider -Name "Organization vDC"

Get-VBRvCDCloudOrganizationvDC -Name "Organization vDC" -CloudProvider $provider

Related Commands

Get-VBRCloudProvider