1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyHostTransportNodeCollection
nsxt 3.8.0 published on Monday, Apr 14, 2025 by vmware

nsxt.PolicyHostTransportNodeCollection

Explore with Pulumi AI

This resource provides a method for the management of a Host Transport Node Collection.

Create PolicyHostTransportNodeCollection Resource

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

Constructor syntax

new PolicyHostTransportNodeCollection(name: string, args: PolicyHostTransportNodeCollectionArgs, opts?: CustomResourceOptions);
@overload
def PolicyHostTransportNodeCollection(resource_name: str,
                                      args: PolicyHostTransportNodeCollectionArgs,
                                      opts: Optional[ResourceOptions] = None)

@overload
def PolicyHostTransportNodeCollection(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      compute_collection_id: Optional[str] = None,
                                      display_name: Optional[str] = None,
                                      description: Optional[str] = None,
                                      enforcement_point: Optional[str] = None,
                                      nsx_id: Optional[str] = None,
                                      policy_host_transport_node_collection_id: Optional[str] = None,
                                      remove_nsx_on_destroy: Optional[bool] = None,
                                      site_path: Optional[str] = None,
                                      sub_cluster_configs: Optional[Sequence[PolicyHostTransportNodeCollectionSubClusterConfigArgs]] = None,
                                      tags: Optional[Sequence[PolicyHostTransportNodeCollectionTagArgs]] = None,
                                      transport_node_profile_path: Optional[str] = None)
func NewPolicyHostTransportNodeCollection(ctx *Context, name string, args PolicyHostTransportNodeCollectionArgs, opts ...ResourceOption) (*PolicyHostTransportNodeCollection, error)
public PolicyHostTransportNodeCollection(string name, PolicyHostTransportNodeCollectionArgs args, CustomResourceOptions? opts = null)
public PolicyHostTransportNodeCollection(String name, PolicyHostTransportNodeCollectionArgs args)
public PolicyHostTransportNodeCollection(String name, PolicyHostTransportNodeCollectionArgs args, CustomResourceOptions options)
type: nsxt:PolicyHostTransportNodeCollection
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. PolicyHostTransportNodeCollectionArgs
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. PolicyHostTransportNodeCollectionArgs
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. PolicyHostTransportNodeCollectionArgs
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. PolicyHostTransportNodeCollectionArgs
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. PolicyHostTransportNodeCollectionArgs
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 policyHostTransportNodeCollectionResource = new Nsxt.PolicyHostTransportNodeCollection("policyHostTransportNodeCollectionResource", new()
{
    ComputeCollectionId = "string",
    DisplayName = "string",
    Description = "string",
    EnforcementPoint = "string",
    NsxId = "string",
    PolicyHostTransportNodeCollectionId = "string",
    RemoveNsxOnDestroy = false,
    SitePath = "string",
    SubClusterConfigs = new[]
    {
        new Nsxt.Inputs.PolicyHostTransportNodeCollectionSubClusterConfigArgs
        {
            HostSwitchConfigSources = new[]
            {
                new Nsxt.Inputs.PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSourceArgs
                {
                    HostSwitchId = "string",
                    TransportNodeProfileSubConfigName = "string",
                },
            },
            SubClusterId = "string",
        },
    },
    Tags = new[]
    {
        new Nsxt.Inputs.PolicyHostTransportNodeCollectionTagArgs
        {
            Scope = "string",
            Tag = "string",
        },
    },
    TransportNodeProfilePath = "string",
});
Copy
example, err := nsxt.NewPolicyHostTransportNodeCollection(ctx, "policyHostTransportNodeCollectionResource", &nsxt.PolicyHostTransportNodeCollectionArgs{
ComputeCollectionId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Description: pulumi.String("string"),
EnforcementPoint: pulumi.String("string"),
NsxId: pulumi.String("string"),
PolicyHostTransportNodeCollectionId: pulumi.String("string"),
RemoveNsxOnDestroy: pulumi.Bool(false),
SitePath: pulumi.String("string"),
SubClusterConfigs: .PolicyHostTransportNodeCollectionSubClusterConfigArray{
&.PolicyHostTransportNodeCollectionSubClusterConfigArgs{
HostSwitchConfigSources: .PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSourceArray{
&.PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSourceArgs{
HostSwitchId: pulumi.String("string"),
TransportNodeProfileSubConfigName: pulumi.String("string"),
},
},
SubClusterId: pulumi.String("string"),
},
},
Tags: .PolicyHostTransportNodeCollectionTagArray{
&.PolicyHostTransportNodeCollectionTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
TransportNodeProfilePath: pulumi.String("string"),
})
Copy
var policyHostTransportNodeCollectionResource = new PolicyHostTransportNodeCollection("policyHostTransportNodeCollectionResource", PolicyHostTransportNodeCollectionArgs.builder()
    .computeCollectionId("string")
    .displayName("string")
    .description("string")
    .enforcementPoint("string")
    .nsxId("string")
    .policyHostTransportNodeCollectionId("string")
    .removeNsxOnDestroy(false)
    .sitePath("string")
    .subClusterConfigs(PolicyHostTransportNodeCollectionSubClusterConfigArgs.builder()
        .hostSwitchConfigSources(PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSourceArgs.builder()
            .hostSwitchId("string")
            .transportNodeProfileSubConfigName("string")
            .build())
        .subClusterId("string")
        .build())
    .tags(PolicyHostTransportNodeCollectionTagArgs.builder()
        .scope("string")
        .tag("string")
        .build())
    .transportNodeProfilePath("string")
    .build());
Copy
policy_host_transport_node_collection_resource = nsxt.PolicyHostTransportNodeCollection("policyHostTransportNodeCollectionResource",
    compute_collection_id="string",
    display_name="string",
    description="string",
    enforcement_point="string",
    nsx_id="string",
    policy_host_transport_node_collection_id="string",
    remove_nsx_on_destroy=False,
    site_path="string",
    sub_cluster_configs=[{
        "host_switch_config_sources": [{
            "host_switch_id": "string",
            "transport_node_profile_sub_config_name": "string",
        }],
        "sub_cluster_id": "string",
    }],
    tags=[{
        "scope": "string",
        "tag": "string",
    }],
    transport_node_profile_path="string")
Copy
const policyHostTransportNodeCollectionResource = new nsxt.PolicyHostTransportNodeCollection("policyHostTransportNodeCollectionResource", {
    computeCollectionId: "string",
    displayName: "string",
    description: "string",
    enforcementPoint: "string",
    nsxId: "string",
    policyHostTransportNodeCollectionId: "string",
    removeNsxOnDestroy: false,
    sitePath: "string",
    subClusterConfigs: [{
        hostSwitchConfigSources: [{
            hostSwitchId: "string",
            transportNodeProfileSubConfigName: "string",
        }],
        subClusterId: "string",
    }],
    tags: [{
        scope: "string",
        tag: "string",
    }],
    transportNodeProfilePath: "string",
});
Copy
type: nsxt:PolicyHostTransportNodeCollection
properties:
    computeCollectionId: string
    description: string
    displayName: string
    enforcementPoint: string
    nsxId: string
    policyHostTransportNodeCollectionId: string
    removeNsxOnDestroy: false
    sitePath: string
    subClusterConfigs:
        - hostSwitchConfigSources:
            - hostSwitchId: string
              transportNodeProfileSubConfigName: string
          subClusterId: string
    tags:
        - scope: string
          tag: string
    transportNodeProfilePath: string
Copy

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

ComputeCollectionId This property is required. string
Compute collection id.
DisplayName This property is required. string
The Display Name of the Transport Zone.
Description string
Description of the Transport Zone.
EnforcementPoint string
ID of the enforcement point this resource belongs to
NsxId string
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
PolicyHostTransportNodeCollectionId string
ID of the resource.
RemoveNsxOnDestroy bool
Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
SitePath string
Path to the site this resource belongs to
SubClusterConfigs List<PolicyHostTransportNodeCollectionSubClusterConfig>
List of sub-cluster configuration.
Tags List<PolicyHostTransportNodeCollectionTag>
A list of scope + tag pairs to associate with this resource.
TransportNodeProfilePath string
Transport Node Profile Path.
ComputeCollectionId This property is required. string
Compute collection id.
DisplayName This property is required. string
The Display Name of the Transport Zone.
Description string
Description of the Transport Zone.
EnforcementPoint string
ID of the enforcement point this resource belongs to
NsxId string
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
PolicyHostTransportNodeCollectionId string
ID of the resource.
RemoveNsxOnDestroy bool
Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
SitePath string
Path to the site this resource belongs to
SubClusterConfigs []PolicyHostTransportNodeCollectionSubClusterConfigArgs
List of sub-cluster configuration.
Tags []PolicyHostTransportNodeCollectionTagArgs
A list of scope + tag pairs to associate with this resource.
TransportNodeProfilePath string
Transport Node Profile Path.
computeCollectionId This property is required. String
Compute collection id.
displayName This property is required. String
The Display Name of the Transport Zone.
description String
Description of the Transport Zone.
enforcementPoint String
ID of the enforcement point this resource belongs to
nsxId String
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
policyHostTransportNodeCollectionId String
ID of the resource.
removeNsxOnDestroy Boolean
Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
sitePath String
Path to the site this resource belongs to
subClusterConfigs List<PolicyHostTransportNodeCollectionSubClusterConfig>
List of sub-cluster configuration.
tags List<PolicyHostTransportNodeCollectionTag>
A list of scope + tag pairs to associate with this resource.
transportNodeProfilePath String
Transport Node Profile Path.
computeCollectionId This property is required. string
Compute collection id.
displayName This property is required. string
The Display Name of the Transport Zone.
description string
Description of the Transport Zone.
enforcementPoint string
ID of the enforcement point this resource belongs to
nsxId string
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
policyHostTransportNodeCollectionId string
ID of the resource.
removeNsxOnDestroy boolean
Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
sitePath string
Path to the site this resource belongs to
subClusterConfigs PolicyHostTransportNodeCollectionSubClusterConfig[]
List of sub-cluster configuration.
tags PolicyHostTransportNodeCollectionTag[]
A list of scope + tag pairs to associate with this resource.
transportNodeProfilePath string
Transport Node Profile Path.
compute_collection_id This property is required. str
Compute collection id.
display_name This property is required. str
The Display Name of the Transport Zone.
description str
Description of the Transport Zone.
enforcement_point str
ID of the enforcement point this resource belongs to
nsx_id str
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
policy_host_transport_node_collection_id str
ID of the resource.
remove_nsx_on_destroy bool
Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
site_path str
Path to the site this resource belongs to
sub_cluster_configs Sequence[PolicyHostTransportNodeCollectionSubClusterConfigArgs]
List of sub-cluster configuration.
tags Sequence[PolicyHostTransportNodeCollectionTagArgs]
A list of scope + tag pairs to associate with this resource.
transport_node_profile_path str
Transport Node Profile Path.
computeCollectionId This property is required. String
Compute collection id.
displayName This property is required. String
The Display Name of the Transport Zone.
description String
Description of the Transport Zone.
enforcementPoint String
ID of the enforcement point this resource belongs to
nsxId String
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
policyHostTransportNodeCollectionId String
ID of the resource.
removeNsxOnDestroy Boolean
Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
sitePath String
Path to the site this resource belongs to
subClusterConfigs List<Property Map>
List of sub-cluster configuration.
tags List<Property Map>
A list of scope + tag pairs to associate with this resource.
transportNodeProfilePath String
Transport Node Profile Path.

Outputs

All input properties are implicitly available as output properties. Additionally, the PolicyHostTransportNodeCollection 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.
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.
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.
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.
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.
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.
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 PolicyHostTransportNodeCollection Resource

Get an existing PolicyHostTransportNodeCollection 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?: PolicyHostTransportNodeCollectionState, opts?: CustomResourceOptions): PolicyHostTransportNodeCollection
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compute_collection_id: Optional[str] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        enforcement_point: Optional[str] = None,
        nsx_id: Optional[str] = None,
        path: Optional[str] = None,
        policy_host_transport_node_collection_id: Optional[str] = None,
        remove_nsx_on_destroy: Optional[bool] = None,
        revision: Optional[float] = None,
        site_path: Optional[str] = None,
        sub_cluster_configs: Optional[Sequence[PolicyHostTransportNodeCollectionSubClusterConfigArgs]] = None,
        tags: Optional[Sequence[PolicyHostTransportNodeCollectionTagArgs]] = None,
        transport_node_profile_path: Optional[str] = None) -> PolicyHostTransportNodeCollection
func GetPolicyHostTransportNodeCollection(ctx *Context, name string, id IDInput, state *PolicyHostTransportNodeCollectionState, opts ...ResourceOption) (*PolicyHostTransportNodeCollection, error)
public static PolicyHostTransportNodeCollection Get(string name, Input<string> id, PolicyHostTransportNodeCollectionState? state, CustomResourceOptions? opts = null)
public static PolicyHostTransportNodeCollection get(String name, Output<String> id, PolicyHostTransportNodeCollectionState state, CustomResourceOptions options)
resources:  _:    type: nsxt:PolicyHostTransportNodeCollection    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.
The following state arguments are supported:
ComputeCollectionId string
Compute collection id.
Description string
Description of the Transport Zone.
DisplayName string
The Display Name of the Transport Zone.
EnforcementPoint string
ID of the enforcement point this resource belongs to
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.
PolicyHostTransportNodeCollectionId string
ID of the resource.
RemoveNsxOnDestroy bool
Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
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
Path to the site this resource belongs to
SubClusterConfigs List<PolicyHostTransportNodeCollectionSubClusterConfig>
List of sub-cluster configuration.
Tags List<PolicyHostTransportNodeCollectionTag>
A list of scope + tag pairs to associate with this resource.
TransportNodeProfilePath string
Transport Node Profile Path.
ComputeCollectionId string
Compute collection id.
Description string
Description of the Transport Zone.
DisplayName string
The Display Name of the Transport Zone.
EnforcementPoint string
ID of the enforcement point this resource belongs to
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.
PolicyHostTransportNodeCollectionId string
ID of the resource.
RemoveNsxOnDestroy bool
Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
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
Path to the site this resource belongs to
SubClusterConfigs []PolicyHostTransportNodeCollectionSubClusterConfigArgs
List of sub-cluster configuration.
Tags []PolicyHostTransportNodeCollectionTagArgs
A list of scope + tag pairs to associate with this resource.
TransportNodeProfilePath string
Transport Node Profile Path.
computeCollectionId String
Compute collection id.
description String
Description of the Transport Zone.
displayName String
The Display Name of the Transport Zone.
enforcementPoint String
ID of the enforcement point this resource belongs to
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.
policyHostTransportNodeCollectionId String
ID of the resource.
removeNsxOnDestroy Boolean
Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
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
Path to the site this resource belongs to
subClusterConfigs List<PolicyHostTransportNodeCollectionSubClusterConfig>
List of sub-cluster configuration.
tags List<PolicyHostTransportNodeCollectionTag>
A list of scope + tag pairs to associate with this resource.
transportNodeProfilePath String
Transport Node Profile Path.
computeCollectionId string
Compute collection id.
description string
Description of the Transport Zone.
displayName string
The Display Name of the Transport Zone.
enforcementPoint string
ID of the enforcement point this resource belongs to
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.
policyHostTransportNodeCollectionId string
ID of the resource.
removeNsxOnDestroy boolean
Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
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
Path to the site this resource belongs to
subClusterConfigs PolicyHostTransportNodeCollectionSubClusterConfig[]
List of sub-cluster configuration.
tags PolicyHostTransportNodeCollectionTag[]
A list of scope + tag pairs to associate with this resource.
transportNodeProfilePath string
Transport Node Profile Path.
compute_collection_id str
Compute collection id.
description str
Description of the Transport Zone.
display_name str
The Display Name of the Transport Zone.
enforcement_point str
ID of the enforcement point this resource belongs to
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_host_transport_node_collection_id str
ID of the resource.
remove_nsx_on_destroy bool
Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
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
Path to the site this resource belongs to
sub_cluster_configs Sequence[PolicyHostTransportNodeCollectionSubClusterConfigArgs]
List of sub-cluster configuration.
tags Sequence[PolicyHostTransportNodeCollectionTagArgs]
A list of scope + tag pairs to associate with this resource.
transport_node_profile_path str
Transport Node Profile Path.
computeCollectionId String
Compute collection id.
description String
Description of the Transport Zone.
displayName String
The Display Name of the Transport Zone.
enforcementPoint String
ID of the enforcement point this resource belongs to
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.
policyHostTransportNodeCollectionId String
ID of the resource.
removeNsxOnDestroy Boolean
Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
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
Path to the site this resource belongs to
subClusterConfigs List<Property Map>
List of sub-cluster configuration.
tags List<Property Map>
A list of scope + tag pairs to associate with this resource.
transportNodeProfilePath String
Transport Node Profile Path.

Supporting Types

PolicyHostTransportNodeCollectionSubClusterConfig
, PolicyHostTransportNodeCollectionSubClusterConfigArgs

HostSwitchConfigSources This property is required. List<PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSource>
List of overridden HostSwitch configuration.
SubClusterId This property is required. string
sub-cluster ID.
HostSwitchConfigSources This property is required. []PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSource
List of overridden HostSwitch configuration.
SubClusterId This property is required. string
sub-cluster ID.
hostSwitchConfigSources This property is required. List<PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSource>
List of overridden HostSwitch configuration.
subClusterId This property is required. String
sub-cluster ID.
hostSwitchConfigSources This property is required. PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSource[]
List of overridden HostSwitch configuration.
subClusterId This property is required. string
sub-cluster ID.
host_switch_config_sources This property is required. Sequence[PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSource]
List of overridden HostSwitch configuration.
sub_cluster_id This property is required. str
sub-cluster ID.
hostSwitchConfigSources This property is required. List<Property Map>
List of overridden HostSwitch configuration.
subClusterId This property is required. String
sub-cluster ID.

PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSource
, PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSourceArgs

HostSwitchId This property is required. string
HostSwitch ID.
TransportNodeProfileSubConfigName This property is required. string
Name of the Transport Node Profile sub configuration to be used.
HostSwitchId This property is required. string
HostSwitch ID.
TransportNodeProfileSubConfigName This property is required. string
Name of the Transport Node Profile sub configuration to be used.
hostSwitchId This property is required. String
HostSwitch ID.
transportNodeProfileSubConfigName This property is required. String
Name of the Transport Node Profile sub configuration to be used.
hostSwitchId This property is required. string
HostSwitch ID.
transportNodeProfileSubConfigName This property is required. string
Name of the Transport Node Profile sub configuration to be used.
host_switch_id This property is required. str
HostSwitch ID.
transport_node_profile_sub_config_name This property is required. str
Name of the Transport Node Profile sub configuration to be used.
hostSwitchId This property is required. String
HostSwitch ID.
transportNodeProfileSubConfigName This property is required. String
Name of the Transport Node Profile sub configuration to be used.

PolicyHostTransportNodeCollectionTag
, PolicyHostTransportNodeCollectionTagArgs

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

Import

ing

An existing policy Host Transport Node Collection can be [imported][docs-import] into this resource, via the following command:

terraform import nsxt_policy_host_transport_node_collection.test POLICY_PATH

The above command imports Policy Host Transport Node Collection named test with NSX policy path POLICY_PATH. Note: remove_nsx_on_destroy will be set to default value upon import. To enforce the intent value, reapply the plan.

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
nsxt vmware/terraform-provider-nsxt
License
Notes
This Pulumi package is based on the nsxt Terraform Provider.