published on Monday, May 18, 2026 by vmware
published on Monday, May 18, 2026 by vmware
Create PolicyParentIntrusionServiceGatewayPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicyParentIntrusionServiceGatewayPolicy(name: string, args: PolicyParentIntrusionServiceGatewayPolicyArgs, opts?: CustomResourceOptions);@overload
def PolicyParentIntrusionServiceGatewayPolicy(resource_name: str,
args: PolicyParentIntrusionServiceGatewayPolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PolicyParentIntrusionServiceGatewayPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
category: Optional[str] = None,
display_name: Optional[str] = None,
comments: Optional[str] = None,
description: Optional[str] = None,
domain: Optional[str] = None,
locked: Optional[bool] = None,
nsx_id: Optional[str] = None,
policy_parent_intrusion_service_gateway_policy_id: Optional[str] = None,
sequence_number: Optional[float] = None,
tags: Optional[Sequence[PolicyParentIntrusionServiceGatewayPolicyTagArgs]] = None)func NewPolicyParentIntrusionServiceGatewayPolicy(ctx *Context, name string, args PolicyParentIntrusionServiceGatewayPolicyArgs, opts ...ResourceOption) (*PolicyParentIntrusionServiceGatewayPolicy, error)public PolicyParentIntrusionServiceGatewayPolicy(string name, PolicyParentIntrusionServiceGatewayPolicyArgs args, CustomResourceOptions? opts = null)
public PolicyParentIntrusionServiceGatewayPolicy(String name, PolicyParentIntrusionServiceGatewayPolicyArgs args)
public PolicyParentIntrusionServiceGatewayPolicy(String name, PolicyParentIntrusionServiceGatewayPolicyArgs args, CustomResourceOptions options)
type: nsxt:PolicyParentIntrusionServiceGatewayPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "nsxt_policyparentintrusionservicegatewaypolicy" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args PolicyParentIntrusionServiceGatewayPolicyArgs
- 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 PolicyParentIntrusionServiceGatewayPolicyArgs
- 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 PolicyParentIntrusionServiceGatewayPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyParentIntrusionServiceGatewayPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyParentIntrusionServiceGatewayPolicyArgs
- 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 policyParentIntrusionServiceGatewayPolicyResource = new Nsxt.PolicyParentIntrusionServiceGatewayPolicy("policyParentIntrusionServiceGatewayPolicyResource", new()
{
Category = "string",
DisplayName = "string",
Comments = "string",
Description = "string",
Domain = "string",
Locked = false,
NsxId = "string",
PolicyParentIntrusionServiceGatewayPolicyId = "string",
SequenceNumber = 0,
Tags = new[]
{
new Nsxt.Inputs.PolicyParentIntrusionServiceGatewayPolicyTagArgs
{
Scope = "string",
Tag = "string",
},
},
});
example, err := nsxt.NewPolicyParentIntrusionServiceGatewayPolicy(ctx, "policyParentIntrusionServiceGatewayPolicyResource", &nsxt.PolicyParentIntrusionServiceGatewayPolicyArgs{
Category: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Comments: pulumi.String("string"),
Description: pulumi.String("string"),
Domain: pulumi.String("string"),
Locked: pulumi.Bool(false),
NsxId: pulumi.String("string"),
PolicyParentIntrusionServiceGatewayPolicyId: pulumi.String("string"),
SequenceNumber: pulumi.Float64(0),
Tags: nsxt.PolicyParentIntrusionServiceGatewayPolicyTagArray{
&nsxt.PolicyParentIntrusionServiceGatewayPolicyTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
})
resource "nsxt_policyparentintrusionservicegatewaypolicy" "policyParentIntrusionServiceGatewayPolicyResource" {
category = "string"
display_name = "string"
comments = "string"
description = "string"
domain = "string"
locked = false
nsx_id = "string"
policy_parent_intrusion_service_gateway_policy_id = "string"
sequence_number = 0
tags {
scope = "string"
tag = "string"
}
}
var policyParentIntrusionServiceGatewayPolicyResource = new PolicyParentIntrusionServiceGatewayPolicy("policyParentIntrusionServiceGatewayPolicyResource", PolicyParentIntrusionServiceGatewayPolicyArgs.builder()
.category("string")
.displayName("string")
.comments("string")
.description("string")
.domain("string")
.locked(false)
.nsxId("string")
.policyParentIntrusionServiceGatewayPolicyId("string")
.sequenceNumber(0.0)
.tags(PolicyParentIntrusionServiceGatewayPolicyTagArgs.builder()
.scope("string")
.tag("string")
.build())
.build());
policy_parent_intrusion_service_gateway_policy_resource = nsxt.PolicyParentIntrusionServiceGatewayPolicy("policyParentIntrusionServiceGatewayPolicyResource",
category="string",
display_name="string",
comments="string",
description="string",
domain="string",
locked=False,
nsx_id="string",
policy_parent_intrusion_service_gateway_policy_id="string",
sequence_number=float(0),
tags=[{
"scope": "string",
"tag": "string",
}])
const policyParentIntrusionServiceGatewayPolicyResource = new nsxt.PolicyParentIntrusionServiceGatewayPolicy("policyParentIntrusionServiceGatewayPolicyResource", {
category: "string",
displayName: "string",
comments: "string",
description: "string",
domain: "string",
locked: false,
nsxId: "string",
policyParentIntrusionServiceGatewayPolicyId: "string",
sequenceNumber: 0,
tags: [{
scope: "string",
tag: "string",
}],
});
type: nsxt:PolicyParentIntrusionServiceGatewayPolicy
properties:
category: string
comments: string
description: string
displayName: string
domain: string
locked: false
nsxId: string
policyParentIntrusionServiceGatewayPolicyId: string
sequenceNumber: 0
tags:
- scope: string
tag: string
PolicyParentIntrusionServiceGatewayPolicy 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 PolicyParentIntrusionServiceGatewayPolicy resource accepts the following input properties:
- Category string
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - Display
Name string - Display name of the resource.
- Comments string
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- Description string
- Description of the resource.
- Domain string
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - Locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Parent stringIntrusion Service Gateway Policy Id - ID of the resource.
- Sequence
Number double - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. -
List<Policy
Parent Intrusion Service Gateway Policy Tag> - A list of scope + tag pairs to associate with this policy.
- Category string
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - Display
Name string - Display name of the resource.
- Comments string
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- Description string
- Description of the resource.
- Domain string
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - Locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Parent stringIntrusion Service Gateway Policy Id - ID of the resource.
- Sequence
Number float64 - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. -
[]Policy
Parent Intrusion Service Gateway Policy Tag Args - A list of scope + tag pairs to associate with this policy.
- category string
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - display_
name string - Display name of the resource.
- comments string
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- description string
- Description of the resource.
- domain string
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - nsx_
id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy_
parent_ stringintrusion_ service_ gateway_ policy_ id - ID of the resource.
- sequence_
number number - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. - list(object)
- A list of scope + tag pairs to associate with this policy.
- category String
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - display
Name String - Display name of the resource.
- comments String
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- description String
- Description of the resource.
- domain String
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - locked Boolean
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Parent StringIntrusion Service Gateway Policy Id - ID of the resource.
- sequence
Number Double - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. -
List<Policy
Parent Intrusion Service Gateway Policy Tag> - A list of scope + tag pairs to associate with this policy.
- category string
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - display
Name string - Display name of the resource.
- comments string
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- description string
- Description of the resource.
- domain string
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - locked boolean
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Parent stringIntrusion Service Gateway Policy Id - ID of the resource.
- sequence
Number number - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. -
Policy
Parent Intrusion Service Gateway Policy Tag[] - A list of scope + tag pairs to associate with this policy.
- category str
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - display_
name str - Display name of the resource.
- comments str
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- description str
- Description of the resource.
- domain str
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - nsx_
id str - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy_
parent_ strintrusion_ service_ gateway_ policy_ id - ID of the resource.
- sequence_
number float - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. -
Sequence[Policy
Parent Intrusion Service Gateway Policy Tag Args] - A list of scope + tag pairs to associate with this policy.
- category String
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - display
Name String - Display name of the resource.
- comments String
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- description String
- Description of the resource.
- domain String
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - locked Boolean
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Parent StringIntrusion Service Gateway Policy Id - ID of the resource.
- sequence
Number Number - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. - List<Property Map>
- A list of scope + tag pairs to associate with this policy.
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyParentIntrusionServiceGatewayPolicy 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.
- Stateful bool
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true.
- 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.
- Stateful bool
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true.
- 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.
- stateful bool
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true.
- 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.
- stateful Boolean
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true.
- 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.
- stateful boolean
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true.
- 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.
- stateful bool
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true.
- 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.
- stateful Boolean
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true.
Look up Existing PolicyParentIntrusionServiceGatewayPolicy Resource
Get an existing PolicyParentIntrusionServiceGatewayPolicy 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?: PolicyParentIntrusionServiceGatewayPolicyState, opts?: CustomResourceOptions): PolicyParentIntrusionServiceGatewayPolicy@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
category: Optional[str] = None,
comments: Optional[str] = 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_intrusion_service_gateway_policy_id: Optional[str] = None,
revision: Optional[float] = None,
sequence_number: Optional[float] = None,
stateful: Optional[bool] = None,
tags: Optional[Sequence[PolicyParentIntrusionServiceGatewayPolicyTagArgs]] = None) -> PolicyParentIntrusionServiceGatewayPolicyfunc GetPolicyParentIntrusionServiceGatewayPolicy(ctx *Context, name string, id IDInput, state *PolicyParentIntrusionServiceGatewayPolicyState, opts ...ResourceOption) (*PolicyParentIntrusionServiceGatewayPolicy, error)public static PolicyParentIntrusionServiceGatewayPolicy Get(string name, Input<string> id, PolicyParentIntrusionServiceGatewayPolicyState? state, CustomResourceOptions? opts = null)public static PolicyParentIntrusionServiceGatewayPolicy get(String name, Output<String> id, PolicyParentIntrusionServiceGatewayPolicyState state, CustomResourceOptions options)resources: _: type: nsxt:PolicyParentIntrusionServiceGatewayPolicy get: id: ${id}import {
to = nsxt_policyparentintrusionservicegatewaypolicy.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Category string
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - Comments string
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Domain string
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - Locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Path string
- The NSX path of the policy resource.
- Policy
Parent stringIntrusion Service Gateway Policy Id - ID of the resource.
- Revision double
- Indicates current revision number of the object as seen by NSX-T API server.
- Sequence
Number double - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. - Stateful bool
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true. -
List<Policy
Parent Intrusion Service Gateway Policy Tag> - A list of scope + tag pairs to associate with this policy.
- Category string
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - Comments string
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Domain string
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - Locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Path string
- The NSX path of the policy resource.
- Policy
Parent stringIntrusion Service Gateway Policy Id - ID of the resource.
- Revision float64
- Indicates current revision number of the object as seen by NSX-T API server.
- Sequence
Number float64 - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. - Stateful bool
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true. -
[]Policy
Parent Intrusion Service Gateway Policy Tag Args - A list of scope + tag pairs to associate with this policy.
- category string
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - comments string
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- description string
- Description of the resource.
- display_
name string - Display name of the resource.
- domain string
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - nsx_
id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- path string
- The NSX path of the policy resource.
- policy_
parent_ stringintrusion_ service_ gateway_ policy_ id - ID of the resource.
- revision number
- Indicates current revision number of the object as seen by NSX-T API server.
- sequence_
number number - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. - stateful bool
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true. - list(object)
- A list of scope + tag pairs to associate with this policy.
- category String
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - comments String
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- description String
- Description of the resource.
- display
Name String - Display name of the resource.
- domain String
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - locked Boolean
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- path String
- The NSX path of the policy resource.
- policy
Parent StringIntrusion Service Gateway Policy Id - ID of the resource.
- revision Double
- Indicates current revision number of the object as seen by NSX-T API server.
- sequence
Number Double - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. - stateful Boolean
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true. -
List<Policy
Parent Intrusion Service Gateway Policy Tag> - A list of scope + tag pairs to associate with this policy.
- category string
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - comments string
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- description string
- Description of the resource.
- display
Name string - Display name of the resource.
- domain string
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - locked boolean
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- path string
- The NSX path of the policy resource.
- policy
Parent stringIntrusion Service Gateway Policy Id - ID of the resource.
- revision number
- Indicates current revision number of the object as seen by NSX-T API server.
- sequence
Number number - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. - stateful boolean
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true. -
Policy
Parent Intrusion Service Gateway Policy Tag[] - A list of scope + tag pairs to associate with this policy.
- category str
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - comments str
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- description str
- Description of the resource.
- display_
name str - Display name of the resource.
- domain str
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - locked bool
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - nsx_
id str - The NSX ID of this resource. If set, this ID will be used to create the resource.
- path str
- The NSX path of the policy resource.
- policy_
parent_ strintrusion_ service_ gateway_ policy_ id - ID of the resource.
- revision float
- Indicates current revision number of the object as seen by NSX-T API server.
- sequence_
number float - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. - stateful bool
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true. -
Sequence[Policy
Parent Intrusion Service Gateway Policy Tag Args] - A list of scope + tag pairs to associate with this policy.
- category String
- The category to use for priority of this Intrusion Service Gateway Policy. Must be one of:
SharedPreRules,LocalGatewayRules, orDefault. - comments String
- Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
- description String
- Description of the resource.
- display
Name String - Display name of the resource.
- domain String
- The domain to use for the resource. This domain must already exist. If not specified, this field defaults to
default. - locked Boolean
- A boolean value indicating if the policy is locked. If locked, no other users can update the resource. Default is
false. - nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- path String
- The NSX path of the policy resource.
- policy
Parent StringIntrusion Service Gateway Policy Id - ID of the resource.
- revision Number
- Indicates current revision number of the object as seen by NSX-T API server.
- sequence
Number Number - An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is
0. - stateful Boolean
- A boolean value indicating if this Policy is stateful. Intrusion Service Gateway Policies are always stateful as they require connection state tracking for proper intrusion detection and prevention. This field is read-only and always returns
true. - List<Property Map>
- A list of scope + tag pairs to associate with this policy.
Supporting Types
PolicyParentIntrusionServiceGatewayPolicyTag, PolicyParentIntrusionServiceGatewayPolicyTagArgs
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxtTerraform Provider.
published on Monday, May 18, 2026 by vmware