nsxt.PolicyTransportZone
Explore with Pulumi AI
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
This property is required. string
- The unique name of the resource.
- args
This property is required. PolicyTransportZoneArgs
- 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. 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
This property is required. string
- The unique name of the resource.
- args
This property is required. PolicyTransportZoneArgs
- 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. PolicyTransportZoneArgs
- 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. 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: .PolicyTransportZoneTagArray{
&.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 This property is required. string
- Transport type of requested Transport Zone, one of OVERLAY_STANDARD,OVERLAY_ENS,OVERLAY_BACKED,VLAN_BACKEDandUNKNOWN.
- 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_pathto manage the Transport Zone.
- IsDefault bool
- Set this Transport Zone as the default zone of given transport_type. Default value isfalse. When setting a Transport Zone withis_default:true, no existing Transport Zone of sametransport_typeshould be set as default.
- NsxId string
- The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- PolicyTransport stringZone Id 
- SitePath string
- The path of the site which the Transport Zone belongs to. pathfield of the existingnsxt.PolicySitecan be used here.
- 
List<PolicyTransport Zone Tag> 
- A list of scope + tag pairs to associate with this resource.
- UplinkTeaming List<string>Policy Names 
- The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKEDtransport zones.
- TransportType This property is required. string
- Transport type of requested Transport Zone, one of OVERLAY_STANDARD,OVERLAY_ENS,OVERLAY_BACKED,VLAN_BACKEDandUNKNOWN.
- 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_pathto manage the Transport Zone.
- IsDefault bool
- Set this Transport Zone as the default zone of given transport_type. Default value isfalse. When setting a Transport Zone withis_default:true, no existing Transport Zone of sametransport_typeshould be set as default.
- NsxId string
- The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- PolicyTransport stringZone Id 
- SitePath string
- The path of the site which the Transport Zone belongs to. pathfield of the existingnsxt.PolicySitecan be used here.
- 
[]PolicyTransport Zone Tag Args 
- A list of scope + tag pairs to associate with this resource.
- UplinkTeaming []stringPolicy Names 
- The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKEDtransport zones.
- transportType This property is required. String
- Transport type of requested Transport Zone, one of OVERLAY_STANDARD,OVERLAY_ENS,OVERLAY_BACKED,VLAN_BACKEDandUNKNOWN.
- 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_pathto manage the Transport Zone.
- isDefault Boolean
- Set this Transport Zone as the default zone of given transport_type. Default value isfalse. When setting a Transport Zone withis_default:true, no existing Transport Zone of sametransport_typeshould be set as default.
- nsxId String
- The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- policyTransport StringZone Id 
- sitePath String
- The path of the site which the Transport Zone belongs to. pathfield of the existingnsxt.PolicySitecan be used here.
- 
List<PolicyTransport Zone Tag> 
- A list of scope + tag pairs to associate with this resource.
- uplinkTeaming List<String>Policy Names 
- The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKEDtransport zones.
- transportType This property is required. string
- Transport type of requested Transport Zone, one of OVERLAY_STANDARD,OVERLAY_ENS,OVERLAY_BACKED,VLAN_BACKEDandUNKNOWN.
- 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_pathto manage the Transport Zone.
- isDefault boolean
- Set this Transport Zone as the default zone of given transport_type. Default value isfalse. When setting a Transport Zone withis_default:true, no existing Transport Zone of sametransport_typeshould be set as default.
- nsxId string
- The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- policyTransport stringZone Id 
- sitePath string
- The path of the site which the Transport Zone belongs to. pathfield of the existingnsxt.PolicySitecan be used here.
- 
PolicyTransport Zone Tag[] 
- A list of scope + tag pairs to associate with this resource.
- uplinkTeaming string[]Policy Names 
- The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKEDtransport zones.
- transport_type This property is required. str
- Transport type of requested Transport Zone, one of OVERLAY_STANDARD,OVERLAY_ENS,OVERLAY_BACKED,VLAN_BACKEDandUNKNOWN.
- 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_pathto manage the Transport Zone.
- is_default bool
- Set this Transport Zone as the default zone of given transport_type. Default value isfalse. When setting a Transport Zone withis_default:true, no existing Transport Zone of sametransport_typeshould 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_ strzone_ id 
- site_path str
- The path of the site which the Transport Zone belongs to. pathfield of the existingnsxt.PolicySitecan be used here.
- 
Sequence[PolicyTransport Zone Tag Args] 
- A list of scope + tag pairs to associate with this resource.
- uplink_teaming_ Sequence[str]policy_ names 
- The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKEDtransport zones.
- transportType This property is required. String
- Transport type of requested Transport Zone, one of OVERLAY_STANDARD,OVERLAY_ENS,OVERLAY_BACKED,VLAN_BACKEDandUNKNOWN.
- 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_pathto manage the Transport Zone.
- isDefault Boolean
- Set this Transport Zone as the default zone of given transport_type. Default value isfalse. When setting a Transport Zone withis_default:true, no existing Transport Zone of sametransport_typeshould be set as default.
- nsxId String
- The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- policyTransport StringZone Id 
- sitePath String
- The path of the site which the Transport Zone belongs to. pathfield of the existingnsxt.PolicySitecan be used here.
- List<Property Map>
- A list of scope + tag pairs to associate with this resource.
- uplinkTeaming List<String>Policy Names 
- The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKEDtransport 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_idshould be used rather thanid.
- 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_idshould be used rather thanid.
- 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_idshould be used rather thanid.
- 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_idshould be used rather thanid.
- 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_idshould be used rather thanid.
- 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_idshould be used rather thanid.
- 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) -> PolicyTransportZonefunc 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
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.
- 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_pathto manage the Transport Zone.
- IsDefault bool
- Set this Transport Zone as the default zone of given transport_type. Default value isfalse. When setting a Transport Zone withis_default:true, no existing Transport Zone of sametransport_typeshould 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.
- PolicyTransport stringZone Id 
- RealizedId string
- Realized ID for the transport zone. For reference in fabric resources (such as transport_node),realized_idshould be used rather thanid.
- 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. pathfield of the existingnsxt.PolicySitecan be used here.
- 
List<PolicyTransport Zone Tag> 
- 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_BACKEDandUNKNOWN.
- UplinkTeaming List<string>Policy Names 
- The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKEDtransport 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_pathto manage the Transport Zone.
- IsDefault bool
- Set this Transport Zone as the default zone of given transport_type. Default value isfalse. When setting a Transport Zone withis_default:true, no existing Transport Zone of sametransport_typeshould 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.
- PolicyTransport stringZone Id 
- RealizedId string
- Realized ID for the transport zone. For reference in fabric resources (such as transport_node),realized_idshould be used rather thanid.
- 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. pathfield of the existingnsxt.PolicySitecan be used here.
- 
[]PolicyTransport Zone Tag Args 
- 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_BACKEDandUNKNOWN.
- UplinkTeaming []stringPolicy Names 
- The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKEDtransport 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_pathto manage the Transport Zone.
- isDefault Boolean
- Set this Transport Zone as the default zone of given transport_type. Default value isfalse. When setting a Transport Zone withis_default:true, no existing Transport Zone of sametransport_typeshould 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.
- policyTransport StringZone Id 
- realizedId String
- Realized ID for the transport zone. For reference in fabric resources (such as transport_node),realized_idshould be used rather thanid.
- 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. pathfield of the existingnsxt.PolicySitecan be used here.
- 
List<PolicyTransport Zone Tag> 
- 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_BACKEDandUNKNOWN.
- uplinkTeaming List<String>Policy Names 
- The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKEDtransport 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_pathto manage the Transport Zone.
- isDefault boolean
- Set this Transport Zone as the default zone of given transport_type. Default value isfalse. When setting a Transport Zone withis_default:true, no existing Transport Zone of sametransport_typeshould 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.
- policyTransport stringZone Id 
- realizedId string
- Realized ID for the transport zone. For reference in fabric resources (such as transport_node),realized_idshould be used rather thanid.
- 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. pathfield of the existingnsxt.PolicySitecan be used here.
- 
PolicyTransport Zone Tag[] 
- 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_BACKEDandUNKNOWN.
- uplinkTeaming string[]Policy Names 
- The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKEDtransport 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_pathto manage the Transport Zone.
- is_default bool
- Set this Transport Zone as the default zone of given transport_type. Default value isfalse. When setting a Transport Zone withis_default:true, no existing Transport Zone of sametransport_typeshould 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_ strzone_ id 
- realized_id str
- Realized ID for the transport zone. For reference in fabric resources (such as transport_node),realized_idshould be used rather thanid.
- 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. pathfield of the existingnsxt.PolicySitecan be used here.
- 
Sequence[PolicyTransport Zone Tag Args] 
- 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_BACKEDandUNKNOWN.
- uplink_teaming_ Sequence[str]policy_ names 
- The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKEDtransport 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_pathto manage the Transport Zone.
- isDefault Boolean
- Set this Transport Zone as the default zone of given transport_type. Default value isfalse. When setting a Transport Zone withis_default:true, no existing Transport Zone of sametransport_typeshould 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.
- policyTransport StringZone Id 
- realizedId String
- Realized ID for the transport zone. For reference in fabric resources (such as transport_node),realized_idshould be used rather thanid.
- 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. pathfield of the existingnsxt.PolicySitecan be used here.
- 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_BACKEDandUNKNOWN.
- uplinkTeaming List<String>Policy Names 
- The names of switching uplink teaming policies that all transport nodes in this transport zone support. Uplinkin teaming policies are only valid for VLAN_BACKEDtransport zones.
Supporting Types
PolicyTransportZoneTag, PolicyTransportZoneTagArgs        
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the nsxtTerraform Provider.