1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyIntrusionServiceProfile
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

nsxt.PolicyIntrusionServiceProfile

Explore with Pulumi AI

nsxt logo
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

    Create PolicyIntrusionServiceProfile Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PolicyIntrusionServiceProfile(name: string, args: PolicyIntrusionServiceProfileArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyIntrusionServiceProfile(resource_name: str,
                                      args: PolicyIntrusionServiceProfileArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyIntrusionServiceProfile(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      display_name: Optional[str] = None,
                                      severities: Optional[Sequence[str]] = None,
                                      context: Optional[PolicyIntrusionServiceProfileContextArgs] = None,
                                      criteria: Optional[PolicyIntrusionServiceProfileCriteriaArgs] = None,
                                      description: Optional[str] = None,
                                      nsx_id: Optional[str] = None,
                                      overridden_signatures: Optional[Sequence[PolicyIntrusionServiceProfileOverriddenSignatureArgs]] = None,
                                      policy_intrusion_service_profile_id: Optional[str] = None,
                                      tags: Optional[Sequence[PolicyIntrusionServiceProfileTagArgs]] = None)
    func NewPolicyIntrusionServiceProfile(ctx *Context, name string, args PolicyIntrusionServiceProfileArgs, opts ...ResourceOption) (*PolicyIntrusionServiceProfile, error)
    public PolicyIntrusionServiceProfile(string name, PolicyIntrusionServiceProfileArgs args, CustomResourceOptions? opts = null)
    public PolicyIntrusionServiceProfile(String name, PolicyIntrusionServiceProfileArgs args)
    public PolicyIntrusionServiceProfile(String name, PolicyIntrusionServiceProfileArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyIntrusionServiceProfile
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PolicyIntrusionServiceProfileArgs
    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 PolicyIntrusionServiceProfileArgs
    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 PolicyIntrusionServiceProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyIntrusionServiceProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyIntrusionServiceProfileArgs
    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 policyIntrusionServiceProfileResource = new Nsxt.PolicyIntrusionServiceProfile("policyIntrusionServiceProfileResource", new()
    {
        DisplayName = "string",
        Severities = new[]
        {
            "string",
        },
        Context = new Nsxt.Inputs.PolicyIntrusionServiceProfileContextArgs
        {
            ProjectId = "string",
        },
        Criteria = new Nsxt.Inputs.PolicyIntrusionServiceProfileCriteriaArgs
        {
            AttackTargets = new[]
            {
                "string",
            },
            AttackTypes = new[]
            {
                "string",
            },
            Cvsses = new[]
            {
                "string",
            },
            ProductsAffecteds = new[]
            {
                "string",
            },
        },
        Description = "string",
        NsxId = "string",
        OverriddenSignatures = new[]
        {
            new Nsxt.Inputs.PolicyIntrusionServiceProfileOverriddenSignatureArgs
            {
                SignatureId = "string",
                Action = "string",
                Enabled = false,
            },
        },
        PolicyIntrusionServiceProfileId = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyIntrusionServiceProfileTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
    });
    
    example, err := nsxt.NewPolicyIntrusionServiceProfile(ctx, "policyIntrusionServiceProfileResource", &nsxt.PolicyIntrusionServiceProfileArgs{
    	DisplayName: pulumi.String("string"),
    	Severities: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Context: &nsxt.PolicyIntrusionServiceProfileContextArgs{
    		ProjectId: pulumi.String("string"),
    	},
    	Criteria: &nsxt.PolicyIntrusionServiceProfileCriteriaArgs{
    		AttackTargets: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		AttackTypes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Cvsses: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		ProductsAffecteds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Description: pulumi.String("string"),
    	NsxId:       pulumi.String("string"),
    	OverriddenSignatures: nsxt.PolicyIntrusionServiceProfileOverriddenSignatureArray{
    		&nsxt.PolicyIntrusionServiceProfileOverriddenSignatureArgs{
    			SignatureId: pulumi.String("string"),
    			Action:      pulumi.String("string"),
    			Enabled:     pulumi.Bool(false),
    		},
    	},
    	PolicyIntrusionServiceProfileId: pulumi.String("string"),
    	Tags: nsxt.PolicyIntrusionServiceProfileTagArray{
    		&nsxt.PolicyIntrusionServiceProfileTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    })
    
    var policyIntrusionServiceProfileResource = new PolicyIntrusionServiceProfile("policyIntrusionServiceProfileResource", PolicyIntrusionServiceProfileArgs.builder()
        .displayName("string")
        .severities("string")
        .context(PolicyIntrusionServiceProfileContextArgs.builder()
            .projectId("string")
            .build())
        .criteria(PolicyIntrusionServiceProfileCriteriaArgs.builder()
            .attackTargets("string")
            .attackTypes("string")
            .cvsses("string")
            .productsAffecteds("string")
            .build())
        .description("string")
        .nsxId("string")
        .overriddenSignatures(PolicyIntrusionServiceProfileOverriddenSignatureArgs.builder()
            .signatureId("string")
            .action("string")
            .enabled(false)
            .build())
        .policyIntrusionServiceProfileId("string")
        .tags(PolicyIntrusionServiceProfileTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .build());
    
    policy_intrusion_service_profile_resource = nsxt.PolicyIntrusionServiceProfile("policyIntrusionServiceProfileResource",
        display_name="string",
        severities=["string"],
        context={
            "project_id": "string",
        },
        criteria={
            "attack_targets": ["string"],
            "attack_types": ["string"],
            "cvsses": ["string"],
            "products_affecteds": ["string"],
        },
        description="string",
        nsx_id="string",
        overridden_signatures=[{
            "signature_id": "string",
            "action": "string",
            "enabled": False,
        }],
        policy_intrusion_service_profile_id="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }])
    
    const policyIntrusionServiceProfileResource = new nsxt.PolicyIntrusionServiceProfile("policyIntrusionServiceProfileResource", {
        displayName: "string",
        severities: ["string"],
        context: {
            projectId: "string",
        },
        criteria: {
            attackTargets: ["string"],
            attackTypes: ["string"],
            cvsses: ["string"],
            productsAffecteds: ["string"],
        },
        description: "string",
        nsxId: "string",
        overriddenSignatures: [{
            signatureId: "string",
            action: "string",
            enabled: false,
        }],
        policyIntrusionServiceProfileId: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
    });
    
    type: nsxt:PolicyIntrusionServiceProfile
    properties:
        context:
            projectId: string
        criteria:
            attackTargets:
                - string
            attackTypes:
                - string
            cvsses:
                - string
            productsAffecteds:
                - string
        description: string
        displayName: string
        nsxId: string
        overriddenSignatures:
            - action: string
              enabled: false
              signatureId: string
        policyIntrusionServiceProfileId: string
        severities:
            - string
        tags:
            - scope: string
              tag: string
    

    PolicyIntrusionServiceProfile 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 PolicyIntrusionServiceProfile resource accepts the following input properties:

    DisplayName string
    Display name of the resource.
    Severities List<string>
    List of profile severities, supported values are LOW, MEDIUM, HIGH, CRITICAL, SUSPICIOUS.
    Context PolicyIntrusionServiceProfileContext
    The context which the object belongs to
    Criteria PolicyIntrusionServiceProfileCriteria
    Filtering criteria for the IDS Profile.
    Description string
    Description of the resource.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    OverriddenSignatures List<PolicyIntrusionServiceProfileOverriddenSignature>
    List of signatures that has been overridden this profile.
    PolicyIntrusionServiceProfileId string
    ID of the Profile.
    Tags List<PolicyIntrusionServiceProfileTag>
    A list of scope + tag pairs to associate with this profile.
    DisplayName string
    Display name of the resource.
    Severities []string
    List of profile severities, supported values are LOW, MEDIUM, HIGH, CRITICAL, SUSPICIOUS.
    Context PolicyIntrusionServiceProfileContextArgs
    The context which the object belongs to
    Criteria PolicyIntrusionServiceProfileCriteriaArgs
    Filtering criteria for the IDS Profile.
    Description string
    Description of the resource.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    OverriddenSignatures []PolicyIntrusionServiceProfileOverriddenSignatureArgs
    List of signatures that has been overridden this profile.
    PolicyIntrusionServiceProfileId string
    ID of the Profile.
    Tags []PolicyIntrusionServiceProfileTagArgs
    A list of scope + tag pairs to associate with this profile.
    displayName String
    Display name of the resource.
    severities List<String>
    List of profile severities, supported values are LOW, MEDIUM, HIGH, CRITICAL, SUSPICIOUS.
    context PolicyIntrusionServiceProfileContext
    The context which the object belongs to
    criteria PolicyIntrusionServiceProfileCriteria
    Filtering criteria for the IDS Profile.
    description String
    Description of the resource.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    overriddenSignatures List<PolicyIntrusionServiceProfileOverriddenSignature>
    List of signatures that has been overridden this profile.
    policyIntrusionServiceProfileId String
    ID of the Profile.
    tags List<PolicyIntrusionServiceProfileTag>
    A list of scope + tag pairs to associate with this profile.
    displayName string
    Display name of the resource.
    severities string[]
    List of profile severities, supported values are LOW, MEDIUM, HIGH, CRITICAL, SUSPICIOUS.
    context PolicyIntrusionServiceProfileContext
    The context which the object belongs to
    criteria PolicyIntrusionServiceProfileCriteria
    Filtering criteria for the IDS Profile.
    description string
    Description of the resource.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    overriddenSignatures PolicyIntrusionServiceProfileOverriddenSignature[]
    List of signatures that has been overridden this profile.
    policyIntrusionServiceProfileId string
    ID of the Profile.
    tags PolicyIntrusionServiceProfileTag[]
    A list of scope + tag pairs to associate with this profile.
    display_name str
    Display name of the resource.
    severities Sequence[str]
    List of profile severities, supported values are LOW, MEDIUM, HIGH, CRITICAL, SUSPICIOUS.
    context PolicyIntrusionServiceProfileContextArgs
    The context which the object belongs to
    criteria PolicyIntrusionServiceProfileCriteriaArgs
    Filtering criteria for the IDS Profile.
    description str
    Description of the resource.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    overridden_signatures Sequence[PolicyIntrusionServiceProfileOverriddenSignatureArgs]
    List of signatures that has been overridden this profile.
    policy_intrusion_service_profile_id str
    ID of the Profile.
    tags Sequence[PolicyIntrusionServiceProfileTagArgs]
    A list of scope + tag pairs to associate with this profile.
    displayName String
    Display name of the resource.
    severities List<String>
    List of profile severities, supported values are LOW, MEDIUM, HIGH, CRITICAL, SUSPICIOUS.
    context Property Map
    The context which the object belongs to
    criteria Property Map
    Filtering criteria for the IDS Profile.
    description String
    Description of the resource.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    overriddenSignatures List<Property Map>
    List of signatures that has been overridden this profile.
    policyIntrusionServiceProfileId String
    ID of the Profile.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this profile.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PolicyIntrusionServiceProfile resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX policy path of the resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX policy path of the resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX policy path of the resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id string
    The provider-assigned unique ID for this managed resource.
    path string
    The NSX policy path of the resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id str
    The provider-assigned unique ID for this managed resource.
    path str
    The NSX policy path of the resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX policy path of the resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.

    Look up Existing PolicyIntrusionServiceProfile Resource

    Get an existing PolicyIntrusionServiceProfile 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?: PolicyIntrusionServiceProfileState, opts?: CustomResourceOptions): PolicyIntrusionServiceProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            context: Optional[PolicyIntrusionServiceProfileContextArgs] = None,
            criteria: Optional[PolicyIntrusionServiceProfileCriteriaArgs] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            nsx_id: Optional[str] = None,
            overridden_signatures: Optional[Sequence[PolicyIntrusionServiceProfileOverriddenSignatureArgs]] = None,
            path: Optional[str] = None,
            policy_intrusion_service_profile_id: Optional[str] = None,
            revision: Optional[float] = None,
            severities: Optional[Sequence[str]] = None,
            tags: Optional[Sequence[PolicyIntrusionServiceProfileTagArgs]] = None) -> PolicyIntrusionServiceProfile
    func GetPolicyIntrusionServiceProfile(ctx *Context, name string, id IDInput, state *PolicyIntrusionServiceProfileState, opts ...ResourceOption) (*PolicyIntrusionServiceProfile, error)
    public static PolicyIntrusionServiceProfile Get(string name, Input<string> id, PolicyIntrusionServiceProfileState? state, CustomResourceOptions? opts = null)
    public static PolicyIntrusionServiceProfile get(String name, Output<String> id, PolicyIntrusionServiceProfileState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyIntrusionServiceProfile    get:      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:
    Context PolicyIntrusionServiceProfileContext
    The context which the object belongs to
    Criteria PolicyIntrusionServiceProfileCriteria
    Filtering criteria for the IDS Profile.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    OverriddenSignatures List<PolicyIntrusionServiceProfileOverriddenSignature>
    List of signatures that has been overridden this profile.
    Path string
    The NSX policy path of the resource.
    PolicyIntrusionServiceProfileId string
    ID of the Profile.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Severities List<string>
    List of profile severities, supported values are LOW, MEDIUM, HIGH, CRITICAL, SUSPICIOUS.
    Tags List<PolicyIntrusionServiceProfileTag>
    A list of scope + tag pairs to associate with this profile.
    Context PolicyIntrusionServiceProfileContextArgs
    The context which the object belongs to
    Criteria PolicyIntrusionServiceProfileCriteriaArgs
    Filtering criteria for the IDS Profile.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    OverriddenSignatures []PolicyIntrusionServiceProfileOverriddenSignatureArgs
    List of signatures that has been overridden this profile.
    Path string
    The NSX policy path of the resource.
    PolicyIntrusionServiceProfileId string
    ID of the Profile.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Severities []string
    List of profile severities, supported values are LOW, MEDIUM, HIGH, CRITICAL, SUSPICIOUS.
    Tags []PolicyIntrusionServiceProfileTagArgs
    A list of scope + tag pairs to associate with this profile.
    context PolicyIntrusionServiceProfileContext
    The context which the object belongs to
    criteria PolicyIntrusionServiceProfileCriteria
    Filtering criteria for the IDS Profile.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    overriddenSignatures List<PolicyIntrusionServiceProfileOverriddenSignature>
    List of signatures that has been overridden this profile.
    path String
    The NSX policy path of the resource.
    policyIntrusionServiceProfileId String
    ID of the Profile.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    severities List<String>
    List of profile severities, supported values are LOW, MEDIUM, HIGH, CRITICAL, SUSPICIOUS.
    tags List<PolicyIntrusionServiceProfileTag>
    A list of scope + tag pairs to associate with this profile.
    context PolicyIntrusionServiceProfileContext
    The context which the object belongs to
    criteria PolicyIntrusionServiceProfileCriteria
    Filtering criteria for the IDS Profile.
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    overriddenSignatures PolicyIntrusionServiceProfileOverriddenSignature[]
    List of signatures that has been overridden this profile.
    path string
    The NSX policy path of the resource.
    policyIntrusionServiceProfileId string
    ID of the Profile.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    severities string[]
    List of profile severities, supported values are LOW, MEDIUM, HIGH, CRITICAL, SUSPICIOUS.
    tags PolicyIntrusionServiceProfileTag[]
    A list of scope + tag pairs to associate with this profile.
    context PolicyIntrusionServiceProfileContextArgs
    The context which the object belongs to
    criteria PolicyIntrusionServiceProfileCriteriaArgs
    Filtering criteria for the IDS Profile.
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    overridden_signatures Sequence[PolicyIntrusionServiceProfileOverriddenSignatureArgs]
    List of signatures that has been overridden this profile.
    path str
    The NSX policy path of the resource.
    policy_intrusion_service_profile_id str
    ID of the Profile.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    severities Sequence[str]
    List of profile severities, supported values are LOW, MEDIUM, HIGH, CRITICAL, SUSPICIOUS.
    tags Sequence[PolicyIntrusionServiceProfileTagArgs]
    A list of scope + tag pairs to associate with this profile.
    context Property Map
    The context which the object belongs to
    criteria Property Map
    Filtering criteria for the IDS Profile.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    overriddenSignatures List<Property Map>
    List of signatures that has been overridden this profile.
    path String
    The NSX policy path of the resource.
    policyIntrusionServiceProfileId String
    ID of the Profile.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    severities List<String>
    List of profile severities, supported values are LOW, MEDIUM, HIGH, CRITICAL, SUSPICIOUS.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this profile.

    Supporting Types

    PolicyIntrusionServiceProfileContext, PolicyIntrusionServiceProfileContextArgs

    ProjectId 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
    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

    PolicyIntrusionServiceProfileCriteria, PolicyIntrusionServiceProfileCriteriaArgs

    AttackTargets List<string>
    List of supported attack targets. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
    AttackTypes List<string>
    List of supported attack types.
    Cvsses List<string>
    List of CVSS (Common Vulnerability Scoring System) ranges. Supported values are NONE, LOW, MEDIUM, HIGH, CRITICAL.
    ProductsAffecteds List<string>
    List of supported products that are affected. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
    AttackTargets []string
    List of supported attack targets. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
    AttackTypes []string
    List of supported attack types.
    Cvsses []string
    List of CVSS (Common Vulnerability Scoring System) ranges. Supported values are NONE, LOW, MEDIUM, HIGH, CRITICAL.
    ProductsAffecteds []string
    List of supported products that are affected. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
    attackTargets List<String>
    List of supported attack targets. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
    attackTypes List<String>
    List of supported attack types.
    cvsses List<String>
    List of CVSS (Common Vulnerability Scoring System) ranges. Supported values are NONE, LOW, MEDIUM, HIGH, CRITICAL.
    productsAffecteds List<String>
    List of supported products that are affected. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
    attackTargets string[]
    List of supported attack targets. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
    attackTypes string[]
    List of supported attack types.
    cvsses string[]
    List of CVSS (Common Vulnerability Scoring System) ranges. Supported values are NONE, LOW, MEDIUM, HIGH, CRITICAL.
    productsAffecteds string[]
    List of supported products that are affected. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
    attack_targets Sequence[str]
    List of supported attack targets. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
    attack_types Sequence[str]
    List of supported attack types.
    cvsses Sequence[str]
    List of CVSS (Common Vulnerability Scoring System) ranges. Supported values are NONE, LOW, MEDIUM, HIGH, CRITICAL.
    products_affecteds Sequence[str]
    List of supported products that are affected. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
    attackTargets List<String>
    List of supported attack targets. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
    attackTypes List<String>
    List of supported attack types.
    cvsses List<String>
    List of CVSS (Common Vulnerability Scoring System) ranges. Supported values are NONE, LOW, MEDIUM, HIGH, CRITICAL.
    productsAffecteds List<String>
    List of supported products that are affected. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.

    PolicyIntrusionServiceProfileOverriddenSignature, PolicyIntrusionServiceProfileOverriddenSignatureArgs

    SignatureId string
    Id for the existing signature that profile wishes to override.
    Action string
    Overridden action, one of ALERT, DROP, REJECT. Default is ALERT.
    Enabled bool
    Flag to enable/disable this signature.
    SignatureId string
    Id for the existing signature that profile wishes to override.
    Action string
    Overridden action, one of ALERT, DROP, REJECT. Default is ALERT.
    Enabled bool
    Flag to enable/disable this signature.
    signatureId String
    Id for the existing signature that profile wishes to override.
    action String
    Overridden action, one of ALERT, DROP, REJECT. Default is ALERT.
    enabled Boolean
    Flag to enable/disable this signature.
    signatureId string
    Id for the existing signature that profile wishes to override.
    action string
    Overridden action, one of ALERT, DROP, REJECT. Default is ALERT.
    enabled boolean
    Flag to enable/disable this signature.
    signature_id str
    Id for the existing signature that profile wishes to override.
    action str
    Overridden action, one of ALERT, DROP, REJECT. Default is ALERT.
    enabled bool
    Flag to enable/disable this signature.
    signatureId String
    Id for the existing signature that profile wishes to override.
    action String
    Overridden action, one of ALERT, DROP, REJECT. Default is ALERT.
    enabled Boolean
    Flag to enable/disable this signature.

    PolicyIntrusionServiceProfileTag, PolicyIntrusionServiceProfileTagArgs

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

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware