Get-EmcStorageTier

Gets the storage tiers for the specified storage system or the specified FAST VP policy.

 

Syntax

 

Parameters

-ID <String>

Attributes: Optional, Position: 1

Specifies the storage tier ID. Wildcards are permitted. It is a positional parameter (position = 1).

 

-StorageSystem <IStorageSystem>

Attributes: Optional, Position: named

Specifies the ESI 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.

 

-Silent <SwitchParameter>

Attributes: Optional, Position: named

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

 

-VmaxFastVpPolicy <VmaxFastVpPolicy>

Attributes: Optional, Position: named

Specifies the ESI VMAX FAST VP policy system object. You can get the FAST VP policy system object with the Get-EmcFastVpPolicy cmdlet.

 

<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 vmax348

C:\PS>Get-EmcStoragetier -VmaxStorageSystem $storage

This example gets the storage tiers from the specified VMAX storage system.

 

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

C:\PS>Getting storage system

$storage = Get-EmcStorageSystem vmax348

$policy=Get-EmcFastVpPolicy -ID p1 -StorageSystem $storage

C:\PS>Get-EmcStorageTier -VmaxFastVpPolicy $policy

This example gets the storage tiers for the specified storage system and FAST VP policy.

 

---------- Example 3 ----------

C:\PS>Get-EmcStorageTier

This example gets the storage tiers from all connected storage systems.