Gets all the LUNs which are qualified to be a member LUN of the specified meta, meta volume, or composite LUN. If the specified Meta LUN is a stripe type, this cmdlet gets the unbound LUNs of the size same as the stripe size of the meta. If the meta is a concatenated meta or composite LUN, the cmdlet gets all unbound LUNs that are qualified to be a member LUN of the specified meta.
Syntax
Get-EmcAvailableCandidatesForLunComposition [-ID <String>] -Lun <Lun> [-Silent] [<CommonParameters>]
Parameters
-ID <String>
Attributes: Optional, Position: 1
Specifies the LUN name or LUN ID. Wildcards are permitted.
-Lun <Lun[]>
Attributes: Required, Position: named
Specifies the ESI LUN object. You can get a LUN object with the ESI Storage System object or Get-EmcLun cmdlet. You can get unbound LUNs with the Get-EmcUnboundLun cmdlet.
-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>$lun = Get-EmcLun -ID 14
C:\PS>$candidates= Get-EmcAvailableCandidatesForLunComposition $lun
This example gets the available candidates for the meta or LUN composition on the storage system based on the specified LUN.