Gets one or more meta or composite LUN members of the specified composite LUN head.
Syntax
Get-EmcCompositeLunMember [-ID <String>] -CompositeLunHead <Lun> [-ExcludeCompositeHead] [-CompositionConfiguration <CompositionConfiguration>] [-Silent] [<CommonParameters>]
Parameters
-ID <String>
Attributes: Optional, Position: 1
Specifies the LUN name or LUN ID. Wildcards are permitted.
-StorageSystem <IStorageSystem>
Attributes: Required, Position: named
Specifies the storage system object. You can add the storage system object to ESI with the Get-EmcStorageSystemCredential and Connect-EmcSystem cmdlets. You can get the storage system object with the Get-EmcStorageSystem cmdlet.
-CompositeLunHead <Lun>
Attributes: Required, Position: named
Specifies the ESI LUN object. You can get the LUN object with the Get-EmcCompositeLunHead cmdlet.
-ExcludeCompositeHead <SwitchParameter>
Attributes: Optional, Position: named
Excludes the specified composite LUN head.
-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
Gets the composite LUN member or members from the specified meta or composite LUN head for the specified storage system.