Get-EdgeGateway
This cmdlet retrieves organization virtual datacenter's (vDCs) edge gateways. You can filter the returned objects by using the cmdlet parameters.
Syntax
Parameters
Required | Parameter Name | Type | Position | Features | Description |
---|---|---|---|---|---|
optional |
|
String[] | named |
|
Specifies the names of the edge gateway you want to retrieve. | optional |
|
OrgVdc[] | named |
|
Specifies the organizations virtual datacenter (VDC) for which you want to retrieve edge gateways. | optional |
|
CIServer[] | named |
|
Specifies the cloud servers on which you want to run the cmdlet. If no value is given to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-CIServer. |
Parameters
Required | Parameter Name | Type | Position | Features | Description |
---|---|---|---|---|---|
required |
|
String[] | named |
|
Specifies the IDs of the edge gateway you want to retrieve. | optional |
|
CIServer[] | named |
|
Specifies the cloud servers on which you want to run the cmdlet. If no value is given to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-CIServer. |
Output
VMware.VimAutomation.Cloud.Types.V1.EdgeGateway
Examples
Example 1
Get-EdgeGateway
Gets the cloud edge gateways available to you.
Example 2
Get-EdgeGateway -Name Edge*
Gets the edge gateways with names starting with the specified string.
Example 3
Get-EdgeGateway -ID EdgeGatewayId
Gets the edge gateway with the provided Id.
Example 4
Get-EdgeGateway -OrgVdc OrgVdc1
Retrieves all edge gateways for the specified organization virtual datacenter (VDC).
Example 5
Get-OrgVdc OrgVdc1 | Get-EdgeGateway
Retrieves the edge gateways for an organization virtual datacenter (VDC).