Get-EmcCompositeLun

Gets all composite LUNs from the specified storage system.

 

Syntax

Get-EmcCompositeLun [-ID <String>] -StorageSystem <IStorageSystem> [-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.

 

-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>$compositeluns= Get-EmcCompositeLun -StorageSystem $storage

This example gets all composite LUNs from the specified storage system.

 

---------- Example 2 ----------

C:\PS>Getting storage system.

$storage= Get-EmcStorageSystem *480

C:\PS>$compositeluns= Get-EmcCompositeLun -StorageSystem $storage -CompositeConfiguration ConcatenateOnly

This example gets all composite LUNs from the specified storage system for which you can apply a filter, such as: ConcatenateOnly, StripeOnly, or ConcatenateAndStripe.