Get-Appliance

SYNOPSIS

Gets details of the appliances in a PowerStore cluster.

SYNTAX

All (Default)

Get-Appliance [-Cluster] <Cluster> [<CommonParameters>]

ByName

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

ById

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

DESCRIPTION

Returns details of an appliance which includes Id, name, and service tag information.

EXAMPLES

Example 1

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

Where $cluster is a PowerStore cluster. Returns all appliances in the cluster.

Example 2

PS C:\> Get-Appliance -Cluster $cluster -Name appl1,appl2

Where $cluster is a PowerStore cluster. Returns details of the appliances named appl1 and appl2.

Example 3

PS C:\> Get-Appliance -Cluster $cluster -Id A1,A2

Where $cluster is a PowerStore cluster. Returns details of the appliances with Ids A1, and A2.

PARAMETERS

-Cluster

The PowerStore cluster instance.

Type: Cluster
Parameter Sets: All, ByName, ById
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Name

Appliance name.

Type: String[]
Parameter Sets: ByName
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Id

Appliance Id.

Type: String[]
Parameter Sets: ById
Aliases:

Required: True
Position: Named
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

System.String[]

OUTPUTS

Dell.PowerStore.Management.Model.Appliance

NOTES