published on Monday, May 18, 2026 by vmware
published on Monday, May 18, 2026 by vmware
Create PolicyParentIntrusionServicePolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicyParentIntrusionServicePolicy(name: string, args: PolicyParentIntrusionServicePolicyArgs, opts?: CustomResourceOptions);@overload
def PolicyParentIntrusionServicePolicy(resource_name: str,
args: PolicyParentIntrusionServicePolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PolicyParentIntrusionServicePolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
category: Optional[str] = None,
comments: Optional[str] = None,
context: Optional[PolicyParentIntrusionServicePolicyContextArgs] = None,
description: Optional[str] = None,
domain: Optional[str] = None,
locked: Optional[bool] = None,
nsx_id: Optional[str] = None,
policy_parent_intrusion_service_policy_id: Optional[str] = None,
sequence_number: Optional[float] = None,
tags: Optional[Sequence[PolicyParentIntrusionServicePolicyTagArgs]] = None)func NewPolicyParentIntrusionServicePolicy(ctx *Context, name string, args PolicyParentIntrusionServicePolicyArgs, opts ...ResourceOption) (*PolicyParentIntrusionServicePolicy, error)public PolicyParentIntrusionServicePolicy(string name, PolicyParentIntrusionServicePolicyArgs args, CustomResourceOptions? opts = null)
public PolicyParentIntrusionServicePolicy(String name, PolicyParentIntrusionServicePolicyArgs args)
public PolicyParentIntrusionServicePolicy(String name, PolicyParentIntrusionServicePolicyArgs args, CustomResourceOptions options)
type: nsxt:PolicyParentIntrusionServicePolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "nsxt_policyparentintrusionservicepolicy" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args PolicyParentIntrusionServicePolicyArgs
- 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 PolicyParentIntrusionServicePolicyArgs
- 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 PolicyParentIntrusionServicePolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyParentIntrusionServicePolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyParentIntrusionServicePolicyArgs
- 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 policyParentIntrusionServicePolicyResource = new Nsxt.PolicyParentIntrusionServicePolicy("policyParentIntrusionServicePolicyResource", new()
{
DisplayName = "string",
Category = "string",
Comments = "string",
Context = new Nsxt.Inputs.PolicyParentIntrusionServicePolicyContextArgs
{
ProjectId = "string",
},
Description = "string",
Domain = "string",
Locked = false,
NsxId = "string",
PolicyParentIntrusionServicePolicyId = "string",
SequenceNumber = 0,
Tags = new[]
{
new Nsxt.Inputs.PolicyParentIntrusionServicePolicyTagArgs
{
Scope = "string",
Tag = "string",
},
},
});
example, err := nsxt.NewPolicyParentIntrusionServicePolicy(ctx, "policyParentIntrusionServicePolicyResource", &nsxt.PolicyParentIntrusionServicePolicyArgs{
DisplayName: pulumi.String("string"),
Category: pulumi.String("string"),
Comments: pulumi.String("string"),
Context: &nsxt.PolicyParentIntrusionServicePolicyContextArgs{
ProjectId: pulumi.String("string"),
},
Description: pulumi.String("string"),
Domain: pulumi.String("string"),
Locked: pulumi.Bool(false),
NsxId: pulumi.String("string"),
PolicyParentIntrusionServicePolicyId: pulumi.String("string"),
SequenceNumber: pulumi.Float64(0),
Tags: nsxt.PolicyParentIntrusionServicePolicyTagArray{
&nsxt.PolicyParentIntrusionServicePolicyTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
})
resource "nsxt_policyparentintrusionservicepolicy" "policyParentIntrusionServicePolicyResource" {
display_name = "string"
category = "string"
comments = "string"
context = {
project_id = "string"
}
description = "string"
domain = "string"
locked = false
nsx_id = "string"
policy_parent_intrusion_service_policy_id = "string"
sequence_number = 0
tags {
scope = "string"
tag = "string"
}
}
var policyParentIntrusionServicePolicyResource = new PolicyParentIntrusionServicePolicy("policyParentIntrusionServicePolicyResource", PolicyParentIntrusionServicePolicyArgs.builder()
.displayName("string")
.category("string")
.comments("string")
.context(PolicyParentIntrusionServicePolicyContextArgs.builder()
.projectId("string")
.build())
.description("string")
.domain("string")
.locked(false)
.nsxId("string")
.policyParentIntrusionServicePolicyId("string")
.sequenceNumber(0.0)
.tags(PolicyParentIntrusionServicePolicyTagArgs.builder()
.scope("string")
.tag("string")
.build())
.build());
policy_parent_intrusion_service_policy_resource = nsxt.PolicyParentIntrusionServicePolicy("policyParentIntrusionServicePolicyResource",
display_name="string",
category="string",
comments="string",
context={
"project_id": "string",
},
description="string",
domain="string",
locked=False,
nsx_id="string",
policy_parent_intrusion_service_policy_id="string",
sequence_number=float(0),
tags=[{
"scope": "string",
"tag": "string",
}])
const policyParentIntrusionServicePolicyResource = new nsxt.PolicyParentIntrusionServicePolicy("policyParentIntrusionServicePolicyResource", {
displayName: "string",
category: "string",
comments: "string",
context: {
projectId: "string",
},
description: "string",
domain: "string",
locked: false,
nsxId: "string",
policyParentIntrusionServicePolicyId: "string",
sequenceNumber: 0,
tags: [{
scope: "string",
tag: "string",
}],
});
type: nsxt:PolicyParentIntrusionServicePolicy
properties:
category: string
comments: string
context:
projectId: string
description: string
displayName: string
domain: string
locked: false
nsxId: string
policyParentIntrusionServicePolicyId: string
sequenceNumber: 0
tags:
- scope: string
tag: string
PolicyParentIntrusionServicePolicy 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 PolicyParentIntrusionServicePolicy resource accepts the following input properties:
- Display
Name string - Display name of the resource.
- Category string
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - Comments string
- Comments for IDS policy lock/unlock.
- Context
Policy
Parent Intrusion Service Policy Context - The context which the object belongs to
- 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 is default to
default. - Locked bool
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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 Policy Id - ID of the resource.
- Sequence
Number double - This field is used to resolve conflicts between IDS policies across domains. Default is
0. -
List<Policy
Parent Intrusion Service Policy Tag> - A list of scope + tag pairs to associate with this policy.
- Display
Name string - Display name of the resource.
- Category string
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - Comments string
- Comments for IDS policy lock/unlock.
- Context
Policy
Parent Intrusion Service Policy Context Args - The context which the object belongs to
- 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 is default to
default. - Locked bool
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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 Policy Id - ID of the resource.
- Sequence
Number float64 - This field is used to resolve conflicts between IDS policies across domains. Default is
0. -
[]Policy
Parent Intrusion Service Policy Tag Args - A list of scope + tag pairs to associate with this policy.
- display_
name string - Display name of the resource.
- category string
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - comments string
- Comments for IDS policy lock/unlock.
- context object
- The context which the object belongs to
- 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 is default to
default. - locked bool
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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_ policy_ id - ID of the resource.
- sequence_
number number - This field is used to resolve conflicts between IDS policies across domains. Default is
0. - list(object)
- A list of scope + tag pairs to associate with this policy.
- display
Name String - Display name of the resource.
- category String
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - comments String
- Comments for IDS policy lock/unlock.
- context
Policy
Parent Intrusion Service Policy Context - The context which the object belongs to
- 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 is default to
default. - locked Boolean
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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 Policy Id - ID of the resource.
- sequence
Number Double - This field is used to resolve conflicts between IDS policies across domains. Default is
0. -
List<Policy
Parent Intrusion Service Policy Tag> - A list of scope + tag pairs to associate with this policy.
- display
Name string - Display name of the resource.
- category string
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - comments string
- Comments for IDS policy lock/unlock.
- context
Policy
Parent Intrusion Service Policy Context - The context which the object belongs to
- 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 is default to
default. - locked boolean
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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 Policy Id - ID of the resource.
- sequence
Number number - This field is used to resolve conflicts between IDS policies across domains. Default is
0. -
Policy
Parent Intrusion Service Policy Tag[] - A list of scope + tag pairs to associate with this policy.
- display_
name str - Display name of the resource.
- category str
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - comments str
- Comments for IDS policy lock/unlock.
- context
Policy
Parent Intrusion Service Policy Context Args - The context which the object belongs to
- 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 is default to
default. - locked bool
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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_ policy_ id - ID of the resource.
- sequence_
number float - This field is used to resolve conflicts between IDS policies across domains. Default is
0. -
Sequence[Policy
Parent Intrusion Service Policy Tag Args] - A list of scope + tag pairs to associate with this policy.
- display
Name String - Display name of the resource.
- category String
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - comments String
- Comments for IDS policy lock/unlock.
- context Property Map
- The context which the object belongs to
- 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 is default to
default. - locked Boolean
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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 Policy Id - ID of the resource.
- sequence
Number Number - This field is used to resolve conflicts between IDS 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 PolicyParentIntrusionServicePolicy 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 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 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 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 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 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 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 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 PolicyParentIntrusionServicePolicy Resource
Get an existing PolicyParentIntrusionServicePolicy 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?: PolicyParentIntrusionServicePolicyState, opts?: CustomResourceOptions): PolicyParentIntrusionServicePolicy@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
category: Optional[str] = None,
comments: Optional[str] = None,
context: Optional[PolicyParentIntrusionServicePolicyContextArgs] = 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_policy_id: Optional[str] = None,
revision: Optional[float] = None,
sequence_number: Optional[float] = None,
stateful: Optional[bool] = None,
tags: Optional[Sequence[PolicyParentIntrusionServicePolicyTagArgs]] = None) -> PolicyParentIntrusionServicePolicyfunc GetPolicyParentIntrusionServicePolicy(ctx *Context, name string, id IDInput, state *PolicyParentIntrusionServicePolicyState, opts ...ResourceOption) (*PolicyParentIntrusionServicePolicy, error)public static PolicyParentIntrusionServicePolicy Get(string name, Input<string> id, PolicyParentIntrusionServicePolicyState? state, CustomResourceOptions? opts = null)public static PolicyParentIntrusionServicePolicy get(String name, Output<String> id, PolicyParentIntrusionServicePolicyState state, CustomResourceOptions options)resources: _: type: nsxt:PolicyParentIntrusionServicePolicy get: id: ${id}import {
to = nsxt_policyparentintrusionservicepolicy.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
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - Comments string
- Comments for IDS policy lock/unlock.
- Context
Policy
Parent Intrusion Service 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 resource. This domain must already exist. If not specified, this field is default to
default. - Locked bool
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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 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 - This field is used to resolve conflicts between IDS policies across domains. Default is
0. - Stateful bool
- A boolean value indicating if this Policy is stateful. Intrusion Service 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 Policy Tag> - A list of scope + tag pairs to associate with this policy.
- Category string
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - Comments string
- Comments for IDS policy lock/unlock.
- Context
Policy
Parent Intrusion Service 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 resource. This domain must already exist. If not specified, this field is default to
default. - Locked bool
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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 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 - This field is used to resolve conflicts between IDS policies across domains. Default is
0. - Stateful bool
- A boolean value indicating if this Policy is stateful. Intrusion Service 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 Policy Tag Args - A list of scope + tag pairs to associate with this policy.
- category string
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - comments string
- Comments for IDS policy lock/unlock.
- context object
- 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 resource. This domain must already exist. If not specified, this field is default to
default. - locked bool
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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_ 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 - This field is used to resolve conflicts between IDS policies across domains. Default is
0. - stateful bool
- A boolean value indicating if this Policy is stateful. Intrusion Service 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
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - comments String
- Comments for IDS policy lock/unlock.
- context
Policy
Parent Intrusion Service 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 resource. This domain must already exist. If not specified, this field is default to
default. - locked Boolean
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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 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 - This field is used to resolve conflicts between IDS policies across domains. Default is
0. - stateful Boolean
- A boolean value indicating if this Policy is stateful. Intrusion Service 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 Policy Tag> - A list of scope + tag pairs to associate with this policy.
- category string
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - comments string
- Comments for IDS policy lock/unlock.
- context
Policy
Parent Intrusion Service 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 resource. This domain must already exist. If not specified, this field is default to
default. - locked boolean
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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 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 - This field is used to resolve conflicts between IDS policies across domains. Default is
0. - stateful boolean
- A boolean value indicating if this Policy is stateful. Intrusion Service 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 Policy Tag[] - A list of scope + tag pairs to associate with this policy.
- category str
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - comments str
- Comments for IDS policy lock/unlock.
- context
Policy
Parent Intrusion Service 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 resource. This domain must already exist. If not specified, this field is default to
default. - locked bool
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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_ 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 - This field is used to resolve conflicts between IDS policies across domains. Default is
0. - stateful bool
- A boolean value indicating if this Policy is stateful. Intrusion Service 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 Policy Tag Args] - A list of scope + tag pairs to associate with this policy.
- category String
- Category for this policy. Must be one of:
ThreatRulesorEmergencyThreatRules. Default isThreatRules. - comments String
- Comments for IDS policy lock/unlock.
- 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 resource. This domain must already exist. If not specified, this field is default to
default. - locked Boolean
- Indicates whether the policy should be locked. If locked by a user, no other user would be able to modify this policy. 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 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 - This field is used to resolve conflicts between IDS policies across domains. Default is
0. - stateful Boolean
- A boolean value indicating if this Policy is stateful. Intrusion Service 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
PolicyParentIntrusionServicePolicyContext, PolicyParentIntrusionServicePolicyContextArgs
- 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 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
PolicyParentIntrusionServicePolicyTag, PolicyParentIntrusionServicePolicyTagArgs
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