Get-RDFGroup

SYNOPSIS

Gets details of the RDF groups on a PowerMax array.

SYNTAX

All (Default)

Get-RDFGroup [-Unisphere] <UnisphereServer> [-ArrayId] <String> [-Identify] [<CommonParameters>]

ByRDFGroup

Get-RDFGroup [-Unisphere] <UnisphereServer> [-ArrayId] <String> [-RDFGroup] <Int32> [<CommonParameters>]

DESCRIPTION

Gets details of the RDF groups on a PowerMax array.

EXAMPLES

Example 1

PS C:\> Get-RDFGroup -Unisphere $unisphere -ArrayId 000123456789

Where $unisphere is a Unisphere server instance. Returns details of all RDF groups in the PowerMax array 000123456789.

Example 2

PS C:\> Get-RDFGroup -Unisphere $unisphere -ArrayId 000123456789 -Identify

Where $unisphere is a Unisphere server instance. Returns a list of all RDF groups in the PowerMax array 000123456789. Each object in the list contains the RDF group number and label.

Example 3

PS C:\> Get-RDFGroup -Unisphere $unisphere -ArrayId 000123456789 -RDFGroup 22

Where $unisphere is a Unisphere server instance. Returns details of RDF group 22 in the PowerMax array 000123456789.

PARAMETERS

-Unisphere

The Unisphere server instance.

Type: UnisphereServer
Parameter Sets: (All)
Aliases:

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

-ArrayId

The PowerMax array ID.

Type: String
Parameter Sets: (All)
Aliases:

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

-RDFGroup

RDF group ID.

Type: Int32
Parameter Sets: ByRDFGroup
Aliases:

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

-Identify

Returns IDs instead of objects.

Type: SwitchParameter
Parameter Sets: All
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

System.Integer

OUTPUTS

Dell.PowerMax.Management.Model.RdfGroupId

Dell.PowerMax.Management.Model.RDFGroup

NOTES