New-DPMPGSet
创建 DPM 保护组集。
语法
New-DPMPGSet
[[-DPMServerName] <String>]
[-AllowDifferentRetentionPeriods]
[-Name] <String>
[[-PGList] <ProtectionGroup[]>]
[[-WritePeriodUnit] <TimeUnit>]
[[-WritePeriodValue] <UInt32>]
[[-ExpiryToleranceUnit] <TimeUnit>]
[[-ExpiryToleranceValue] <UInt32>]
[<CommonParameters>]
说明
New-DPMPGSet cmdlet 创建 System Center - Data Protection Manager (DPM) 保护组集。 DPM 保护组是在同一磁带上并置的保护组的集合。
示例
示例 1:创建保护组集
PS C:\>$PGroups = Get-DPMProtectionGroup -DPMServerName "DPMServer07" | where {($_.friendlyname) -match "PG1" -or ($_.friendlyname) -match "PG2"}
PS C:\> New-DPMPGSet -Name "PGSET2" -PGList $PGroups
第一个命令使用 Get-DPMProtectionGroup cmdlet 获取包含 PG1 或 PG2 的名称的保护组,然后将其存储在$PGroups变量中。
第二个命令创建名为 PGSET2 的保护集,其中包含存储在$PGroups中的保护组。
参数
-AllowDifferentRetentionPeriods
指示具有不同保留期的保护组可以是同一保护组集的一部分。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DPMServerName
指定此 cmdlet 对其执行操作的 DPM 服务器的名称。
类型: | String |
Position: | 1 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ExpiryToleranceUnit
指定到期容差的度量单位。
此参数的可接受值为:
- 日
- 周
- 月
- 年
类型: | TimeUnit |
接受的值: | Invalid, Day, Week, Month, Year |
Position: | 6 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ExpiryToleranceValue
指定在 DPM 将磁带标记为过期之前,过期恢复点保留在磁带上的最大时间长度。
类型: | UInt32 |
Position: | 7 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定保护组集的名称。
类型: | String |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-PGList
指定要添加到保护组集的保护组数组。 若要获取 ProtectionGroup 对象,请使用 Get-DPMProtectionGroup cmdlet。
类型: | ProtectionGroup[] |
Position: | 3 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-WritePeriodUnit
指定写入周期的度量单位。
此参数的可接受值为:
- 日
- 周
- 月
- 年
类型: | TimeUnit |
接受的值: | Invalid, Day, Week, Month, Year |
Position: | 4 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-WritePeriodValue
指定磁带可用于写入新备份的时间长度。 DPM 将此间隔后磁带标记为“异地就绪”。
类型: | UInt32 |
Position: | 5 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |