1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectWafProfileSignature
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectWafProfileSignature

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    WAF signatures.

    This resource is a sub resource for variable signature of resource fortimanager.ObjectWafProfile. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • custom_signature: fortimanager.ObjectWafProfileSignatureCustomsignature
    • main_class: fortimanager.ObjectWafProfileSignatureMainclass

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectWafProfile = new fortimanager.ObjectWafProfile("trnameObjectWafProfile", {});
    const trnameObjectWafProfileSignature = new fortimanager.ObjectWafProfileSignature("trnameObjectWafProfileSignature", {
        creditCardDetectionThreshold: 10,
        customSignatures: [{
            name: "terr-signature",
            log: "disable",
            direction: "request",
        }],
        profile: trnameObjectWafProfile.name,
    }, {
        dependsOn: [trnameObjectWafProfile],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_waf_profile = fortimanager.ObjectWafProfile("trnameObjectWafProfile")
    trname_object_waf_profile_signature = fortimanager.ObjectWafProfileSignature("trnameObjectWafProfileSignature",
        credit_card_detection_threshold=10,
        custom_signatures=[{
            "name": "terr-signature",
            "log": "disable",
            "direction": "request",
        }],
        profile=trname_object_waf_profile.name,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_waf_profile]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		trnameObjectWafProfile, err := fortimanager.NewObjectWafProfile(ctx, "trnameObjectWafProfile", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWafProfileSignature(ctx, "trnameObjectWafProfileSignature", &fortimanager.ObjectWafProfileSignatureArgs{
    			CreditCardDetectionThreshold: pulumi.Float64(10),
    			CustomSignatures: fortimanager.ObjectWafProfileSignatureCustomSignatureTypeArray{
    				&fortimanager.ObjectWafProfileSignatureCustomSignatureTypeArgs{
    					Name:      pulumi.String("terr-signature"),
    					Log:       pulumi.String("disable"),
    					Direction: pulumi.String("request"),
    				},
    			},
    			Profile: trnameObjectWafProfile.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectWafProfile,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trnameObjectWafProfile = new Fortimanager.ObjectWafProfile("trnameObjectWafProfile");
    
        var trnameObjectWafProfileSignature = new Fortimanager.ObjectWafProfileSignature("trnameObjectWafProfileSignature", new()
        {
            CreditCardDetectionThreshold = 10,
            CustomSignatures = new[]
            {
                new Fortimanager.Inputs.ObjectWafProfileSignatureCustomSignatureArgs
                {
                    Name = "terr-signature",
                    Log = "disable",
                    Direction = "request",
                },
            },
            Profile = trnameObjectWafProfile.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectWafProfile,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWafProfile;
    import com.pulumi.fortimanager.ObjectWafProfileSignature;
    import com.pulumi.fortimanager.ObjectWafProfileSignatureArgs;
    import com.pulumi.fortimanager.inputs.ObjectWafProfileSignatureCustomSignatureArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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) {
            var trnameObjectWafProfile = new ObjectWafProfile("trnameObjectWafProfile");
    
            var trnameObjectWafProfileSignature = new ObjectWafProfileSignature("trnameObjectWafProfileSignature", ObjectWafProfileSignatureArgs.builder()
                .creditCardDetectionThreshold(10)
                .customSignatures(ObjectWafProfileSignatureCustomSignatureArgs.builder()
                    .name("terr-signature")
                    .log("disable")
                    .direction("request")
                    .build())
                .profile(trnameObjectWafProfile.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectWafProfile)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectWafProfileSignature:
        type: fortimanager:ObjectWafProfileSignature
        properties:
          creditCardDetectionThreshold: 10
          customSignatures:
            - name: terr-signature
              log: disable
              direction: request
          profile: ${trnameObjectWafProfile.name}
        options:
          dependsOn:
            - ${trnameObjectWafProfile}
      trnameObjectWafProfile:
        type: fortimanager:ObjectWafProfile
    

    Create ObjectWafProfileSignature Resource

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

    Constructor syntax

    new ObjectWafProfileSignature(name: string, args: ObjectWafProfileSignatureArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWafProfileSignature(resource_name: str,
                                  args: ObjectWafProfileSignatureInitArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWafProfileSignature(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  profile: Optional[str] = None,
                                  adom: Optional[str] = None,
                                  credit_card_detection_threshold: Optional[float] = None,
                                  custom_signatures: Optional[Sequence[ObjectWafProfileSignatureCustomSignatureArgs]] = None,
                                  disabled_signature: Optional[str] = None,
                                  disabled_sub_class: Optional[str] = None,
                                  dynamic_sort_subtable: Optional[str] = None,
                                  main_class: Optional[ObjectWafProfileSignatureMainClassArgs] = None,
                                  object_waf_profile_signature_id: Optional[str] = None,
                                  scopetype: Optional[str] = None)
    func NewObjectWafProfileSignature(ctx *Context, name string, args ObjectWafProfileSignatureArgs, opts ...ResourceOption) (*ObjectWafProfileSignature, error)
    public ObjectWafProfileSignature(string name, ObjectWafProfileSignatureArgs args, CustomResourceOptions? opts = null)
    public ObjectWafProfileSignature(String name, ObjectWafProfileSignatureArgs args)
    public ObjectWafProfileSignature(String name, ObjectWafProfileSignatureArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWafProfileSignature
    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 ObjectWafProfileSignatureArgs
    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 ObjectWafProfileSignatureInitArgs
    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 ObjectWafProfileSignatureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWafProfileSignatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWafProfileSignatureArgs
    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 objectWafProfileSignatureResource = new Fortimanager.ObjectWafProfileSignature("objectWafProfileSignatureResource", new()
    {
        Profile = "string",
        Adom = "string",
        CreditCardDetectionThreshold = 0,
        CustomSignatures = new[]
        {
            new Fortimanager.Inputs.ObjectWafProfileSignatureCustomSignatureArgs
            {
                Action = "string",
                CaseSensitivity = "string",
                Direction = "string",
                Log = "string",
                Name = "string",
                Pattern = "string",
                Severity = "string",
                Status = "string",
                Targets = new[]
                {
                    "string",
                },
            },
        },
        DisabledSignature = "string",
        DisabledSubClass = "string",
        DynamicSortSubtable = "string",
        MainClass = new Fortimanager.Inputs.ObjectWafProfileSignatureMainClassArgs
        {
            Action = "string",
            Id = 0,
            Log = "string",
            Severity = "string",
            Status = "string",
        },
        ObjectWafProfileSignatureId = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectWafProfileSignature(ctx, "objectWafProfileSignatureResource", &fortimanager.ObjectWafProfileSignatureArgs{
    Profile: pulumi.String("string"),
    Adom: pulumi.String("string"),
    CreditCardDetectionThreshold: pulumi.Float64(0),
    CustomSignatures: .ObjectWafProfileSignatureCustomSignatureTypeArray{
    &.ObjectWafProfileSignatureCustomSignatureTypeArgs{
    Action: pulumi.String("string"),
    CaseSensitivity: pulumi.String("string"),
    Direction: pulumi.String("string"),
    Log: pulumi.String("string"),
    Name: pulumi.String("string"),
    Pattern: pulumi.String("string"),
    Severity: pulumi.String("string"),
    Status: pulumi.String("string"),
    Targets: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    DisabledSignature: pulumi.String("string"),
    DisabledSubClass: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    MainClass: &.ObjectWafProfileSignatureMainClassTypeArgs{
    Action: pulumi.String("string"),
    Id: pulumi.Float64(0),
    Log: pulumi.String("string"),
    Severity: pulumi.String("string"),
    Status: pulumi.String("string"),
    },
    ObjectWafProfileSignatureId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectWafProfileSignatureResource = new ObjectWafProfileSignature("objectWafProfileSignatureResource", ObjectWafProfileSignatureArgs.builder()
        .profile("string")
        .adom("string")
        .creditCardDetectionThreshold(0)
        .customSignatures(ObjectWafProfileSignatureCustomSignatureArgs.builder()
            .action("string")
            .caseSensitivity("string")
            .direction("string")
            .log("string")
            .name("string")
            .pattern("string")
            .severity("string")
            .status("string")
            .targets("string")
            .build())
        .disabledSignature("string")
        .disabledSubClass("string")
        .dynamicSortSubtable("string")
        .mainClass(ObjectWafProfileSignatureMainClassArgs.builder()
            .action("string")
            .id(0)
            .log("string")
            .severity("string")
            .status("string")
            .build())
        .objectWafProfileSignatureId("string")
        .scopetype("string")
        .build());
    
    object_waf_profile_signature_resource = fortimanager.ObjectWafProfileSignature("objectWafProfileSignatureResource",
        profile="string",
        adom="string",
        credit_card_detection_threshold=0,
        custom_signatures=[{
            "action": "string",
            "case_sensitivity": "string",
            "direction": "string",
            "log": "string",
            "name": "string",
            "pattern": "string",
            "severity": "string",
            "status": "string",
            "targets": ["string"],
        }],
        disabled_signature="string",
        disabled_sub_class="string",
        dynamic_sort_subtable="string",
        main_class={
            "action": "string",
            "id": 0,
            "log": "string",
            "severity": "string",
            "status": "string",
        },
        object_waf_profile_signature_id="string",
        scopetype="string")
    
    const objectWafProfileSignatureResource = new fortimanager.ObjectWafProfileSignature("objectWafProfileSignatureResource", {
        profile: "string",
        adom: "string",
        creditCardDetectionThreshold: 0,
        customSignatures: [{
            action: "string",
            caseSensitivity: "string",
            direction: "string",
            log: "string",
            name: "string",
            pattern: "string",
            severity: "string",
            status: "string",
            targets: ["string"],
        }],
        disabledSignature: "string",
        disabledSubClass: "string",
        dynamicSortSubtable: "string",
        mainClass: {
            action: "string",
            id: 0,
            log: "string",
            severity: "string",
            status: "string",
        },
        objectWafProfileSignatureId: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectWafProfileSignature
    properties:
        adom: string
        creditCardDetectionThreshold: 0
        customSignatures:
            - action: string
              caseSensitivity: string
              direction: string
              log: string
              name: string
              pattern: string
              severity: string
              status: string
              targets:
                - string
        disabledSignature: string
        disabledSubClass: string
        dynamicSortSubtable: string
        mainClass:
            action: string
            id: 0
            log: string
            severity: string
            status: string
        objectWafProfileSignatureId: string
        profile: string
        scopetype: string
    

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

    Profile string
    Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    CreditCardDetectionThreshold double
    The minimum number of Credit cards to detect violation.
    CustomSignatures List<ObjectWafProfileSignatureCustomSignature>
    Custom-Signature. The structure of custom_signature block is documented below.
    DisabledSignature string
    Disabled signatures
    DisabledSubClass string
    Disabled signature subclasses.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    MainClass ObjectWafProfileSignatureMainClass
    Main-Class. The structure of main_class block is documented below.
    ObjectWafProfileSignatureId string
    an identifier for the resource.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Profile string
    Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    CreditCardDetectionThreshold float64
    The minimum number of Credit cards to detect violation.
    CustomSignatures []ObjectWafProfileSignatureCustomSignatureTypeArgs
    Custom-Signature. The structure of custom_signature block is documented below.
    DisabledSignature string
    Disabled signatures
    DisabledSubClass string
    Disabled signature subclasses.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    MainClass ObjectWafProfileSignatureMainClassTypeArgs
    Main-Class. The structure of main_class block is documented below.
    ObjectWafProfileSignatureId string
    an identifier for the resource.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile String
    Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    creditCardDetectionThreshold Double
    The minimum number of Credit cards to detect violation.
    customSignatures List<ObjectWafProfileSignatureCustomSignature>
    Custom-Signature. The structure of custom_signature block is documented below.
    disabledSignature String
    Disabled signatures
    disabledSubClass String
    Disabled signature subclasses.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mainClass ObjectWafProfileSignatureMainClass
    Main-Class. The structure of main_class block is documented below.
    objectWafProfileSignatureId String
    an identifier for the resource.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile string
    Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    creditCardDetectionThreshold number
    The minimum number of Credit cards to detect violation.
    customSignatures ObjectWafProfileSignatureCustomSignature[]
    Custom-Signature. The structure of custom_signature block is documented below.
    disabledSignature string
    Disabled signatures
    disabledSubClass string
    Disabled signature subclasses.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mainClass ObjectWafProfileSignatureMainClass
    Main-Class. The structure of main_class block is documented below.
    objectWafProfileSignatureId string
    an identifier for the resource.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile str
    Profile.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    credit_card_detection_threshold float
    The minimum number of Credit cards to detect violation.
    custom_signatures Sequence[ObjectWafProfileSignatureCustomSignatureArgs]
    Custom-Signature. The structure of custom_signature block is documented below.
    disabled_signature str
    Disabled signatures
    disabled_sub_class str
    Disabled signature subclasses.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    main_class ObjectWafProfileSignatureMainClassArgs
    Main-Class. The structure of main_class block is documented below.
    object_waf_profile_signature_id str
    an identifier for the resource.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile String
    Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    creditCardDetectionThreshold Number
    The minimum number of Credit cards to detect violation.
    customSignatures List<Property Map>
    Custom-Signature. The structure of custom_signature block is documented below.
    disabledSignature String
    Disabled signatures
    disabledSubClass String
    Disabled signature subclasses.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mainClass Property Map
    Main-Class. The structure of main_class block is documented below.
    objectWafProfileSignatureId String
    an identifier for the resource.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ObjectWafProfileSignature Resource

    Get an existing ObjectWafProfileSignature 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?: ObjectWafProfileSignatureState, opts?: CustomResourceOptions): ObjectWafProfileSignature
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            credit_card_detection_threshold: Optional[float] = None,
            custom_signatures: Optional[Sequence[ObjectWafProfileSignatureCustomSignatureArgs]] = None,
            disabled_signature: Optional[str] = None,
            disabled_sub_class: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            main_class: Optional[ObjectWafProfileSignatureMainClassArgs] = None,
            object_waf_profile_signature_id: Optional[str] = None,
            profile: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectWafProfileSignature
    func GetObjectWafProfileSignature(ctx *Context, name string, id IDInput, state *ObjectWafProfileSignatureState, opts ...ResourceOption) (*ObjectWafProfileSignature, error)
    public static ObjectWafProfileSignature Get(string name, Input<string> id, ObjectWafProfileSignatureState? state, CustomResourceOptions? opts = null)
    public static ObjectWafProfileSignature get(String name, Output<String> id, ObjectWafProfileSignatureState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWafProfileSignature    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    CreditCardDetectionThreshold double
    The minimum number of Credit cards to detect violation.
    CustomSignatures List<ObjectWafProfileSignatureCustomSignature>
    Custom-Signature. The structure of custom_signature block is documented below.
    DisabledSignature string
    Disabled signatures
    DisabledSubClass string
    Disabled signature subclasses.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    MainClass ObjectWafProfileSignatureMainClass
    Main-Class. The structure of main_class block is documented below.
    ObjectWafProfileSignatureId string
    an identifier for the resource.
    Profile string
    Profile.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    CreditCardDetectionThreshold float64
    The minimum number of Credit cards to detect violation.
    CustomSignatures []ObjectWafProfileSignatureCustomSignatureTypeArgs
    Custom-Signature. The structure of custom_signature block is documented below.
    DisabledSignature string
    Disabled signatures
    DisabledSubClass string
    Disabled signature subclasses.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    MainClass ObjectWafProfileSignatureMainClassTypeArgs
    Main-Class. The structure of main_class block is documented below.
    ObjectWafProfileSignatureId string
    an identifier for the resource.
    Profile string
    Profile.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    creditCardDetectionThreshold Double
    The minimum number of Credit cards to detect violation.
    customSignatures List<ObjectWafProfileSignatureCustomSignature>
    Custom-Signature. The structure of custom_signature block is documented below.
    disabledSignature String
    Disabled signatures
    disabledSubClass String
    Disabled signature subclasses.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mainClass ObjectWafProfileSignatureMainClass
    Main-Class. The structure of main_class block is documented below.
    objectWafProfileSignatureId String
    an identifier for the resource.
    profile String
    Profile.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    creditCardDetectionThreshold number
    The minimum number of Credit cards to detect violation.
    customSignatures ObjectWafProfileSignatureCustomSignature[]
    Custom-Signature. The structure of custom_signature block is documented below.
    disabledSignature string
    Disabled signatures
    disabledSubClass string
    Disabled signature subclasses.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mainClass ObjectWafProfileSignatureMainClass
    Main-Class. The structure of main_class block is documented below.
    objectWafProfileSignatureId string
    an identifier for the resource.
    profile string
    Profile.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    credit_card_detection_threshold float
    The minimum number of Credit cards to detect violation.
    custom_signatures Sequence[ObjectWafProfileSignatureCustomSignatureArgs]
    Custom-Signature. The structure of custom_signature block is documented below.
    disabled_signature str
    Disabled signatures
    disabled_sub_class str
    Disabled signature subclasses.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    main_class ObjectWafProfileSignatureMainClassArgs
    Main-Class. The structure of main_class block is documented below.
    object_waf_profile_signature_id str
    an identifier for the resource.
    profile str
    Profile.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    creditCardDetectionThreshold Number
    The minimum number of Credit cards to detect violation.
    customSignatures List<Property Map>
    Custom-Signature. The structure of custom_signature block is documented below.
    disabledSignature String
    Disabled signatures
    disabledSubClass String
    Disabled signature subclasses.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mainClass Property Map
    Main-Class. The structure of main_class block is documented below.
    objectWafProfileSignatureId String
    an identifier for the resource.
    profile String
    Profile.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

    Supporting Types

    ObjectWafProfileSignatureCustomSignature, ObjectWafProfileSignatureCustomSignatureArgs

    Action string
    Action. Valid values: allow, block, erase.
    CaseSensitivity string
    Case sensitivity in pattern. Valid values: disable, enable.
    Direction string
    Traffic direction. Valid values: request, response.
    Log string
    Enable/disable logging. Valid values: disable, enable.
    Name string
    Signature name.
    Pattern string
    Match pattern.
    Severity string
    Severity. Valid values: low, medium, high.
    Status string
    Status. Valid values: disable, enable.
    Targets List<string>
    Match HTTP target. Valid values: arg, arg-name, req-body, req-cookie, req-cookie-name, req-filename, req-header, req-header-name, req-raw-uri, req-uri, resp-body, resp-hdr, resp-status.
    Action string
    Action. Valid values: allow, block, erase.
    CaseSensitivity string
    Case sensitivity in pattern. Valid values: disable, enable.
    Direction string
    Traffic direction. Valid values: request, response.
    Log string
    Enable/disable logging. Valid values: disable, enable.
    Name string
    Signature name.
    Pattern string
    Match pattern.
    Severity string
    Severity. Valid values: low, medium, high.
    Status string
    Status. Valid values: disable, enable.
    Targets []string
    Match HTTP target. Valid values: arg, arg-name, req-body, req-cookie, req-cookie-name, req-filename, req-header, req-header-name, req-raw-uri, req-uri, resp-body, resp-hdr, resp-status.
    action String
    Action. Valid values: allow, block, erase.
    caseSensitivity String
    Case sensitivity in pattern. Valid values: disable, enable.
    direction String
    Traffic direction. Valid values: request, response.
    log String
    Enable/disable logging. Valid values: disable, enable.
    name String
    Signature name.
    pattern String
    Match pattern.
    severity String
    Severity. Valid values: low, medium, high.
    status String
    Status. Valid values: disable, enable.
    targets List<String>
    Match HTTP target. Valid values: arg, arg-name, req-body, req-cookie, req-cookie-name, req-filename, req-header, req-header-name, req-raw-uri, req-uri, resp-body, resp-hdr, resp-status.
    action string
    Action. Valid values: allow, block, erase.
    caseSensitivity string
    Case sensitivity in pattern. Valid values: disable, enable.
    direction string
    Traffic direction. Valid values: request, response.
    log string
    Enable/disable logging. Valid values: disable, enable.
    name string
    Signature name.
    pattern string
    Match pattern.
    severity string
    Severity. Valid values: low, medium, high.
    status string
    Status. Valid values: disable, enable.
    targets string[]
    Match HTTP target. Valid values: arg, arg-name, req-body, req-cookie, req-cookie-name, req-filename, req-header, req-header-name, req-raw-uri, req-uri, resp-body, resp-hdr, resp-status.
    action str
    Action. Valid values: allow, block, erase.
    case_sensitivity str
    Case sensitivity in pattern. Valid values: disable, enable.
    direction str
    Traffic direction. Valid values: request, response.
    log str
    Enable/disable logging. Valid values: disable, enable.
    name str
    Signature name.
    pattern str
    Match pattern.
    severity str
    Severity. Valid values: low, medium, high.
    status str
    Status. Valid values: disable, enable.
    targets Sequence[str]
    Match HTTP target. Valid values: arg, arg-name, req-body, req-cookie, req-cookie-name, req-filename, req-header, req-header-name, req-raw-uri, req-uri, resp-body, resp-hdr, resp-status.
    action String
    Action. Valid values: allow, block, erase.
    caseSensitivity String
    Case sensitivity in pattern. Valid values: disable, enable.
    direction String
    Traffic direction. Valid values: request, response.
    log String
    Enable/disable logging. Valid values: disable, enable.
    name String
    Signature name.
    pattern String
    Match pattern.
    severity String
    Severity. Valid values: low, medium, high.
    status String
    Status. Valid values: disable, enable.
    targets List<String>
    Match HTTP target. Valid values: arg, arg-name, req-body, req-cookie, req-cookie-name, req-filename, req-header, req-header-name, req-raw-uri, req-uri, resp-body, resp-hdr, resp-status.

    ObjectWafProfileSignatureMainClass, ObjectWafProfileSignatureMainClassArgs

    Action string
    Action. Valid values: allow, block, erase.
    Id double
    Main signature class ID.
    Log string
    Enable/disable logging. Valid values: disable, enable.
    Severity string
    Severity. Valid values: low, medium, high.
    Status string
    Status. Valid values: disable, enable.
    Action string
    Action. Valid values: allow, block, erase.
    Id float64
    Main signature class ID.
    Log string
    Enable/disable logging. Valid values: disable, enable.
    Severity string
    Severity. Valid values: low, medium, high.
    Status string
    Status. Valid values: disable, enable.
    action String
    Action. Valid values: allow, block, erase.
    id Double
    Main signature class ID.
    log String
    Enable/disable logging. Valid values: disable, enable.
    severity String
    Severity. Valid values: low, medium, high.
    status String
    Status. Valid values: disable, enable.
    action string
    Action. Valid values: allow, block, erase.
    id number
    Main signature class ID.
    log string
    Enable/disable logging. Valid values: disable, enable.
    severity string
    Severity. Valid values: low, medium, high.
    status string
    Status. Valid values: disable, enable.
    action str
    Action. Valid values: allow, block, erase.
    id float
    Main signature class ID.
    log str
    Enable/disable logging. Valid values: disable, enable.
    severity str
    Severity. Valid values: low, medium, high.
    status str
    Status. Valid values: disable, enable.
    action String
    Action. Valid values: allow, block, erase.
    id Number
    Main signature class ID.
    log String
    Enable/disable logging. Valid values: disable, enable.
    severity String
    Severity. Valid values: low, medium, high.
    status String
    Status. Valid values: disable, enable.

    Import

    ObjectWaf ProfileSignature can be imported using any of these accepted formats:

    Set import_options = [“profile=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWafProfileSignature:ObjectWafProfileSignature labelname ObjectWafProfileSignature
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev