Get-EmcStandbyLun

Gets the list of available standby LUNs on VMAX storage systems.

 

Syntax

Get-EmcStandbyLun [[-ID] <String>] -StorageSystem <IVmaxStorageSystem2> [-Silent] [<CommonParameters>]

 

Parameters

-ID <String>

Attributes: Optional, Position: 1

Optional ID of the standby LUN to get. If omitted will return all available standby LUNs. Wildcards are permitted. It is a positional parameter (position = 1).

 

-StorageSystem <IVmaxStorageSystem2>

Attributes: Optional, Position: named

Specifies the ESI VMAX Storage System object, which you can add to ESI by using the Get-EmcStorageSystemCredential and Connect-EmcSystem cmdlets. You can get a VMAX storage system object by using the Get-EmcStorageSystem 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>Get-EmcStandbyLun

This example gets the available standby LUNs from all the connected VMAX storage systems.

 

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

C:\PS>$s = Get-EmcStorageSystem -SystemType vmax

C:\PS>$s | Get-EmcStandbyLun

This example gets the available standby LUNs from the specified VMAX storage systems.