New-VBRUniversalCDPCloudDestination
Short Description
Defines the target location settings for cloud universal CDP policies.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
New-VBRUniversalCDPCloudDestination -Server <VBRCloudServer> -Datastore <VBRCloudDatastore> [-DiskType <VBRDiskCreationMode>] [-Force] [-HighPriority] [<CommonParameters>] |
Detailed Description
This cmdlet defines the VBRUniversalCDPCloudDestination object that contains the target location settings for cloud universal CDP policies.
The target ESXi host or cluster must have the I/O CDP filter installed. For more information oh how to install the filter, see Install-VBRCDPFilterInstalls Veeam I/O filters on VMware clusters..
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Datastore |
Specifies the datastore under your cloud resources. The cmdlet will replicate workloads to this datastore.
Accepts the |
True |
Named |
False |
|
|
DiskType |
Specifies the type of disks for replicas:
|
|
False |
Named |
False |
|
Force |
Defines that the cmdlet will perform a failover without showing warnings in the PowerShell console. |
|
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 |
|
Server |
Specifies the cloud host allocated by the service provider. The cmdlet will replicate workloads to this cloud host.
Accepts the |
True |
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 VBRUniversalCDPCloudDestination object that defines the target location settings for cloud universal CDP policies.
Examples
Creating Target Location Settings for Cloud Universal CDP Policy
This example shows how to create target location settings for the cloud universal CDP policy. The replica disks will be the same format as source disks.
|
$datastore = Get-VBRCloudDatastore -Name "Cloud Replicas" $server = Get-VBRCloudServer -Name "Atlanta Silver" $destination = New-VBRUniversalCDPCloudDestination -Datastore $datastore -DiskType Source -Server $server |
Perform the following steps:
- Run the
Get-VBRCloudDatastoreReturns datastores or disk volumes allocated to you under your cloud resources. cmdlet. Specify theNameparameter value. Save the result to the$datastorevariable. - Run the
Get-VBRCloudServerReturns cloud hosts allocated by a service provider. cmdlet. Specify theNameparameter value. Save the result to the$servervariable. - Run the
New-VBRUniversalCDPCloudDestinationcmdlet. Specify the following settings:- Set the
$datastorevariable as theDatastoreparameter value. - Set the
Sourcevalue as theDiskTypeparameter value. - Set the
$servervariable as theServerparameter value. - Save the result to the
$destinationvariable.
- Set the
Related Commands
Get-VBRCloudDatastoreReturns datastores or disk volumes allocated to you under your cloud resources.Get-VBRCloudServerReturns cloud hosts allocated by a service provider.