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

Remove-VBRCloudVLANConfiguration

In this article

    Short Description

    Removes pools of VLANs reserved for Veeam Backup & Replication.

    Applies to

    Platform: VMware, Hyper-V

    Product Edition: Standard, Enterprise, Enterprise Plus

    Requires a VCP license.

    Syntax

    Remove-VBRCloudVLANConfiguration -Configuration <VBRCloudVLANConfiguration> [-WhatIf] [-Confirm]  [<CommonParameters>]

    Related Commands

    Get-VBRCloudVLANConfiguration

    Return Type

    None

    Detailed Description

    This cmdlet removes a selected VLAN pool.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Configuration

    Specifies the VLAN configuration you want to remove.

    Accepts Get-VBRCloudVLANConfiguration object.

    True

    Named

    True (by Value
    FromPipeline, ValueFromPipeline
    ByPropertyName)

    False

    WhatIf

    Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action.

    False

    Named

    False

    False

    Confirm

    Specifies whether the cmdlet displays a prompt that asks if the user is sure that they want to continue.

    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.

    Example

    This example shows how to remove a selected pool of VLANs.

    1. Run Get-VBRCloudVLANConfiguration to get the VLAN pools. Save the array of pools to the $configs variable.
    2. Run Remove-VBRCloudVLANConfiguration. Use the first VLAN pool in the array saved to the $configs variable.

    PS C:\PS> $configs = Get-VBRCloudVLANConfiguration

    PS C:\PS> Remove-VBRCloudVLANConfiguration -Configuration $configs[0]