Create PolicyParentGatewayPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicyParentGatewayPolicy(name: string, args: PolicyParentGatewayPolicyArgs, opts?: CustomResourceOptions);@overload
def PolicyParentGatewayPolicy(resource_name: str,
args: PolicyParentGatewayPolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PolicyParentGatewayPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
category: Optional[str] = None,
locked: Optional[bool] = None,
description: Optional[str] = None,
context: Optional[PolicyParentGatewayPolicyContextArgs] = None,
domain: Optional[str] = None,
comments: Optional[str] = None,
nsx_id: Optional[str] = None,
policy_parent_gateway_policy_id: Optional[str] = None,
sequence_number: Optional[float] = None,
stateful: Optional[bool] = None,
tags: Optional[Sequence[PolicyParentGatewayPolicyTagArgs]] = None,
tcp_strict: Optional[bool] = None)func NewPolicyParentGatewayPolicy(ctx *Context, name string, args PolicyParentGatewayPolicyArgs, opts ...ResourceOption) (*PolicyParentGatewayPolicy, error)public PolicyParentGatewayPolicy(string name, PolicyParentGatewayPolicyArgs args, CustomResourceOptions? opts = null)
public PolicyParentGatewayPolicy(String name, PolicyParentGatewayPolicyArgs args)
public PolicyParentGatewayPolicy(String name, PolicyParentGatewayPolicyArgs args, CustomResourceOptions options)
type: nsxt:PolicyParentGatewayPolicy
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 PolicyParentGatewayPolicyArgs
- 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 PolicyParentGatewayPolicyArgs
- 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 PolicyParentGatewayPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyParentGatewayPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyParentGatewayPolicyArgs
- 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 policyParentGatewayPolicyResource = new Nsxt.PolicyParentGatewayPolicy("policyParentGatewayPolicyResource", new()
{
DisplayName = "string",
Category = "string",
Locked = false,
Description = "string",
Context = new Nsxt.Inputs.PolicyParentGatewayPolicyContextArgs
{
ProjectId = "string",
},
Domain = "string",
Comments = "string",
NsxId = "string",
PolicyParentGatewayPolicyId = "string",
SequenceNumber = 0,
Stateful = false,
Tags = new[]
{
new Nsxt.Inputs.PolicyParentGatewayPolicyTagArgs
{
Scope = "string",
Tag = "string",
},
},
TcpStrict = false,
});
example, err := nsxt.NewPolicyParentGatewayPolicy(ctx, "policyParentGatewayPolicyResource", &nsxt.PolicyParentGatewayPolicyArgs{
DisplayName: pulumi.String("string"),
Category: pulumi.String("string"),
Locked: pulumi.Bool(false),
Description: pulumi.String("string"),
Context: &nsxt.PolicyParentGatewayPolicyContextArgs{
ProjectId: pulumi.String("string"),
},
Domain: pulumi.String("string"),
Comments: pulumi.String("string"),
NsxId: pulumi.String("string"),
PolicyParentGatewayPolicyId: pulumi.String("string"),
SequenceNumber: pulumi.Float64(0),
Stateful: pulumi.Bool(false),
Tags: nsxt.PolicyParentGatewayPolicyTagArray{
&nsxt.PolicyParentGatewayPolicyTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
TcpStrict: pulumi.Bool(false),
})
var policyParentGatewayPolicyResource = new PolicyParentGatewayPolicy("policyParentGatewayPolicyResource", PolicyParentGatewayPolicyArgs.builder()
.displayName("string")
.category("string")
.locked(false)
.description("string")
.context(PolicyParentGatewayPolicyContextArgs.builder()
.projectId("string")
.build())
.domain("string")
.comments("string")
.nsxId("string")
.policyParentGatewayPolicyId("string")
.sequenceNumber(0.0)
.stateful(false)
.tags(PolicyParentGatewayPolicyTagArgs.builder()
.scope("string")
.tag("string")
.build())
.tcpStrict(false)
.build());
policy_parent_gateway_policy_resource = nsxt.PolicyParentGatewayPolicy("policyParentGatewayPolicyResource",
display_name="string",
category="string",
locked=False,
description="string",
context={
"project_id": "string",
},
domain="string",
comments="string",
nsx_id="string",
policy_parent_gateway_policy_id="string",
sequence_number=0,
stateful=False,
tags=[{
"scope": "string",
"tag": "string",
}],
tcp_strict=False)
const policyParentGatewayPolicyResource = new nsxt.PolicyParentGatewayPolicy("policyParentGatewayPolicyResource", {
displayName: "string",
category: "string",
locked: false,
description: "string",
context: {
projectId: "string",
},
domain: "string",
comments: "string",
nsxId: "string",
policyParentGatewayPolicyId: "string",
sequenceNumber: 0,
stateful: false,
tags: [{
scope: "string",
tag: "string",
}],
tcpStrict: false,
});
type: nsxt:PolicyParentGatewayPolicy
properties:
category: string
comments: string
context:
projectId: string
description: string
displayName: string
domain: string
locked: false
nsxId: string
policyParentGatewayPolicyId: string
sequenceNumber: 0
stateful: false
tags:
- scope: string
tag: string
tcpStrict: false
PolicyParentGatewayPolicy 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 PolicyParentGatewayPolicy resource accepts the following input properties:
- Category string
- The category to use for priority of this Gateway Policy. For local manager must be one of:
Emergency,SystemRules,SharedPreRules,LocalGatewayRules,AutoServiceRulesandDefault. For global manager must beSharedPreRulesorLocalGatewayRules. - Display
Name string - Display name of the resource.
- Comments string
- Comments for this Gateway Policy including lock/unlock comments.
- Context
Policy
Parent Gateway Policy Context - The context which the object belongs to
- Description string
- Description of the resource.
- Domain string
- The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use
cgw. - Locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
- Policy
Parent stringGateway Policy Id - ID of the Security Policy.
- Sequence
Number double - An int value used to resolve conflicts between security policies across domains
- Stateful bool
- A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
-
List<Policy
Parent Gateway Policy Tag> - A list of scope + tag pairs to associate with this Gateway Policy.
- Tcp
Strict bool - A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
- Category string
- The category to use for priority of this Gateway Policy. For local manager must be one of:
Emergency,SystemRules,SharedPreRules,LocalGatewayRules,AutoServiceRulesandDefault. For global manager must beSharedPreRulesorLocalGatewayRules. - Display
Name string - Display name of the resource.
- Comments string
- Comments for this Gateway Policy including lock/unlock comments.
- Context
Policy
Parent Gateway Policy Context Args - The context which the object belongs to
- Description string
- Description of the resource.
- Domain string
- The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use
cgw. - Locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
- Policy
Parent stringGateway Policy Id - ID of the Security Policy.
- Sequence
Number float64 - An int value used to resolve conflicts between security policies across domains
- Stateful bool
- A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
-
[]Policy
Parent Gateway Policy Tag Args - A list of scope + tag pairs to associate with this Gateway Policy.
- Tcp
Strict bool - A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
- category String
- The category to use for priority of this Gateway Policy. For local manager must be one of:
Emergency,SystemRules,SharedPreRules,LocalGatewayRules,AutoServiceRulesandDefault. For global manager must beSharedPreRulesorLocalGatewayRules. - display
Name String - Display name of the resource.
- comments String
- Comments for this Gateway Policy including lock/unlock comments.
- context
Policy
Parent Gateway Policy Context - The context which the object belongs to
- description String
- Description of the resource.
- domain String
- The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use
cgw. - locked Boolean
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
- policy
Parent StringGateway Policy Id - ID of the Security Policy.
- sequence
Number Double - An int value used to resolve conflicts between security policies across domains
- stateful Boolean
- A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
-
List<Policy
Parent Gateway Policy Tag> - A list of scope + tag pairs to associate with this Gateway Policy.
- tcp
Strict Boolean - A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
- category string
- The category to use for priority of this Gateway Policy. For local manager must be one of:
Emergency,SystemRules,SharedPreRules,LocalGatewayRules,AutoServiceRulesandDefault. For global manager must beSharedPreRulesorLocalGatewayRules. - display
Name string - Display name of the resource.
- comments string
- Comments for this Gateway Policy including lock/unlock comments.
- context
Policy
Parent Gateway Policy Context - The context which the object belongs to
- description string
- Description of the resource.
- domain string
- The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use
cgw. - locked boolean
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
- nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
- policy
Parent stringGateway Policy Id - ID of the Security Policy.
- sequence
Number number - An int value used to resolve conflicts between security policies across domains
- stateful boolean
- A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
-
Policy
Parent Gateway Policy Tag[] - A list of scope + tag pairs to associate with this Gateway Policy.
- tcp
Strict boolean - A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
- category str
- The category to use for priority of this Gateway Policy. For local manager must be one of:
Emergency,SystemRules,SharedPreRules,LocalGatewayRules,AutoServiceRulesandDefault. For global manager must beSharedPreRulesorLocalGatewayRules. - display_
name str - Display name of the resource.
- comments str
- Comments for this Gateway Policy including lock/unlock comments.
- context
Policy
Parent Gateway Policy Context Args - The context which the object belongs to
- description str
- Description of the resource.
- domain str
- The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use
cgw. - locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
- nsx_
id str - The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
- policy_
parent_ strgateway_ policy_ id - ID of the Security Policy.
- sequence_
number float - An int value used to resolve conflicts between security policies across domains
- stateful bool
- A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
-
Sequence[Policy
Parent Gateway Policy Tag Args] - A list of scope + tag pairs to associate with this Gateway Policy.
- tcp_
strict bool - A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
- category String
- The category to use for priority of this Gateway Policy. For local manager must be one of:
Emergency,SystemRules,SharedPreRules,LocalGatewayRules,AutoServiceRulesandDefault. For global manager must beSharedPreRulesorLocalGatewayRules. - display
Name String - Display name of the resource.
- comments String
- Comments for this Gateway Policy including lock/unlock comments.
- context Property Map
- The context which the object belongs to
- description String
- Description of the resource.
- domain String
- The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use
cgw. - locked Boolean
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
- policy
Parent StringGateway Policy Id - ID of the Security Policy.
- sequence
Number Number - An int value used to resolve conflicts between security policies across domains
- stateful Boolean
- A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
- List<Property Map>
- A list of scope + tag pairs to associate with this Gateway Policy.
- tcp
Strict Boolean - A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyParentGatewayPolicy resource produces the following output properties:
Look up Existing PolicyParentGatewayPolicy Resource
Get an existing PolicyParentGatewayPolicy 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?: PolicyParentGatewayPolicyState, opts?: CustomResourceOptions): PolicyParentGatewayPolicy@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
category: Optional[str] = None,
comments: Optional[str] = None,
context: Optional[PolicyParentGatewayPolicyContextArgs] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
domain: Optional[str] = None,
locked: Optional[bool] = None,
nsx_id: Optional[str] = None,
path: Optional[str] = None,
policy_parent_gateway_policy_id: Optional[str] = None,
revision: Optional[float] = None,
sequence_number: Optional[float] = None,
stateful: Optional[bool] = None,
tags: Optional[Sequence[PolicyParentGatewayPolicyTagArgs]] = None,
tcp_strict: Optional[bool] = None) -> PolicyParentGatewayPolicyfunc GetPolicyParentGatewayPolicy(ctx *Context, name string, id IDInput, state *PolicyParentGatewayPolicyState, opts ...ResourceOption) (*PolicyParentGatewayPolicy, error)public static PolicyParentGatewayPolicy Get(string name, Input<string> id, PolicyParentGatewayPolicyState? state, CustomResourceOptions? opts = null)public static PolicyParentGatewayPolicy get(String name, Output<String> id, PolicyParentGatewayPolicyState state, CustomResourceOptions options)resources: _: type: nsxt:PolicyParentGatewayPolicy 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.
- Category string
- The category to use for priority of this Gateway Policy. For local manager must be one of:
Emergency,SystemRules,SharedPreRules,LocalGatewayRules,AutoServiceRulesandDefault. For global manager must beSharedPreRulesorLocalGatewayRules. - Comments string
- Comments for this Gateway Policy including lock/unlock comments.
- Context
Policy
Parent Gateway Policy Context - The context which the object belongs to
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Domain string
- The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use
cgw. - Locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
- Path string
- The NSX path of the policy resource.
- Policy
Parent stringGateway Policy Id - ID of the Security Policy.
- Revision double
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Sequence
Number double - An int value used to resolve conflicts between security policies across domains
- Stateful bool
- A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
-
List<Policy
Parent Gateway Policy Tag> - A list of scope + tag pairs to associate with this Gateway Policy.
- Tcp
Strict bool - A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
- Category string
- The category to use for priority of this Gateway Policy. For local manager must be one of:
Emergency,SystemRules,SharedPreRules,LocalGatewayRules,AutoServiceRulesandDefault. For global manager must beSharedPreRulesorLocalGatewayRules. - Comments string
- Comments for this Gateway Policy including lock/unlock comments.
- Context
Policy
Parent Gateway Policy Context Args - The context which the object belongs to
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Domain string
- The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use
cgw. - Locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
- Path string
- The NSX path of the policy resource.
- Policy
Parent stringGateway Policy Id - ID of the Security Policy.
- Revision float64
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Sequence
Number float64 - An int value used to resolve conflicts between security policies across domains
- Stateful bool
- A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
-
[]Policy
Parent Gateway Policy Tag Args - A list of scope + tag pairs to associate with this Gateway Policy.
- Tcp
Strict bool - A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
- category String
- The category to use for priority of this Gateway Policy. For local manager must be one of:
Emergency,SystemRules,SharedPreRules,LocalGatewayRules,AutoServiceRulesandDefault. For global manager must beSharedPreRulesorLocalGatewayRules. - comments String
- Comments for this Gateway Policy including lock/unlock comments.
- context
Policy
Parent Gateway Policy Context - The context which the object belongs to
- description String
- Description of the resource.
- display
Name String - Display name of the resource.
- domain String
- The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use
cgw. - locked Boolean
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
- path String
- The NSX path of the policy resource.
- policy
Parent StringGateway Policy Id - ID of the Security Policy.
- revision Double
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- sequence
Number Double - An int value used to resolve conflicts between security policies across domains
- stateful Boolean
- A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
-
List<Policy
Parent Gateway Policy Tag> - A list of scope + tag pairs to associate with this Gateway Policy.
- tcp
Strict Boolean - A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
- category string
- The category to use for priority of this Gateway Policy. For local manager must be one of:
Emergency,SystemRules,SharedPreRules,LocalGatewayRules,AutoServiceRulesandDefault. For global manager must beSharedPreRulesorLocalGatewayRules. - comments string
- Comments for this Gateway Policy including lock/unlock comments.
- context
Policy
Parent Gateway Policy Context - The context which the object belongs to
- description string
- Description of the resource.
- display
Name string - Display name of the resource.
- domain string
- The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use
cgw. - locked boolean
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
- nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
- path string
- The NSX path of the policy resource.
- policy
Parent stringGateway Policy Id - ID of the Security Policy.
- revision number
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- sequence
Number number - An int value used to resolve conflicts between security policies across domains
- stateful boolean
- A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
-
Policy
Parent Gateway Policy Tag[] - A list of scope + tag pairs to associate with this Gateway Policy.
- tcp
Strict boolean - A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
- category str
- The category to use for priority of this Gateway Policy. For local manager must be one of:
Emergency,SystemRules,SharedPreRules,LocalGatewayRules,AutoServiceRulesandDefault. For global manager must beSharedPreRulesorLocalGatewayRules. - comments str
- Comments for this Gateway Policy including lock/unlock comments.
- context
Policy
Parent Gateway Policy Context Args - The context which the object belongs to
- description str
- Description of the resource.
- display_
name str - Display name of the resource.
- domain str
- The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use
cgw. - locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
- nsx_
id str - The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
- path str
- The NSX path of the policy resource.
- policy_
parent_ strgateway_ policy_ id - ID of the Security Policy.
- revision float
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- sequence_
number float - An int value used to resolve conflicts between security policies across domains
- stateful bool
- A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
-
Sequence[Policy
Parent Gateway Policy Tag Args] - A list of scope + tag pairs to associate with this Gateway Policy.
- tcp_
strict bool - A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
- category String
- The category to use for priority of this Gateway Policy. For local manager must be one of:
Emergency,SystemRules,SharedPreRules,LocalGatewayRules,AutoServiceRulesandDefault. For global manager must beSharedPreRulesorLocalGatewayRules. - comments String
- Comments for this Gateway Policy including lock/unlock comments.
- context Property Map
- The context which the object belongs to
- description String
- Description of the resource.
- display
Name String - Display name of the resource.
- domain String
- The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use
cgw. - locked Boolean
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
- path String
- The NSX path of the policy resource.
- policy
Parent StringGateway Policy Id - ID of the Security Policy.
- revision Number
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- sequence
Number Number - An int value used to resolve conflicts between security policies across domains
- stateful Boolean
- A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
- List<Property Map>
- A list of scope + tag pairs to associate with this Gateway Policy.
- tcp
Strict Boolean - A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
Supporting Types
PolicyParentGatewayPolicyContext, PolicyParentGatewayPolicyContextArgs
- Project
Id string - The ID of the project which the object belongs to
- Project
Id string - The ID of the project which the object belongs to
- project
Id String - The ID of the project which the object belongs to
- project
Id string - The ID of the project which the object belongs to
- project_
id str - The ID of the project which the object belongs to
- project
Id String - The ID of the project which the object belongs to
PolicyParentGatewayPolicyTag, PolicyParentGatewayPolicyTagArgs
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxtTerraform Provider.
