nsxt.PolicyEdgeCluster
Explore with Pulumi AI
Create PolicyEdgeCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicyEdgeCluster(name: string, args: PolicyEdgeClusterArgs, opts?: CustomResourceOptions);
@overload
def PolicyEdgeCluster(resource_name: str,
args: PolicyEdgeClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PolicyEdgeCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
edge_cluster_profile_path: Optional[str] = None,
allocation_rules: Optional[Sequence[PolicyEdgeClusterAllocationRuleArgs]] = None,
description: Optional[str] = None,
enforcement_point: Optional[str] = None,
inter_site_forwarding_enabled: Optional[bool] = None,
nsx_id: Optional[str] = None,
password_managed_by_vcf: Optional[bool] = None,
policy_edge_cluster_id: Optional[str] = None,
policy_edge_nodes: Optional[Sequence[PolicyEdgeClusterPolicyEdgeNodeArgs]] = None,
site_path: Optional[str] = None,
tags: Optional[Sequence[PolicyEdgeClusterTagArgs]] = None)
func NewPolicyEdgeCluster(ctx *Context, name string, args PolicyEdgeClusterArgs, opts ...ResourceOption) (*PolicyEdgeCluster, error)
public PolicyEdgeCluster(string name, PolicyEdgeClusterArgs args, CustomResourceOptions? opts = null)
public PolicyEdgeCluster(String name, PolicyEdgeClusterArgs args)
public PolicyEdgeCluster(String name, PolicyEdgeClusterArgs args, CustomResourceOptions options)
type: nsxt:PolicyEdgeCluster
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 PolicyEdgeClusterArgs
- 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 PolicyEdgeClusterArgs
- 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 PolicyEdgeClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyEdgeClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyEdgeClusterArgs
- 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 policyEdgeClusterResource = new Nsxt.PolicyEdgeCluster("policyEdgeClusterResource", new()
{
DisplayName = "string",
EdgeClusterProfilePath = "string",
AllocationRules = new[]
{
new Nsxt.Inputs.PolicyEdgeClusterAllocationRuleArgs
{
ActionBasedOnFailureDomainEnabled = false,
},
},
Description = "string",
EnforcementPoint = "string",
InterSiteForwardingEnabled = false,
NsxId = "string",
PasswordManagedByVcf = false,
PolicyEdgeClusterId = "string",
PolicyEdgeNodes = new[]
{
new Nsxt.Inputs.PolicyEdgeClusterPolicyEdgeNodeArgs
{
EdgeTransportNodePath = "string",
Id = "string",
},
},
SitePath = "string",
Tags = new[]
{
new Nsxt.Inputs.PolicyEdgeClusterTagArgs
{
Scope = "string",
Tag = "string",
},
},
});
example, err := nsxt.NewPolicyEdgeCluster(ctx, "policyEdgeClusterResource", &nsxt.PolicyEdgeClusterArgs{
DisplayName: pulumi.String("string"),
EdgeClusterProfilePath: pulumi.String("string"),
AllocationRules: nsxt.PolicyEdgeClusterAllocationRuleArray{
&nsxt.PolicyEdgeClusterAllocationRuleArgs{
ActionBasedOnFailureDomainEnabled: pulumi.Bool(false),
},
},
Description: pulumi.String("string"),
EnforcementPoint: pulumi.String("string"),
InterSiteForwardingEnabled: pulumi.Bool(false),
NsxId: pulumi.String("string"),
PasswordManagedByVcf: pulumi.Bool(false),
PolicyEdgeClusterId: pulumi.String("string"),
PolicyEdgeNodes: nsxt.PolicyEdgeClusterPolicyEdgeNodeArray{
&nsxt.PolicyEdgeClusterPolicyEdgeNodeArgs{
EdgeTransportNodePath: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
SitePath: pulumi.String("string"),
Tags: nsxt.PolicyEdgeClusterTagArray{
&nsxt.PolicyEdgeClusterTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
})
var policyEdgeClusterResource = new PolicyEdgeCluster("policyEdgeClusterResource", PolicyEdgeClusterArgs.builder()
.displayName("string")
.edgeClusterProfilePath("string")
.allocationRules(PolicyEdgeClusterAllocationRuleArgs.builder()
.actionBasedOnFailureDomainEnabled(false)
.build())
.description("string")
.enforcementPoint("string")
.interSiteForwardingEnabled(false)
.nsxId("string")
.passwordManagedByVcf(false)
.policyEdgeClusterId("string")
.policyEdgeNodes(PolicyEdgeClusterPolicyEdgeNodeArgs.builder()
.edgeTransportNodePath("string")
.id("string")
.build())
.sitePath("string")
.tags(PolicyEdgeClusterTagArgs.builder()
.scope("string")
.tag("string")
.build())
.build());
policy_edge_cluster_resource = nsxt.PolicyEdgeCluster("policyEdgeClusterResource",
display_name="string",
edge_cluster_profile_path="string",
allocation_rules=[{
"action_based_on_failure_domain_enabled": False,
}],
description="string",
enforcement_point="string",
inter_site_forwarding_enabled=False,
nsx_id="string",
password_managed_by_vcf=False,
policy_edge_cluster_id="string",
policy_edge_nodes=[{
"edge_transport_node_path": "string",
"id": "string",
}],
site_path="string",
tags=[{
"scope": "string",
"tag": "string",
}])
const policyEdgeClusterResource = new nsxt.PolicyEdgeCluster("policyEdgeClusterResource", {
displayName: "string",
edgeClusterProfilePath: "string",
allocationRules: [{
actionBasedOnFailureDomainEnabled: false,
}],
description: "string",
enforcementPoint: "string",
interSiteForwardingEnabled: false,
nsxId: "string",
passwordManagedByVcf: false,
policyEdgeClusterId: "string",
policyEdgeNodes: [{
edgeTransportNodePath: "string",
id: "string",
}],
sitePath: "string",
tags: [{
scope: "string",
tag: "string",
}],
});
type: nsxt:PolicyEdgeCluster
properties:
allocationRules:
- actionBasedOnFailureDomainEnabled: false
description: string
displayName: string
edgeClusterProfilePath: string
enforcementPoint: string
interSiteForwardingEnabled: false
nsxId: string
passwordManagedByVcf: false
policyEdgeClusterId: string
policyEdgeNodes:
- edgeTransportNodePath: string
id: string
sitePath: string
tags:
- scope: string
tag: string
PolicyEdgeCluster 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 PolicyEdgeCluster resource accepts the following input properties:
- Display
Name string - Display name of the resource.
- Edge
Cluster stringProfile Path - Path of edge cluster high availability profile.
- Allocation
Rules List<PolicyEdge Cluster Allocation Rule> - Allocation rules for auto placement.
- Description string
- Description of the resource.
- Enforcement
Point string - The ID of enforcement point under given
site_path
to manage the Host Transport Node. Defaults to default enforcement point. - Inter
Site boolForwarding Enabled - Inter site forwarding is enabled if true.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Password
Managed boolBy Vcf - Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
- Policy
Edge stringCluster Id - ID of the resource.
- Policy
Edge List<PolicyNodes Edge Cluster Policy Edge Node> - Policy Edge Cluster Member.
- Site
Path string - The path of the site which the Host Transport Node belongs to.
path
field of the existingnsxt.PolicySite
can be used here. Defaults to default site path. - List<Policy
Edge Cluster Tag> - A list of scope + tag pairs to associate with this resource.
- Display
Name string - Display name of the resource.
- Edge
Cluster stringProfile Path - Path of edge cluster high availability profile.
- Allocation
Rules []PolicyEdge Cluster Allocation Rule Args - Allocation rules for auto placement.
- Description string
- Description of the resource.
- Enforcement
Point string - The ID of enforcement point under given
site_path
to manage the Host Transport Node. Defaults to default enforcement point. - Inter
Site boolForwarding Enabled - Inter site forwarding is enabled if true.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Password
Managed boolBy Vcf - Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
- Policy
Edge stringCluster Id - ID of the resource.
- Policy
Edge []PolicyNodes Edge Cluster Policy Edge Node Args - Policy Edge Cluster Member.
- Site
Path string - The path of the site which the Host Transport Node belongs to.
path
field of the existingnsxt.PolicySite
can be used here. Defaults to default site path. - []Policy
Edge Cluster Tag Args - A list of scope + tag pairs to associate with this resource.
- display
Name String - Display name of the resource.
- edge
Cluster StringProfile Path - Path of edge cluster high availability profile.
- allocation
Rules List<PolicyEdge Cluster Allocation Rule> - Allocation rules for auto placement.
- description String
- Description of the resource.
- enforcement
Point String - The ID of enforcement point under given
site_path
to manage the Host Transport Node. Defaults to default enforcement point. - inter
Site BooleanForwarding Enabled - Inter site forwarding is enabled if true.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- password
Managed BooleanBy Vcf - Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
- policy
Edge StringCluster Id - ID of the resource.
- policy
Edge List<PolicyNodes Edge Cluster Policy Edge Node> - Policy Edge Cluster Member.
- site
Path String - The path of the site which the Host Transport Node belongs to.
path
field of the existingnsxt.PolicySite
can be used here. Defaults to default site path. - List<Policy
Edge Cluster Tag> - A list of scope + tag pairs to associate with this resource.
- display
Name string - Display name of the resource.
- edge
Cluster stringProfile Path - Path of edge cluster high availability profile.
- allocation
Rules PolicyEdge Cluster Allocation Rule[] - Allocation rules for auto placement.
- description string
- Description of the resource.
- enforcement
Point string - The ID of enforcement point under given
site_path
to manage the Host Transport Node. Defaults to default enforcement point. - inter
Site booleanForwarding Enabled - Inter site forwarding is enabled if true.
- nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- password
Managed booleanBy Vcf - Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
- policy
Edge stringCluster Id - ID of the resource.
- policy
Edge PolicyNodes Edge Cluster Policy Edge Node[] - Policy Edge Cluster Member.
- site
Path string - The path of the site which the Host Transport Node belongs to.
path
field of the existingnsxt.PolicySite
can be used here. Defaults to default site path. - Policy
Edge Cluster Tag[] - A list of scope + tag pairs to associate with this resource.
- display_
name str - Display name of the resource.
- edge_
cluster_ strprofile_ path - Path of edge cluster high availability profile.
- allocation_
rules Sequence[PolicyEdge Cluster Allocation Rule Args] - Allocation rules for auto placement.
- description str
- Description of the resource.
- enforcement_
point str - The ID of enforcement point under given
site_path
to manage the Host Transport Node. Defaults to default enforcement point. - inter_
site_ boolforwarding_ enabled - Inter site forwarding is enabled if true.
- nsx_
id str - The NSX ID of this resource. If set, this ID will be used to create the resource.
- password_
managed_ boolby_ vcf - Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
- policy_
edge_ strcluster_ id - ID of the resource.
- policy_
edge_ Sequence[Policynodes Edge Cluster Policy Edge Node Args] - Policy Edge Cluster Member.
- site_
path str - The path of the site which the Host Transport Node belongs to.
path
field of the existingnsxt.PolicySite
can be used here. Defaults to default site path. - Sequence[Policy
Edge Cluster Tag Args] - A list of scope + tag pairs to associate with this resource.
- display
Name String - Display name of the resource.
- edge
Cluster StringProfile Path - Path of edge cluster high availability profile.
- allocation
Rules List<Property Map> - Allocation rules for auto placement.
- description String
- Description of the resource.
- enforcement
Point String - The ID of enforcement point under given
site_path
to manage the Host Transport Node. Defaults to default enforcement point. - inter
Site BooleanForwarding Enabled - Inter site forwarding is enabled if true.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- password
Managed BooleanBy Vcf - Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
- policy
Edge StringCluster Id - ID of the resource.
- policy
Edge List<Property Map>Nodes - Policy Edge Cluster Member.
- site
Path String - The path of the site which the Host Transport Node belongs to.
path
field of the existingnsxt.PolicySite
can be used here. Defaults to default site path. - List<Property Map>
- A list of scope + tag pairs to associate with this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyEdgeCluster resource produces the following output properties:
Look up Existing PolicyEdgeCluster Resource
Get an existing PolicyEdgeCluster 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?: PolicyEdgeClusterState, opts?: CustomResourceOptions): PolicyEdgeCluster
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allocation_rules: Optional[Sequence[PolicyEdgeClusterAllocationRuleArgs]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
edge_cluster_profile_path: Optional[str] = None,
enforcement_point: Optional[str] = None,
inter_site_forwarding_enabled: Optional[bool] = None,
nsx_id: Optional[str] = None,
password_managed_by_vcf: Optional[bool] = None,
path: Optional[str] = None,
policy_edge_cluster_id: Optional[str] = None,
policy_edge_nodes: Optional[Sequence[PolicyEdgeClusterPolicyEdgeNodeArgs]] = None,
revision: Optional[float] = None,
site_path: Optional[str] = None,
tags: Optional[Sequence[PolicyEdgeClusterTagArgs]] = None) -> PolicyEdgeCluster
func GetPolicyEdgeCluster(ctx *Context, name string, id IDInput, state *PolicyEdgeClusterState, opts ...ResourceOption) (*PolicyEdgeCluster, error)
public static PolicyEdgeCluster Get(string name, Input<string> id, PolicyEdgeClusterState? state, CustomResourceOptions? opts = null)
public static PolicyEdgeCluster get(String name, Output<String> id, PolicyEdgeClusterState state, CustomResourceOptions options)
resources: _: type: nsxt:PolicyEdgeCluster 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.
- Allocation
Rules List<PolicyEdge Cluster Allocation Rule> - Allocation rules for auto placement.
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Edge
Cluster stringProfile Path - Path of edge cluster high availability profile.
- Enforcement
Point string - The ID of enforcement point under given
site_path
to manage the Host Transport Node. Defaults to default enforcement point. - Inter
Site boolForwarding Enabled - Inter site forwarding is enabled if true.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Password
Managed boolBy Vcf - Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
- Path string
- The NSX path of the policy resource.
- Policy
Edge stringCluster Id - ID of the resource.
- Policy
Edge List<PolicyNodes Edge Cluster Policy Edge Node> - Policy Edge Cluster Member.
- Revision double
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Site
Path string - The path of the site which the Host Transport Node belongs to.
path
field of the existingnsxt.PolicySite
can be used here. Defaults to default site path. - List<Policy
Edge Cluster Tag> - A list of scope + tag pairs to associate with this resource.
- Allocation
Rules []PolicyEdge Cluster Allocation Rule Args - Allocation rules for auto placement.
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Edge
Cluster stringProfile Path - Path of edge cluster high availability profile.
- Enforcement
Point string - The ID of enforcement point under given
site_path
to manage the Host Transport Node. Defaults to default enforcement point. - Inter
Site boolForwarding Enabled - Inter site forwarding is enabled if true.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Password
Managed boolBy Vcf - Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
- Path string
- The NSX path of the policy resource.
- Policy
Edge stringCluster Id - ID of the resource.
- Policy
Edge []PolicyNodes Edge Cluster Policy Edge Node Args - Policy Edge Cluster Member.
- Revision float64
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Site
Path string - The path of the site which the Host Transport Node belongs to.
path
field of the existingnsxt.PolicySite
can be used here. Defaults to default site path. - []Policy
Edge Cluster Tag Args - A list of scope + tag pairs to associate with this resource.
- allocation
Rules List<PolicyEdge Cluster Allocation Rule> - Allocation rules for auto placement.
- description String
- Description of the resource.
- display
Name String - Display name of the resource.
- edge
Cluster StringProfile Path - Path of edge cluster high availability profile.
- enforcement
Point String - The ID of enforcement point under given
site_path
to manage the Host Transport Node. Defaults to default enforcement point. - inter
Site BooleanForwarding Enabled - Inter site forwarding is enabled if true.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- password
Managed BooleanBy Vcf - Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
- path String
- The NSX path of the policy resource.
- policy
Edge StringCluster Id - ID of the resource.
- policy
Edge List<PolicyNodes Edge Cluster Policy Edge Node> - Policy Edge Cluster Member.
- revision Double
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- site
Path String - The path of the site which the Host Transport Node belongs to.
path
field of the existingnsxt.PolicySite
can be used here. Defaults to default site path. - List<Policy
Edge Cluster Tag> - A list of scope + tag pairs to associate with this resource.
- allocation
Rules PolicyEdge Cluster Allocation Rule[] - Allocation rules for auto placement.
- description string
- Description of the resource.
- display
Name string - Display name of the resource.
- edge
Cluster stringProfile Path - Path of edge cluster high availability profile.
- enforcement
Point string - The ID of enforcement point under given
site_path
to manage the Host Transport Node. Defaults to default enforcement point. - inter
Site booleanForwarding Enabled - Inter site forwarding is enabled if true.
- nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- password
Managed booleanBy Vcf - Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
- path string
- The NSX path of the policy resource.
- policy
Edge stringCluster Id - ID of the resource.
- policy
Edge PolicyNodes Edge Cluster Policy Edge Node[] - Policy Edge Cluster Member.
- revision number
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- site
Path string - The path of the site which the Host Transport Node belongs to.
path
field of the existingnsxt.PolicySite
can be used here. Defaults to default site path. - Policy
Edge Cluster Tag[] - A list of scope + tag pairs to associate with this resource.
- allocation_
rules Sequence[PolicyEdge Cluster Allocation Rule Args] - Allocation rules for auto placement.
- description str
- Description of the resource.
- display_
name str - Display name of the resource.
- edge_
cluster_ strprofile_ path - Path of edge cluster high availability profile.
- enforcement_
point str - The ID of enforcement point under given
site_path
to manage the Host Transport Node. Defaults to default enforcement point. - inter_
site_ boolforwarding_ enabled - Inter site forwarding is enabled if true.
- nsx_
id str - The NSX ID of this resource. If set, this ID will be used to create the resource.
- password_
managed_ boolby_ vcf - Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
- path str
- The NSX path of the policy resource.
- policy_
edge_ strcluster_ id - ID of the resource.
- policy_
edge_ Sequence[Policynodes Edge Cluster Policy Edge Node Args] - Policy Edge Cluster Member.
- revision float
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- site_
path str - The path of the site which the Host Transport Node belongs to.
path
field of the existingnsxt.PolicySite
can be used here. Defaults to default site path. - Sequence[Policy
Edge Cluster Tag Args] - A list of scope + tag pairs to associate with this resource.
- allocation
Rules List<Property Map> - Allocation rules for auto placement.
- description String
- Description of the resource.
- display
Name String - Display name of the resource.
- edge
Cluster StringProfile Path - Path of edge cluster high availability profile.
- enforcement
Point String - The ID of enforcement point under given
site_path
to manage the Host Transport Node. Defaults to default enforcement point. - inter
Site BooleanForwarding Enabled - Inter site forwarding is enabled if true.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- password
Managed BooleanBy Vcf - Setting to true enables VCF password management for all edge nodes in the cluster. Default: false.
- path String
- The NSX path of the policy resource.
- policy
Edge StringCluster Id - ID of the resource.
- policy
Edge List<Property Map>Nodes - Policy Edge Cluster Member.
- revision Number
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- site
Path String - The path of the site which the Host Transport Node belongs to.
path
field of the existingnsxt.PolicySite
can be used here. Defaults to default site path. - List<Property Map>
- A list of scope + tag pairs to associate with this resource.
Supporting Types
PolicyEdgeClusterAllocationRule, PolicyEdgeClusterAllocationRuleArgs
- Action
Based boolOn Failure Domain Enabled - Auto place TIER1 logical routers, DHCP and MDProxy contexts on two edge nodes (active and standby) from different failure domains.
- Action
Based boolOn Failure Domain Enabled - Auto place TIER1 logical routers, DHCP and MDProxy contexts on two edge nodes (active and standby) from different failure domains.
- action
Based BooleanOn Failure Domain Enabled - Auto place TIER1 logical routers, DHCP and MDProxy contexts on two edge nodes (active and standby) from different failure domains.
- action
Based booleanOn Failure Domain Enabled - Auto place TIER1 logical routers, DHCP and MDProxy contexts on two edge nodes (active and standby) from different failure domains.
- action_
based_ boolon_ failure_ domain_ enabled - Auto place TIER1 logical routers, DHCP and MDProxy contexts on two edge nodes (active and standby) from different failure domains.
- action
Based BooleanOn Failure Domain Enabled - Auto place TIER1 logical routers, DHCP and MDProxy contexts on two edge nodes (active and standby) from different failure domains.
PolicyEdgeClusterPolicyEdgeNode, PolicyEdgeClusterPolicyEdgeNodeArgs
- Edge
Transport stringNode Path - Edge Transport Node Path.
- Id string
- ID of PolicyEdgeNode.
- Edge
Transport stringNode Path - Edge Transport Node Path.
- Id string
- ID of PolicyEdgeNode.
- edge
Transport StringNode Path - Edge Transport Node Path.
- id String
- ID of PolicyEdgeNode.
- edge
Transport stringNode Path - Edge Transport Node Path.
- id string
- ID of PolicyEdgeNode.
- edge_
transport_ strnode_ path - Edge Transport Node Path.
- id str
- ID of PolicyEdgeNode.
- edge
Transport StringNode Path - Edge Transport Node Path.
- id String
- ID of PolicyEdgeNode.
PolicyEdgeClusterTag, PolicyEdgeClusterTagArgs
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxt
Terraform Provider.