Creates a RecoverPoint bookmark for the specified consistency group.
Syntax
New-EmcBookmark
-ConsistencyGroup <ConsistencyGroup> -Name <String>
-ConsolidationPolicy <ConsolidationPolicy> -ConsistencyType
<ConsistencyType> [-Silent]
[<CommonParameters>]
Parameters
-ConsistencyGroup <ConsistencyGroup>
Attributes: Required, Position: named
Specifies the consistency group for the bookmark.
-Name <String>
Attributes: Required, Position: named
Specifies the name of the bookmark.
-ConsolidationPolicy <ConsolidationPolicy>
Attributes: Required, Position: named
Specifies the consolidation policy for the bookmark. The available options are: AlwaysConsolidate, SurviveDaily, SurviveWeekly, SurviveMonthly, and NeverConsolidate.
-ConsistencyType <ConsistencyType>
Attributes: Required, Position: named
Specifies the consistency type for the bookmark, which can be ConsistencyUnknown or ApplicationConsistent.
-Silent <SwitchParameter>
Attributes: Optional, Position: named
Turns off all 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.
Example
C:\PS>$service = Get-EmcReplicationService -ID *60*
$cluster = Get-EmcReplicationServiceCluster -ReplicationService $service
$group = Get-EmcConsistencyGroup -ReplicationServiceCluster $cluster -ID RP_PS_TEST
New-EmcBookmark -ConsistencyGroup $group -Name "RP_PS_TEST_BM" -ConsolidationPolicy AlwaysConsolidate -ConsistencyType ConsistencyUnknown
Creates a bookmark for the specified consistency group with the specified consolidation policy and consistency type.