1. Packages
  2. Packages
  3. Nsxt Provider
  4. API Docs
  5. getPolicyIntrusionServiceGatewayPolicy
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

    This data source provides information about an existing Intrusion Service Gateway Policy configured on NSX. It can be useful for fetching the IDPS Gateway Policy including all its embedded rules.

    NOTE: This data source retrieves the policy including embedded rules, allowing you to refer IDPS Gateway policy details and its rules in other resources. For different use cases, consider:

    • nsxt.PolicyParentIntrusionServiceGatewayPolicy - For IDPS Gateway policy metadata only (no rules)
    • nsxt.PolicyIntrusionServiceGatewayPolicyRule - For individual standalone IDPS Gateway rules

    This data source is applicable to NSX Policy Manager (NSX version 4.2.0 onwards).

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nsxt from "@pulumi/nsxt";
    
    const idpsGatewayPolicy = nsxt.getPolicyIntrusionServiceGatewayPolicy({
        displayName: "intrusion-service-gateway-policy",
    });
    
    import pulumi
    import pulumi_nsxt as nsxt
    
    idps_gateway_policy = nsxt.get_policy_intrusion_service_gateway_policy(display_name="intrusion-service-gateway-policy")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/nsxt/v3/nsxt"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := nsxt.LookupPolicyIntrusionServiceGatewayPolicy(ctx, &nsxt.LookupPolicyIntrusionServiceGatewayPolicyArgs{
    			DisplayName: pulumi.StringRef("intrusion-service-gateway-policy"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nsxt = Pulumi.Nsxt;
    
    return await Deployment.RunAsync(() => 
    {
        var idpsGatewayPolicy = Nsxt.GetPolicyIntrusionServiceGatewayPolicy.Invoke(new()
        {
            DisplayName = "intrusion-service-gateway-policy",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nsxt.NsxtFunctions;
    import com.pulumi.nsxt.inputs.GetPolicyIntrusionServiceGatewayPolicyArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var idpsGatewayPolicy = NsxtFunctions.getPolicyIntrusionServiceGatewayPolicy(GetPolicyIntrusionServiceGatewayPolicyArgs.builder()
                .displayName("intrusion-service-gateway-policy")
                .build());
    
        }
    }
    
    variables:
      idpsGatewayPolicy:
        fn::invoke:
          function: nsxt:getPolicyIntrusionServiceGatewayPolicy
          arguments:
            displayName: intrusion-service-gateway-policy
    
    Example coming soon!
    

    Using getPolicyIntrusionServiceGatewayPolicy

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getPolicyIntrusionServiceGatewayPolicy(args: GetPolicyIntrusionServiceGatewayPolicyArgs, opts?: InvokeOptions): Promise<GetPolicyIntrusionServiceGatewayPolicyResult>
    function getPolicyIntrusionServiceGatewayPolicyOutput(args: GetPolicyIntrusionServiceGatewayPolicyOutputArgs, opts?: InvokeOptions): Output<GetPolicyIntrusionServiceGatewayPolicyResult>
    def get_policy_intrusion_service_gateway_policy(category: Optional[str] = None,
                                                    description: Optional[str] = None,
                                                    display_name: Optional[str] = None,
                                                    domain: Optional[str] = None,
                                                    id: Optional[str] = None,
                                                    rules: Optional[Sequence[GetPolicyIntrusionServiceGatewayPolicyRule]] = None,
                                                    tags: Optional[Sequence[GetPolicyIntrusionServiceGatewayPolicyTag]] = None,
                                                    opts: Optional[InvokeOptions] = None) -> GetPolicyIntrusionServiceGatewayPolicyResult
    def get_policy_intrusion_service_gateway_policy_output(category: pulumi.Input[Optional[str]] = None,
                                                    description: pulumi.Input[Optional[str]] = None,
                                                    display_name: pulumi.Input[Optional[str]] = None,
                                                    domain: pulumi.Input[Optional[str]] = None,
                                                    id: pulumi.Input[Optional[str]] = None,
                                                    rules: pulumi.Input[Optional[Sequence[pulumi.Input[GetPolicyIntrusionServiceGatewayPolicyRuleArgs]]]] = None,
                                                    tags: pulumi.Input[Optional[Sequence[pulumi.Input[GetPolicyIntrusionServiceGatewayPolicyTagArgs]]]] = None,
                                                    opts: Optional[InvokeOptions] = None) -> Output[GetPolicyIntrusionServiceGatewayPolicyResult]
    func LookupPolicyIntrusionServiceGatewayPolicy(ctx *Context, args *LookupPolicyIntrusionServiceGatewayPolicyArgs, opts ...InvokeOption) (*LookupPolicyIntrusionServiceGatewayPolicyResult, error)
    func LookupPolicyIntrusionServiceGatewayPolicyOutput(ctx *Context, args *LookupPolicyIntrusionServiceGatewayPolicyOutputArgs, opts ...InvokeOption) LookupPolicyIntrusionServiceGatewayPolicyResultOutput

    > Note: This function is named LookupPolicyIntrusionServiceGatewayPolicy in the Go SDK.

    public static class GetPolicyIntrusionServiceGatewayPolicy 
    {
        public static Task<GetPolicyIntrusionServiceGatewayPolicyResult> InvokeAsync(GetPolicyIntrusionServiceGatewayPolicyArgs args, InvokeOptions? opts = null)
        public static Output<GetPolicyIntrusionServiceGatewayPolicyResult> Invoke(GetPolicyIntrusionServiceGatewayPolicyInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPolicyIntrusionServiceGatewayPolicyResult> getPolicyIntrusionServiceGatewayPolicy(GetPolicyIntrusionServiceGatewayPolicyArgs args, InvokeOptions options)
    public static Output<GetPolicyIntrusionServiceGatewayPolicyResult> getPolicyIntrusionServiceGatewayPolicy(GetPolicyIntrusionServiceGatewayPolicyArgs args, InvokeOptions options)
    
    fn::invoke:
      function: nsxt:index/getPolicyIntrusionServiceGatewayPolicy:getPolicyIntrusionServiceGatewayPolicy
      arguments:
        # arguments dictionary
    data "nsxt_getpolicyintrusionservicegatewaypolicy" "name" {
        # arguments
    }

    The following arguments are supported:

    Category string
    Category of the policy.
    Description string
    The description of the rule.
    DisplayName string
    The display name of the policy to retrieve.
    Domain string
    The domain of the policy. Defaults to default.
    Id string
    The ID of the policy to retrieve.
    Rules List<GetPolicyIntrusionServiceGatewayPolicyRule>
    A list of rules in this policy. Each rule contains:
    Tags List<GetPolicyIntrusionServiceGatewayPolicyTag>
    A list of scope + tag pairs associated with this rule.
    Category string
    Category of the policy.
    Description string
    The description of the rule.
    DisplayName string
    The display name of the policy to retrieve.
    Domain string
    The domain of the policy. Defaults to default.
    Id string
    The ID of the policy to retrieve.
    Rules []GetPolicyIntrusionServiceGatewayPolicyRuleType
    A list of rules in this policy. Each rule contains:
    Tags []GetPolicyIntrusionServiceGatewayPolicyTag
    A list of scope + tag pairs associated with this rule.
    category string
    Category of the policy.
    description string
    The description of the rule.
    display_name string
    The display name of the policy to retrieve.
    domain string
    The domain of the policy. Defaults to default.
    id string
    The ID of the policy to retrieve.
    rules list(object)
    A list of rules in this policy. Each rule contains:
    tags list(object)
    A list of scope + tag pairs associated with this rule.
    category String
    Category of the policy.
    description String
    The description of the rule.
    displayName String
    The display name of the policy to retrieve.
    domain String
    The domain of the policy. Defaults to default.
    id String
    The ID of the policy to retrieve.
    rules List<GetPolicyIntrusionServiceGatewayPolicyRule>
    A list of rules in this policy. Each rule contains:
    tags List<GetPolicyIntrusionServiceGatewayPolicyTag>
    A list of scope + tag pairs associated with this rule.
    category string
    Category of the policy.
    description string
    The description of the rule.
    displayName string
    The display name of the policy to retrieve.
    domain string
    The domain of the policy. Defaults to default.
    id string
    The ID of the policy to retrieve.
    rules GetPolicyIntrusionServiceGatewayPolicyRule[]
    A list of rules in this policy. Each rule contains:
    tags GetPolicyIntrusionServiceGatewayPolicyTag[]
    A list of scope + tag pairs associated with this rule.
    category str
    Category of the policy.
    description str
    The description of the rule.
    display_name str
    The display name of the policy to retrieve.
    domain str
    The domain of the policy. Defaults to default.
    id str
    The ID of the policy to retrieve.
    rules Sequence[GetPolicyIntrusionServiceGatewayPolicyRule]
    A list of rules in this policy. Each rule contains:
    tags Sequence[GetPolicyIntrusionServiceGatewayPolicyTag]
    A list of scope + tag pairs associated with this rule.
    category String
    Category of the policy.
    description String
    The description of the rule.
    displayName String
    The display name of the policy to retrieve.
    domain String
    The domain of the policy. Defaults to default.
    id String
    The ID of the policy to retrieve.
    rules List<Property Map>
    A list of rules in this policy. Each rule contains:
    tags List<Property Map>
    A list of scope + tag pairs associated with this rule.

    getPolicyIntrusionServiceGatewayPolicy Result

    The following output properties are available:

    Category string
    Comments string
    Comments for security policy lock/unlock.
    Description string
    The description of the rule.
    DisplayName string
    The display name of the rule.
    Id string
    Locked bool
    Indicates whether a security policy should be locked.
    Path string
    The NSX path of the policy resource.
    Revision double
    Indicates current revision number of the rule.
    SequenceNumber double
    The sequence number of the rule.
    Stateful bool
    When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed. Note: Intrusion Service Gateway Policies are always stateful.
    Domain string
    Rules List<GetPolicyIntrusionServiceGatewayPolicyRule>
    A list of rules in this policy. Each rule contains:
    Tags List<GetPolicyIntrusionServiceGatewayPolicyTag>
    A list of scope + tag pairs associated with this rule.
    Category string
    Comments string
    Comments for security policy lock/unlock.
    Description string
    The description of the rule.
    DisplayName string
    The display name of the rule.
    Id string
    Locked bool
    Indicates whether a security policy should be locked.
    Path string
    The NSX path of the policy resource.
    Revision float64
    Indicates current revision number of the rule.
    SequenceNumber float64
    The sequence number of the rule.
    Stateful bool
    When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed. Note: Intrusion Service Gateway Policies are always stateful.
    Domain string
    Rules []GetPolicyIntrusionServiceGatewayPolicyRuleType
    A list of rules in this policy. Each rule contains:
    Tags []GetPolicyIntrusionServiceGatewayPolicyTag
    A list of scope + tag pairs associated with this rule.
    category string
    comments string
    Comments for security policy lock/unlock.
    description string
    The description of the rule.
    display_name string
    The display name of the rule.
    id string
    locked bool
    Indicates whether a security policy should be locked.
    path string
    The NSX path of the policy resource.
    revision number
    Indicates current revision number of the rule.
    sequence_number number
    The sequence number of the rule.
    stateful bool
    When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed. Note: Intrusion Service Gateway Policies are always stateful.
    domain string
    rules list(object)
    A list of rules in this policy. Each rule contains:
    tags list(object)
    A list of scope + tag pairs associated with this rule.
    category String
    comments String
    Comments for security policy lock/unlock.
    description String
    The description of the rule.
    displayName String
    The display name of the rule.
    id String
    locked Boolean
    Indicates whether a security policy should be locked.
    path String
    The NSX path of the policy resource.
    revision Double
    Indicates current revision number of the rule.
    sequenceNumber Double
    The sequence number of the rule.
    stateful Boolean
    When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed. Note: Intrusion Service Gateway Policies are always stateful.
    domain String
    rules List<GetPolicyIntrusionServiceGatewayPolicyRule>
    A list of rules in this policy. Each rule contains:
    tags List<GetPolicyIntrusionServiceGatewayPolicyTag>
    A list of scope + tag pairs associated with this rule.
    category string
    comments string
    Comments for security policy lock/unlock.
    description string
    The description of the rule.
    displayName string
    The display name of the rule.
    id string
    locked boolean
    Indicates whether a security policy should be locked.
    path string
    The NSX path of the policy resource.
    revision number
    Indicates current revision number of the rule.
    sequenceNumber number
    The sequence number of the rule.
    stateful boolean
    When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed. Note: Intrusion Service Gateway Policies are always stateful.
    domain string
    rules GetPolicyIntrusionServiceGatewayPolicyRule[]
    A list of rules in this policy. Each rule contains:
    tags GetPolicyIntrusionServiceGatewayPolicyTag[]
    A list of scope + tag pairs associated with this rule.
    category str
    comments str
    Comments for security policy lock/unlock.
    description str
    The description of the rule.
    display_name str
    The display name of the rule.
    id str
    locked bool
    Indicates whether a security policy should be locked.
    path str
    The NSX path of the policy resource.
    revision float
    Indicates current revision number of the rule.
    sequence_number float
    The sequence number of the rule.
    stateful bool
    When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed. Note: Intrusion Service Gateway Policies are always stateful.
    domain str
    rules Sequence[GetPolicyIntrusionServiceGatewayPolicyRule]
    A list of rules in this policy. Each rule contains:
    tags Sequence[GetPolicyIntrusionServiceGatewayPolicyTag]
    A list of scope + tag pairs associated with this rule.
    category String
    comments String
    Comments for security policy lock/unlock.
    description String
    The description of the rule.
    displayName String
    The display name of the rule.
    id String
    locked Boolean
    Indicates whether a security policy should be locked.
    path String
    The NSX path of the policy resource.
    revision Number
    Indicates current revision number of the rule.
    sequenceNumber Number
    The sequence number of the rule.
    stateful Boolean
    When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed. Note: Intrusion Service Gateway Policies are always stateful.
    domain String
    rules List<Property Map>
    A list of rules in this policy. Each rule contains:
    tags List<Property Map>
    A list of scope + tag pairs associated with this rule.

    Supporting Types

    GetPolicyIntrusionServiceGatewayPolicyRule

    DisplayName string
    The display name of the policy to retrieve.
    IdsProfiles List<string>
    List of IDS profiles for this rule.
    NsxId string
    NSX ID for this resource
    Path string
    The NSX path of the policy resource.
    Revision double
    Indicates current revision number of the rule.
    RuleId double
    Unique positive number assigned by the system.
    Scopes List<string>
    List of objects where the rule is enforced.
    SequenceNumber double
    The sequence number of the rule.
    Action string
    Action for this rule (DETECT, DETECT_PREVENT).
    Description string
    The description of the rule.
    DestinationGroups List<string>
    List of destination groups.
    DestinationsExcluded bool
    Flag to indicate whether destinations are negated.
    Direction string
    Traffic direction.
    Disabled bool
    Flag to disable the rule.
    IpVersion string
    IP version.
    LogLabel string
    Additional information which will be propagated to the rule syslog.
    Logged bool
    Flag to enable logging.
    Notes string
    Additional notes for the rule.
    Services List<string>
    List of services.
    SourceGroups List<string>
    List of source groups.
    SourcesExcluded bool
    Flag to indicate whether sources are negated.
    Tags List<GetPolicyIntrusionServiceGatewayPolicyRuleTag>
    A list of scope + tag pairs associated with this rule.
    DisplayName string
    The display name of the policy to retrieve.
    IdsProfiles []string
    List of IDS profiles for this rule.
    NsxId string
    NSX ID for this resource
    Path string
    The NSX path of the policy resource.
    Revision float64
    Indicates current revision number of the rule.
    RuleId float64
    Unique positive number assigned by the system.
    Scopes []string
    List of objects where the rule is enforced.
    SequenceNumber float64
    The sequence number of the rule.
    Action string
    Action for this rule (DETECT, DETECT_PREVENT).
    Description string
    The description of the rule.
    DestinationGroups []string
    List of destination groups.
    DestinationsExcluded bool
    Flag to indicate whether destinations are negated.
    Direction string
    Traffic direction.
    Disabled bool
    Flag to disable the rule.
    IpVersion string
    IP version.
    LogLabel string
    Additional information which will be propagated to the rule syslog.
    Logged bool
    Flag to enable logging.
    Notes string
    Additional notes for the rule.
    Services []string
    List of services.
    SourceGroups []string
    List of source groups.
    SourcesExcluded bool
    Flag to indicate whether sources are negated.
    Tags []GetPolicyIntrusionServiceGatewayPolicyRuleTag
    A list of scope + tag pairs associated with this rule.
    display_name string
    The display name of the policy to retrieve.
    ids_profiles list(string)
    List of IDS profiles for this rule.
    nsx_id string
    NSX ID for this resource
    path string
    The NSX path of the policy resource.
    revision number
    Indicates current revision number of the rule.
    rule_id number
    Unique positive number assigned by the system.
    scopes list(string)
    List of objects where the rule is enforced.
    sequence_number number
    The sequence number of the rule.
    action string
    Action for this rule (DETECT, DETECT_PREVENT).
    description string
    The description of the rule.
    destination_groups list(string)
    List of destination groups.
    destinations_excluded bool
    Flag to indicate whether destinations are negated.
    direction string
    Traffic direction.
    disabled bool
    Flag to disable the rule.
    ip_version string
    IP version.
    log_label string
    Additional information which will be propagated to the rule syslog.
    logged bool
    Flag to enable logging.
    notes string
    Additional notes for the rule.
    services list(string)
    List of services.
    source_groups list(string)
    List of source groups.
    sources_excluded bool
    Flag to indicate whether sources are negated.
    tags list(object)
    A list of scope + tag pairs associated with this rule.
    displayName String
    The display name of the policy to retrieve.
    idsProfiles List<String>
    List of IDS profiles for this rule.
    nsxId String
    NSX ID for this resource
    path String
    The NSX path of the policy resource.
    revision Double
    Indicates current revision number of the rule.
    ruleId Double
    Unique positive number assigned by the system.
    scopes List<String>
    List of objects where the rule is enforced.
    sequenceNumber Double
    The sequence number of the rule.
    action String
    Action for this rule (DETECT, DETECT_PREVENT).
    description String
    The description of the rule.
    destinationGroups List<String>
    List of destination groups.
    destinationsExcluded Boolean
    Flag to indicate whether destinations are negated.
    direction String
    Traffic direction.
    disabled Boolean
    Flag to disable the rule.
    ipVersion String
    IP version.
    logLabel String
    Additional information which will be propagated to the rule syslog.
    logged Boolean
    Flag to enable logging.
    notes String
    Additional notes for the rule.
    services List<String>
    List of services.
    sourceGroups List<String>
    List of source groups.
    sourcesExcluded Boolean
    Flag to indicate whether sources are negated.
    tags List<GetPolicyIntrusionServiceGatewayPolicyRuleTag>
    A list of scope + tag pairs associated with this rule.
    displayName string
    The display name of the policy to retrieve.
    idsProfiles string[]
    List of IDS profiles for this rule.
    nsxId string
    NSX ID for this resource
    path string
    The NSX path of the policy resource.
    revision number
    Indicates current revision number of the rule.
    ruleId number
    Unique positive number assigned by the system.
    scopes string[]
    List of objects where the rule is enforced.
    sequenceNumber number
    The sequence number of the rule.
    action string
    Action for this rule (DETECT, DETECT_PREVENT).
    description string
    The description of the rule.
    destinationGroups string[]
    List of destination groups.
    destinationsExcluded boolean
    Flag to indicate whether destinations are negated.
    direction string
    Traffic direction.
    disabled boolean
    Flag to disable the rule.
    ipVersion string
    IP version.
    logLabel string
    Additional information which will be propagated to the rule syslog.
    logged boolean
    Flag to enable logging.
    notes string
    Additional notes for the rule.
    services string[]
    List of services.
    sourceGroups string[]
    List of source groups.
    sourcesExcluded boolean
    Flag to indicate whether sources are negated.
    tags GetPolicyIntrusionServiceGatewayPolicyRuleTag[]
    A list of scope + tag pairs associated with this rule.
    display_name str
    The display name of the policy to retrieve.
    ids_profiles Sequence[str]
    List of IDS profiles for this rule.
    nsx_id str
    NSX ID for this resource
    path str
    The NSX path of the policy resource.
    revision float
    Indicates current revision number of the rule.
    rule_id float
    Unique positive number assigned by the system.
    scopes Sequence[str]
    List of objects where the rule is enforced.
    sequence_number float
    The sequence number of the rule.
    action str
    Action for this rule (DETECT, DETECT_PREVENT).
    description str
    The description of the rule.
    destination_groups Sequence[str]
    List of destination groups.
    destinations_excluded bool
    Flag to indicate whether destinations are negated.
    direction str
    Traffic direction.
    disabled bool
    Flag to disable the rule.
    ip_version str
    IP version.
    log_label str
    Additional information which will be propagated to the rule syslog.
    logged bool
    Flag to enable logging.
    notes str
    Additional notes for the rule.
    services Sequence[str]
    List of services.
    source_groups Sequence[str]
    List of source groups.
    sources_excluded bool
    Flag to indicate whether sources are negated.
    tags Sequence[GetPolicyIntrusionServiceGatewayPolicyRuleTag]
    A list of scope + tag pairs associated with this rule.
    displayName String
    The display name of the policy to retrieve.
    idsProfiles List<String>
    List of IDS profiles for this rule.
    nsxId String
    NSX ID for this resource
    path String
    The NSX path of the policy resource.
    revision Number
    Indicates current revision number of the rule.
    ruleId Number
    Unique positive number assigned by the system.
    scopes List<String>
    List of objects where the rule is enforced.
    sequenceNumber Number
    The sequence number of the rule.
    action String
    Action for this rule (DETECT, DETECT_PREVENT).
    description String
    The description of the rule.
    destinationGroups List<String>
    List of destination groups.
    destinationsExcluded Boolean
    Flag to indicate whether destinations are negated.
    direction String
    Traffic direction.
    disabled Boolean
    Flag to disable the rule.
    ipVersion String
    IP version.
    logLabel String
    Additional information which will be propagated to the rule syslog.
    logged Boolean
    Flag to enable logging.
    notes String
    Additional notes for the rule.
    services List<String>
    List of services.
    sourceGroups List<String>
    List of source groups.
    sourcesExcluded Boolean
    Flag to indicate whether sources are negated.
    tags List<Property Map>
    A list of scope + tag pairs associated with this rule.

    GetPolicyIntrusionServiceGatewayPolicyRuleTag

    Scope string
    List of policy objects where the rule is enforced.
    Tag string
    A list of scope + tag pairs to associate with this rule.
    Scope string
    List of policy objects where the rule is enforced.
    Tag string
    A list of scope + tag pairs to associate with this rule.
    scope string
    List of policy objects where the rule is enforced.
    tag string
    A list of scope + tag pairs to associate with this rule.
    scope String
    List of policy objects where the rule is enforced.
    tag String
    A list of scope + tag pairs to associate with this rule.
    scope string
    List of policy objects where the rule is enforced.
    tag string
    A list of scope + tag pairs to associate with this rule.
    scope str
    List of policy objects where the rule is enforced.
    tag str
    A list of scope + tag pairs to associate with this rule.
    scope String
    List of policy objects where the rule is enforced.
    tag String
    A list of scope + tag pairs to associate with this rule.

    GetPolicyIntrusionServiceGatewayPolicyTag

    Scope string
    List of objects where the rule is enforced.
    Tag string
    A list of scope + tag pairs associated with this rule.
    Scope string
    List of objects where the rule is enforced.
    Tag string
    A list of scope + tag pairs associated with this rule.
    scope string
    List of objects where the rule is enforced.
    tag string
    A list of scope + tag pairs associated with this rule.
    scope String
    List of objects where the rule is enforced.
    tag String
    A list of scope + tag pairs associated with this rule.
    scope string
    List of objects where the rule is enforced.
    tag string
    A list of scope + tag pairs associated with this rule.
    scope str
    List of objects where the rule is enforced.
    tag str
    A list of scope + tag pairs associated with this rule.
    scope String
    List of objects where the rule is enforced.
    tag String
    A list of scope + tag pairs associated with this rule.

    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