1. Packages
  2. Packages
  3. Nsxt Provider
  4. API Docs
  5. PolicyParentIntrusionServiceGatewayPolicy
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 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, or Default.
    DisplayName 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.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyParentIntrusionServiceGatewayPolicyId string
    ID of the resource.
    SequenceNumber double
    An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is 0.
    Tags List<PolicyParentIntrusionServiceGatewayPolicyTag>
    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, or Default.
    DisplayName 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.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyParentIntrusionServiceGatewayPolicyId string
    ID of the resource.
    SequenceNumber float64
    An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is 0.
    Tags []PolicyParentIntrusionServiceGatewayPolicyTagArgs
    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, or Default.
    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_intrusion_service_gateway_policy_id string
    ID of the resource.
    sequence_number number
    An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is 0.
    tags 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, or Default.
    displayName 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.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyParentIntrusionServiceGatewayPolicyId String
    ID of the resource.
    sequenceNumber Double
    An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is 0.
    tags List<PolicyParentIntrusionServiceGatewayPolicyTag>
    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, or Default.
    displayName 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.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyParentIntrusionServiceGatewayPolicyId string
    ID of the resource.
    sequenceNumber number
    An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is 0.
    tags PolicyParentIntrusionServiceGatewayPolicyTag[]
    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, or Default.
    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_intrusion_service_gateway_policy_id str
    ID of the resource.
    sequence_number float
    An int value used to resolve conflicts between intrusion service gateway policies across domains. Default is 0.
    tags Sequence[PolicyParentIntrusionServiceGatewayPolicyTagArgs]
    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, or Default.
    displayName 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.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyParentIntrusionServiceGatewayPolicyId String
    ID of the resource.
    sequenceNumber Number
    An int value used to resolve conflicts between intrusion service gateway 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 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) -> PolicyParentIntrusionServiceGatewayPolicy
    func 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.
    The following state arguments are supported:
    Category string
    The category to use for priority of this Intrusion Service Gateway Policy. Must be one of: SharedPreRules, LocalGatewayRules, or Default.
    Comments string
    Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
    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 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.
    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.
    PolicyParentIntrusionServiceGatewayPolicyId string
    ID of the resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server.
    SequenceNumber 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.
    Tags List<PolicyParentIntrusionServiceGatewayPolicyTag>
    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, or Default.
    Comments string
    Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
    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 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.
    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.
    PolicyParentIntrusionServiceGatewayPolicyId string
    ID of the resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server.
    SequenceNumber 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.
    Tags []PolicyParentIntrusionServiceGatewayPolicyTagArgs
    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, or Default.
    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_intrusion_service_gateway_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
    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.
    tags 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, or Default.
    comments String
    Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
    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 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.
    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.
    policyParentIntrusionServiceGatewayPolicyId String
    ID of the resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server.
    sequenceNumber 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.
    tags List<PolicyParentIntrusionServiceGatewayPolicyTag>
    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, or Default.
    comments string
    Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
    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 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.
    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.
    policyParentIntrusionServiceGatewayPolicyId string
    ID of the resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server.
    sequenceNumber 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.
    tags PolicyParentIntrusionServiceGatewayPolicyTag[]
    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, or Default.
    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_intrusion_service_gateway_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
    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.
    tags Sequence[PolicyParentIntrusionServiceGatewayPolicyTagArgs]
    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, or Default.
    comments String
    Comments for this Intrusion Service Gateway Policy including lock/unlock comments.
    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 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.
    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.
    policyParentIntrusionServiceGatewayPolicyId String
    ID of the resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server.
    sequenceNumber 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.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this policy.

    Supporting Types

    PolicyParentIntrusionServiceGatewayPolicyTag, PolicyParentIntrusionServiceGatewayPolicyTagArgs

    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