Get-Network
SYNOPSIS
Gets details of the networks on a PowerStore cluster.
SYNTAX
All (Default)
Get-Network [-Cluster] <Cluster> [-Identify] [<CommonParameters>]
ById
Get-Network [-Cluster] <Cluster> -Id <String[]> [<CommonParameters>]
ByName
Get-Network [-Cluster] <Cluster> -Name <String[]> [<CommonParameters>]
DESCRIPTION
Gets details of the networks on a PowerStore cluster. The options include listing all networks on the cluster, getting networks by ID or name.
EXAMPLES
Example 1
PS C:\> Get-Network -Cluster $cluster
Where $cluster is a PowerStore cluster instance. Returns a list of all networks on the PowerStore cluster.
Example 2
PS C:\> Get-Network -Cluster $cluster -Identify
Where $cluster is a PowerStore cluster instance. Returns a list of Identity objects with the ID and name of each network on the PowerStore cluster.
Example 3
PS C:\> Get-Network -Cluster $cluster -Id id1,id2
Where $cluster is a PowerStore cluster instance. Returns networks with IDs id1 and id2 on the PowerStore cluster.
Example 4
PS C:\> Get-Network -Cluster $cluster -Name name1,name2
Where $cluster is a PowerStore cluster instance. Returns networks with names name1 and name2 on the PowerStore cluster.
PARAMETERS
-Cluster
The PowerStore cluster instance.
Type: Cluster
Parameter Sets: (All)
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
-Identify
Returns Identity objects which contain the ID and name properties of each entity.
Type: SwitchParameter
Parameter Sets: All
Aliases: List
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Id
The network ID.
Type: String[]
Parameter Sets: ById
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
-Name
The network name.
Type: String[]
Parameter Sets: ByName
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.