Creates a new consistency group, which is a group of one or more replica sets.
Syntax
New-EmcConsistencyGroup -ReplicationServiceCluster <ReplicationServiceCluster> -Name <String> [-Silent] [<CommonParameters>]
Parameters
-ReplicationServiceCluster <ReplicationServiceCluster>
Attributes: Required, Position: named
Specifies the replication cluster from which to create the consistency group.
-Name <String>
Attributes: Required, Position: named
Specifies the name of the consistency group.
-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>$service = Get-EmcReplicationService -ID *60*
$cluster = Get-EmcReplicationServiceCluster -ReplicationService $service
$group = New-EmcConsistencyGroup -ReplicationServiceCluster $cluster -Name "RP_PS_TEST"
This example creates a new consistency group.