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 string
- The unique name of the resource.
- args PolicyHostTransportNodeCollectionArgs
- 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 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 string
- The unique name of the resource.
- args PolicyHostTransportNodeCollectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyHostTransportNodeCollectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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: nsxt.PolicyHostTransportNodeCollectionSubClusterConfigArray{
&nsxt.PolicyHostTransportNodeCollectionSubClusterConfigArgs{
HostSwitchConfigSources: nsxt.PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSourceArray{
&nsxt.PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSourceArgs{
HostSwitchId: pulumi.String("string"),
TransportNodeProfileSubConfigName: pulumi.String("string"),
},
},
SubClusterId: pulumi.String("string"),
},
},
Tags: nsxt.PolicyHostTransportNodeCollectionTagArray{
&nsxt.PolicyHostTransportNodeCollectionTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
TransportNodeProfilePath: pulumi.String("string"),
})
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());
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")
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",
});
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
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:
- Compute
Collection stringId - Compute collection id.
- Display
Name string - The Display Name of the Transport Zone.
- Description string
- Description of the Transport Zone.
- Enforcement
Point string - ID of the enforcement point this resource belongs to
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- Policy
Host stringTransport Node Collection Id - ID of the resource.
- Remove
Nsx boolOn Destroy - Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
- Site
Path string - Path to the site this resource belongs to
- Sub
Cluster List<PolicyConfigs Host Transport Node Collection Sub Cluster Config> - List of sub-cluster configuration.
- List<Policy
Host Transport Node Collection Tag> - A list of scope + tag pairs to associate with this resource.
- Transport
Node stringProfile Path - Transport Node Profile Path.
- Compute
Collection stringId - Compute collection id.
- Display
Name string - The Display Name of the Transport Zone.
- Description string
- Description of the Transport Zone.
- Enforcement
Point string - ID of the enforcement point this resource belongs to
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- Policy
Host stringTransport Node Collection Id - ID of the resource.
- Remove
Nsx boolOn Destroy - Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
- Site
Path string - Path to the site this resource belongs to
- Sub
Cluster []PolicyConfigs Host Transport Node Collection Sub Cluster Config Args - List of sub-cluster configuration.
- []Policy
Host Transport Node Collection Tag Args - A list of scope + tag pairs to associate with this resource.
- Transport
Node stringProfile Path - Transport Node Profile Path.
- compute
Collection StringId - Compute collection id.
- display
Name String - The Display Name of the Transport Zone.
- description String
- Description of the Transport Zone.
- enforcement
Point String - ID of the enforcement point this resource belongs to
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- policy
Host StringTransport Node Collection Id - ID of the resource.
- remove
Nsx BooleanOn Destroy - Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
- site
Path String - Path to the site this resource belongs to
- sub
Cluster List<PolicyConfigs Host Transport Node Collection Sub Cluster Config> - List of sub-cluster configuration.
- List<Policy
Host Transport Node Collection Tag> - A list of scope + tag pairs to associate with this resource.
- transport
Node StringProfile Path - Transport Node Profile Path.
- compute
Collection stringId - Compute collection id.
- display
Name string - The Display Name of the Transport Zone.
- description string
- Description of the Transport Zone.
- enforcement
Point string - ID of the enforcement point this resource belongs to
- nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- policy
Host stringTransport Node Collection Id - ID of the resource.
- remove
Nsx booleanOn Destroy - Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
- site
Path string - Path to the site this resource belongs to
- sub
Cluster PolicyConfigs Host Transport Node Collection Sub Cluster Config[] - List of sub-cluster configuration.
- Policy
Host Transport Node Collection Tag[] - A list of scope + tag pairs to associate with this resource.
- transport
Node stringProfile Path - Transport Node Profile Path.
- compute_
collection_ strid - Compute collection id.
- display_
name 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_ strtransport_ node_ collection_ id - ID of the resource.
- remove_
nsx_ boolon_ destroy - 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_ Sequence[Policyconfigs Host Transport Node Collection Sub Cluster Config Args] - List of sub-cluster configuration.
- Sequence[Policy
Host Transport Node Collection Tag Args] - A list of scope + tag pairs to associate with this resource.
- transport_
node_ strprofile_ path - Transport Node Profile Path.
- compute
Collection StringId - Compute collection id.
- display
Name String - The Display Name of the Transport Zone.
- description String
- Description of the Transport Zone.
- enforcement
Point String - ID of the enforcement point this resource belongs to
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the policy resource.
- policy
Host StringTransport Node Collection Id - ID of the resource.
- remove
Nsx BooleanOn Destroy - Upon deletion, uninstall NSX from Transport Node Collection member hosts. Default is true.
- site
Path String - Path to the site this resource belongs to
- sub
Cluster List<Property Map>Configs - List of sub-cluster configuration.
- List<Property Map>
- A list of scope + tag pairs to associate with this resource.
- transport
Node StringProfile Path - Transport Node Profile Path.
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyHostTransportNodeCollection resource produces the following output properties:
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
- 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.
- Compute
Collection stringId - Compute collection id.
- Description string
- Description of the Transport Zone.
- Display
Name string - The Display Name of the Transport Zone.
- Enforcement
Point string - ID of the enforcement point this resource belongs to
- 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
Host stringTransport Node Collection Id - ID of the resource.
- Remove
Nsx boolOn Destroy - 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.
- Site
Path string - Path to the site this resource belongs to
- Sub
Cluster List<PolicyConfigs Host Transport Node Collection Sub Cluster Config> - List of sub-cluster configuration.
- List<Policy
Host Transport Node Collection Tag> - A list of scope + tag pairs to associate with this resource.
- Transport
Node stringProfile Path - Transport Node Profile Path.
- Compute
Collection stringId - Compute collection id.
- Description string
- Description of the Transport Zone.
- Display
Name string - The Display Name of the Transport Zone.
- Enforcement
Point string - ID of the enforcement point this resource belongs to
- 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
Host stringTransport Node Collection Id - ID of the resource.
- Remove
Nsx boolOn Destroy - 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.
- Site
Path string - Path to the site this resource belongs to
- Sub
Cluster []PolicyConfigs Host Transport Node Collection Sub Cluster Config Args - List of sub-cluster configuration.
- []Policy
Host Transport Node Collection Tag Args - A list of scope + tag pairs to associate with this resource.
- Transport
Node stringProfile Path - Transport Node Profile Path.
- compute
Collection StringId - Compute collection id.
- description String
- Description of the Transport Zone.
- display
Name String - The Display Name of the Transport Zone.
- enforcement
Point String - ID of the enforcement point this resource belongs to
- 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
Host StringTransport Node Collection Id - ID of the resource.
- remove
Nsx BooleanOn Destroy - 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.
- site
Path String - Path to the site this resource belongs to
- sub
Cluster List<PolicyConfigs Host Transport Node Collection Sub Cluster Config> - List of sub-cluster configuration.
- List<Policy
Host Transport Node Collection Tag> - A list of scope + tag pairs to associate with this resource.
- transport
Node StringProfile Path - Transport Node Profile Path.
- compute
Collection stringId - Compute collection id.
- description string
- Description of the Transport Zone.
- display
Name string - The Display Name of the Transport Zone.
- enforcement
Point string - ID of the enforcement point this resource belongs to
- 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
Host stringTransport Node Collection Id - ID of the resource.
- remove
Nsx booleanOn Destroy - 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.
- site
Path string - Path to the site this resource belongs to
- sub
Cluster PolicyConfigs Host Transport Node Collection Sub Cluster Config[] - List of sub-cluster configuration.
- Policy
Host Transport Node Collection Tag[] - A list of scope + tag pairs to associate with this resource.
- transport
Node stringProfile Path - Transport Node Profile Path.
- compute_
collection_ strid - 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_ strtransport_ node_ collection_ id - ID of the resource.
- remove_
nsx_ boolon_ destroy - 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_ Sequence[Policyconfigs Host Transport Node Collection Sub Cluster Config Args] - List of sub-cluster configuration.
- Sequence[Policy
Host Transport Node Collection Tag Args] - A list of scope + tag pairs to associate with this resource.
- transport_
node_ strprofile_ path - Transport Node Profile Path.
- compute
Collection StringId - Compute collection id.
- description String
- Description of the Transport Zone.
- display
Name String - The Display Name of the Transport Zone.
- enforcement
Point String - ID of the enforcement point this resource belongs to
- 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
Host StringTransport Node Collection Id - ID of the resource.
- remove
Nsx BooleanOn Destroy - 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.
- site
Path String - Path to the site this resource belongs to
- sub
Cluster List<Property Map>Configs - List of sub-cluster configuration.
- List<Property Map>
- A list of scope + tag pairs to associate with this resource.
- transport
Node StringProfile Path - Transport Node Profile Path.
Supporting Types
PolicyHostTransportNodeCollectionSubClusterConfig, PolicyHostTransportNodeCollectionSubClusterConfigArgs
- Host
Switch List<PolicyConfig Sources Host Transport Node Collection Sub Cluster Config Host Switch Config Source> - List of overridden HostSwitch configuration.
- Sub
Cluster stringId - sub-cluster ID.
- Host
Switch []PolicyConfig Sources Host Transport Node Collection Sub Cluster Config Host Switch Config Source - List of overridden HostSwitch configuration.
- Sub
Cluster stringId - sub-cluster ID.
- host
Switch List<PolicyConfig Sources Host Transport Node Collection Sub Cluster Config Host Switch Config Source> - List of overridden HostSwitch configuration.
- sub
Cluster StringId - sub-cluster ID.
- host
Switch PolicyConfig Sources Host Transport Node Collection Sub Cluster Config Host Switch Config Source[] - List of overridden HostSwitch configuration.
- sub
Cluster stringId - sub-cluster ID.
- host_
switch_ Sequence[Policyconfig_ sources Host Transport Node Collection Sub Cluster Config Host Switch Config Source] - List of overridden HostSwitch configuration.
- sub_
cluster_ strid - sub-cluster ID.
- host
Switch List<Property Map>Config Sources - List of overridden HostSwitch configuration.
- sub
Cluster StringId - sub-cluster ID.
PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSource, PolicyHostTransportNodeCollectionSubClusterConfigHostSwitchConfigSourceArgs
- Host
Switch stringId - HostSwitch ID.
- Transport
Node stringProfile Sub Config Name - Name of the Transport Node Profile sub configuration to be used.
- Host
Switch stringId - HostSwitch ID.
- Transport
Node stringProfile Sub Config Name - Name of the Transport Node Profile sub configuration to be used.
- host
Switch StringId - HostSwitch ID.
- transport
Node StringProfile Sub Config Name - Name of the Transport Node Profile sub configuration to be used.
- host
Switch stringId - HostSwitch ID.
- transport
Node stringProfile Sub Config Name - Name of the Transport Node Profile sub configuration to be used.
- host_
switch_ strid - HostSwitch ID.
- transport_
node_ strprofile_ sub_ config_ name - Name of the Transport Node Profile sub configuration to be used.
- host
Switch StringId - HostSwitch ID.
- transport
Node StringProfile Sub Config Name - Name of the Transport Node Profile sub configuration to be used.
PolicyHostTransportNodeCollectionTag, PolicyHostTransportNodeCollectionTagArgs
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.