Lists private networks.
Get-CivoNetwork [[-Id] <String[]>] [[-Label] <String[]>] [<CommonParameters>]
Lists all private networks, as well as filtered by ID and label.
Get-CivoNetwork
Get-CivoNetwork -Id 1e644b7c-80e5-412b-a26b-a1e0e6215ced
$Networks =(
"1e644b7c-80e5-412b-a26b-a1e0e6215ced",
"393197c5-f409-499d-8958-601e33922c08"
)
Get-CivoNetwork -Id $Networks
Get-CivoNetwork -Label "prod-*"
$Networks =(
"prod-client01",
"prod-client02"
)
Get-CivoNetwork -Label $Networks
Type: String[]
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Type: String[]
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
https://roberthstrand.github.io/civoShell/Get-CivoNetwork.md