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

Get-VBRvCDCloudVM

Short Description

Returns cloud VMs from organization VDCs.

Applies to

Platform: VMware

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

This cmdlet provides the following parameter sets.

  • To get a cloud VM by the name.

Get-VBRvCDCloudVM -OrganizationvDC <VBRvCDCloudOrganizationvDC> [-Name <string[]>]  [<CommonParameters>]

  • To get a cloud VM by ID.

Get-VBRvCDCloudVM -OrganizationvDC <VBRvCDCloudOrganizationvDC> [-Id <string[]>]  [<CommonParameters>]

Detailed Description

This cmdlet returns cloud VMs from organization VDCs. The tenant will use this VM to set up mapping.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

OrganizationvDC

Specifies an organization VDC. The cmdlet will return VMs from the specified  organization VDC.

True

Named

False

False

Name

Specifies an array of names. The cmdlet will return VMs with these names.

False

Named

False

False

Id

Specifies an array of IDs. The cmdlet will return VMs with these IDs.

False

Named

False

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

This example shows how to get all VMs from the specific organization VDC.

  1. Run Get-VBRvCDCloudOrganizationvDC with the Name parameter. Save the result to the $vdc variable.
  2. Run Get-VBRvCDCloudVM with the $vdc parameter.

$vdc = Get-VBRvCDCloudOrganizationvDC -Name "Cloud Organization 01"

Get-VBRvCDCloudVM -OrganizationvDC $vdc

Related Commands

Get-VBRvCDCloudOrganizationvDC