Get-VBRvCDCloudNetworkInfo

Short Description

Returns target VDC networks for replica mapping.

Applies to

Platform: VMware

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

Syntax

Get-VBRvCDCloudNetworkInfo [-Name <string>] [-Id <guid>] [-OrganizationvDC <VBRvCDCloudOrganizationvDC>]  [<CommonParameters>]

Detailed Description

This cmdlet returns target VDC networks for replica mapping.

Get-VBRvCDCloudNetworkInfo Important!

This cmdlet is available for tenants only.

Parameters

Parameter

Description

Type

Required

Position

Accept
Pipeline
Input

Name

Specifies a name of VDC network that you want to get.

String[]

False

Named

True (ByValue,
ByPropertyName)

Id

Specifies the IDs of Organizations VDCs that you want to get.

Guid[]

False

Named

True (ByValue,
ByPropertyName)

OrganizationvDC

Specifies an organization VDC. The cmdlet will return target VDC networks for the specified organization VDC.

Accepts the VBRvCDCloudOrganizationvDC object. To get this object, run the Get-VBRvCDCloudOrganizationvDC cmdlet.

False

Named

True (ByValue,
ByPropertyName)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

VBRvCDCloudNetworkInfo

Examples

Get-VBRvCDCloudNetworkInfoExample 1. Getting All VCD Target Networks

This command gets all VDC target networks.

Get-VBRvCDCloudNetworkInfo

Get-VBRvCDCloudNetworkInfoExample 2. Getting VCD Target Network for Selected Organization VDC

This example shows how to get a VDC target network for the particular organization VDC.

$vdc = Get-VBRvCDCloudOrganizationvDC -Name "vCDorg"

Get-VBRvCDCloudStoragePolicy -Name "Silver Policy" -OrganizationvDC $vdc

Perform the following steps:

  1. Run the Get-VBRvCDCloudOrganizationvDC cmdlet. Specify the Name parameter value. Save the result to the $vdc variable.
  2. Run the Get-VBRvCDCloudStoragePolicy cmdlet. Specify the Name parameter value. Set the $vdc variable as the OrganizationvDC parameter value.

Related Commands

Get-VBRvCDCloudOrganizationvDC