Add-VBRvCDCloudReplicaJob
Short Description
Creates Cloud Director cloud replication jobs.
Platform: VMware
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Add-VBRvCDCloudReplicaJob [-Name <String>] [-Description <String>] -Entity <IViItem[]> -OrganizationvDC <VBRvCDCloudOrganizationvDC> [-vApp <VBRvCDCloudvApp>] -StoragePolicy <VBRvCDCloudStoragePolicy> [-Suffix <String>] [-BackupRepository <CBackupRepository>] [-SourceRepository <CBackupRepository[]>] [-EnableNetworkMapping] [-SourceNetwork <VBRViNetworkInfo[]>] [-TargetNetwork <VBRvCDCloudNetworkInfo[]>] [-SourceProxy <CViProxy[]>] [-SourceWANAccelerator <CWanAccelerator>] [-DiskType <EDiskCreationMode>] [-RepositorySeed <CBackupRepository>] [-OriginalVM <CViVmItem[]>] [-ReplicaVM <VBRvCDCloudVM[]>] [-Force] [-HighPriority] [<CommonParameters>] |
Detailed Description
This cmdlet creates Cloud Director cloud replication jobs. Only the tenant can create Cloud Director cloud replication jobs.
Note |
|
To allow the tenant to create Cloud Director cloud replication jobs, the Service provider must configure the infrastructure in VMware Cloud Director. It includes the following elements:
|
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
BackupRepository |
Specifies the user backup repository that will be used to store replica metadata files. If not set, the default backup repository will be used.
Accepts the |
|
False |
Named |
False |
|
Description |
Specifies the description that you want to assign to the cloud replication job. |
|
False |
Named |
False |
|
DiskType |
Specifies the format that will be used to restore replica disk files:
Default: |
|
False |
Named |
False |
|
EnableNetworkMapping |
Enables network mapping. Use the following parameters to set the network mapping rules:
|
|
False |
Named |
False |
|
Entity |
Specifies the array of VMs.The cmdlet will add the selected VMs to the Cloud Director replication job.
Accepts the |
|
True |
Named |
True (ByValue) |
|
Force |
Defines that the cmdlet will create a 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 |
|
Name |
Specifies the name that you want to assign to the cloud replication job. |
|
False |
Named |
False |
|
OrganizationvDC |
Specifies the cloud organization VDC. The job will store the replicas on the selected organization VDC.
Accepts the |
|
True |
Named |
False |
|
OriginalVM |
For replica mapping. Specifies an array of production VMs that you want to replicate using replica mapping. The replication job will map these VMs to selected replica VMs on the Disaster Recovery site.
Use the
Accepts the |
|
False |
Named |
False |
|
ReplicaVM |
For replica mapping. Specifies an array of VMs on the Disaster Recovery site that you want to use as the replication target. The replication job will map the production VMs to these VMs.
Use the
Accepts the |
|
False |
Named |
False |
|
RepositorySeed |
For replica seeding. Specifies the backup repository where the seed (the full backup) resides.
Accepts the |
|
False |
Named |
False |
|
SourceNetwork |
For the network mapping option. Specifies the 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 |
|
|
SourceProxy |
Specifies the source proxy that will be used by the job. Default: Automatic selection
Accepts the |
|
False |
Named |
False |
|
SourceRepository |
Used for building a replica from backup files. Specifies the backup repository that will be used to read the VM data from the already existing backup chain. Note: You cannot specify a 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 |
|
|
StoragePolicy |
Specifies the Cloud Director cloud storage policy. The job will create replicas per the policy settings.
Accepts the |
|
True |
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 |
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 |
|
vApp |
Specifies the vApp container. The job will store the replicas on the selected vApp. Note: if you do not specify the vApp container, the job will store the replicas on the default vApp.
Accepts 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
Creating Cloud Director Cloud Replication Job
This example shows how to create a Cloud Director cloud replication job.
|
$vm = Find-VBRViEntity -Name "vCD VM" $vdc = Get-VBRvCDCloudOrganizationvDC -Name "Cloud Organization" $vApp = Get-VBRvCDCloudvApp -OrganizationvDC $vdc $policy = Get-VBRvCDCloudStoragePolicy -Name "Silver Policy" Add-VBRvCDCloudReplicaJob -Name "ReplicaJob" -Entity $vm -OrganizationvDC $vdc -vApp $vapp -StoragePolicy $policy |
Perform the following steps:
- Run the
Find-VBRViEntityLooks for VMware objects. cmdlet. Specify theNameparameter value. Save the result to$vmvariable. - Run the
Get-VBRvCDCloudOrganizationvDCReturns organization VDCs. cmdlet. Specify theNameparameter value. Save the result to the$vdcvariable. - Run the
Get-VBRvCDCloudvAppReturns VDC vApps. cmdlet. Set the$vdcvariable as theOrganizationvDCparameter value. Save the result to the$vAppvariable. - Run the
Get-VBRvCDCloudStoragePolicyReturns Cloud Director storage policies. cmdlet. Specify theNameparameter value. Save the result to the$policyvariable. - Run the
Add-VBRvCDCloudReplicaJobcmdlet. Specify the following settings:- Specify the
Nameparameter value. - Set the
$vmvariable as theEntityparameter value. - Set the
$vdcvariable as theOrganizationvDCparameter value. - Set the
$vappvariable as thevAppparameter value. - Set the
$policyvariable as theStoragePolicyparameter value.
- Specify the
Related Commands
Find-VBRViEntityLooks for VMware objects.Get-VBRvCDCloudOrganizationvDCReturns organization VDCs.Get-VBRvCDCloudvAppReturns VDC vApps.Get-VBRvCDCloudStoragePolicyReturns Cloud Director storage policies.