1. Packages
  2. Packages
  3. Nsxt Provider
  4. API Docs
  5. PolicyParentIntrusionServicePolicy
Viewing docs for nsxt 3.12.0
published on Monday, May 18, 2026 by vmware
Viewing docs for nsxt 3.12.0
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:

    DisplayName string
    Display name of the resource.
    Category string
    Category for this policy. Must be one of: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    Comments string
    Comments for IDS policy lock/unlock.
    Context PolicyParentIntrusionServicePolicyContext
    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.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyParentIntrusionServicePolicyId string
    ID of the resource.
    SequenceNumber double
    This field is used to resolve conflicts between IDS policies across domains. Default is 0.
    Tags List<PolicyParentIntrusionServicePolicyTag>
    A list of scope + tag pairs to associate with this policy.
    DisplayName string
    Display name of the resource.
    Category string
    Category for this policy. Must be one of: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    Comments string
    Comments for IDS policy lock/unlock.
    Context PolicyParentIntrusionServicePolicyContextArgs
    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.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyParentIntrusionServicePolicyId string
    ID of the resource.
    SequenceNumber float64
    This field is used to resolve conflicts between IDS policies across domains. Default is 0.
    Tags []PolicyParentIntrusionServicePolicyTagArgs
    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: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    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_intrusion_service_policy_id string
    ID of the resource.
    sequence_number number
    This field is used to resolve conflicts between IDS policies across domains. Default is 0.
    tags list(object)
    A list of scope + tag pairs to associate with this policy.
    displayName String
    Display name of the resource.
    category String
    Category for this policy. Must be one of: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    comments String
    Comments for IDS policy lock/unlock.
    context PolicyParentIntrusionServicePolicyContext
    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.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyParentIntrusionServicePolicyId String
    ID of the resource.
    sequenceNumber Double
    This field is used to resolve conflicts between IDS policies across domains. Default is 0.
    tags List<PolicyParentIntrusionServicePolicyTag>
    A list of scope + tag pairs to associate with this policy.
    displayName string
    Display name of the resource.
    category string
    Category for this policy. Must be one of: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    comments string
    Comments for IDS policy lock/unlock.
    context PolicyParentIntrusionServicePolicyContext
    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.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyParentIntrusionServicePolicyId string
    ID of the resource.
    sequenceNumber number
    This field is used to resolve conflicts between IDS policies across domains. Default is 0.
    tags PolicyParentIntrusionServicePolicyTag[]
    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: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    comments str
    Comments for IDS policy lock/unlock.
    context PolicyParentIntrusionServicePolicyContextArgs
    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_intrusion_service_policy_id str
    ID of the resource.
    sequence_number float
    This field is used to resolve conflicts between IDS policies across domains. Default is 0.
    tags Sequence[PolicyParentIntrusionServicePolicyTagArgs]
    A list of scope + tag pairs to associate with this policy.
    displayName String
    Display name of the resource.
    category String
    Category for this policy. Must be one of: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    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.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyParentIntrusionServicePolicyId String
    ID of the resource.
    sequenceNumber Number
    This field is used to resolve conflicts between IDS policies across domains. Default is 0.
    tags 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) -> PolicyParentIntrusionServicePolicy
    func 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.
    The following state arguments are supported:
    Category string
    Category for this policy. Must be one of: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    Comments string
    Comments for IDS policy lock/unlock.
    Context PolicyParentIntrusionServicePolicyContext
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName 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.
    NsxId 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.
    PolicyParentIntrusionServicePolicyId string
    ID of the resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server.
    SequenceNumber 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.
    Tags List<PolicyParentIntrusionServicePolicyTag>
    A list of scope + tag pairs to associate with this policy.
    Category string
    Category for this policy. Must be one of: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    Comments string
    Comments for IDS policy lock/unlock.
    Context PolicyParentIntrusionServicePolicyContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName 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.
    NsxId 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.
    PolicyParentIntrusionServicePolicyId string
    ID of the resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server.
    SequenceNumber 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.
    Tags []PolicyParentIntrusionServicePolicyTagArgs
    A list of scope + tag pairs to associate with this policy.
    category string
    Category for this policy. Must be one of: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    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_intrusion_service_policy_id string
    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.
    tags list(object)
    A list of scope + tag pairs to associate with this policy.
    category String
    Category for this policy. Must be one of: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    comments String
    Comments for IDS policy lock/unlock.
    context PolicyParentIntrusionServicePolicyContext
    The context which the object belongs to
    description String
    Description of the resource.
    displayName 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.
    nsxId 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.
    policyParentIntrusionServicePolicyId String
    ID of the resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server.
    sequenceNumber 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.
    tags List<PolicyParentIntrusionServicePolicyTag>
    A list of scope + tag pairs to associate with this policy.
    category string
    Category for this policy. Must be one of: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    comments string
    Comments for IDS policy lock/unlock.
    context PolicyParentIntrusionServicePolicyContext
    The context which the object belongs to
    description string
    Description of the resource.
    displayName 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.
    nsxId 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.
    policyParentIntrusionServicePolicyId string
    ID of the resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server.
    sequenceNumber 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.
    tags PolicyParentIntrusionServicePolicyTag[]
    A list of scope + tag pairs to associate with this policy.
    category str
    Category for this policy. Must be one of: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    comments str
    Comments for IDS policy lock/unlock.
    context PolicyParentIntrusionServicePolicyContextArgs
    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_intrusion_service_policy_id str
    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.
    tags Sequence[PolicyParentIntrusionServicePolicyTagArgs]
    A list of scope + tag pairs to associate with this policy.
    category String
    Category for this policy. Must be one of: ThreatRules or EmergencyThreatRules. Default is ThreatRules.
    comments String
    Comments for IDS policy lock/unlock.
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    displayName 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.
    nsxId 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.
    policyParentIntrusionServicePolicyId String
    ID of the resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server.
    sequenceNumber 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.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this policy.

    Supporting Types

    PolicyParentIntrusionServicePolicyContext, PolicyParentIntrusionServicePolicyContextArgs

    ProjectId string
    The ID of the project which the object belongs to
    ProjectId string
    The ID of the project which the object belongs to
    project_id string
    The ID of the project which the object belongs to
    projectId String
    The ID of the project which the object belongs to
    projectId string
    The ID of the project which the object belongs to
    project_id str
    The ID of the project which the object belongs to
    projectId String
    The ID of the project which the object belongs to

    PolicyParentIntrusionServicePolicyTag, PolicyParentIntrusionServicePolicyTagArgs

    Scope string
    Tag string
    A list of scope + tag pairs to associate with this policy.
    Scope string
    Tag string
    A list of scope + tag pairs to associate with this policy.
    scope string
    tag string
    A list of scope + tag pairs to associate with this policy.
    scope String
    tag String
    A list of scope + tag pairs to associate with this policy.
    scope string
    tag string
    A list of scope + tag pairs to associate with this policy.
    scope str
    tag str
    A list of scope + tag pairs to associate with this policy.
    scope String
    tag String
    A list of scope + tag pairs to associate with this policy.

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    Viewing docs for nsxt 3.12.0
    published on Monday, May 18, 2026 by vmware

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial