New-VBRUniversalCDPvCDCloudDestination
Short Description
Defines the target location settings for VDC universal CDP policies.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
New-VBRUniversalCDPvCDCloudDestination -OrganizationvDC <VBRvCDCloudOrganizationvDC> [-StoragePolicy <VBRvCDCloudStoragePolicy>] [-vApp <VBRvCDCloudvApp>] [-Force] [-HighPriority] [<CommonParameters>] |
Detailed Description
This cmdlet defines the VBRUniversalCDPvCDCloudDestination object. This object contains the target location settings for VDC universal CDP policies.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
|---|---|---|---|---|---|
OrganizationvDC | Specifies the organization VDC. The cmdlet will replicate workloads to this organization VDC. | Accepts the VBRvCDCloudOrganizationvDC object. To get this object, run the Get-VBRvCDCloudOrganizationvDC cmdlet. | True | Named | False |
StoragePolicy | Specifies the VMware Cloud Director storage policy for replication. | Accepts the VBRvCDCloudStoragePolicy object. To get this object, run the Get-VBRvCDCloudStoragePolicy cmdlet. | False | Named | False |
vApp | Specifies the target vApp. The cmdlet will replicate workloads to this vApp. | Accepts the VBRvCDCloudvApp object. To get this object, run the Get-VBRvCDCloudvApp cmdlet. | False | Named | False |
Force | Defines that the cmdlet will perform a failover without showing warnings in the PowerShell console. | SwitchParameter | 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. | SwitchParameter | 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 VBRUniversalCDPvCDCloudDestination object that defines the target location settings for VDC universal CDP policies.
Examples
Creating Target Location Settings for VDC Universal CDP Policy
This example shows how to create target location settings for the VDC universal CDP policy.
$vdc = Get-VBRvCDCloudOrganizationvDC -Name "Organization VDC" $storage_policy = Get-VBRvCDCloudStoragePolicy -Name "Silver Policy" -OrganizationvDC $vdc $destination = New-VBRUniversalCDPvCDCloudDestination -OrganizationvDC $vdc -StoragePolicy $storage_policy |
Perform the following steps:
- Run the Get-VBRvCDCloudOrganizationvDC cmdlet. Specify the Name parameter value. Save the result to the $vdc variable.
- Run the Get-VBRvCDCloudStoragePolicy cmdlet. Specify the Name parameter value. Set the $vdc variable as the OrganizationvDC parameter value. Save the result to the $storage_policy variable.
- Run the New-VBRUniversalCDPvCDCloudDestination cmdlet. Specify the following settings:
- Set the $vdc variable as the OrganizationvDC parameter value.
- Set the $storage_policy variable as the StoragePolicy parameter value.
- Save the result to the $destination variable.
Related Commands