Get-RemoteSystem

SYNOPSIS

Gets details of the remote systems on a PowerStore cluster.

SYNTAX

All (Default)

Get-RemoteSystem [-Identify] [-Cluster] <Cluster> [<CommonParameters>]

ById

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

ByName

Get-RemoteSystem -Name <String[]> [-Cluster] <Cluster> [<CommonParameters>]

DESCRIPTION

Gets details of the remote systems on a PowerStore cluster. The options include listing all remote systems on the cluster, getting remote systems by ID or name.

EXAMPLES

Example 1

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

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

Example 2

PS C:\> Get-RemoteSystem -Cluster $cluster -Identify

Where $cluster is a PowerStore cluster instance. Returns a list of Identity objects with the ID and name of each remote system on the PowerStore cluster.

Example 3

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

Where $cluster is a PowerStore cluster instance. Returns remote systems with IDs id1 and id2 on the PowerStore cluster.

Example 4

PS C:\> Get-RemoteSystem -Cluster $cluster -Name name1,name2

Where $cluster is a PowerStore cluster instance. Returns remote systems 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 remote system 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 remote system 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.

INPUTS

Dell.PowerStore.Management.Model.Cluster

System.String[]

OUTPUTS

Dell.PowerStore.Management.Model.Identity

Dell.PowerStore.Management.Model.RemoteSystem

NOTES