1. Packages
  2. Nsxt Provider
  3. API Docs
  4. VlanLogicalSwitch
nsxt 3.8.0 published on Monday, Apr 14, 2025 by vmware

nsxt.VlanLogicalSwitch

Explore with Pulumi AI

Create VlanLogicalSwitch Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new VlanLogicalSwitch(name: string, args: VlanLogicalSwitchArgs, opts?: CustomResourceOptions);
@overload
def VlanLogicalSwitch(resource_name: str,
                      args: VlanLogicalSwitchArgs,
                      opts: Optional[ResourceOptions] = None)

@overload
def VlanLogicalSwitch(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      transport_zone_id: Optional[str] = None,
                      vlan: Optional[float] = None,
                      address_bindings: Optional[Sequence[VlanLogicalSwitchAddressBindingArgs]] = None,
                      admin_state: Optional[str] = None,
                      description: Optional[str] = None,
                      display_name: Optional[str] = None,
                      ip_pool_id: Optional[str] = None,
                      mac_pool_id: Optional[str] = None,
                      switching_profile_ids: Optional[Sequence[VlanLogicalSwitchSwitchingProfileIdArgs]] = None,
                      tags: Optional[Sequence[VlanLogicalSwitchTagArgs]] = None,
                      vlan_logical_switch_id: Optional[str] = None)
func NewVlanLogicalSwitch(ctx *Context, name string, args VlanLogicalSwitchArgs, opts ...ResourceOption) (*VlanLogicalSwitch, error)
public VlanLogicalSwitch(string name, VlanLogicalSwitchArgs args, CustomResourceOptions? opts = null)
public VlanLogicalSwitch(String name, VlanLogicalSwitchArgs args)
public VlanLogicalSwitch(String name, VlanLogicalSwitchArgs args, CustomResourceOptions options)
type: nsxt:VlanLogicalSwitch
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. VlanLogicalSwitchArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. VlanLogicalSwitchArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. VlanLogicalSwitchArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. VlanLogicalSwitchArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. VlanLogicalSwitchArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var vlanLogicalSwitchResource = new Nsxt.VlanLogicalSwitch("vlanLogicalSwitchResource", new()
{
    TransportZoneId = "string",
    Vlan = 0,
    AddressBindings = new[]
    {
        new Nsxt.Inputs.VlanLogicalSwitchAddressBindingArgs
        {
            IpAddress = "string",
            MacAddress = "string",
            Vlan = 0,
        },
    },
    AdminState = "string",
    Description = "string",
    DisplayName = "string",
    IpPoolId = "string",
    MacPoolId = "string",
    SwitchingProfileIds = new[]
    {
        new Nsxt.Inputs.VlanLogicalSwitchSwitchingProfileIdArgs
        {
            Key = "string",
            Value = "string",
        },
    },
    Tags = new[]
    {
        new Nsxt.Inputs.VlanLogicalSwitchTagArgs
        {
            Scope = "string",
            Tag = "string",
        },
    },
    VlanLogicalSwitchId = "string",
});
Copy
example, err := nsxt.NewVlanLogicalSwitch(ctx, "vlanLogicalSwitchResource", &nsxt.VlanLogicalSwitchArgs{
TransportZoneId: pulumi.String("string"),
Vlan: pulumi.Float64(0),
AddressBindings: .VlanLogicalSwitchAddressBindingArray{
&.VlanLogicalSwitchAddressBindingArgs{
IpAddress: pulumi.String("string"),
MacAddress: pulumi.String("string"),
Vlan: pulumi.Float64(0),
},
},
AdminState: pulumi.String("string"),
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
IpPoolId: pulumi.String("string"),
MacPoolId: pulumi.String("string"),
SwitchingProfileIds: .VlanLogicalSwitchSwitchingProfileIdArray{
&.VlanLogicalSwitchSwitchingProfileIdArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Tags: .VlanLogicalSwitchTagArray{
&.VlanLogicalSwitchTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
VlanLogicalSwitchId: pulumi.String("string"),
})
Copy
var vlanLogicalSwitchResource = new VlanLogicalSwitch("vlanLogicalSwitchResource", VlanLogicalSwitchArgs.builder()
    .transportZoneId("string")
    .vlan(0)
    .addressBindings(VlanLogicalSwitchAddressBindingArgs.builder()
        .ipAddress("string")
        .macAddress("string")
        .vlan(0)
        .build())
    .adminState("string")
    .description("string")
    .displayName("string")
    .ipPoolId("string")
    .macPoolId("string")
    .switchingProfileIds(VlanLogicalSwitchSwitchingProfileIdArgs.builder()
        .key("string")
        .value("string")
        .build())
    .tags(VlanLogicalSwitchTagArgs.builder()
        .scope("string")
        .tag("string")
        .build())
    .vlanLogicalSwitchId("string")
    .build());
Copy
vlan_logical_switch_resource = nsxt.VlanLogicalSwitch("vlanLogicalSwitchResource",
    transport_zone_id="string",
    vlan=0,
    address_bindings=[{
        "ip_address": "string",
        "mac_address": "string",
        "vlan": 0,
    }],
    admin_state="string",
    description="string",
    display_name="string",
    ip_pool_id="string",
    mac_pool_id="string",
    switching_profile_ids=[{
        "key": "string",
        "value": "string",
    }],
    tags=[{
        "scope": "string",
        "tag": "string",
    }],
    vlan_logical_switch_id="string")
Copy
const vlanLogicalSwitchResource = new nsxt.VlanLogicalSwitch("vlanLogicalSwitchResource", {
    transportZoneId: "string",
    vlan: 0,
    addressBindings: [{
        ipAddress: "string",
        macAddress: "string",
        vlan: 0,
    }],
    adminState: "string",
    description: "string",
    displayName: "string",
    ipPoolId: "string",
    macPoolId: "string",
    switchingProfileIds: [{
        key: "string",
        value: "string",
    }],
    tags: [{
        scope: "string",
        tag: "string",
    }],
    vlanLogicalSwitchId: "string",
});
Copy
type: nsxt:VlanLogicalSwitch
properties:
    addressBindings:
        - ipAddress: string
          macAddress: string
          vlan: 0
    adminState: string
    description: string
    displayName: string
    ipPoolId: string
    macPoolId: string
    switchingProfileIds:
        - key: string
          value: string
    tags:
        - scope: string
          tag: string
    transportZoneId: string
    vlan: 0
    vlanLogicalSwitchId: string
Copy

VlanLogicalSwitch Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The VlanLogicalSwitch resource accepts the following input properties:

TransportZoneId This property is required. string
Transport Zone ID for the logical switch.
Vlan This property is required. double
Vlan for the logical switch.
AddressBindings List<VlanLogicalSwitchAddressBinding>
List of Address Bindings for the logical switch. This setting allows to provide bindings between IP address, mac Address and vlan.
AdminState string
Admin state for the logical switch. Accepted values - 'UP' or 'DOWN'. The default value is 'UP'.
Description string
Description of the resource.
DisplayName string
Display name, defaults to ID if not set.
IpPoolId string
Ip Pool ID to be associated with the logical switch.
MacPoolId string
Mac Pool ID to be associated with the logical switch.
SwitchingProfileIds List<VlanLogicalSwitchSwitchingProfileId>
List of IDs of switching profiles (of various types) to be associated with this switch. Default switching profiles will be used if not specified.
Tags List<VlanLogicalSwitchTag>
A list of scope + tag pairs to associate with this logical switch.
VlanLogicalSwitchId string
ID of the logical switch.
TransportZoneId This property is required. string
Transport Zone ID for the logical switch.
Vlan This property is required. float64
Vlan for the logical switch.
AddressBindings []VlanLogicalSwitchAddressBindingArgs
List of Address Bindings for the logical switch. This setting allows to provide bindings between IP address, mac Address and vlan.
AdminState string
Admin state for the logical switch. Accepted values - 'UP' or 'DOWN'. The default value is 'UP'.
Description string
Description of the resource.
DisplayName string
Display name, defaults to ID if not set.
IpPoolId string
Ip Pool ID to be associated with the logical switch.
MacPoolId string
Mac Pool ID to be associated with the logical switch.
SwitchingProfileIds []VlanLogicalSwitchSwitchingProfileIdArgs
List of IDs of switching profiles (of various types) to be associated with this switch. Default switching profiles will be used if not specified.
Tags []VlanLogicalSwitchTagArgs
A list of scope + tag pairs to associate with this logical switch.
VlanLogicalSwitchId string
ID of the logical switch.
transportZoneId This property is required. String
Transport Zone ID for the logical switch.
vlan This property is required. Double
Vlan for the logical switch.
addressBindings List<VlanLogicalSwitchAddressBinding>
List of Address Bindings for the logical switch. This setting allows to provide bindings between IP address, mac Address and vlan.
adminState String
Admin state for the logical switch. Accepted values - 'UP' or 'DOWN'. The default value is 'UP'.
description String
Description of the resource.
displayName String
Display name, defaults to ID if not set.
ipPoolId String
Ip Pool ID to be associated with the logical switch.
macPoolId String
Mac Pool ID to be associated with the logical switch.
switchingProfileIds List<VlanLogicalSwitchSwitchingProfileId>
List of IDs of switching profiles (of various types) to be associated with this switch. Default switching profiles will be used if not specified.
tags List<VlanLogicalSwitchTag>
A list of scope + tag pairs to associate with this logical switch.
vlanLogicalSwitchId String
ID of the logical switch.
transportZoneId This property is required. string
Transport Zone ID for the logical switch.
vlan This property is required. number
Vlan for the logical switch.
addressBindings VlanLogicalSwitchAddressBinding[]
List of Address Bindings for the logical switch. This setting allows to provide bindings between IP address, mac Address and vlan.
adminState string
Admin state for the logical switch. Accepted values - 'UP' or 'DOWN'. The default value is 'UP'.
description string
Description of the resource.
displayName string
Display name, defaults to ID if not set.
ipPoolId string
Ip Pool ID to be associated with the logical switch.
macPoolId string
Mac Pool ID to be associated with the logical switch.
switchingProfileIds VlanLogicalSwitchSwitchingProfileId[]
List of IDs of switching profiles (of various types) to be associated with this switch. Default switching profiles will be used if not specified.
tags VlanLogicalSwitchTag[]
A list of scope + tag pairs to associate with this logical switch.
vlanLogicalSwitchId string
ID of the logical switch.
transport_zone_id This property is required. str
Transport Zone ID for the logical switch.
vlan This property is required. float
Vlan for the logical switch.
address_bindings Sequence[VlanLogicalSwitchAddressBindingArgs]
List of Address Bindings for the logical switch. This setting allows to provide bindings between IP address, mac Address and vlan.
admin_state str
Admin state for the logical switch. Accepted values - 'UP' or 'DOWN'. The default value is 'UP'.
description str
Description of the resource.
display_name str
Display name, defaults to ID if not set.
ip_pool_id str
Ip Pool ID to be associated with the logical switch.
mac_pool_id str
Mac Pool ID to be associated with the logical switch.
switching_profile_ids Sequence[VlanLogicalSwitchSwitchingProfileIdArgs]
List of IDs of switching profiles (of various types) to be associated with this switch. Default switching profiles will be used if not specified.
tags Sequence[VlanLogicalSwitchTagArgs]
A list of scope + tag pairs to associate with this logical switch.
vlan_logical_switch_id str
ID of the logical switch.
transportZoneId This property is required. String
Transport Zone ID for the logical switch.
vlan This property is required. Number
Vlan for the logical switch.
addressBindings List<Property Map>
List of Address Bindings for the logical switch. This setting allows to provide bindings between IP address, mac Address and vlan.
adminState String
Admin state for the logical switch. Accepted values - 'UP' or 'DOWN'. The default value is 'UP'.
description String
Description of the resource.
displayName String
Display name, defaults to ID if not set.
ipPoolId String
Ip Pool ID to be associated with the logical switch.
macPoolId String
Mac Pool ID to be associated with the logical switch.
switchingProfileIds List<Property Map>
List of IDs of switching profiles (of various types) to be associated with this switch. Default switching profiles will be used if not specified.
tags List<Property Map>
A list of scope + tag pairs to associate with this logical switch.
vlanLogicalSwitchId String
ID of the logical switch.

Outputs

All input properties are implicitly available as output properties. Additionally, the VlanLogicalSwitch resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Revision double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
Id string
The provider-assigned unique ID for this managed resource.
Revision float64
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
id String
The provider-assigned unique ID for this managed resource.
revision Double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
id string
The provider-assigned unique ID for this managed resource.
revision number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
id str
The provider-assigned unique ID for this managed resource.
revision float
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
id String
The provider-assigned unique ID for this managed resource.
revision Number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.

Look up Existing VlanLogicalSwitch Resource

Get an existing VlanLogicalSwitch resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: VlanLogicalSwitchState, opts?: CustomResourceOptions): VlanLogicalSwitch
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        address_bindings: Optional[Sequence[VlanLogicalSwitchAddressBindingArgs]] = None,
        admin_state: Optional[str] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        ip_pool_id: Optional[str] = None,
        mac_pool_id: Optional[str] = None,
        revision: Optional[float] = None,
        switching_profile_ids: Optional[Sequence[VlanLogicalSwitchSwitchingProfileIdArgs]] = None,
        tags: Optional[Sequence[VlanLogicalSwitchTagArgs]] = None,
        transport_zone_id: Optional[str] = None,
        vlan: Optional[float] = None,
        vlan_logical_switch_id: Optional[str] = None) -> VlanLogicalSwitch
func GetVlanLogicalSwitch(ctx *Context, name string, id IDInput, state *VlanLogicalSwitchState, opts ...ResourceOption) (*VlanLogicalSwitch, error)
public static VlanLogicalSwitch Get(string name, Input<string> id, VlanLogicalSwitchState? state, CustomResourceOptions? opts = null)
public static VlanLogicalSwitch get(String name, Output<String> id, VlanLogicalSwitchState state, CustomResourceOptions options)
resources:  _:    type: nsxt:VlanLogicalSwitch    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AddressBindings List<VlanLogicalSwitchAddressBinding>
List of Address Bindings for the logical switch. This setting allows to provide bindings between IP address, mac Address and vlan.
AdminState string
Admin state for the logical switch. Accepted values - 'UP' or 'DOWN'. The default value is 'UP'.
Description string
Description of the resource.
DisplayName string
Display name, defaults to ID if not set.
IpPoolId string
Ip Pool ID to be associated with the logical switch.
MacPoolId string
Mac Pool ID to be associated with the logical switch.
Revision double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
SwitchingProfileIds List<VlanLogicalSwitchSwitchingProfileId>
List of IDs of switching profiles (of various types) to be associated with this switch. Default switching profiles will be used if not specified.
Tags List<VlanLogicalSwitchTag>
A list of scope + tag pairs to associate with this logical switch.
TransportZoneId string
Transport Zone ID for the logical switch.
Vlan double
Vlan for the logical switch.
VlanLogicalSwitchId string
ID of the logical switch.
AddressBindings []VlanLogicalSwitchAddressBindingArgs
List of Address Bindings for the logical switch. This setting allows to provide bindings between IP address, mac Address and vlan.
AdminState string
Admin state for the logical switch. Accepted values - 'UP' or 'DOWN'. The default value is 'UP'.
Description string
Description of the resource.
DisplayName string
Display name, defaults to ID if not set.
IpPoolId string
Ip Pool ID to be associated with the logical switch.
MacPoolId string
Mac Pool ID to be associated with the logical switch.
Revision float64
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
SwitchingProfileIds []VlanLogicalSwitchSwitchingProfileIdArgs
List of IDs of switching profiles (of various types) to be associated with this switch. Default switching profiles will be used if not specified.
Tags []VlanLogicalSwitchTagArgs
A list of scope + tag pairs to associate with this logical switch.
TransportZoneId string
Transport Zone ID for the logical switch.
Vlan float64
Vlan for the logical switch.
VlanLogicalSwitchId string
ID of the logical switch.
addressBindings List<VlanLogicalSwitchAddressBinding>
List of Address Bindings for the logical switch. This setting allows to provide bindings between IP address, mac Address and vlan.
adminState String
Admin state for the logical switch. Accepted values - 'UP' or 'DOWN'. The default value is 'UP'.
description String
Description of the resource.
displayName String
Display name, defaults to ID if not set.
ipPoolId String
Ip Pool ID to be associated with the logical switch.
macPoolId String
Mac Pool ID to be associated with the logical switch.
revision Double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
switchingProfileIds List<VlanLogicalSwitchSwitchingProfileId>
List of IDs of switching profiles (of various types) to be associated with this switch. Default switching profiles will be used if not specified.
tags List<VlanLogicalSwitchTag>
A list of scope + tag pairs to associate with this logical switch.
transportZoneId String
Transport Zone ID for the logical switch.
vlan Double
Vlan for the logical switch.
vlanLogicalSwitchId String
ID of the logical switch.
addressBindings VlanLogicalSwitchAddressBinding[]
List of Address Bindings for the logical switch. This setting allows to provide bindings between IP address, mac Address and vlan.
adminState string
Admin state for the logical switch. Accepted values - 'UP' or 'DOWN'. The default value is 'UP'.
description string
Description of the resource.
displayName string
Display name, defaults to ID if not set.
ipPoolId string
Ip Pool ID to be associated with the logical switch.
macPoolId string
Mac Pool ID to be associated with the logical switch.
revision number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
switchingProfileIds VlanLogicalSwitchSwitchingProfileId[]
List of IDs of switching profiles (of various types) to be associated with this switch. Default switching profiles will be used if not specified.
tags VlanLogicalSwitchTag[]
A list of scope + tag pairs to associate with this logical switch.
transportZoneId string
Transport Zone ID for the logical switch.
vlan number
Vlan for the logical switch.
vlanLogicalSwitchId string
ID of the logical switch.
address_bindings Sequence[VlanLogicalSwitchAddressBindingArgs]
List of Address Bindings for the logical switch. This setting allows to provide bindings between IP address, mac Address and vlan.
admin_state str
Admin state for the logical switch. Accepted values - 'UP' or 'DOWN'. The default value is 'UP'.
description str
Description of the resource.
display_name str
Display name, defaults to ID if not set.
ip_pool_id str
Ip Pool ID to be associated with the logical switch.
mac_pool_id str
Mac Pool ID to be associated with the logical switch.
revision float
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
switching_profile_ids Sequence[VlanLogicalSwitchSwitchingProfileIdArgs]
List of IDs of switching profiles (of various types) to be associated with this switch. Default switching profiles will be used if not specified.
tags Sequence[VlanLogicalSwitchTagArgs]
A list of scope + tag pairs to associate with this logical switch.
transport_zone_id str
Transport Zone ID for the logical switch.
vlan float
Vlan for the logical switch.
vlan_logical_switch_id str
ID of the logical switch.
addressBindings List<Property Map>
List of Address Bindings for the logical switch. This setting allows to provide bindings between IP address, mac Address and vlan.
adminState String
Admin state for the logical switch. Accepted values - 'UP' or 'DOWN'. The default value is 'UP'.
description String
Description of the resource.
displayName String
Display name, defaults to ID if not set.
ipPoolId String
Ip Pool ID to be associated with the logical switch.
macPoolId String
Mac Pool ID to be associated with the logical switch.
revision Number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
switchingProfileIds List<Property Map>
List of IDs of switching profiles (of various types) to be associated with this switch. Default switching profiles will be used if not specified.
tags List<Property Map>
A list of scope + tag pairs to associate with this logical switch.
transportZoneId String
Transport Zone ID for the logical switch.
vlan Number
Vlan for the logical switch.
vlanLogicalSwitchId String
ID of the logical switch.

Supporting Types

VlanLogicalSwitchAddressBinding
, VlanLogicalSwitchAddressBindingArgs

IpAddress string
A single IP address or a subnet cidr
MacAddress string
A single MAC address
Vlan double
Vlan for the logical switch.
IpAddress string
A single IP address or a subnet cidr
MacAddress string
A single MAC address
Vlan float64
Vlan for the logical switch.
ipAddress String
A single IP address or a subnet cidr
macAddress String
A single MAC address
vlan Double
Vlan for the logical switch.
ipAddress string
A single IP address or a subnet cidr
macAddress string
A single MAC address
vlan number
Vlan for the logical switch.
ip_address str
A single IP address or a subnet cidr
mac_address str
A single MAC address
vlan float
Vlan for the logical switch.
ipAddress String
A single IP address or a subnet cidr
macAddress String
A single MAC address
vlan Number
Vlan for the logical switch.

VlanLogicalSwitchSwitchingProfileId
, VlanLogicalSwitchSwitchingProfileIdArgs

Key This property is required. string
The resource type of this profile
Value This property is required. string
The ID of this profile
Key This property is required. string
The resource type of this profile
Value This property is required. string
The ID of this profile
key This property is required. String
The resource type of this profile
value This property is required. String
The ID of this profile
key This property is required. string
The resource type of this profile
value This property is required. string
The ID of this profile
key This property is required. str
The resource type of this profile
value This property is required. str
The ID of this profile
key This property is required. String
The resource type of this profile
value This property is required. String
The ID of this profile

VlanLogicalSwitchTag
, VlanLogicalSwitchTagArgs

Scope string
Tag string
A list of scope + tag pairs to associate with this logical switch.
Scope string
Tag string
A list of scope + tag pairs to associate with this logical switch.
scope String
tag String
A list of scope + tag pairs to associate with this logical switch.
scope string
tag string
A list of scope + tag pairs to associate with this logical switch.
scope str
tag str
A list of scope + tag pairs to associate with this logical switch.
scope String
tag String
A list of scope + tag pairs to associate with this logical switch.

Package Details

Repository
nsxt vmware/terraform-provider-nsxt
License
Notes
This Pulumi package is based on the nsxt Terraform Provider.