Set-VBRvCDReplicaJob
Short Description
Modifies Cloud Director replication jobs.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRvCDReplicaJob -Job <VBRvCDReplicaJob> [-SourceObject <IVcdItem[]>] [-Name <String>] [-Description <String>] [-ExcludedObject <IVcdItem[]>] [-EnableNetworkMapping] [-SourceNetwork <VBRvCDOrgVdcNetworkInfo[]>] [-TargetNetwork <VBRvCDOrgVdcNetworkInfo[]>] [-MetadataRepository <CBackupRepository>] [-Suffix <String>] [-RestorePointsToKeep <Int32>] [-EnableInitialSeeding] [-RepositorySeed <CBackupRepository>] [-EnableReplicaMapping] [-OriginalVApp <CVcdVappItem[]>] [-ReplicaVApp <CVcdVappItem[]>] [-EnableGuestProcessing] [-GuestProcessingOptions <VBRReplicaApplicationProcessingOptions>] [-SourceProxy <CViProxy[]>] [-TargetProxy <CViProxy[]>] [-EnableWanAccelerators] [-SourceWanAccelerator <CWanAccelerator>] [-TargetWanAccelerator <CWanAccelerator>] [-EnableScheduleOptions] [-ScheduleOptions <VBRServerScheduleOptions>] [-CompressionLevel <VBRCompressionLevel>] [-NotificationOptions <VBRNotificationOptions>] [-HighPriority] [<CommonParameters>] |
Detailed Description
Modifies Cloud Director replication jobs.
Note |
|
To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. |
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
CompressionLevel |
Specifies the compression level of the replicated data:
Default: |
|
False |
Named |
False |
|
Description |
Specifies the description that you want to assign to assign to the VDC replication job. |
|
False |
Named |
False |
|
EnableGuestProcessing |
Enables guest processing options. |
|
False |
Named |
False |
|
EnableInitialSeeding |
Enables replica seeding. |
|
False |
Named |
False |
|
EnableNetworkMapping |
Enables network mapping. |
|
False |
Named |
False |
|
EnableReplicaMapping |
Enables replica mapping. |
|
False |
Named |
False |
|
EnableScheduleOptions |
Enables schedule for a VDC replication job. |
|
False |
Named |
False |
|
EnableWanAccelerators |
Enables the WAN accelerator option. |
|
False |
Named |
False |
|
ExcludedObject |
Specifies an array of VM containers that you want to exclude from the VDC replication job. You can exclude the following types of Cloud Director source objects:
Accepts the |
|
False |
Named |
False |
|
GuestProcessingOptions |
Specifies guest processing options of a VDC replication job.
Accepts the |
|
False |
Named |
False |
|
HighPriority |
Defines that Veeam Backup & Replication will prioritize this job higher than other similar jobs and will allocate resources to it in the first place. |
|
False |
Named |
False |
|
Job |
Specifies the Cloud Director replication jobs that you want to modify.
Accepts the |
|
True |
Named |
True (ByValue) |
|
MetadataRepository |
Specifies a backup repository that will store metadata for VDC replicas.
Accepts the |
|
False |
Named |
False |
|
Name |
Specifies the name that you want to assign to the VDC replication job. |
|
False |
Named |
False |
|
NotificationOptions |
Specifies notification options of a VDC replication job.
Accepts the |
False |
Named |
False |
|
|
OriginalVApp |
For replica mapping. Specifies a production vApp that you want to replicate using replica mapping. The VDC replication job will map this vApp to the vApp on the disaster recovery site.
Use the
Accepts the |
|
False |
Named |
False |
|
ReplicaVApp |
For replica mapping. Specifies a vApp on the disaster recovery site. The cmdlet will map the production vApp to this vApp, and the VDC replication job will replicate data to this vApp.
Use the
Accepts the |
|
False |
Named |
False |
|
RepositorySeed |
For replica seeding. Specifies the backup repository that keeps a full backup of a VM that you want to replicate.
Accepts the |
|
False |
Named |
False |
|
RestorePointsToKeep |
Specifies a number of restore points you want to keep for of VDC replicas.
Permitted values:
Default: |
|
False |
Named |
False |
|
ScheduleOptions |
Specifies a schedule for a VDC replication job.
Accepts the |
|
False |
Named |
False |
|
SourceNetwork |
For the network mapping option. Specifies an array of the production networks, to which the VMs in the job are connected. Note: The number of the source and the target networks must be the same.
Accepts the |
|
False |
Named |
False |
|
SourceObject |
Specifies an array of vApps that you want to replicate.
Accepts the |
|
False |
Named |
False |
|
SourceProxy |
Specifies an array of the source proxies. The cmdlet will assign these proxies to the VDC replication job. Default: Automatic selection.
Accepts the |
|
False |
Named |
False |
|
SourceWanAccelerator |
Specifies the WAN accelerator configured in the source site. The cmdlet will use this WAN accelerator data transfer. Default: Not set.
Accepts the |
False |
Named |
False |
|
|
Suffix |
Specifies the suffix that the cmdlet will add to the name of VDC replicas. Default: "_replica". |
|
False |
Named |
False |
|
TargetNetwork |
For the network mapping option. Specifies the network in the Disaster Recovery site. The replicated VMs will be connected to these networks. Note: The number of the source and the target networks must be the same.
Accepts the |
|
False |
Named |
False |
|
TargetProxy |
Specifies an array of the target proxies. The cmdlet will assign these proxies to the VDC replication job. Default: Automatic selection.
Accepts the |
|
False |
Named |
False |
|
TargetWanAccelerator |
Specifies the WAN accelerator configured in the target site. The cmdlet will use this WAN accelerator data transfer. Default: Not set.
Accepts the |
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRvCDReplicaJob object that defines settings of the VDC replication jobs.
Examples
Modifying VDC Replicas Metadata Repository
This example shows how to assign the Repository08 metadata repository to the Win20049 VDC replication job.
|
$job = Get-VBRvCDReplicaJob -Name "Win20049" $repository = Get-VBRBackupRepository -Name "Repository08" Set-VBRvCDReplicaJob -Job $job -MetadataRepository $repository |
Perform the following steps:
- Run the
Get-VBRvCDReplicaJobReturns Cloud Director replication jobs. cmdlet. Specify theNameparameter value. Save the result to the$jobvariable. - Run the
Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Specify theNameparameter value. Save the result to the$repositoryvariable. - Run the
Set-VBRvCDReplicaJobcmdlet. Set the$jobvariable as theJobparameter value. Set the$repositoryvariable as theMetadataRepositoryparameter value.
Related Commands
Get-VBRvCDReplicaJobReturns Cloud Director replication jobs.Get-VBRBackupRepositoryReturns a list of backup repositories.Get-VBRWANAcceleratorReturns WAN accelerators.