Get-EmcCompositeLunMemberSibling

Gets the meta or composite LUN member siblings of the specified composite LUN member.

 

Syntax

Get-EmcCompositeLunMemberSibling [-ID <String>] -CompositeLunMember <Lun> [-CompositionConfiguration <CompositionConfiguration>] [-Silent] [<CommonParameters>]

 

Parameters

-ID <String>

Attributes: Optional, Position: 1

Specifies the LUN name or LUN ID. Wildcards are permitted.

 

-CompositeLunMember <Lun>

Attributes: Required, Position: named

Specifies the LUN object. You can get the LUN object with the Get-EmcCompositeLunMember cmdlet.

 

-CompositionConfiguration <CompositionConfiguration>

Attributes: Optional, Position: named

Specifies the composite configuration object, which can be either striped, concatenated, or both.

 

-Silent <SwitchParameter>

Attributes: Optional, Position: named

Turns off all the informational and verbose messages. However, it still displays errors.

 

<CommonParameters>

This cmdlet supports these common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, and OutVariable. Type get-help about_commonparameters for more details.

 

Examples

-------------- Example 1 --------------

C:\PS>Getting storage system

$storage= Get-EmcStorageSystem *480

C:\PS>$compositelunhead= Get-EmcCompositeLunHead -StorageSystem $storage -ID 14

C:\PS>$compositelunmember= Get-EmcCompositeLunMember -CompositeLunHead $compositelunhead

C:\PS>$sibling = Get-EmcCompositeLunMemberSibling -CompositeLunMember $compositelunmember

This example gets the composite LUN member sibling or siblings for the specified composite LUN member of the specified storage system.