Add-EmcFastVpPolicy

Adds or associates the specified storage group to the specified FAST VP policy.

 

Syntax

Add-EmcFastVpPolicy -VmaxStorageGroups <VmaxStorageGroup[]> -VmaxFastVpPolicy <VmaxFastVpPolicy> [-Silent] [<CommonParameters>]

 

Parameters

-VmaxStorageGroups <VmaxStorageGroup>

Attributes: Required, Position: named

Specifies the ESI VMAX storage group object. You can get a VMAX storage group object with the ESI storage system object or Get-EmcVmaxStorageGroup cmdlet.

 

-VmaxFastVpPolicy <VmaxFastVpPolicy>

Attributes: Required, Position: named

Specifies the ESI FAST VP policy system object. You can get the FAST VP policy system object with the Get-EmcFastVpPolicy 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>$storage = Get-EmcStorageSystem vmax348

C:\PS>$storagegroup = Get-EmcVmaxStorageGroup *test_SG* -StorageSystem $storage

C:\PS>$fvp = Get-EmcFastVpPolicy -StorageSystem $storage

C:\PS>Add-EmcFastVpPolicy -VmaxStorageGroups $storagegroup -VmaxFastVpPolicy $fvp

This example gets the specified storage group from the specified storage system and the FAST VP policy for that storage system, and then adds that FAST VP Policy to that storage group.