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

fortimanager.ObjectWebfilterProfileFtgdwfFilters

Explore with Pulumi AI

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

    FortiGuard filters.

    This resource is a sub resource for variable filters of resource fortimanager.ObjectWebfilterProfileFtgdwf. Conflict and overwrite may occur if use both of them.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectWebfilterProfile = new fortimanager.ObjectWebfilterProfile("trnameObjectWebfilterProfile", {});
    const trnameObjectWebfilterProfileFtgdwfFilters = new fortimanager.ObjectWebfilterProfileFtgdwfFilters("trnameObjectWebfilterProfileFtgdwfFilters", {
        action: "block",
        fosid: 1,
        log: "enable",
        profile: trnameObjectWebfilterProfile.name,
    }, {
        dependsOn: [trnameObjectWebfilterProfile],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_webfilter_profile = fortimanager.ObjectWebfilterProfile("trnameObjectWebfilterProfile")
    trname_object_webfilter_profile_ftgdwf_filters = fortimanager.ObjectWebfilterProfileFtgdwfFilters("trnameObjectWebfilterProfileFtgdwfFilters",
        action="block",
        fosid=1,
        log="enable",
        profile=trname_object_webfilter_profile.name,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_webfilter_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 {
    		trnameObjectWebfilterProfile, err := fortimanager.NewObjectWebfilterProfile(ctx, "trnameObjectWebfilterProfile", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWebfilterProfileFtgdwfFilters(ctx, "trnameObjectWebfilterProfileFtgdwfFilters", &fortimanager.ObjectWebfilterProfileFtgdwfFiltersArgs{
    			Action:  pulumi.String("block"),
    			Fosid:   pulumi.Float64(1),
    			Log:     pulumi.String("enable"),
    			Profile: trnameObjectWebfilterProfile.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectWebfilterProfile,
    		}))
    		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 trnameObjectWebfilterProfile = new Fortimanager.ObjectWebfilterProfile("trnameObjectWebfilterProfile");
    
        var trnameObjectWebfilterProfileFtgdwfFilters = new Fortimanager.ObjectWebfilterProfileFtgdwfFilters("trnameObjectWebfilterProfileFtgdwfFilters", new()
        {
            Action = "block",
            Fosid = 1,
            Log = "enable",
            Profile = trnameObjectWebfilterProfile.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectWebfilterProfile,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWebfilterProfile;
    import com.pulumi.fortimanager.ObjectWebfilterProfileFtgdwfFilters;
    import com.pulumi.fortimanager.ObjectWebfilterProfileFtgdwfFiltersArgs;
    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 trnameObjectWebfilterProfile = new ObjectWebfilterProfile("trnameObjectWebfilterProfile");
    
            var trnameObjectWebfilterProfileFtgdwfFilters = new ObjectWebfilterProfileFtgdwfFilters("trnameObjectWebfilterProfileFtgdwfFilters", ObjectWebfilterProfileFtgdwfFiltersArgs.builder()
                .action("block")
                .fosid(1)
                .log("enable")
                .profile(trnameObjectWebfilterProfile.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectWebfilterProfile)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectWebfilterProfileFtgdwfFilters:
        type: fortimanager:ObjectWebfilterProfileFtgdwfFilters
        properties:
          action: block
          fosid: 1
          log: enable
          profile: ${trnameObjectWebfilterProfile.name}
        options:
          dependsOn:
            - ${trnameObjectWebfilterProfile}
      trnameObjectWebfilterProfile:
        type: fortimanager:ObjectWebfilterProfile
    

    Create ObjectWebfilterProfileFtgdwfFilters Resource

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

    Constructor syntax

    new ObjectWebfilterProfileFtgdwfFilters(name: string, args: ObjectWebfilterProfileFtgdwfFiltersArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWebfilterProfileFtgdwfFilters(resource_name: str,
                                            args: ObjectWebfilterProfileFtgdwfFiltersArgs,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWebfilterProfileFtgdwfFilters(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            profile: Optional[str] = None,
                                            object_webfilter_profile_ftgdwf_filters_id: Optional[str] = None,
                                            auth_usr_grp: Optional[str] = None,
                                            category: Optional[str] = None,
                                            fosid: Optional[float] = None,
                                            log: Optional[str] = None,
                                            action: Optional[str] = None,
                                            override_replacemsg: Optional[str] = None,
                                            adom: Optional[str] = None,
                                            scopetype: Optional[str] = None,
                                            warn_duration: Optional[str] = None,
                                            warning_duration_type: Optional[str] = None,
                                            warning_prompt: Optional[str] = None)
    func NewObjectWebfilterProfileFtgdwfFilters(ctx *Context, name string, args ObjectWebfilterProfileFtgdwfFiltersArgs, opts ...ResourceOption) (*ObjectWebfilterProfileFtgdwfFilters, error)
    public ObjectWebfilterProfileFtgdwfFilters(string name, ObjectWebfilterProfileFtgdwfFiltersArgs args, CustomResourceOptions? opts = null)
    public ObjectWebfilterProfileFtgdwfFilters(String name, ObjectWebfilterProfileFtgdwfFiltersArgs args)
    public ObjectWebfilterProfileFtgdwfFilters(String name, ObjectWebfilterProfileFtgdwfFiltersArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWebfilterProfileFtgdwfFilters
    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 ObjectWebfilterProfileFtgdwfFiltersArgs
    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 ObjectWebfilterProfileFtgdwfFiltersArgs
    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 ObjectWebfilterProfileFtgdwfFiltersArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWebfilterProfileFtgdwfFiltersArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWebfilterProfileFtgdwfFiltersArgs
    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 objectWebfilterProfileFtgdwfFiltersResource = new Fortimanager.ObjectWebfilterProfileFtgdwfFilters("objectWebfilterProfileFtgdwfFiltersResource", new()
    {
        Profile = "string",
        ObjectWebfilterProfileFtgdwfFiltersId = "string",
        AuthUsrGrp = "string",
        Category = "string",
        Fosid = 0,
        Log = "string",
        Action = "string",
        OverrideReplacemsg = "string",
        Adom = "string",
        Scopetype = "string",
        WarnDuration = "string",
        WarningDurationType = "string",
        WarningPrompt = "string",
    });
    
    example, err := fortimanager.NewObjectWebfilterProfileFtgdwfFilters(ctx, "objectWebfilterProfileFtgdwfFiltersResource", &fortimanager.ObjectWebfilterProfileFtgdwfFiltersArgs{
    Profile: pulumi.String("string"),
    ObjectWebfilterProfileFtgdwfFiltersId: pulumi.String("string"),
    AuthUsrGrp: pulumi.String("string"),
    Category: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    Log: pulumi.String("string"),
    Action: pulumi.String("string"),
    OverrideReplacemsg: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    WarnDuration: pulumi.String("string"),
    WarningDurationType: pulumi.String("string"),
    WarningPrompt: pulumi.String("string"),
    })
    
    var objectWebfilterProfileFtgdwfFiltersResource = new ObjectWebfilterProfileFtgdwfFilters("objectWebfilterProfileFtgdwfFiltersResource", ObjectWebfilterProfileFtgdwfFiltersArgs.builder()
        .profile("string")
        .objectWebfilterProfileFtgdwfFiltersId("string")
        .authUsrGrp("string")
        .category("string")
        .fosid(0)
        .log("string")
        .action("string")
        .overrideReplacemsg("string")
        .adom("string")
        .scopetype("string")
        .warnDuration("string")
        .warningDurationType("string")
        .warningPrompt("string")
        .build());
    
    object_webfilter_profile_ftgdwf_filters_resource = fortimanager.ObjectWebfilterProfileFtgdwfFilters("objectWebfilterProfileFtgdwfFiltersResource",
        profile="string",
        object_webfilter_profile_ftgdwf_filters_id="string",
        auth_usr_grp="string",
        category="string",
        fosid=0,
        log="string",
        action="string",
        override_replacemsg="string",
        adom="string",
        scopetype="string",
        warn_duration="string",
        warning_duration_type="string",
        warning_prompt="string")
    
    const objectWebfilterProfileFtgdwfFiltersResource = new fortimanager.ObjectWebfilterProfileFtgdwfFilters("objectWebfilterProfileFtgdwfFiltersResource", {
        profile: "string",
        objectWebfilterProfileFtgdwfFiltersId: "string",
        authUsrGrp: "string",
        category: "string",
        fosid: 0,
        log: "string",
        action: "string",
        overrideReplacemsg: "string",
        adom: "string",
        scopetype: "string",
        warnDuration: "string",
        warningDurationType: "string",
        warningPrompt: "string",
    });
    
    type: fortimanager:ObjectWebfilterProfileFtgdwfFilters
    properties:
        action: string
        adom: string
        authUsrGrp: string
        category: string
        fosid: 0
        log: string
        objectWebfilterProfileFtgdwfFiltersId: string
        overrideReplacemsg: string
        profile: string
        scopetype: string
        warnDuration: string
        warningDurationType: string
        warningPrompt: string
    

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

    Profile string
    Profile.
    Action string
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AuthUsrGrp string
    Groups with permission to authenticate.
    Category string
    Categories and groups the filter examines.
    Fosid double
    ID number.
    Log string
    Enable/disable logging. Valid values: disable, enable.
    ObjectWebfilterProfileFtgdwfFiltersId string
    an identifier for the resource with format {{fosid}}.
    OverrideReplacemsg string
    Override replacement message.
    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.
    WarnDuration string
    Duration of warnings.
    WarningDurationType string
    Re-display warning after closing browser or after a timeout. Valid values: session, timeout.
    WarningPrompt string
    Warning prompts in each category or each domain. Valid values: per-domain, per-category.
    Profile string
    Profile.
    Action string
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AuthUsrGrp string
    Groups with permission to authenticate.
    Category string
    Categories and groups the filter examines.
    Fosid float64
    ID number.
    Log string
    Enable/disable logging. Valid values: disable, enable.
    ObjectWebfilterProfileFtgdwfFiltersId string
    an identifier for the resource with format {{fosid}}.
    OverrideReplacemsg string
    Override replacement message.
    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.
    WarnDuration string
    Duration of warnings.
    WarningDurationType string
    Re-display warning after closing browser or after a timeout. Valid values: session, timeout.
    WarningPrompt string
    Warning prompts in each category or each domain. Valid values: per-domain, per-category.
    profile String
    Profile.
    action String
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authUsrGrp String
    Groups with permission to authenticate.
    category String
    Categories and groups the filter examines.
    fosid Double
    ID number.
    log String
    Enable/disable logging. Valid values: disable, enable.
    objectWebfilterProfileFtgdwfFiltersId String
    an identifier for the resource with format {{fosid}}.
    overrideReplacemsg String
    Override replacement message.
    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.
    warnDuration String
    Duration of warnings.
    warningDurationType String
    Re-display warning after closing browser or after a timeout. Valid values: session, timeout.
    warningPrompt String
    Warning prompts in each category or each domain. Valid values: per-domain, per-category.
    profile string
    Profile.
    action string
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authUsrGrp string
    Groups with permission to authenticate.
    category string
    Categories and groups the filter examines.
    fosid number
    ID number.
    log string
    Enable/disable logging. Valid values: disable, enable.
    objectWebfilterProfileFtgdwfFiltersId string
    an identifier for the resource with format {{fosid}}.
    overrideReplacemsg string
    Override replacement message.
    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.
    warnDuration string
    Duration of warnings.
    warningDurationType string
    Re-display warning after closing browser or after a timeout. Valid values: session, timeout.
    warningPrompt string
    Warning prompts in each category or each domain. Valid values: per-domain, per-category.
    profile str
    Profile.
    action str
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    auth_usr_grp str
    Groups with permission to authenticate.
    category str
    Categories and groups the filter examines.
    fosid float
    ID number.
    log str
    Enable/disable logging. Valid values: disable, enable.
    object_webfilter_profile_ftgdwf_filters_id str
    an identifier for the resource with format {{fosid}}.
    override_replacemsg str
    Override replacement message.
    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.
    warn_duration str
    Duration of warnings.
    warning_duration_type str
    Re-display warning after closing browser or after a timeout. Valid values: session, timeout.
    warning_prompt str
    Warning prompts in each category or each domain. Valid values: per-domain, per-category.
    profile String
    Profile.
    action String
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authUsrGrp String
    Groups with permission to authenticate.
    category String
    Categories and groups the filter examines.
    fosid Number
    ID number.
    log String
    Enable/disable logging. Valid values: disable, enable.
    objectWebfilterProfileFtgdwfFiltersId String
    an identifier for the resource with format {{fosid}}.
    overrideReplacemsg String
    Override replacement message.
    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.
    warnDuration String
    Duration of warnings.
    warningDurationType String
    Re-display warning after closing browser or after a timeout. Valid values: session, timeout.
    warningPrompt String
    Warning prompts in each category or each domain. Valid values: per-domain, per-category.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectWebfilterProfileFtgdwfFilters 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 ObjectWebfilterProfileFtgdwfFilters Resource

    Get an existing ObjectWebfilterProfileFtgdwfFilters 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?: ObjectWebfilterProfileFtgdwfFiltersState, opts?: CustomResourceOptions): ObjectWebfilterProfileFtgdwfFilters
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            auth_usr_grp: Optional[str] = None,
            category: Optional[str] = None,
            fosid: Optional[float] = None,
            log: Optional[str] = None,
            object_webfilter_profile_ftgdwf_filters_id: Optional[str] = None,
            override_replacemsg: Optional[str] = None,
            profile: Optional[str] = None,
            scopetype: Optional[str] = None,
            warn_duration: Optional[str] = None,
            warning_duration_type: Optional[str] = None,
            warning_prompt: Optional[str] = None) -> ObjectWebfilterProfileFtgdwfFilters
    func GetObjectWebfilterProfileFtgdwfFilters(ctx *Context, name string, id IDInput, state *ObjectWebfilterProfileFtgdwfFiltersState, opts ...ResourceOption) (*ObjectWebfilterProfileFtgdwfFilters, error)
    public static ObjectWebfilterProfileFtgdwfFilters Get(string name, Input<string> id, ObjectWebfilterProfileFtgdwfFiltersState? state, CustomResourceOptions? opts = null)
    public static ObjectWebfilterProfileFtgdwfFilters get(String name, Output<String> id, ObjectWebfilterProfileFtgdwfFiltersState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWebfilterProfileFtgdwfFilters    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:
    Action string
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AuthUsrGrp string
    Groups with permission to authenticate.
    Category string
    Categories and groups the filter examines.
    Fosid double
    ID number.
    Log string
    Enable/disable logging. Valid values: disable, enable.
    ObjectWebfilterProfileFtgdwfFiltersId string
    an identifier for the resource with format {{fosid}}.
    OverrideReplacemsg string
    Override replacement message.
    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.
    WarnDuration string
    Duration of warnings.
    WarningDurationType string
    Re-display warning after closing browser or after a timeout. Valid values: session, timeout.
    WarningPrompt string
    Warning prompts in each category or each domain. Valid values: per-domain, per-category.
    Action string
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AuthUsrGrp string
    Groups with permission to authenticate.
    Category string
    Categories and groups the filter examines.
    Fosid float64
    ID number.
    Log string
    Enable/disable logging. Valid values: disable, enable.
    ObjectWebfilterProfileFtgdwfFiltersId string
    an identifier for the resource with format {{fosid}}.
    OverrideReplacemsg string
    Override replacement message.
    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.
    WarnDuration string
    Duration of warnings.
    WarningDurationType string
    Re-display warning after closing browser or after a timeout. Valid values: session, timeout.
    WarningPrompt string
    Warning prompts in each category or each domain. Valid values: per-domain, per-category.
    action String
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authUsrGrp String
    Groups with permission to authenticate.
    category String
    Categories and groups the filter examines.
    fosid Double
    ID number.
    log String
    Enable/disable logging. Valid values: disable, enable.
    objectWebfilterProfileFtgdwfFiltersId String
    an identifier for the resource with format {{fosid}}.
    overrideReplacemsg String
    Override replacement message.
    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.
    warnDuration String
    Duration of warnings.
    warningDurationType String
    Re-display warning after closing browser or after a timeout. Valid values: session, timeout.
    warningPrompt String
    Warning prompts in each category or each domain. Valid values: per-domain, per-category.
    action string
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authUsrGrp string
    Groups with permission to authenticate.
    category string
    Categories and groups the filter examines.
    fosid number
    ID number.
    log string
    Enable/disable logging. Valid values: disable, enable.
    objectWebfilterProfileFtgdwfFiltersId string
    an identifier for the resource with format {{fosid}}.
    overrideReplacemsg string
    Override replacement message.
    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.
    warnDuration string
    Duration of warnings.
    warningDurationType string
    Re-display warning after closing browser or after a timeout. Valid values: session, timeout.
    warningPrompt string
    Warning prompts in each category or each domain. Valid values: per-domain, per-category.
    action str
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    auth_usr_grp str
    Groups with permission to authenticate.
    category str
    Categories and groups the filter examines.
    fosid float
    ID number.
    log str
    Enable/disable logging. Valid values: disable, enable.
    object_webfilter_profile_ftgdwf_filters_id str
    an identifier for the resource with format {{fosid}}.
    override_replacemsg str
    Override replacement message.
    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.
    warn_duration str
    Duration of warnings.
    warning_duration_type str
    Re-display warning after closing browser or after a timeout. Valid values: session, timeout.
    warning_prompt str
    Warning prompts in each category or each domain. Valid values: per-domain, per-category.
    action String
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authUsrGrp String
    Groups with permission to authenticate.
    category String
    Categories and groups the filter examines.
    fosid Number
    ID number.
    log String
    Enable/disable logging. Valid values: disable, enable.
    objectWebfilterProfileFtgdwfFiltersId String
    an identifier for the resource with format {{fosid}}.
    overrideReplacemsg String
    Override replacement message.
    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.
    warnDuration String
    Duration of warnings.
    warningDurationType String
    Re-display warning after closing browser or after a timeout. Valid values: session, timeout.
    warningPrompt String
    Warning prompts in each category or each domain. Valid values: per-domain, per-category.

    Import

    ObjectWebfilter ProfileFtgdWfFilters 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/objectWebfilterProfileFtgdwfFilters:ObjectWebfilterProfileFtgdwfFilters labelname {{fosid}}
    

    $ 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