New-VBRvCDReplicationResource
Short Description
Defines vCD replication resource settings.
Applies to
Platform: VMware
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
New-VBRvCDReplicationResource -OrganizationvDCOptions <VBROrganizationvDCOption[]> [-EnableNetworkFailoverResources] [<CommonParameters>] |
Detailed Description
This cmdlet creates the VBRvCDReplicationResource object that contains settings for the replication resources.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
---|---|---|---|---|---|
OrganizationvDCOptions | Specifies organization VDCs that you want to assign to the tenant. The specified organization VDCs will provide the resources for tenant VM replicas. Accepts the VBRvCDOrganizationvDCOptions type. | True | Named | True (ByValue, | False |
EnableNetworkFailoverResources | Indicates that the network resources will be used by the tenant to perform failover task. The cmdlet will create a network extension appliance with default settings. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Return Type
Example
Defining vCD Replication Resource Settings
This example shows how to set the Organization 05 organization VDC to provide the resources for tenant VM replicas.
$orgvdc = Find-VBRvCloudEntity -OrganizationVdc -Name "Organization 05" $dcoptions = New-VBRvCDOrganizationvDCOptions -OrganizationvDC $vdc New-VBRvCDReplicationResource -OrganizationvDCOptions $dcoptions |
Perform the following steps:
- Run the Find-VBRvCloudEntity cmdlet. Provide the OrganizationVdc parameter and specify the Name parameter value. Save the result to the $orgvdc variable.
- Run the New-VBRvCDOrganizationvDCOptions cmdlet. Provide the OrganizationvDC parameter. Save the result to the $dcoptions variable.
- Run the New-VBRvCDReplicationResource cmdlet. Set the $dcoptions variable as the OrganizationvDCOptions parameter value.
Related Commands