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 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:
- Transport
Type string - Transport type of requested Transport Zone, one of
OVERLAY_STANDARD
,OVERLAY_ENS
,OVERLAY_BACKED
,VLAN_BACKED
andUNKNOWN
. - Description string
- Description of the Transport Zone.
- Display
Name string - The Display Name of the Transport Zone.
- Enforcement
Point string - 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 isfalse
. When setting a Transport Zone withis_default
:true
, no existing Transport Zone of sametransport_type
should be set as default. - Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- Policy
Transport stringZone Id - Site
Path string - The path of the site which the Transport Zone belongs to.
path
field of the existingnsxt.PolicySite
can be used here. - List<Policy
Transport Zone Tag> - A list of scope + tag pairs to associate with this resource.
- Uplink
Teaming 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_BACKED
transport zones.
- Transport
Type string - Transport type of requested Transport Zone, one of
OVERLAY_STANDARD
,OVERLAY_ENS
,OVERLAY_BACKED
,VLAN_BACKED
andUNKNOWN
. - Description string
- Description of the Transport Zone.
- Display
Name string - The Display Name of the Transport Zone.
- Enforcement
Point string - 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 isfalse
. When setting a Transport Zone withis_default
:true
, no existing Transport Zone of sametransport_type
should be set as default. - Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- Policy
Transport stringZone Id - Site
Path string - The path of the site which the Transport Zone belongs to.
path
field of the existingnsxt.PolicySite
can be used here. - []Policy
Transport Zone Tag Args - A list of scope + tag pairs to associate with this resource.
- Uplink
Teaming []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_BACKED
transport zones.
- transport
Type String - Transport type of requested Transport Zone, one of
OVERLAY_STANDARD
,OVERLAY_ENS
,OVERLAY_BACKED
,VLAN_BACKED
andUNKNOWN
. - description String
- Description of the Transport Zone.
- display
Name String - The Display Name of the Transport Zone.
- enforcement
Point String - The ID of enforcement point under given
site_path
to manage the Transport Zone. - is
Default 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_type
should be set as default. - nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- policy
Transport StringZone Id - site
Path String - The path of the site which the Transport Zone belongs to.
path
field of the existingnsxt.PolicySite
can be used here. - List<Policy
Transport Zone Tag> - A list of scope + tag pairs to associate with this resource.
- uplink
Teaming 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_BACKED
transport zones.
- transport
Type string - Transport type of requested Transport Zone, one of
OVERLAY_STANDARD
,OVERLAY_ENS
,OVERLAY_BACKED
,VLAN_BACKED
andUNKNOWN
. - description string
- Description of the Transport Zone.
- display
Name string - The Display Name of the Transport Zone.
- enforcement
Point string - The ID of enforcement point under given
site_path
to manage the Transport Zone. - is
Default 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_type
should be set as default. - nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- policy
Transport stringZone Id - site
Path string - The path of the site which the Transport Zone belongs to.
path
field of the existingnsxt.PolicySite
can be used here. - Policy
Transport Zone Tag[] - A list of scope + tag pairs to associate with this resource.
- uplink
Teaming 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_BACKED
transport zones.
- transport_
type str - Transport type of requested Transport Zone, one of
OVERLAY_STANDARD
,OVERLAY_ENS
,OVERLAY_BACKED
,VLAN_BACKED
andUNKNOWN
. - 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 isfalse
. When setting a Transport Zone withis_default
:true
, no existing Transport Zone of sametransport_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_ strzone_ id - site_
path str - The path of the site which the Transport Zone belongs to.
path
field of the existingnsxt.PolicySite
can be used here. - Sequence[Policy
Transport 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_BACKED
transport zones.
- transport
Type String - Transport type of requested Transport Zone, one of
OVERLAY_STANDARD
,OVERLAY_ENS
,OVERLAY_BACKED
,VLAN_BACKED
andUNKNOWN
. - description String
- Description of the Transport Zone.
- display
Name String - The Display Name of the Transport Zone.
- enforcement
Point String - The ID of enforcement point under given
site_path
to manage the Transport Zone. - is
Default 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_type
should be set as default. - nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- policy
Transport StringZone Id - site
Path String - The path of the site which the Transport Zone belongs to.
path
field of the existingnsxt.PolicySite
can be used here. - List<Property Map>
- A list of scope + tag pairs to associate with this resource.
- uplink
Teaming 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_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.
- Realized
Id string - Realized ID for the transport zone. For reference in fabric resources (such as
transport_node
),realized_id
should 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.
- Realized
Id string - Realized ID for the transport zone. For reference in fabric resources (such as
transport_node
),realized_id
should 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.
- realized
Id String - Realized ID for the transport zone. For reference in fabric resources (such as
transport_node
),realized_id
should 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.
- realized
Id string - Realized ID for the transport zone. For reference in fabric resources (such as
transport_node
),realized_id
should 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_id
should 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.
- realized
Id String - Realized ID for the transport zone. For reference in fabric resources (such as
transport_node
),realized_id
should 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) -> 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.
- Description string
- Description of the Transport Zone.
- Display
Name string - The Display Name of the Transport Zone.
- Enforcement
Point string - 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 isfalse
. When setting a Transport Zone withis_default
:true
, no existing Transport Zone of sametransport_type
should be set as default. - Nsx
Id 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.
- Policy
Transport stringZone Id - Realized
Id string - Realized ID for the transport zone. For reference in fabric resources (such as
transport_node
),realized_id
should 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.
- Site
Path string - The path of the site which the Transport Zone belongs to.
path
field of the existingnsxt.PolicySite
can be used here. - List<Policy
Transport Zone Tag> - A list of scope + tag pairs to associate with this resource.
- Transport
Type string - Transport type of requested Transport Zone, one of
OVERLAY_STANDARD
,OVERLAY_ENS
,OVERLAY_BACKED
,VLAN_BACKED
andUNKNOWN
. - Uplink
Teaming 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_BACKED
transport zones.
- Description string
- Description of the Transport Zone.
- Display
Name string - The Display Name of the Transport Zone.
- Enforcement
Point string - 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 isfalse
. When setting a Transport Zone withis_default
:true
, no existing Transport Zone of sametransport_type
should be set as default. - Nsx
Id 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.
- Policy
Transport stringZone Id - Realized
Id string - Realized ID for the transport zone. For reference in fabric resources (such as
transport_node
),realized_id
should 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.
- Site
Path string - The path of the site which the Transport Zone belongs to.
path
field of the existingnsxt.PolicySite
can be used here. - []Policy
Transport Zone Tag Args - A list of scope + tag pairs to associate with this resource.
- Transport
Type string - Transport type of requested Transport Zone, one of
OVERLAY_STANDARD
,OVERLAY_ENS
,OVERLAY_BACKED
,VLAN_BACKED
andUNKNOWN
. - Uplink
Teaming []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_BACKED
transport zones.
- description String
- Description of the Transport Zone.
- display
Name String - The Display Name of the Transport Zone.
- enforcement
Point String - The ID of enforcement point under given
site_path
to manage the Transport Zone. - is
Default 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_type
should be set as default. - nsx
Id 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.
- policy
Transport StringZone Id - realized
Id String - Realized ID for the transport zone. For reference in fabric resources (such as
transport_node
),realized_id
should 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.
- site
Path String - The path of the site which the Transport Zone belongs to.
path
field of the existingnsxt.PolicySite
can be used here. - List<Policy
Transport Zone Tag> - A list of scope + tag pairs to associate with this resource.
- transport
Type String - Transport type of requested Transport Zone, one of
OVERLAY_STANDARD
,OVERLAY_ENS
,OVERLAY_BACKED
,VLAN_BACKED
andUNKNOWN
. - uplink
Teaming 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_BACKED
transport zones.
- description string
- Description of the Transport Zone.
- display
Name string - The Display Name of the Transport Zone.
- enforcement
Point string - The ID of enforcement point under given
site_path
to manage the Transport Zone. - is
Default 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_type
should be set as default. - nsx
Id 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.
- policy
Transport stringZone Id - realized
Id string - Realized ID for the transport zone. For reference in fabric resources (such as
transport_node
),realized_id
should 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.
- site
Path string - The path of the site which the Transport Zone belongs to.
path
field of the existingnsxt.PolicySite
can be used here. - Policy
Transport Zone Tag[] - A list of scope + tag pairs to associate with this resource.
- transport
Type string - Transport type of requested Transport Zone, one of
OVERLAY_STANDARD
,OVERLAY_ENS
,OVERLAY_BACKED
,VLAN_BACKED
andUNKNOWN
. - uplink
Teaming 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_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 isfalse
. When setting a Transport Zone withis_default
:true
, no existing Transport Zone of sametransport_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_ strzone_ id - realized_
id str - Realized ID for the transport zone. For reference in fabric resources (such as
transport_node
),realized_id
should 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.
path
field of the existingnsxt.PolicySite
can be used here. - Sequence[Policy
Transport 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_BACKED
andUNKNOWN
. - 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_BACKED
transport zones.
- description String
- Description of the Transport Zone.
- display
Name String - The Display Name of the Transport Zone.
- enforcement
Point String - The ID of enforcement point under given
site_path
to manage the Transport Zone. - is
Default 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_type
should be set as default. - nsx
Id 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.
- policy
Transport StringZone Id - realized
Id String - Realized ID for the transport zone. For reference in fabric resources (such as
transport_node
),realized_id
should 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.
- site
Path String - The path of the site which the Transport Zone belongs to.
path
field of the existingnsxt.PolicySite
can be used here. - List<Property Map>
- A list of scope + tag pairs to associate with this resource.
- transport
Type String - Transport type of requested Transport Zone, one of
OVERLAY_STANDARD
,OVERLAY_ENS
,OVERLAY_BACKED
,VLAN_BACKED
andUNKNOWN
. - uplink
Teaming 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_BACKED
transport zones.
Supporting Types
PolicyTransportZoneTag, PolicyTransportZoneTagArgs
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxt
Terraform Provider.