published on Monday, May 18, 2026 by vmware
published on Monday, May 18, 2026 by vmware
Create PolicyEdgeTransportNodeRtep Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicyEdgeTransportNodeRtep(name: string, args: PolicyEdgeTransportNodeRtepArgs, opts?: CustomResourceOptions);@overload
def PolicyEdgeTransportNodeRtep(resource_name: str,
args: PolicyEdgeTransportNodeRtepArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PolicyEdgeTransportNodeRtep(resource_name: str,
opts: Optional[ResourceOptions] = None,
edge_transport_node_path: Optional[str] = None,
host_switch_name: Optional[str] = None,
named_teaming_policy: Optional[str] = None,
vlan: Optional[float] = None,
ip_assignment: Optional[PolicyEdgeTransportNodeRtepIpAssignmentArgs] = None,
policy_edge_transport_node_rtep_id: Optional[str] = None)func NewPolicyEdgeTransportNodeRtep(ctx *Context, name string, args PolicyEdgeTransportNodeRtepArgs, opts ...ResourceOption) (*PolicyEdgeTransportNodeRtep, error)public PolicyEdgeTransportNodeRtep(string name, PolicyEdgeTransportNodeRtepArgs args, CustomResourceOptions? opts = null)
public PolicyEdgeTransportNodeRtep(String name, PolicyEdgeTransportNodeRtepArgs args)
public PolicyEdgeTransportNodeRtep(String name, PolicyEdgeTransportNodeRtepArgs args, CustomResourceOptions options)
type: nsxt:PolicyEdgeTransportNodeRtep
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "nsxt_policyedgetransportnodertep" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args PolicyEdgeTransportNodeRtepArgs
- 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 PolicyEdgeTransportNodeRtepArgs
- 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 PolicyEdgeTransportNodeRtepArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyEdgeTransportNodeRtepArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyEdgeTransportNodeRtepArgs
- 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 policyEdgeTransportNodeRtepResource = new Nsxt.PolicyEdgeTransportNodeRtep("policyEdgeTransportNodeRtepResource", new()
{
EdgeTransportNodePath = "string",
HostSwitchName = "string",
NamedTeamingPolicy = "string",
Vlan = 0,
IpAssignment = new Nsxt.Inputs.PolicyEdgeTransportNodeRtepIpAssignmentArgs
{
StaticIpv4List = new Nsxt.Inputs.PolicyEdgeTransportNodeRtepIpAssignmentStaticIpv4ListArgs
{
DefaultGateway = "string",
IpAddresses = new[]
{
"string",
},
SubnetMask = "string",
},
StaticIpv4Pool = "string",
},
PolicyEdgeTransportNodeRtepId = "string",
});
example, err := nsxt.NewPolicyEdgeTransportNodeRtep(ctx, "policyEdgeTransportNodeRtepResource", &nsxt.PolicyEdgeTransportNodeRtepArgs{
EdgeTransportNodePath: pulumi.String("string"),
HostSwitchName: pulumi.String("string"),
NamedTeamingPolicy: pulumi.String("string"),
Vlan: pulumi.Float64(0),
IpAssignment: &nsxt.PolicyEdgeTransportNodeRtepIpAssignmentArgs{
StaticIpv4List: &nsxt.PolicyEdgeTransportNodeRtepIpAssignmentStaticIpv4ListArgs{
DefaultGateway: pulumi.String("string"),
IpAddresses: pulumi.StringArray{
pulumi.String("string"),
},
SubnetMask: pulumi.String("string"),
},
StaticIpv4Pool: pulumi.String("string"),
},
PolicyEdgeTransportNodeRtepId: pulumi.String("string"),
})
resource "nsxt_policyedgetransportnodertep" "policyEdgeTransportNodeRtepResource" {
edge_transport_node_path = "string"
host_switch_name = "string"
named_teaming_policy = "string"
vlan = 0
ip_assignment = {
static_ipv4_list = {
default_gateway = "string"
ip_addresses = ["string"]
subnet_mask = "string"
}
static_ipv4_pool = "string"
}
policy_edge_transport_node_rtep_id = "string"
}
var policyEdgeTransportNodeRtepResource = new PolicyEdgeTransportNodeRtep("policyEdgeTransportNodeRtepResource", PolicyEdgeTransportNodeRtepArgs.builder()
.edgeTransportNodePath("string")
.hostSwitchName("string")
.namedTeamingPolicy("string")
.vlan(0.0)
.ipAssignment(PolicyEdgeTransportNodeRtepIpAssignmentArgs.builder()
.staticIpv4List(PolicyEdgeTransportNodeRtepIpAssignmentStaticIpv4ListArgs.builder()
.defaultGateway("string")
.ipAddresses("string")
.subnetMask("string")
.build())
.staticIpv4Pool("string")
.build())
.policyEdgeTransportNodeRtepId("string")
.build());
policy_edge_transport_node_rtep_resource = nsxt.PolicyEdgeTransportNodeRtep("policyEdgeTransportNodeRtepResource",
edge_transport_node_path="string",
host_switch_name="string",
named_teaming_policy="string",
vlan=float(0),
ip_assignment={
"static_ipv4_list": {
"default_gateway": "string",
"ip_addresses": ["string"],
"subnet_mask": "string",
},
"static_ipv4_pool": "string",
},
policy_edge_transport_node_rtep_id="string")
const policyEdgeTransportNodeRtepResource = new nsxt.PolicyEdgeTransportNodeRtep("policyEdgeTransportNodeRtepResource", {
edgeTransportNodePath: "string",
hostSwitchName: "string",
namedTeamingPolicy: "string",
vlan: 0,
ipAssignment: {
staticIpv4List: {
defaultGateway: "string",
ipAddresses: ["string"],
subnetMask: "string",
},
staticIpv4Pool: "string",
},
policyEdgeTransportNodeRtepId: "string",
});
type: nsxt:PolicyEdgeTransportNodeRtep
properties:
edgeTransportNodePath: string
hostSwitchName: string
ipAssignment:
staticIpv4List:
defaultGateway: string
ipAddresses:
- string
subnetMask: string
staticIpv4Pool: string
namedTeamingPolicy: string
policyEdgeTransportNodeRtepId: string
vlan: 0
PolicyEdgeTransportNodeRtep 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 PolicyEdgeTransportNodeRtep resource accepts the following input properties:
- Edge
Transport stringNode Path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- Host
Switch stringName - The host switch name to be used for the remote tunnel endpoint.
- Named
Teaming stringPolicy - The named teaming policy to be used by the remote tunnel endpoint.
- Vlan double
- VLAN id for remote tunnel endpoint.
- Ip
Assignment PolicyEdge Transport Node Rtep Ip Assignment - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- Policy
Edge stringTransport Node Rtep Id
- Edge
Transport stringNode Path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- Host
Switch stringName - The host switch name to be used for the remote tunnel endpoint.
- Named
Teaming stringPolicy - The named teaming policy to be used by the remote tunnel endpoint.
- Vlan float64
- VLAN id for remote tunnel endpoint.
- Ip
Assignment PolicyEdge Transport Node Rtep Ip Assignment Args - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- Policy
Edge stringTransport Node Rtep Id
- edge_
transport_ stringnode_ path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- host_
switch_ stringname - The host switch name to be used for the remote tunnel endpoint.
- named_
teaming_ stringpolicy - The named teaming policy to be used by the remote tunnel endpoint.
- vlan number
- VLAN id for remote tunnel endpoint.
- ip_
assignment object - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- policy_
edge_ stringtransport_ node_ rtep_ id
- edge
Transport StringNode Path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- host
Switch StringName - The host switch name to be used for the remote tunnel endpoint.
- named
Teaming StringPolicy - The named teaming policy to be used by the remote tunnel endpoint.
- vlan Double
- VLAN id for remote tunnel endpoint.
- ip
Assignment PolicyEdge Transport Node Rtep Ip Assignment - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- policy
Edge StringTransport Node Rtep Id
- edge
Transport stringNode Path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- host
Switch stringName - The host switch name to be used for the remote tunnel endpoint.
- named
Teaming stringPolicy - The named teaming policy to be used by the remote tunnel endpoint.
- vlan number
- VLAN id for remote tunnel endpoint.
- ip
Assignment PolicyEdge Transport Node Rtep Ip Assignment - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- policy
Edge stringTransport Node Rtep Id
- edge_
transport_ strnode_ path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- host_
switch_ strname - The host switch name to be used for the remote tunnel endpoint.
- named_
teaming_ strpolicy - The named teaming policy to be used by the remote tunnel endpoint.
- vlan float
- VLAN id for remote tunnel endpoint.
- ip_
assignment PolicyEdge Transport Node Rtep Ip Assignment Args - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- policy_
edge_ strtransport_ node_ rtep_ id
- edge
Transport StringNode Path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- host
Switch StringName - The host switch name to be used for the remote tunnel endpoint.
- named
Teaming StringPolicy - The named teaming policy to be used by the remote tunnel endpoint.
- vlan Number
- VLAN id for remote tunnel endpoint.
- ip
Assignment Property Map - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- policy
Edge StringTransport Node Rtep Id
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyEdgeTransportNodeRtep resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing PolicyEdgeTransportNodeRtep Resource
Get an existing PolicyEdgeTransportNodeRtep 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?: PolicyEdgeTransportNodeRtepState, opts?: CustomResourceOptions): PolicyEdgeTransportNodeRtep@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
edge_transport_node_path: Optional[str] = None,
host_switch_name: Optional[str] = None,
ip_assignment: Optional[PolicyEdgeTransportNodeRtepIpAssignmentArgs] = None,
named_teaming_policy: Optional[str] = None,
policy_edge_transport_node_rtep_id: Optional[str] = None,
vlan: Optional[float] = None) -> PolicyEdgeTransportNodeRtepfunc GetPolicyEdgeTransportNodeRtep(ctx *Context, name string, id IDInput, state *PolicyEdgeTransportNodeRtepState, opts ...ResourceOption) (*PolicyEdgeTransportNodeRtep, error)public static PolicyEdgeTransportNodeRtep Get(string name, Input<string> id, PolicyEdgeTransportNodeRtepState? state, CustomResourceOptions? opts = null)public static PolicyEdgeTransportNodeRtep get(String name, Output<String> id, PolicyEdgeTransportNodeRtepState state, CustomResourceOptions options)resources: _: type: nsxt:PolicyEdgeTransportNodeRtep get: id: ${id}import {
to = nsxt_policyedgetransportnodertep.example
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.
- Edge
Transport stringNode Path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- Host
Switch stringName - The host switch name to be used for the remote tunnel endpoint.
- Ip
Assignment PolicyEdge Transport Node Rtep Ip Assignment - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- Named
Teaming stringPolicy - The named teaming policy to be used by the remote tunnel endpoint.
- Policy
Edge stringTransport Node Rtep Id - Vlan double
- VLAN id for remote tunnel endpoint.
- Edge
Transport stringNode Path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- Host
Switch stringName - The host switch name to be used for the remote tunnel endpoint.
- Ip
Assignment PolicyEdge Transport Node Rtep Ip Assignment Args - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- Named
Teaming stringPolicy - The named teaming policy to be used by the remote tunnel endpoint.
- Policy
Edge stringTransport Node Rtep Id - Vlan float64
- VLAN id for remote tunnel endpoint.
- edge_
transport_ stringnode_ path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- host_
switch_ stringname - The host switch name to be used for the remote tunnel endpoint.
- ip_
assignment object - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- named_
teaming_ stringpolicy - The named teaming policy to be used by the remote tunnel endpoint.
- policy_
edge_ stringtransport_ node_ rtep_ id - vlan number
- VLAN id for remote tunnel endpoint.
- edge
Transport StringNode Path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- host
Switch StringName - The host switch name to be used for the remote tunnel endpoint.
- ip
Assignment PolicyEdge Transport Node Rtep Ip Assignment - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- named
Teaming StringPolicy - The named teaming policy to be used by the remote tunnel endpoint.
- policy
Edge StringTransport Node Rtep Id - vlan Double
- VLAN id for remote tunnel endpoint.
- edge
Transport stringNode Path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- host
Switch stringName - The host switch name to be used for the remote tunnel endpoint.
- ip
Assignment PolicyEdge Transport Node Rtep Ip Assignment - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- named
Teaming stringPolicy - The named teaming policy to be used by the remote tunnel endpoint.
- policy
Edge stringTransport Node Rtep Id - vlan number
- VLAN id for remote tunnel endpoint.
- edge_
transport_ strnode_ path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- host_
switch_ strname - The host switch name to be used for the remote tunnel endpoint.
- ip_
assignment PolicyEdge Transport Node Rtep Ip Assignment Args - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- named_
teaming_ strpolicy - The named teaming policy to be used by the remote tunnel endpoint.
- policy_
edge_ strtransport_ node_ rtep_ id - vlan float
- VLAN id for remote tunnel endpoint.
- edge
Transport StringNode Path - Policy path for Policy Edge Transport Node to associate with remote tunnel endpoint.
- host
Switch StringName - The host switch name to be used for the remote tunnel endpoint.
- ip
Assignment Property Map - Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
- named
Teaming StringPolicy - The named teaming policy to be used by the remote tunnel endpoint.
- policy
Edge StringTransport Node Rtep Id - vlan Number
- VLAN id for remote tunnel endpoint.
Supporting Types
PolicyEdgeTransportNodeRtepIpAssignment, PolicyEdgeTransportNodeRtepIpAssignmentArgs
- Static
Ipv4List PolicyEdge Transport Node Rtep Ip Assignment Static Ipv4List - IP assignment specification value for Static IPv4 List.
- Static
Ipv4Pool string - IP assignment specification for Static IPv4 Pool. Input can be MP ip pool UUID or policy path of IP pool.
- Static
Ipv4List PolicyEdge Transport Node Rtep Ip Assignment Static Ipv4List - IP assignment specification value for Static IPv4 List.
- Static
Ipv4Pool string - IP assignment specification for Static IPv4 Pool. Input can be MP ip pool UUID or policy path of IP pool.
- static_
ipv4_ objectlist - IP assignment specification value for Static IPv4 List.
- static_
ipv4_ stringpool - IP assignment specification for Static IPv4 Pool. Input can be MP ip pool UUID or policy path of IP pool.
- static
Ipv4List PolicyEdge Transport Node Rtep Ip Assignment Static Ipv4List - IP assignment specification value for Static IPv4 List.
- static
Ipv4Pool String - IP assignment specification for Static IPv4 Pool. Input can be MP ip pool UUID or policy path of IP pool.
- static
Ipv4List PolicyEdge Transport Node Rtep Ip Assignment Static Ipv4List - IP assignment specification value for Static IPv4 List.
- static
Ipv4Pool string - IP assignment specification for Static IPv4 Pool. Input can be MP ip pool UUID or policy path of IP pool.
- static_
ipv4_ Policylist Edge Transport Node Rtep Ip Assignment Static Ipv4List - IP assignment specification value for Static IPv4 List.
- static_
ipv4_ strpool - IP assignment specification for Static IPv4 Pool. Input can be MP ip pool UUID or policy path of IP pool.
- static
Ipv4List Property Map - IP assignment specification value for Static IPv4 List.
- static
Ipv4Pool String - IP assignment specification for Static IPv4 Pool. Input can be MP ip pool UUID or policy path of IP pool.
PolicyEdgeTransportNodeRtepIpAssignmentStaticIpv4List, PolicyEdgeTransportNodeRtepIpAssignmentStaticIpv4ListArgs
- Default
Gateway string - Gateway IP.
- Ip
Addresses List<string> - List of IPV4 addresses for edge transport node host switch virtual tunnel endpoints.
- Subnet
Mask string - Subnet mask.
- Default
Gateway string - Gateway IP.
- Ip
Addresses []string - List of IPV4 addresses for edge transport node host switch virtual tunnel endpoints.
- Subnet
Mask string - Subnet mask.
- default_
gateway string - Gateway IP.
- ip_
addresses list(string) - List of IPV4 addresses for edge transport node host switch virtual tunnel endpoints.
- subnet_
mask string - Subnet mask.
- default
Gateway String - Gateway IP.
- ip
Addresses List<String> - List of IPV4 addresses for edge transport node host switch virtual tunnel endpoints.
- subnet
Mask String - Subnet mask.
- default
Gateway string - Gateway IP.
- ip
Addresses string[] - List of IPV4 addresses for edge transport node host switch virtual tunnel endpoints.
- subnet
Mask string - Subnet mask.
- default_
gateway str - Gateway IP.
- ip_
addresses Sequence[str] - List of IPV4 addresses for edge transport node host switch virtual tunnel endpoints.
- subnet_
mask str - Subnet mask.
- default
Gateway String - Gateway IP.
- ip
Addresses List<String> - List of IPV4 addresses for edge transport node host switch virtual tunnel endpoints.
- subnet
Mask String - Subnet mask.
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxtTerraform Provider.
published on Monday, May 18, 2026 by vmware