Get-PowerMaxArray

SYNOPSIS

Gets details of the PowerMax arrays on a Unisphere server.

SYNTAX

ByUnisphere (Default)

Get-PowerMaxArray [-Unisphere] <UnisphereServer> [-Identify] [<CommonParameters>]

ById

Get-PowerMaxArray [-Unisphere] <UnisphereServer> [-Id] <String[]> [<CommonParameters>]

DESCRIPTION

Returns details of PowerMax arrays.

EXAMPLES

Example 1

PS C:\> Get-PowerMaxArray -Unisphere $unisphere

Where $unisphere is a Unisphere server instance. Returns details of the PowerMax arrays in the Unisphere server.

Example 2

PS C:\> Get-PowerMaxArray -Unisphere $unisphere -Identify

Where $unisphere is a Unisphere server instance. Returns a list of all PowerMax array IDs in the Unisphere server.

Example 3

PS C:\> Get-PowerMaxArray -Unisphere $unisphere -Id "000123456789","000123456790"

Where $unisphere is a Unisphere server instance. Returns details of the PowerMax arrays with IDs 000123456789 and 000123456790 (using quotes in case there is leading zero in the IDs).

PARAMETERS

-Unisphere

The Unisphere server object.

Type: UnisphereServer
Parameter Sets: (All)
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False

-Id

PowerMax array ID.

Type: String[]
Parameter Sets: ById
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False

-Identify

Returns IDs instead of objects.

Type: SwitchParameter
Parameter Sets: ByUnisphere
Aliases: List

Required: False
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.PowerMax.Management.Model.UnisphereServer

System.String[]

OUTPUTS

System.String

Dell.PowerMax.Management.Model.PowerMaxArray

NOTES