Get-Node

SYNOPSIS

Gets details of the nodes on a PowerStore cluster.

SYNTAX

Get-Node [-Cluster] <Cluster> [[-Id] <String[]>] [<CommonParameters>]

DESCRIPTION

Gets details of the nodes on a PowerStore cluster. The options include listing all nodes on the cluster, getting nodes by ID.

EXAMPLES

Example 1

PS C:\> Get-Node -Cluster $cluster

Where $cluster is a PowerStore cluster instance. Returns a list of all nodes on the PowerStore cluster.

Example 2

PS C:\> Get-Node -Cluster $cluster -Id id1,id2

Where $cluster is a PowerStore cluster instance. Returns nodes with IDs id1 and id2 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

-Id

The node ID.

Type: String[]
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
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.

INPUTS

Dell.PowerStore.Management.Model.Cluster

System.String[]

OUTPUTS

Dell.PowerStore.Management.Model.Node

NOTES