published on Friday, Sep 11, 2026 by vmware
published on Friday, Sep 11, 2026 by vmware
Create PolicyRouteControllerInterface Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicyRouteControllerInterface(name: string, args: PolicyRouteControllerInterfaceArgs, opts?: CustomResourceOptions);@overload
def PolicyRouteControllerInterface(resource_name: str,
args: PolicyRouteControllerInterfaceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PolicyRouteControllerInterface(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
interface_addresses: Optional[Sequence[PolicyRouteControllerInterfaceInterfaceAddressArgs]] = None,
parent_path: Optional[str] = None,
description: Optional[str] = None,
floating_ip_subnets: Optional[Sequence[str]] = None,
mtu: Optional[float] = None,
nsx_id: Optional[str] = None,
policy_route_controller_interface_id: Optional[str] = None,
tags: Optional[Sequence[PolicyRouteControllerInterfaceTagArgs]] = None,
urpf_mode: Optional[str] = None)func NewPolicyRouteControllerInterface(ctx *Context, name string, args PolicyRouteControllerInterfaceArgs, opts ...ResourceOption) (*PolicyRouteControllerInterface, error)public PolicyRouteControllerInterface(string name, PolicyRouteControllerInterfaceArgs args, CustomResourceOptions? opts = null)
public PolicyRouteControllerInterface(String name, PolicyRouteControllerInterfaceArgs args)
public PolicyRouteControllerInterface(String name, PolicyRouteControllerInterfaceArgs args, CustomResourceOptions options)
type: nsxt:PolicyRouteControllerInterface
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "nsxt_policy_route_controller_interface" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args PolicyRouteControllerInterfaceArgs
- 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 PolicyRouteControllerInterfaceArgs
- 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 PolicyRouteControllerInterfaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyRouteControllerInterfaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyRouteControllerInterfaceArgs
- 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 policyRouteControllerInterfaceResource = new Nsxt.PolicyRouteControllerInterface("policyRouteControllerInterfaceResource", new()
{
DisplayName = "string",
InterfaceAddresses = new[]
{
new Nsxt.Inputs.PolicyRouteControllerInterfaceInterfaceAddressArgs
{
PortgroupId = "string",
Subnets = new[]
{
"string",
},
VirtualNetworkAppliancePath = "string",
},
},
ParentPath = "string",
Description = "string",
FloatingIpSubnets = new[]
{
"string",
},
Mtu = 0.0,
NsxId = "string",
PolicyRouteControllerInterfaceId = "string",
Tags = new[]
{
new Nsxt.Inputs.PolicyRouteControllerInterfaceTagArgs
{
Scope = "string",
Tag = "string",
},
},
UrpfMode = "string",
});
example, err := nsxt.NewPolicyRouteControllerInterface(ctx, "policyRouteControllerInterfaceResource", &nsxt.PolicyRouteControllerInterfaceArgs{
DisplayName: pulumi.String("string"),
InterfaceAddresses: nsxt.PolicyRouteControllerInterfaceInterfaceAddressArray{
&nsxt.PolicyRouteControllerInterfaceInterfaceAddressArgs{
PortgroupId: pulumi.String("string"),
Subnets: pulumi.StringArray{
pulumi.String("string"),
},
VirtualNetworkAppliancePath: pulumi.String("string"),
},
},
ParentPath: pulumi.String("string"),
Description: pulumi.String("string"),
FloatingIpSubnets: pulumi.StringArray{
pulumi.String("string"),
},
Mtu: pulumi.Float64(0),
NsxId: pulumi.String("string"),
PolicyRouteControllerInterfaceId: pulumi.String("string"),
Tags: nsxt.PolicyRouteControllerInterfaceTagArray{
&nsxt.PolicyRouteControllerInterfaceTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
UrpfMode: pulumi.String("string"),
})
resource "nsxt_policy_route_controller_interface" "policyRouteControllerInterfaceResource" {
lifecycle {
create_before_destroy = true
}
display_name = "string"
interface_addresses {
portgroup_id = "string"
subnets = ["string"]
virtual_network_appliance_path = "string"
}
parent_path = "string"
description = "string"
floating_ip_subnets = ["string"]
mtu = 0
nsx_id = "string"
policy_route_controller_interface_id = "string"
tags {
scope = "string"
tag = "string"
}
urpf_mode = "string"
}
var policyRouteControllerInterfaceResource = new PolicyRouteControllerInterface("policyRouteControllerInterfaceResource", PolicyRouteControllerInterfaceArgs.builder()
.displayName("string")
.interfaceAddresses(PolicyRouteControllerInterfaceInterfaceAddressArgs.builder()
.portgroupId("string")
.subnets("string")
.virtualNetworkAppliancePath("string")
.build())
.parentPath("string")
.description("string")
.floatingIpSubnets("string")
.mtu(0.0)
.nsxId("string")
.policyRouteControllerInterfaceId("string")
.tags(PolicyRouteControllerInterfaceTagArgs.builder()
.scope("string")
.tag("string")
.build())
.urpfMode("string")
.build());
policy_route_controller_interface_resource = nsxt.PolicyRouteControllerInterface("policyRouteControllerInterfaceResource",
display_name="string",
interface_addresses=[{
"portgroup_id": "string",
"subnets": ["string"],
"virtual_network_appliance_path": "string",
}],
parent_path="string",
description="string",
floating_ip_subnets=["string"],
mtu=float(0),
nsx_id="string",
policy_route_controller_interface_id="string",
tags=[{
"scope": "string",
"tag": "string",
}],
urpf_mode="string")
const policyRouteControllerInterfaceResource = new nsxt.PolicyRouteControllerInterface("policyRouteControllerInterfaceResource", {
displayName: "string",
interfaceAddresses: [{
portgroupId: "string",
subnets: ["string"],
virtualNetworkAppliancePath: "string",
}],
parentPath: "string",
description: "string",
floatingIpSubnets: ["string"],
mtu: 0,
nsxId: "string",
policyRouteControllerInterfaceId: "string",
tags: [{
scope: "string",
tag: "string",
}],
urpfMode: "string",
});
type: nsxt:PolicyRouteControllerInterface
properties:
description: string
displayName: string
floatingIpSubnets:
- string
interfaceAddresses:
- portgroupId: string
subnets:
- string
virtualNetworkAppliancePath: string
mtu: 0
nsxId: string
parentPath: string
policyRouteControllerInterfaceId: string
tags:
- scope: string
tag: string
urpfMode: string
PolicyRouteControllerInterface 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 PolicyRouteControllerInterface resource accepts the following input properties:
- Display
Name string - Display name of the resource.
- Interface
Addresses List<PolicyRoute Controller Interface Interface Address> - List of interface address configurations. The following arguments are supported:
- Parent
Path string - Policy path of the parent Route Controller.
- Description string
- Description of the resource.
- Floating
Ip List<string>Subnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - Mtu double
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Route stringController Interface Id - ID of the resource.
-
List<Policy
Route Controller Interface Tag> - A list of scope + tag pairs to associate with this resource.
- Urpf
Mode string - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
- Display
Name string - Display name of the resource.
- Interface
Addresses []PolicyRoute Controller Interface Interface Address Args - List of interface address configurations. The following arguments are supported:
- Parent
Path string - Policy path of the parent Route Controller.
- Description string
- Description of the resource.
- Floating
Ip []stringSubnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - Mtu float64
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Route stringController Interface Id - ID of the resource.
-
[]Policy
Route Controller Interface Tag Args - A list of scope + tag pairs to associate with this resource.
- Urpf
Mode string - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
- display_
name string - Display name of the resource.
- interface_
addresses list(object) - List of interface address configurations. The following arguments are supported:
- parent_
path string - Policy path of the parent Route Controller.
- description string
- Description of the resource.
- floating_
ip_ list(string)subnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - mtu number
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - nsx_
id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy_
route_ stringcontroller_ interface_ id - ID of the resource.
- list(object)
- A list of scope + tag pairs to associate with this resource.
- urpf_
mode string - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
- display
Name String - Display name of the resource.
- interface
Addresses List<PolicyRoute Controller Interface Interface Address> - List of interface address configurations. The following arguments are supported:
- parent
Path String - Policy path of the parent Route Controller.
- description String
- Description of the resource.
- floating
Ip List<String>Subnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - mtu Double
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Route StringController Interface Id - ID of the resource.
-
List<Policy
Route Controller Interface Tag> - A list of scope + tag pairs to associate with this resource.
- urpf
Mode String - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
- display
Name string - Display name of the resource.
- interface
Addresses PolicyRoute Controller Interface Interface Address[] - List of interface address configurations. The following arguments are supported:
- parent
Path string - Policy path of the parent Route Controller.
- description string
- Description of the resource.
- floating
Ip string[]Subnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - mtu number
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Route stringController Interface Id - ID of the resource.
-
Policy
Route Controller Interface Tag[] - A list of scope + tag pairs to associate with this resource.
- urpf
Mode string - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
- display_
name str - Display name of the resource.
- interface_
addresses Sequence[PolicyRoute Controller Interface Interface Address Args] - List of interface address configurations. The following arguments are supported:
- parent_
path str - Policy path of the parent Route Controller.
- description str
- Description of the resource.
- floating_
ip_ Sequence[str]subnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - mtu float
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - nsx_
id str - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy_
route_ strcontroller_ interface_ id - ID of the resource.
-
Sequence[Policy
Route Controller Interface Tag Args] - A list of scope + tag pairs to associate with this resource.
- urpf_
mode str - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
- display
Name String - Display name of the resource.
- interface
Addresses List<Property Map> - List of interface address configurations. The following arguments are supported:
- parent
Path String - Policy path of the parent Route Controller.
- description String
- Description of the resource.
- floating
Ip List<String>Subnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - mtu Number
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Route StringController Interface Id - ID of the resource.
- List<Property Map>
- A list of scope + tag pairs to associate with this resource.
- urpf
Mode String - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyRouteControllerInterface resource produces the following output properties:
Look up Existing PolicyRouteControllerInterface Resource
Get an existing PolicyRouteControllerInterface 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?: PolicyRouteControllerInterfaceState, opts?: CustomResourceOptions): PolicyRouteControllerInterface@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
floating_ip_subnets: Optional[Sequence[str]] = None,
interface_addresses: Optional[Sequence[PolicyRouteControllerInterfaceInterfaceAddressArgs]] = None,
mtu: Optional[float] = None,
nsx_id: Optional[str] = None,
parent_path: Optional[str] = None,
path: Optional[str] = None,
policy_route_controller_interface_id: Optional[str] = None,
revision: Optional[float] = None,
tags: Optional[Sequence[PolicyRouteControllerInterfaceTagArgs]] = None,
urpf_mode: Optional[str] = None) -> PolicyRouteControllerInterfacefunc GetPolicyRouteControllerInterface(ctx *Context, name string, id IDInput, state *PolicyRouteControllerInterfaceState, opts ...ResourceOption) (*PolicyRouteControllerInterface, error)public static PolicyRouteControllerInterface Get(string name, Input<string> id, PolicyRouteControllerInterfaceState? state, CustomResourceOptions? opts = null)public static PolicyRouteControllerInterface get(String name, Output<String> id, PolicyRouteControllerInterfaceState state, CustomResourceOptions options)resources: _: type: nsxt:PolicyRouteControllerInterface get: id: ${id}import {
to = nsxt_policy_route_controller_interface.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.
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Floating
Ip List<string>Subnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - Interface
Addresses List<PolicyRoute Controller Interface Interface Address> - List of interface address configurations. The following arguments are supported:
- Mtu double
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Parent
Path string - Policy path of the parent Route Controller.
- Path string
- The NSX path of the policy resource.
- Policy
Route stringController Interface Id - ID of the resource.
- Revision double
- Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
-
List<Policy
Route Controller Interface Tag> - A list of scope + tag pairs to associate with this resource.
- Urpf
Mode string - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Floating
Ip []stringSubnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - Interface
Addresses []PolicyRoute Controller Interface Interface Address Args - List of interface address configurations. The following arguments are supported:
- Mtu float64
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Parent
Path string - Policy path of the parent Route Controller.
- Path string
- The NSX path of the policy resource.
- Policy
Route stringController Interface Id - ID of the resource.
- Revision float64
- Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
-
[]Policy
Route Controller Interface Tag Args - A list of scope + tag pairs to associate with this resource.
- Urpf
Mode string - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
- description string
- Description of the resource.
- display_
name string - Display name of the resource.
- floating_
ip_ list(string)subnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - interface_
addresses list(object) - List of interface address configurations. The following arguments are supported:
- mtu number
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - nsx_
id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- parent_
path string - Policy path of the parent Route Controller.
- path string
- The NSX path of the policy resource.
- policy_
route_ stringcontroller_ interface_ id - ID of the resource.
- revision number
- Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- list(object)
- A list of scope + tag pairs to associate with this resource.
- urpf_
mode string - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
- description String
- Description of the resource.
- display
Name String - Display name of the resource.
- floating
Ip List<String>Subnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - interface
Addresses List<PolicyRoute Controller Interface Interface Address> - List of interface address configurations. The following arguments are supported:
- mtu Double
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- parent
Path String - Policy path of the parent Route Controller.
- path String
- The NSX path of the policy resource.
- policy
Route StringController Interface Id - ID of the resource.
- revision Double
- Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
-
List<Policy
Route Controller Interface Tag> - A list of scope + tag pairs to associate with this resource.
- urpf
Mode String - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
- description string
- Description of the resource.
- display
Name string - Display name of the resource.
- floating
Ip string[]Subnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - interface
Addresses PolicyRoute Controller Interface Interface Address[] - List of interface address configurations. The following arguments are supported:
- mtu number
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- parent
Path string - Policy path of the parent Route Controller.
- path string
- The NSX path of the policy resource.
- policy
Route stringController Interface Id - ID of the resource.
- revision number
- Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
-
Policy
Route Controller Interface Tag[] - A list of scope + tag pairs to associate with this resource.
- urpf
Mode string - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
- description str
- Description of the resource.
- display_
name str - Display name of the resource.
- floating_
ip_ Sequence[str]subnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - interface_
addresses Sequence[PolicyRoute Controller Interface Interface Address Args] - List of interface address configurations. The following arguments are supported:
- mtu float
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - nsx_
id str - The NSX ID of this resource. If set, this ID will be used to create the resource.
- parent_
path str - Policy path of the parent Route Controller.
- path str
- The NSX path of the policy resource.
- policy_
route_ strcontroller_ interface_ id - ID of the resource.
- revision float
- Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
-
Sequence[Policy
Route Controller Interface Tag Args] - A list of scope + tag pairs to associate with this resource.
- urpf_
mode str - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
- description String
- Description of the resource.
- display
Name String - Display name of the resource.
- floating
Ip List<String>Subnets - List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is
ACTIVE_STANDBY. - interface
Addresses List<Property Map> - List of interface address configurations. The following arguments are supported:
- mtu Number
- Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is
64. - nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- parent
Path String - Policy path of the parent Route Controller.
- path String
- The NSX path of the policy resource.
- policy
Route StringController Interface Id - ID of the resource.
- revision Number
- Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- List<Property Map>
- A list of scope + tag pairs to associate with this resource.
- urpf
Mode String - Unicast Reverse Path Forwarding mode. One of
NONE,STRICT. Defaults toSTRICT.
Supporting Types
PolicyRouteControllerInterfaceInterfaceAddress, PolicyRouteControllerInterfaceInterfaceAddressArgs
- Portgroup
Id string - DV port group identifier discovered from vCenter.
- Subnets List<string>
- List of IP addresses and network prefixes in CIDR notation for this interface address.
- Virtual
Network stringAppliance Path - Policy path for the virtual network appliance.
- Portgroup
Id string - DV port group identifier discovered from vCenter.
- Subnets []string
- List of IP addresses and network prefixes in CIDR notation for this interface address.
- Virtual
Network stringAppliance Path - Policy path for the virtual network appliance.
- portgroup_
id string - DV port group identifier discovered from vCenter.
- subnets list(string)
- List of IP addresses and network prefixes in CIDR notation for this interface address.
- virtual_
network_ stringappliance_ path - Policy path for the virtual network appliance.
- portgroup
Id String - DV port group identifier discovered from vCenter.
- subnets List<String>
- List of IP addresses and network prefixes in CIDR notation for this interface address.
- virtual
Network StringAppliance Path - Policy path for the virtual network appliance.
- portgroup
Id string - DV port group identifier discovered from vCenter.
- subnets string[]
- List of IP addresses and network prefixes in CIDR notation for this interface address.
- virtual
Network stringAppliance Path - Policy path for the virtual network appliance.
- portgroup_
id str - DV port group identifier discovered from vCenter.
- subnets Sequence[str]
- List of IP addresses and network prefixes in CIDR notation for this interface address.
- virtual_
network_ strappliance_ path - Policy path for the virtual network appliance.
- portgroup
Id String - DV port group identifier discovered from vCenter.
- subnets List<String>
- List of IP addresses and network prefixes in CIDR notation for this interface address.
- virtual
Network StringAppliance Path - Policy path for the virtual network appliance.
PolicyRouteControllerInterfaceTag, PolicyRouteControllerInterfaceTagArgs
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxtTerraform Provider.
published on Friday, Sep 11, 2026 by vmware