This is an archive version of the document. To get the most up-to-date information, see the current version.

New-VBRCloudTenantHwPlanOptions

In this article

    Short Description

    Creates VBRCloudTenantHwPlanOptions objects that contains hardware plan options.

    Applies to

    Platform: VMware, Hyper-V

    Product Edition: Standard, Enterprise, Enterprise Plus

    Requires a VCP license.

    Syntax

    New-VBRCloudTenantHwPlanOptions -HardwarePlan <VBRCloudHardwarePlan> [-EnableWanAcceleration] [-WanAccelerator <CWanAccelerator>]  [<CommonParameters>]

    Detailed Description

    This cmdlet creates a VBRCloudTenantHwPlanOptions object that contains a hardware plan. This object is used in New-VBRCloudTenantReplicationResources to specify the hardware plan options.

    You can also enable WAN acceleration and set a target WAN accelerator. Note that the tenant who plan to use the WAN acceleration must configure a source WAN accelerator on their side.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Hardware
    Plan

    Specifies the hardware plan from which you want to enable the WAN acceleration.

    Accepts VBRHvCloudHardwarePlan or VBRViCloudHardwarePlan objects.

    True

    Named

    True (by Value
    FromPipeline, ValueFromPipeline
    ByPropertyName)

    False

    EnableWan
    Acceleration

    Indicates that the tenant hardware plan must use WAN acceleration.

    Use the WanAccelerator parameter to set the WAN accelerator.

    False

    Named

    False

    False

    WanAccelerator

    Specifies the WAN accelerator you want to assign to the tenant hardware plan.

    False

    Named

    False

    False

    <CommonParameters>

    This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

    Related Commands

    Get-VBRCloudHardwarePlan

    Get-VBRWANAccelerator

    Return Type

    VBRCloudTenantHwPlanOptions

    Example 1

    This example shows how to create a hardware plan options object without WAN acceleration.

    1. Run Get-VBRCloudHardwarePlan to get the hardware plan. Save it to the $HwPlan variable.
    2. Run New-VBRCloudTenantHwPlanOptions using the $HwPlan variable. Save the result to the $options variable for further use.

    PS C:\PS> $HwPlan = Get-VBRCloudHardwarePlan -Name "VMware Silver"

    PS C:\PS> $options = New-VBRCloudTenantHwPlanOptions -HardwarePlan $HwPlan

    Example 2

    This example shows how to enable WAN acceleration for a VMware hardware plan.

    1. Run Get-VBRCloudHardwarePlan to get the hardware plan. Save it to the $HwPlan variable.
    2. Run Get-VBRWANAccelerator to get the WAN accelerator. Save it to the $wan variable.
    3. Run New-VBRCloudTenantHwPlanOptions using the saved variables. Save the result to the $options variable for further use.

    PS C:\PS> $HwPlan = Get-VBRCloudHardwarePlan -Platform VMWare -Name "VMware Silver"

    PS C:\PS> $wan = Get-VBRWANAccelerator -Name "Columbus WAN"

    PS C:\PS> $options = New-VBRCloudTenantHwPlanOptions -HardwarePlan $HwPlan -EnableWanAcceleration -WanAccelerator $wan

    Example 3

    This example shows how to enable WAN acceleration for a Hyper-V hardware plan.

    1. Run Get-VBRCloudHardwarePlan to get the hardware plan. Save it to the $HwPlan variable.
    2. Run Get-VBRWANAccelerator to get the WAN accelerator. Save it to the $wan variable.
    3. Run New-VBRCloudTenantHwPlanOptions using the saved variables. Save the result to the $options variable for further use.

    PS C:\PS> $HwPlan = Get-VBRCloudHardwarePlan -Platform HyperV -Name "Hyper-V Silver"

    PS C:\PS> $wan = Get-VBRWANAccelerator -Name "Columbus WAN"

    PS C:\PS> $options = New-VBRCloudTenantHwPlanOptions -HardwarePlan $HwPlan -EnableWanAcceleration -WanAccelerator $wan