Set-VBRHvCloudReplicaJob
Short Description
Modifies a Hyper-V cloud replication job.
Platform: Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRHvCloudReplicaJob -Job <CBackupJob> [-Name <String>] [-Datastore <VBRCloudDatastore>] [-Entity <IHvItem[]>] [-Suffix <String>] [-Description <String>] [-SourceRepository <CBackupRepository[]>] [-BackupRepository <CBackupRepository>] [-EnableNetworkMapping] [-SourceNetwork <VBRHvServerNetworkInfo[]>] [-TargetNetwork <VBRCloudServerNetworkInfo[]>] [-UseWANAccelerator] [-SourceWANAccelerator <CWanAccelerator>] [-SourceProxy <CHvProxy[]>] [-EnableSeeding] [-RepositorySeed <CBackupRepository>] [-EnableVMMapping] [-OriginalVM <CHvVmItem[]>] [-ReplicaVM <COib[]>] [-Force] [-HighPriority] [<CommonParameters>] |
Detailed Description
This cmdlet modifies an existing Hyper-V cloud replication job. To modify settings, you need to specify new values for the necessary parameters. The parameters that you omit will remain unchanged.
Note |
|
Consider the following:
|
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
BackupRepository |
Specifies the backup repository which will be used to store replica metadata files. Default: default backup repository.
Accepts the |
|
False |
Named |
False |
|
Datastore |
Specifies the cloud disk volume to which you want to replicate.
Accepts the |
False |
Named |
False |
|
|
Description |
Specifies the description of the new job. |
|
False |
Named |
False |
|
EnableNetworkMapping |
Enables the network mapping option. Use the |
|
False |
Named |
False |
|
EnableSeeding |
Enables replica seeding option for the replication job. |
|
False |
Named |
False |
|
EnableVMMapping |
Enables replica mapping option for the replication job. |
|
False |
Named |
False |
|
Entity |
Specifies the array of VMs you want to replicate.
Accepts the |
|
False |
Named |
False |
|
Force |
Defines that the cmdlet will modify the cloud replication job even if the geographic location of the VMs added to the job and the target cloud host location do not match. |
|
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 replication job you want to modify.
Accepts the |
|
True |
Named |
True (ByPropertyName, ByValue) |
|
Name |
Specifies the string with the name of the created replication job. If not set, Veeam Backup & Replication will give the default job name. |
|
False |
Named |
False |
|
OriginalVM |
For replica mapping. Specifies the production VM you want to replicate using replica mapping. The replication job will map this VM to a selected replica VM on the DR site.
Use the
Accepts the |
|
False |
Named |
False |
|
ReplicaVM |
For replica mapping. Specifies the VM on the DR site you want to use as the replication target. The replication job will map the production VM to this VM.
Use the
Accepts the |
|
False |
Named |
False |
|
RepositorySeed |
For replica seeding. Specifies the backup repository on which a backup used as a seed for the replication job resides.
Accepts the |
|
False |
Named |
False |
|
SourceNetwork |
Used to set the source network for the Specifies the production network to which VMs added to the job are connected. Note: the number of the source and the target networks must be the same.
Accepts the |
False |
Named |
False |
|
|
SourceProxy |
Specifies the source proxy that will be used by the job. Default: Automatic selection.
Accepts the |
|
False |
Named |
False |
|
SourceRepository |
Used for building replica from backup files. Specifies the backup repository that will be used to read the VM data from the already existing backup chain. You cannot specify cloud repository.
Accepts the |
|
False |
Named |
False |
|
SourceWANAccelerator |
Specifies the WAN accelerator configured in the source site that will be used for data transfer. Note: you can set the source WAN accelerator only if the cloud provider has a target WAN accelerator configured.
Accepts the |
False |
Named |
False |
|
|
Suffix |
Specifies the suffix that will be appended to the name of the VM you are replicating. This name will be used to register the replicated VM on the target server.
If omitted, the replicated VMs will have the |
|
False |
Named |
False |
|
TargetNetwork |
Used to set the target network for the Specifies the network in the DR site to which VM replicas must be connected. Note: the number of the source and the target networks must be the same.
Accepts the |
False |
Named |
False |
|
|
UseWANAccelerator |
Defines that the data must be transferred via WAN accelerators.
Use the |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
CBackupJob
Examples
Changing Cloud Replica Job Settings
This example shows how to apply custom settings to a cloud replica job.
|
$job = Get-VBRJob -Name "Hv Cloud Replica Job" $vms = Find-VBRHvEntity -Name fileserver* $cloudServer = Get-VBRCloudServer -Name 104.45.95.227 $NewCloudDatastore = Get-VBRCloudDatastore -CloudServer $cloudServer -Name "KLMDatastore" Set-VBRHvCloudReplicaJob -Job $job -Entity $vms -Datastore $NewCloudDatastore |
Perform the following steps:
- Run the
Get-VBRJobReturns existing jobs. cmdlet. Specify theNameparameter value. Save the result to the$jobvariable. - Run the
Find-VBRHvEntityReturns Hyper-V objects. cmdlet. Specify theNameparameter value. Save the result to the$vmsvariable. - Run the
Get-VBRCloudServerReturns cloud hosts allocated by a service provider. cmdlet. Specify theNameparameter value. Save the server to the$cloudServervariable. - Run the
Get-VBRCloudDatastoreReturns datastores or disk volumes allocated to you under your cloud resources. cmdlet. Set the$cloudServervariable as theCloudServerparameter value. Specify theNameparameter value. Save the datastore to the$NewCloudDatastorevariable. - Run the
Set-VBRHvCloudReplicaJobcmdlet. Specify the following settings:- Set the
$jobvariable as theJobparameter value. - Set the
$vmsvariable as theEntityparameter value. - Set the
$NewCloudDatastorevariable as theDatastoreparameter value.
- Set the
Related Commands
Get-VBRJobReturns existing jobs.Get-VBRCloudServerReturns cloud hosts allocated by a service provider.Get-VBRCloudDatastoreReturns datastores or disk volumes allocated to you under your cloud resources.Find-VBRHvEntityReturns Hyper-V objects.Get-VBRBackupRepositoryReturns a list of backup repositories.Get-VBRHvServerNetworkInfoReturns virtual networks for a Hyper-V host.Get-VBRCloudServerNetworkInfoReturns networks available in your cloud resources.Get-VBRWANAcceleratorReturns WAN accelerators.Get-VBRHvProxyReturns a list of the Hyper-V backup proxies.Get-VBRLocationReturns geographic locations created in Veeam Backup & Replication.