1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyTransportZone
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

nsxt.PolicyTransportZone

Explore with Pulumi AI

nsxt logo
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

    Create PolicyTransportZone Resource

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

    Constructor syntax

    new PolicyTransportZone(name: string, args: PolicyTransportZoneArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyTransportZone(resource_name: str,
                            args: PolicyTransportZoneArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyTransportZone(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            transport_type: Optional[str] = None,
                            description: Optional[str] = None,
                            display_name: Optional[str] = None,
                            enforcement_point: Optional[str] = None,
                            is_default: Optional[bool] = None,
                            nsx_id: Optional[str] = None,
                            policy_transport_zone_id: Optional[str] = None,
                            site_path: Optional[str] = None,
                            tags: Optional[Sequence[PolicyTransportZoneTagArgs]] = None,
                            uplink_teaming_policy_names: Optional[Sequence[str]] = None)
    func NewPolicyTransportZone(ctx *Context, name string, args PolicyTransportZoneArgs, opts ...ResourceOption) (*PolicyTransportZone, error)
    public PolicyTransportZone(string name, PolicyTransportZoneArgs args, CustomResourceOptions? opts = null)
    public PolicyTransportZone(String name, PolicyTransportZoneArgs args)
    public PolicyTransportZone(String name, PolicyTransportZoneArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyTransportZone
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PolicyTransportZoneArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args PolicyTransportZoneArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args PolicyTransportZoneArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyTransportZoneArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyTransportZoneArgs
    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 policyTransportZoneResource = new Nsxt.PolicyTransportZone("policyTransportZoneResource", new()
    {
        TransportType = "string",
        Description = "string",
        DisplayName = "string",
        EnforcementPoint = "string",
        IsDefault = false,
        NsxId = "string",
        PolicyTransportZoneId = "string",
        SitePath = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyTransportZoneTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
        UplinkTeamingPolicyNames = new[]
        {
            "string",
        },
    });
    
    example, err := nsxt.NewPolicyTransportZone(ctx, "policyTransportZoneResource", &nsxt.PolicyTransportZoneArgs{
    	TransportType:         pulumi.String("string"),
    	Description:           pulumi.String("string"),
    	DisplayName:           pulumi.String("string"),
    	EnforcementPoint:      pulumi.String("string"),
    	IsDefault:             pulumi.Bool(false),
    	NsxId:                 pulumi.String("string"),
    	PolicyTransportZoneId: pulumi.String("string"),
    	SitePath:              pulumi.String("string"),
    	Tags: nsxt.PolicyTransportZoneTagArray{
    		&nsxt.PolicyTransportZoneTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    	UplinkTeamingPolicyNames: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var policyTransportZoneResource = new PolicyTransportZone("policyTransportZoneResource", PolicyTransportZoneArgs.builder()
        .transportType("string")
        .description("string")
        .displayName("string")
        .enforcementPoint("string")
        .isDefault(false)
        .nsxId("string")
        .policyTransportZoneId("string")
        .sitePath("string")
        .tags(PolicyTransportZoneTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .uplinkTeamingPolicyNames("string")
        .build());
    
    policy_transport_zone_resource = nsxt.PolicyTransportZone("policyTransportZoneResource",
        transport_type="string",
        description="string",
        display_name="string",
        enforcement_point="string",
        is_default=False,
        nsx_id="string",
        policy_transport_zone_id="string",
        site_path="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }],
        uplink_teaming_policy_names=["string"])
    
    const policyTransportZoneResource = new nsxt.PolicyTransportZone("policyTransportZoneResource", {
        transportType: "string",
        description: "string",
        displayName: "string",
        enforcementPoint: "string",
        isDefault: false,
        nsxId: "string",
        policyTransportZoneId: "string",
        sitePath: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
        uplinkTeamingPolicyNames: ["string"],
    });
    
    type: nsxt:PolicyTransportZone
    properties:
        description: string
        displayName: string
        enforcementPoint: string
        isDefault: false
        nsxId: string
        policyTransportZoneId: string
        sitePath: string
        tags:
            - scope: string
              tag: string
        transportType: string
        uplinkTeamingPolicyNames:
            - string
    

    PolicyTransportZone 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 PolicyTransportZone resource accepts the following input properties:

    TransportType string
    Transport type of requested Transport Zone, one of OVERLAY_STANDARD, OVERLAY_ENS, OVERLAY_BACKED, VLAN_BACKED and UNKNOWN.
    Description string
    Description of the Transport Zone.
    DisplayName string
    The Display Name of the Transport Zone.
    EnforcementPoint string
    The ID of enforcement point under given site_path to manage the Transport Zone.
    IsDefault bool
    Set this Transport Zone as the default zone of given transport_type. Default value is false. When setting a Transport Zone with is_default: true, no existing Transport Zone of same transport_type should be set as default.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    PolicyTransportZoneId string
    SitePath string
    The path of the site which the Transport Zone belongs to. path field of the existing nsxt.PolicySite can be used here.
    Tags List<PolicyTransportZoneTag>
    A list of scope + tag pairs to associate with this resource.
    UplinkTeamingPolicyNames List<string>
    The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKED transport zones.
    TransportType string
    Transport type of requested Transport Zone, one of OVERLAY_STANDARD, OVERLAY_ENS, OVERLAY_BACKED, VLAN_BACKED and UNKNOWN.
    Description string
    Description of the Transport Zone.
    DisplayName string
    The Display Name of the Transport Zone.
    EnforcementPoint string
    The ID of enforcement point under given site_path to manage the Transport Zone.
    IsDefault bool
    Set this Transport Zone as the default zone of given transport_type. Default value is false. When setting a Transport Zone with is_default: true, no existing Transport Zone of same transport_type should be set as default.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    PolicyTransportZoneId string
    SitePath string
    The path of the site which the Transport Zone belongs to. path field of the existing nsxt.PolicySite can be used here.
    Tags []PolicyTransportZoneTagArgs
    A list of scope + tag pairs to associate with this resource.
    UplinkTeamingPolicyNames []string
    The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKED transport zones.
    transportType String
    Transport type of requested Transport Zone, one of OVERLAY_STANDARD, OVERLAY_ENS, OVERLAY_BACKED, VLAN_BACKED and UNKNOWN.
    description String
    Description of the Transport Zone.
    displayName String
    The Display Name of the Transport Zone.
    enforcementPoint String
    The ID of enforcement point under given site_path to manage the Transport Zone.
    isDefault Boolean
    Set this Transport Zone as the default zone of given transport_type. Default value is false. When setting a Transport Zone with is_default: true, no existing Transport Zone of same transport_type should be set as default.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    policyTransportZoneId String
    sitePath String
    The path of the site which the Transport Zone belongs to. path field of the existing nsxt.PolicySite can be used here.
    tags List<PolicyTransportZoneTag>
    A list of scope + tag pairs to associate with this resource.
    uplinkTeamingPolicyNames List<String>
    The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKED transport zones.
    transportType string
    Transport type of requested Transport Zone, one of OVERLAY_STANDARD, OVERLAY_ENS, OVERLAY_BACKED, VLAN_BACKED and UNKNOWN.
    description string
    Description of the Transport Zone.
    displayName string
    The Display Name of the Transport Zone.
    enforcementPoint string
    The ID of enforcement point under given site_path to manage the Transport Zone.
    isDefault boolean
    Set this Transport Zone as the default zone of given transport_type. Default value is false. When setting a Transport Zone with is_default: true, no existing Transport Zone of same transport_type should be set as default.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    policyTransportZoneId string
    sitePath string
    The path of the site which the Transport Zone belongs to. path field of the existing nsxt.PolicySite can be used here.
    tags PolicyTransportZoneTag[]
    A list of scope + tag pairs to associate with this resource.
    uplinkTeamingPolicyNames string[]
    The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKED transport zones.
    transport_type str
    Transport type of requested Transport Zone, one of OVERLAY_STANDARD, OVERLAY_ENS, OVERLAY_BACKED, VLAN_BACKED and UNKNOWN.
    description str
    Description of the Transport Zone.
    display_name str
    The Display Name of the Transport Zone.
    enforcement_point str
    The ID of enforcement point under given site_path to manage the Transport Zone.
    is_default bool
    Set this Transport Zone as the default zone of given transport_type. Default value is false. When setting a Transport Zone with is_default: true, no existing Transport Zone of same transport_type should be set as default.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    policy_transport_zone_id str
    site_path str
    The path of the site which the Transport Zone belongs to. path field of the existing nsxt.PolicySite can be used here.
    tags Sequence[PolicyTransportZoneTagArgs]
    A list of scope + tag pairs to associate with this resource.
    uplink_teaming_policy_names Sequence[str]
    The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKED transport zones.
    transportType String
    Transport type of requested Transport Zone, one of OVERLAY_STANDARD, OVERLAY_ENS, OVERLAY_BACKED, VLAN_BACKED and UNKNOWN.
    description String
    Description of the Transport Zone.
    displayName String
    The Display Name of the Transport Zone.
    enforcementPoint String
    The ID of enforcement point under given site_path to manage the Transport Zone.
    isDefault Boolean
    Set this Transport Zone as the default zone of given transport_type. Default value is false. When setting a Transport Zone with is_default: true, no existing Transport Zone of same transport_type should be set as default.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    policyTransportZoneId String
    sitePath String
    The path of the site which the Transport Zone belongs to. path field of the existing nsxt.PolicySite can be used here.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.
    uplinkTeamingPolicyNames List<String>
    The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKED transport zones.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the policy resource.
    RealizedId string
    Realized ID for the transport zone. For reference in fabric resources (such as transport_node), realized_id should be used rather than id.
    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.
    Path string
    The NSX path of the policy resource.
    RealizedId string
    Realized ID for the transport zone. For reference in fabric resources (such as transport_node), realized_id should be used rather than id.
    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.
    path String
    The NSX path of the policy resource.
    realizedId String
    Realized ID for the transport zone. For reference in fabric resources (such as transport_node), realized_id should be used rather than id.
    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.
    path string
    The NSX path of the policy resource.
    realizedId string
    Realized ID for the transport zone. For reference in fabric resources (such as transport_node), realized_id should be used rather than id.
    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.
    path str
    The NSX path of the policy resource.
    realized_id str
    Realized ID for the transport zone. For reference in fabric resources (such as transport_node), realized_id should be used rather than id.
    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.
    path String
    The NSX path of the policy resource.
    realizedId String
    Realized ID for the transport zone. For reference in fabric resources (such as transport_node), realized_id should be used rather than id.
    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 PolicyTransportZone Resource

    Get an existing PolicyTransportZone 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?: PolicyTransportZoneState, opts?: CustomResourceOptions): PolicyTransportZone
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            enforcement_point: Optional[str] = None,
            is_default: Optional[bool] = None,
            nsx_id: Optional[str] = None,
            path: Optional[str] = None,
            policy_transport_zone_id: Optional[str] = None,
            realized_id: Optional[str] = None,
            revision: Optional[float] = None,
            site_path: Optional[str] = None,
            tags: Optional[Sequence[PolicyTransportZoneTagArgs]] = None,
            transport_type: Optional[str] = None,
            uplink_teaming_policy_names: Optional[Sequence[str]] = None) -> PolicyTransportZone
    func GetPolicyTransportZone(ctx *Context, name string, id IDInput, state *PolicyTransportZoneState, opts ...ResourceOption) (*PolicyTransportZone, error)
    public static PolicyTransportZone Get(string name, Input<string> id, PolicyTransportZoneState? state, CustomResourceOptions? opts = null)
    public static PolicyTransportZone get(String name, Output<String> id, PolicyTransportZoneState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyTransportZone    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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:
    Description string
    Description of the Transport Zone.
    DisplayName string
    The Display Name of the Transport Zone.
    EnforcementPoint string
    The ID of enforcement point under given site_path to manage the Transport Zone.
    IsDefault bool
    Set this Transport Zone as the default zone of given transport_type. Default value is false. When setting a Transport Zone with is_default: true, no existing Transport Zone of same transport_type should be set as default.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    Path string
    The NSX path of the policy resource.
    PolicyTransportZoneId string
    RealizedId string
    Realized ID for the transport zone. For reference in fabric resources (such as transport_node), realized_id should be used rather than id.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    SitePath string
    The path of the site which the Transport Zone belongs to. path field of the existing nsxt.PolicySite can be used here.
    Tags List<PolicyTransportZoneTag>
    A list of scope + tag pairs to associate with this resource.
    TransportType string
    Transport type of requested Transport Zone, one of OVERLAY_STANDARD, OVERLAY_ENS, OVERLAY_BACKED, VLAN_BACKED and UNKNOWN.
    UplinkTeamingPolicyNames List<string>
    The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKED transport zones.
    Description string
    Description of the Transport Zone.
    DisplayName string
    The Display Name of the Transport Zone.
    EnforcementPoint string
    The ID of enforcement point under given site_path to manage the Transport Zone.
    IsDefault bool
    Set this Transport Zone as the default zone of given transport_type. Default value is false. When setting a Transport Zone with is_default: true, no existing Transport Zone of same transport_type should be set as default.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    Path string
    The NSX path of the policy resource.
    PolicyTransportZoneId string
    RealizedId string
    Realized ID for the transport zone. For reference in fabric resources (such as transport_node), realized_id should be used rather than id.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    SitePath string
    The path of the site which the Transport Zone belongs to. path field of the existing nsxt.PolicySite can be used here.
    Tags []PolicyTransportZoneTagArgs
    A list of scope + tag pairs to associate with this resource.
    TransportType string
    Transport type of requested Transport Zone, one of OVERLAY_STANDARD, OVERLAY_ENS, OVERLAY_BACKED, VLAN_BACKED and UNKNOWN.
    UplinkTeamingPolicyNames []string
    The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKED transport zones.
    description String
    Description of the Transport Zone.
    displayName String
    The Display Name of the Transport Zone.
    enforcementPoint String
    The ID of enforcement point under given site_path to manage the Transport Zone.
    isDefault Boolean
    Set this Transport Zone as the default zone of given transport_type. Default value is false. When setting a Transport Zone with is_default: true, no existing Transport Zone of same transport_type should be set as default.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    path String
    The NSX path of the policy resource.
    policyTransportZoneId String
    realizedId String
    Realized ID for the transport zone. For reference in fabric resources (such as transport_node), realized_id should be used rather than id.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sitePath String
    The path of the site which the Transport Zone belongs to. path field of the existing nsxt.PolicySite can be used here.
    tags List<PolicyTransportZoneTag>
    A list of scope + tag pairs to associate with this resource.
    transportType String
    Transport type of requested Transport Zone, one of OVERLAY_STANDARD, OVERLAY_ENS, OVERLAY_BACKED, VLAN_BACKED and UNKNOWN.
    uplinkTeamingPolicyNames List<String>
    The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKED transport zones.
    description string
    Description of the Transport Zone.
    displayName string
    The Display Name of the Transport Zone.
    enforcementPoint string
    The ID of enforcement point under given site_path to manage the Transport Zone.
    isDefault boolean
    Set this Transport Zone as the default zone of given transport_type. Default value is false. When setting a Transport Zone with is_default: true, no existing Transport Zone of same transport_type should be set as default.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    path string
    The NSX path of the policy resource.
    policyTransportZoneId string
    realizedId string
    Realized ID for the transport zone. For reference in fabric resources (such as transport_node), realized_id should be used rather than id.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sitePath string
    The path of the site which the Transport Zone belongs to. path field of the existing nsxt.PolicySite can be used here.
    tags PolicyTransportZoneTag[]
    A list of scope + tag pairs to associate with this resource.
    transportType string
    Transport type of requested Transport Zone, one of OVERLAY_STANDARD, OVERLAY_ENS, OVERLAY_BACKED, VLAN_BACKED and UNKNOWN.
    uplinkTeamingPolicyNames string[]
    The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKED transport zones.
    description str
    Description of the Transport Zone.
    display_name str
    The Display Name of the Transport Zone.
    enforcement_point str
    The ID of enforcement point under given site_path to manage the Transport Zone.
    is_default bool
    Set this Transport Zone as the default zone of given transport_type. Default value is false. When setting a Transport Zone with is_default: true, no existing Transport Zone of same transport_type should be set as default.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    path str
    The NSX path of the policy resource.
    policy_transport_zone_id str
    realized_id str
    Realized ID for the transport zone. For reference in fabric resources (such as transport_node), realized_id should be used rather than id.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    site_path str
    The path of the site which the Transport Zone belongs to. path field of the existing nsxt.PolicySite can be used here.
    tags Sequence[PolicyTransportZoneTagArgs]
    A list of scope + tag pairs to associate with this resource.
    transport_type str
    Transport type of requested Transport Zone, one of OVERLAY_STANDARD, OVERLAY_ENS, OVERLAY_BACKED, VLAN_BACKED and UNKNOWN.
    uplink_teaming_policy_names Sequence[str]
    The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKED transport zones.
    description String
    Description of the Transport Zone.
    displayName String
    The Display Name of the Transport Zone.
    enforcementPoint String
    The ID of enforcement point under given site_path to manage the Transport Zone.
    isDefault Boolean
    Set this Transport Zone as the default zone of given transport_type. Default value is false. When setting a Transport Zone with is_default: true, no existing Transport Zone of same transport_type should be set as default.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    path String
    The NSX path of the policy resource.
    policyTransportZoneId String
    realizedId String
    Realized ID for the transport zone. For reference in fabric resources (such as transport_node), realized_id should be used rather than id.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sitePath String
    The path of the site which the Transport Zone belongs to. path field of the existing nsxt.PolicySite can be used here.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.
    transportType String
    Transport type of requested Transport Zone, one of OVERLAY_STANDARD, OVERLAY_ENS, OVERLAY_BACKED, VLAN_BACKED and UNKNOWN.
    uplinkTeamingPolicyNames List<String>
    The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKED transport zones.

    Supporting Types

    PolicyTransportZoneTag, PolicyTransportZoneTagArgs

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

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware