Get-RDFPair

SYNOPSIS

Gets details of the RDF pairs on a PowerMax array.

SYNTAX

ByRDFGroup (Default)

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

ByVolumeId

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

ByStorageGroupId

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

DESCRIPTION

Returns a list of RDF pairs for a given RDF group ID on a PowerMax array. Provides the ability to query by volume ID or storage group ID for a given RDF group ID.

EXAMPLES

Example 1

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

Where $unisphere is a Unisphere server instance. Returns a list of all RDF pairs in the PowerMax array 000123456789 for RDF group 1.

Example 2

PS C:\> Get-RDFPair -Unisphere $unisphere -ArrayId 000123456789 -RDFGroup 1 -VolumeId 00AB1

Where $unisphere is a Unisphere server instance. Returns RDF pair for volume 00AB1 in the PowerMax array 000123456789 on RDF group 1.

Example 3

PS C:\> Get-RDFPair -Unisphere $unisphere -ArrayId 000123456789 -RDFGroup 1 -StorageGroupId SG-ABC

Where $unisphere is a Unisphere server instance. Returns a list of all RDF pairs for storage group SG-ABC in the PowerMax array 000123456789 for RDF group 1.

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: (All)
Aliases:

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

-VolumeId

Volume ID.

Type: String
Parameter Sets: ByVolumeId
Aliases:

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

-StorageGroupId

Storage group ID.

Type: String
Parameter Sets: ByStorageGroupId
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

Dell.PowerMax.Management.Model.UnisphereServer

System.String

System.Integer

OUTPUTS

Dell.PowerMax.Management.Model.RdfPair

NOTES