Get-vRAReservationComputeResourceNetwork

SYNOPSIS

Get available networks for a compute resource

SYNTAX

Standard (Default)

Get-vRAReservationComputeResourceNetwork -Type <String> -ComputeResourceId <String>

ByName

Get-vRAReservationComputeResourceNetwork -Type <String> -ComputeResourceId <String> -Name <String[]>

DESCRIPTION

Get available network for a compute resource

EXAMPLES

-------------------------- EXAMPLE 1 --------------------------

# Retrieve associated compute resources for the desired reservation type in vRA 7.1

Get-vRAReservationComputeResource -Type 'vSphere' -Name 'Cluster01 (vCenter)' | Select-Object -ExpandProperty Id

Retrieve all associated compute resource networks for the desired reservation type in vRA 7.1

Get-vRAReservationComputeResourceNetwork -Type 'vSphere' -ComputeResourceId 0c0a6d46-4c37-4b82-b427-c47d026bf71d

-------------------------- EXAMPLE 2 --------------------------

# Retrieve associated compute resources for the desired reservation type in vRA 7.1

Get-vRAReservationComputeResource -Type 'vSphere' -Name 'Cluster01 (vCenter)' | Select-Object -ExpandProperty Id

Retrieve associated compute resource network for the desired reservation type in vRA 7.1

Get-vRAReservationComputeResourceNetwork -Type 'vSphere' -ComputeResourceId 0c0a6d46-4c37-4b82-b427-c47d026bf71d -Name VMNetwork

-------------------------- EXAMPLE 3 --------------------------

# Retrieve associated compute resources for the desired reservation type in vRA 7.2 and later

Get-vRAReservationComputeResource -Type 'vSphere (vCenter)' -Name 'Cluster01 (vCenter)' | Select-Object -ExpandProperty Id

Retrieve associated compute resource network for the desired reservation type in vRA 7.2 and later

Get-vRAReservationComputeResourceNetwork -Type 'vSphere (vCenter)' -ComputeResourceId 0c0a6d46-4c37-4b82-b427-c47d026bf71d -Name VMNetwork

PARAMETERS

-Type

The reservation type Valid types vRA 7.1 and earlier: Amazon, Hyper-V, KVM, OpenStack, SCVMM, vCloud Air, vCloud Director, vSphere, XenServer Valid types vRA 7.2 and later: Amazon EC2, Azure, Hyper-V (SCVMM), Hyper-V (Standalone), KVM (RHEV), OpenStack, vCloud Air, vCloud Director, vSphere (vCenter), XenServer

Type: String
Parameter Sets: (All)
Aliases: 

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ComputeResourceId

The id of the compute resource

Type: String
Parameter Sets: (All)
Aliases: 

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Name

The name of the network

Type: String[]
Parameter Sets: ByName
Aliases: 

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

INPUTS

System.String

OUTPUTS

System.Management.Automation.PSObject

NOTES