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

fortimanager.ObjectWebfilterProfileFtgdwf

Explore with Pulumi AI

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

    FortiGuard Web Filter settings.

    This resource is a sub resource for variable ftgd_wf of resource fortimanager.ObjectWebfilterProfile. 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.

    • filters: fortimanager.ObjectWebfilterProfileFtgdwfFilters
    • quota: fortimanager_object_webfilter_profile_ftgdwf_quota

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname5 = new fortimanager.ObjectWebfilterProfile("trname5", {});
    const trname = new fortimanager.ObjectWebfilterProfileFtgdwf("trname", {
        rateCssUrls: "disable",
        rateCrlUrls: "enable",
        profile: trname5.name,
    }, {
        dependsOn: [trname5],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname5 = fortimanager.ObjectWebfilterProfile("trname5")
    trname = fortimanager.ObjectWebfilterProfileFtgdwf("trname",
        rate_css_urls="disable",
        rate_crl_urls="enable",
        profile=trname5.name,
        opts = pulumi.ResourceOptions(depends_on=[trname5]))
    
    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 {
    		trname5, err := fortimanager.NewObjectWebfilterProfile(ctx, "trname5", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWebfilterProfileFtgdwf(ctx, "trname", &fortimanager.ObjectWebfilterProfileFtgdwfArgs{
    			RateCssUrls: pulumi.String("disable"),
    			RateCrlUrls: pulumi.String("enable"),
    			Profile:     trname5.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trname5,
    		}))
    		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 trname5 = new Fortimanager.ObjectWebfilterProfile("trname5");
    
        var trname = new Fortimanager.ObjectWebfilterProfileFtgdwf("trname", new()
        {
            RateCssUrls = "disable",
            RateCrlUrls = "enable",
            Profile = trname5.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trname5,
            },
        });
    
    });
    
    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.ObjectWebfilterProfileFtgdwf;
    import com.pulumi.fortimanager.ObjectWebfilterProfileFtgdwfArgs;
    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 trname5 = new ObjectWebfilterProfile("trname5");
    
            var trname = new ObjectWebfilterProfileFtgdwf("trname", ObjectWebfilterProfileFtgdwfArgs.builder()
                .rateCssUrls("disable")
                .rateCrlUrls("enable")
                .profile(trname5.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trname5)
                    .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectWebfilterProfileFtgdwf
        properties:
          rateCssUrls: disable
          rateCrlUrls: enable
          profile: ${trname5.name}
        options:
          dependsOn:
            - ${trname5}
      trname5:
        type: fortimanager:ObjectWebfilterProfile
    

    Create ObjectWebfilterProfileFtgdwf Resource

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

    Constructor syntax

    new ObjectWebfilterProfileFtgdwf(name: string, args: ObjectWebfilterProfileFtgdwfArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWebfilterProfileFtgdwf(resource_name: str,
                                     args: ObjectWebfilterProfileFtgdwfArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWebfilterProfileFtgdwf(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     profile: Optional[str] = None,
                                     options: Optional[Sequence[str]] = None,
                                     dynamic_sort_subtable: Optional[str] = None,
                                     filters: Optional[Sequence[ObjectWebfilterProfileFtgdwfFilterArgs]] = None,
                                     max_quota_timeout: Optional[float] = None,
                                     object_webfilter_profile_ftgdwf_id: Optional[str] = None,
                                     adom: Optional[str] = None,
                                     ovrds: Optional[Sequence[str]] = None,
                                     exempt_quotas: Optional[Sequence[str]] = None,
                                     quotas: Optional[Sequence[ObjectWebfilterProfileFtgdwfQuotaArgs]] = None,
                                     rate_crl_urls: Optional[str] = None,
                                     rate_css_urls: Optional[str] = None,
                                     rate_image_urls: Optional[str] = None,
                                     rate_javascript_urls: Optional[str] = None,
                                     scopetype: Optional[str] = None)
    func NewObjectWebfilterProfileFtgdwf(ctx *Context, name string, args ObjectWebfilterProfileFtgdwfArgs, opts ...ResourceOption) (*ObjectWebfilterProfileFtgdwf, error)
    public ObjectWebfilterProfileFtgdwf(string name, ObjectWebfilterProfileFtgdwfArgs args, CustomResourceOptions? opts = null)
    public ObjectWebfilterProfileFtgdwf(String name, ObjectWebfilterProfileFtgdwfArgs args)
    public ObjectWebfilterProfileFtgdwf(String name, ObjectWebfilterProfileFtgdwfArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWebfilterProfileFtgdwf
    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 ObjectWebfilterProfileFtgdwfArgs
    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 ObjectWebfilterProfileFtgdwfArgs
    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 ObjectWebfilterProfileFtgdwfArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWebfilterProfileFtgdwfArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWebfilterProfileFtgdwfArgs
    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 objectWebfilterProfileFtgdwfResource = new Fortimanager.ObjectWebfilterProfileFtgdwf("objectWebfilterProfileFtgdwfResource", new()
    {
        Profile = "string",
        Options = new[]
        {
            "string",
        },
        DynamicSortSubtable = "string",
        Filters = new[]
        {
            new Fortimanager.Inputs.ObjectWebfilterProfileFtgdwfFilterArgs
            {
                Action = "string",
                AuthUsrGrp = "string",
                Category = "string",
                Id = 0,
                Log = "string",
                OverrideReplacemsg = "string",
                WarnDuration = "string",
                WarningDurationType = "string",
                WarningPrompt = "string",
            },
        },
        MaxQuotaTimeout = 0,
        ObjectWebfilterProfileFtgdwfId = "string",
        Adom = "string",
        Ovrds = new[]
        {
            "string",
        },
        ExemptQuotas = new[]
        {
            "string",
        },
        Quotas = new[]
        {
            new Fortimanager.Inputs.ObjectWebfilterProfileFtgdwfQuotaArgs
            {
                Category = "string",
                Duration = "string",
                Id = 0,
                OverrideReplacemsg = "string",
                Type = "string",
                Unit = "string",
                Value = 0,
            },
        },
        RateCrlUrls = "string",
        RateCssUrls = "string",
        RateImageUrls = "string",
        RateJavascriptUrls = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectWebfilterProfileFtgdwf(ctx, "objectWebfilterProfileFtgdwfResource", &fortimanager.ObjectWebfilterProfileFtgdwfArgs{
    Profile: pulumi.String("string"),
    Options: pulumi.StringArray{
    pulumi.String("string"),
    },
    DynamicSortSubtable: pulumi.String("string"),
    Filters: .ObjectWebfilterProfileFtgdwfFilterArray{
    &.ObjectWebfilterProfileFtgdwfFilterArgs{
    Action: pulumi.String("string"),
    AuthUsrGrp: pulumi.String("string"),
    Category: pulumi.String("string"),
    Id: pulumi.Float64(0),
    Log: pulumi.String("string"),
    OverrideReplacemsg: pulumi.String("string"),
    WarnDuration: pulumi.String("string"),
    WarningDurationType: pulumi.String("string"),
    WarningPrompt: pulumi.String("string"),
    },
    },
    MaxQuotaTimeout: pulumi.Float64(0),
    ObjectWebfilterProfileFtgdwfId: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Ovrds: pulumi.StringArray{
    pulumi.String("string"),
    },
    ExemptQuotas: pulumi.StringArray{
    pulumi.String("string"),
    },
    Quotas: .ObjectWebfilterProfileFtgdwfQuotaArray{
    &.ObjectWebfilterProfileFtgdwfQuotaArgs{
    Category: pulumi.String("string"),
    Duration: pulumi.String("string"),
    Id: pulumi.Float64(0),
    OverrideReplacemsg: pulumi.String("string"),
    Type: pulumi.String("string"),
    Unit: pulumi.String("string"),
    Value: pulumi.Float64(0),
    },
    },
    RateCrlUrls: pulumi.String("string"),
    RateCssUrls: pulumi.String("string"),
    RateImageUrls: pulumi.String("string"),
    RateJavascriptUrls: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectWebfilterProfileFtgdwfResource = new ObjectWebfilterProfileFtgdwf("objectWebfilterProfileFtgdwfResource", ObjectWebfilterProfileFtgdwfArgs.builder()
        .profile("string")
        .options("string")
        .dynamicSortSubtable("string")
        .filters(ObjectWebfilterProfileFtgdwfFilterArgs.builder()
            .action("string")
            .authUsrGrp("string")
            .category("string")
            .id(0)
            .log("string")
            .overrideReplacemsg("string")
            .warnDuration("string")
            .warningDurationType("string")
            .warningPrompt("string")
            .build())
        .maxQuotaTimeout(0)
        .objectWebfilterProfileFtgdwfId("string")
        .adom("string")
        .ovrds("string")
        .exemptQuotas("string")
        .quotas(ObjectWebfilterProfileFtgdwfQuotaArgs.builder()
            .category("string")
            .duration("string")
            .id(0)
            .overrideReplacemsg("string")
            .type("string")
            .unit("string")
            .value(0)
            .build())
        .rateCrlUrls("string")
        .rateCssUrls("string")
        .rateImageUrls("string")
        .rateJavascriptUrls("string")
        .scopetype("string")
        .build());
    
    object_webfilter_profile_ftgdwf_resource = fortimanager.ObjectWebfilterProfileFtgdwf("objectWebfilterProfileFtgdwfResource",
        profile="string",
        options=["string"],
        dynamic_sort_subtable="string",
        filters=[{
            "action": "string",
            "auth_usr_grp": "string",
            "category": "string",
            "id": 0,
            "log": "string",
            "override_replacemsg": "string",
            "warn_duration": "string",
            "warning_duration_type": "string",
            "warning_prompt": "string",
        }],
        max_quota_timeout=0,
        object_webfilter_profile_ftgdwf_id="string",
        adom="string",
        ovrds=["string"],
        exempt_quotas=["string"],
        quotas=[{
            "category": "string",
            "duration": "string",
            "id": 0,
            "override_replacemsg": "string",
            "type": "string",
            "unit": "string",
            "value": 0,
        }],
        rate_crl_urls="string",
        rate_css_urls="string",
        rate_image_urls="string",
        rate_javascript_urls="string",
        scopetype="string")
    
    const objectWebfilterProfileFtgdwfResource = new fortimanager.ObjectWebfilterProfileFtgdwf("objectWebfilterProfileFtgdwfResource", {
        profile: "string",
        options: ["string"],
        dynamicSortSubtable: "string",
        filters: [{
            action: "string",
            authUsrGrp: "string",
            category: "string",
            id: 0,
            log: "string",
            overrideReplacemsg: "string",
            warnDuration: "string",
            warningDurationType: "string",
            warningPrompt: "string",
        }],
        maxQuotaTimeout: 0,
        objectWebfilterProfileFtgdwfId: "string",
        adom: "string",
        ovrds: ["string"],
        exemptQuotas: ["string"],
        quotas: [{
            category: "string",
            duration: "string",
            id: 0,
            overrideReplacemsg: "string",
            type: "string",
            unit: "string",
            value: 0,
        }],
        rateCrlUrls: "string",
        rateCssUrls: "string",
        rateImageUrls: "string",
        rateJavascriptUrls: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectWebfilterProfileFtgdwf
    properties:
        adom: string
        dynamicSortSubtable: string
        exemptQuotas:
            - string
        filters:
            - action: string
              authUsrGrp: string
              category: string
              id: 0
              log: string
              overrideReplacemsg: string
              warnDuration: string
              warningDurationType: string
              warningPrompt: string
        maxQuotaTimeout: 0
        objectWebfilterProfileFtgdwfId: string
        options:
            - string
        ovrds:
            - string
        profile: string
        quotas:
            - category: string
              duration: string
              id: 0
              overrideReplacemsg: string
              type: string
              unit: string
              value: 0
        rateCrlUrls: string
        rateCssUrls: string
        rateImageUrls: string
        rateJavascriptUrls: string
        scopetype: string
    

    ObjectWebfilterProfileFtgdwf 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 ObjectWebfilterProfileFtgdwf 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.
    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.
    ExemptQuotas List<string>
    Do not stop quota for these categories.
    Filters List<ObjectWebfilterProfileFtgdwfFilter>
    Filters. The structure of filters block is documented below.
    MaxQuotaTimeout double
    Maximum FortiGuard quota used by single page view in seconds (excludes streams).
    ObjectWebfilterProfileFtgdwfId string
    an identifier for the resource.
    Options List<string>
    Options for FortiGuard Web Filter. Valid values: error-allow, http-err-detail, rate-image-urls, strict-blocking, rate-server-ip, redir-block, connect-request-bypass, log-all-url, ftgd-disable.
    Ovrds List<string>
    Allow web filter profile overrides.
    Quotas List<ObjectWebfilterProfileFtgdwfQuota>
    Quota. The structure of quota block is documented below.
    RateCrlUrls string
    Enable/disable rating CRL by URL. Valid values: disable, enable.
    RateCssUrls string
    Enable/disable rating CSS by URL. Valid values: disable, enable.
    RateImageUrls string
    Enable/disable rating images by URL. Valid values: disable, enable.
    RateJavascriptUrls string
    Enable/disable rating JavaScript by URL. Valid values: disable, enable.
    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.
    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.
    ExemptQuotas []string
    Do not stop quota for these categories.
    Filters []ObjectWebfilterProfileFtgdwfFilterArgs
    Filters. The structure of filters block is documented below.
    MaxQuotaTimeout float64
    Maximum FortiGuard quota used by single page view in seconds (excludes streams).
    ObjectWebfilterProfileFtgdwfId string
    an identifier for the resource.
    Options []string
    Options for FortiGuard Web Filter. Valid values: error-allow, http-err-detail, rate-image-urls, strict-blocking, rate-server-ip, redir-block, connect-request-bypass, log-all-url, ftgd-disable.
    Ovrds []string
    Allow web filter profile overrides.
    Quotas []ObjectWebfilterProfileFtgdwfQuotaArgs
    Quota. The structure of quota block is documented below.
    RateCrlUrls string
    Enable/disable rating CRL by URL. Valid values: disable, enable.
    RateCssUrls string
    Enable/disable rating CSS by URL. Valid values: disable, enable.
    RateImageUrls string
    Enable/disable rating images by URL. Valid values: disable, enable.
    RateJavascriptUrls string
    Enable/disable rating JavaScript by URL. Valid values: disable, enable.
    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.
    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.
    exemptQuotas List<String>
    Do not stop quota for these categories.
    filters List<ObjectWebfilterProfileFtgdwfFilter>
    Filters. The structure of filters block is documented below.
    maxQuotaTimeout Double
    Maximum FortiGuard quota used by single page view in seconds (excludes streams).
    objectWebfilterProfileFtgdwfId String
    an identifier for the resource.
    options List<String>
    Options for FortiGuard Web Filter. Valid values: error-allow, http-err-detail, rate-image-urls, strict-blocking, rate-server-ip, redir-block, connect-request-bypass, log-all-url, ftgd-disable.
    ovrds List<String>
    Allow web filter profile overrides.
    quotas List<ObjectWebfilterProfileFtgdwfQuota>
    Quota. The structure of quota block is documented below.
    rateCrlUrls String
    Enable/disable rating CRL by URL. Valid values: disable, enable.
    rateCssUrls String
    Enable/disable rating CSS by URL. Valid values: disable, enable.
    rateImageUrls String
    Enable/disable rating images by URL. Valid values: disable, enable.
    rateJavascriptUrls String
    Enable/disable rating JavaScript by URL. Valid values: disable, enable.
    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.
    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.
    exemptQuotas string[]
    Do not stop quota for these categories.
    filters ObjectWebfilterProfileFtgdwfFilter[]
    Filters. The structure of filters block is documented below.
    maxQuotaTimeout number
    Maximum FortiGuard quota used by single page view in seconds (excludes streams).
    objectWebfilterProfileFtgdwfId string
    an identifier for the resource.
    options string[]
    Options for FortiGuard Web Filter. Valid values: error-allow, http-err-detail, rate-image-urls, strict-blocking, rate-server-ip, redir-block, connect-request-bypass, log-all-url, ftgd-disable.
    ovrds string[]
    Allow web filter profile overrides.
    quotas ObjectWebfilterProfileFtgdwfQuota[]
    Quota. The structure of quota block is documented below.
    rateCrlUrls string
    Enable/disable rating CRL by URL. Valid values: disable, enable.
    rateCssUrls string
    Enable/disable rating CSS by URL. Valid values: disable, enable.
    rateImageUrls string
    Enable/disable rating images by URL. Valid values: disable, enable.
    rateJavascriptUrls string
    Enable/disable rating JavaScript by URL. Valid values: disable, enable.
    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.
    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.
    exempt_quotas Sequence[str]
    Do not stop quota for these categories.
    filters Sequence[ObjectWebfilterProfileFtgdwfFilterArgs]
    Filters. The structure of filters block is documented below.
    max_quota_timeout float
    Maximum FortiGuard quota used by single page view in seconds (excludes streams).
    object_webfilter_profile_ftgdwf_id str
    an identifier for the resource.
    options Sequence[str]
    Options for FortiGuard Web Filter. Valid values: error-allow, http-err-detail, rate-image-urls, strict-blocking, rate-server-ip, redir-block, connect-request-bypass, log-all-url, ftgd-disable.
    ovrds Sequence[str]
    Allow web filter profile overrides.
    quotas Sequence[ObjectWebfilterProfileFtgdwfQuotaArgs]
    Quota. The structure of quota block is documented below.
    rate_crl_urls str
    Enable/disable rating CRL by URL. Valid values: disable, enable.
    rate_css_urls str
    Enable/disable rating CSS by URL. Valid values: disable, enable.
    rate_image_urls str
    Enable/disable rating images by URL. Valid values: disable, enable.
    rate_javascript_urls str
    Enable/disable rating JavaScript by URL. Valid values: disable, enable.
    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.
    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.
    exemptQuotas List<String>
    Do not stop quota for these categories.
    filters List<Property Map>
    Filters. The structure of filters block is documented below.
    maxQuotaTimeout Number
    Maximum FortiGuard quota used by single page view in seconds (excludes streams).
    objectWebfilterProfileFtgdwfId String
    an identifier for the resource.
    options List<String>
    Options for FortiGuard Web Filter. Valid values: error-allow, http-err-detail, rate-image-urls, strict-blocking, rate-server-ip, redir-block, connect-request-bypass, log-all-url, ftgd-disable.
    ovrds List<String>
    Allow web filter profile overrides.
    quotas List<Property Map>
    Quota. The structure of quota block is documented below.
    rateCrlUrls String
    Enable/disable rating CRL by URL. Valid values: disable, enable.
    rateCssUrls String
    Enable/disable rating CSS by URL. Valid values: disable, enable.
    rateImageUrls String
    Enable/disable rating images by URL. Valid values: disable, enable.
    rateJavascriptUrls String
    Enable/disable rating JavaScript by URL. Valid values: disable, enable.
    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 ObjectWebfilterProfileFtgdwf 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 ObjectWebfilterProfileFtgdwf Resource

    Get an existing ObjectWebfilterProfileFtgdwf 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?: ObjectWebfilterProfileFtgdwfState, opts?: CustomResourceOptions): ObjectWebfilterProfileFtgdwf
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            exempt_quotas: Optional[Sequence[str]] = None,
            filters: Optional[Sequence[ObjectWebfilterProfileFtgdwfFilterArgs]] = None,
            max_quota_timeout: Optional[float] = None,
            object_webfilter_profile_ftgdwf_id: Optional[str] = None,
            options: Optional[Sequence[str]] = None,
            ovrds: Optional[Sequence[str]] = None,
            profile: Optional[str] = None,
            quotas: Optional[Sequence[ObjectWebfilterProfileFtgdwfQuotaArgs]] = None,
            rate_crl_urls: Optional[str] = None,
            rate_css_urls: Optional[str] = None,
            rate_image_urls: Optional[str] = None,
            rate_javascript_urls: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectWebfilterProfileFtgdwf
    func GetObjectWebfilterProfileFtgdwf(ctx *Context, name string, id IDInput, state *ObjectWebfilterProfileFtgdwfState, opts ...ResourceOption) (*ObjectWebfilterProfileFtgdwf, error)
    public static ObjectWebfilterProfileFtgdwf Get(string name, Input<string> id, ObjectWebfilterProfileFtgdwfState? state, CustomResourceOptions? opts = null)
    public static ObjectWebfilterProfileFtgdwf get(String name, Output<String> id, ObjectWebfilterProfileFtgdwfState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWebfilterProfileFtgdwf    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.
    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.
    ExemptQuotas List<string>
    Do not stop quota for these categories.
    Filters List<ObjectWebfilterProfileFtgdwfFilter>
    Filters. The structure of filters block is documented below.
    MaxQuotaTimeout double
    Maximum FortiGuard quota used by single page view in seconds (excludes streams).
    ObjectWebfilterProfileFtgdwfId string
    an identifier for the resource.
    Options List<string>
    Options for FortiGuard Web Filter. Valid values: error-allow, http-err-detail, rate-image-urls, strict-blocking, rate-server-ip, redir-block, connect-request-bypass, log-all-url, ftgd-disable.
    Ovrds List<string>
    Allow web filter profile overrides.
    Profile string
    Profile.
    Quotas List<ObjectWebfilterProfileFtgdwfQuota>
    Quota. The structure of quota block is documented below.
    RateCrlUrls string
    Enable/disable rating CRL by URL. Valid values: disable, enable.
    RateCssUrls string
    Enable/disable rating CSS by URL. Valid values: disable, enable.
    RateImageUrls string
    Enable/disable rating images by URL. Valid values: disable, enable.
    RateJavascriptUrls string
    Enable/disable rating JavaScript by URL. Valid values: disable, enable.
    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.
    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.
    ExemptQuotas []string
    Do not stop quota for these categories.
    Filters []ObjectWebfilterProfileFtgdwfFilterArgs
    Filters. The structure of filters block is documented below.
    MaxQuotaTimeout float64
    Maximum FortiGuard quota used by single page view in seconds (excludes streams).
    ObjectWebfilterProfileFtgdwfId string
    an identifier for the resource.
    Options []string
    Options for FortiGuard Web Filter. Valid values: error-allow, http-err-detail, rate-image-urls, strict-blocking, rate-server-ip, redir-block, connect-request-bypass, log-all-url, ftgd-disable.
    Ovrds []string
    Allow web filter profile overrides.
    Profile string
    Profile.
    Quotas []ObjectWebfilterProfileFtgdwfQuotaArgs
    Quota. The structure of quota block is documented below.
    RateCrlUrls string
    Enable/disable rating CRL by URL. Valid values: disable, enable.
    RateCssUrls string
    Enable/disable rating CSS by URL. Valid values: disable, enable.
    RateImageUrls string
    Enable/disable rating images by URL. Valid values: disable, enable.
    RateJavascriptUrls string
    Enable/disable rating JavaScript by URL. Valid values: disable, enable.
    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.
    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.
    exemptQuotas List<String>
    Do not stop quota for these categories.
    filters List<ObjectWebfilterProfileFtgdwfFilter>
    Filters. The structure of filters block is documented below.
    maxQuotaTimeout Double
    Maximum FortiGuard quota used by single page view in seconds (excludes streams).
    objectWebfilterProfileFtgdwfId String
    an identifier for the resource.
    options List<String>
    Options for FortiGuard Web Filter. Valid values: error-allow, http-err-detail, rate-image-urls, strict-blocking, rate-server-ip, redir-block, connect-request-bypass, log-all-url, ftgd-disable.
    ovrds List<String>
    Allow web filter profile overrides.
    profile String
    Profile.
    quotas List<ObjectWebfilterProfileFtgdwfQuota>
    Quota. The structure of quota block is documented below.
    rateCrlUrls String
    Enable/disable rating CRL by URL. Valid values: disable, enable.
    rateCssUrls String
    Enable/disable rating CSS by URL. Valid values: disable, enable.
    rateImageUrls String
    Enable/disable rating images by URL. Valid values: disable, enable.
    rateJavascriptUrls String
    Enable/disable rating JavaScript by URL. Valid values: disable, enable.
    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.
    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.
    exemptQuotas string[]
    Do not stop quota for these categories.
    filters ObjectWebfilterProfileFtgdwfFilter[]
    Filters. The structure of filters block is documented below.
    maxQuotaTimeout number
    Maximum FortiGuard quota used by single page view in seconds (excludes streams).
    objectWebfilterProfileFtgdwfId string
    an identifier for the resource.
    options string[]
    Options for FortiGuard Web Filter. Valid values: error-allow, http-err-detail, rate-image-urls, strict-blocking, rate-server-ip, redir-block, connect-request-bypass, log-all-url, ftgd-disable.
    ovrds string[]
    Allow web filter profile overrides.
    profile string
    Profile.
    quotas ObjectWebfilterProfileFtgdwfQuota[]
    Quota. The structure of quota block is documented below.
    rateCrlUrls string
    Enable/disable rating CRL by URL. Valid values: disable, enable.
    rateCssUrls string
    Enable/disable rating CSS by URL. Valid values: disable, enable.
    rateImageUrls string
    Enable/disable rating images by URL. Valid values: disable, enable.
    rateJavascriptUrls string
    Enable/disable rating JavaScript by URL. Valid values: disable, enable.
    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.
    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.
    exempt_quotas Sequence[str]
    Do not stop quota for these categories.
    filters Sequence[ObjectWebfilterProfileFtgdwfFilterArgs]
    Filters. The structure of filters block is documented below.
    max_quota_timeout float
    Maximum FortiGuard quota used by single page view in seconds (excludes streams).
    object_webfilter_profile_ftgdwf_id str
    an identifier for the resource.
    options Sequence[str]
    Options for FortiGuard Web Filter. Valid values: error-allow, http-err-detail, rate-image-urls, strict-blocking, rate-server-ip, redir-block, connect-request-bypass, log-all-url, ftgd-disable.
    ovrds Sequence[str]
    Allow web filter profile overrides.
    profile str
    Profile.
    quotas Sequence[ObjectWebfilterProfileFtgdwfQuotaArgs]
    Quota. The structure of quota block is documented below.
    rate_crl_urls str
    Enable/disable rating CRL by URL. Valid values: disable, enable.
    rate_css_urls str
    Enable/disable rating CSS by URL. Valid values: disable, enable.
    rate_image_urls str
    Enable/disable rating images by URL. Valid values: disable, enable.
    rate_javascript_urls str
    Enable/disable rating JavaScript by URL. Valid values: disable, enable.
    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.
    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.
    exemptQuotas List<String>
    Do not stop quota for these categories.
    filters List<Property Map>
    Filters. The structure of filters block is documented below.
    maxQuotaTimeout Number
    Maximum FortiGuard quota used by single page view in seconds (excludes streams).
    objectWebfilterProfileFtgdwfId String
    an identifier for the resource.
    options List<String>
    Options for FortiGuard Web Filter. Valid values: error-allow, http-err-detail, rate-image-urls, strict-blocking, rate-server-ip, redir-block, connect-request-bypass, log-all-url, ftgd-disable.
    ovrds List<String>
    Allow web filter profile overrides.
    profile String
    Profile.
    quotas List<Property Map>
    Quota. The structure of quota block is documented below.
    rateCrlUrls String
    Enable/disable rating CRL by URL. Valid values: disable, enable.
    rateCssUrls String
    Enable/disable rating CSS by URL. Valid values: disable, enable.
    rateImageUrls String
    Enable/disable rating images by URL. Valid values: disable, enable.
    rateJavascriptUrls String
    Enable/disable rating JavaScript by URL. Valid values: disable, enable.
    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

    ObjectWebfilterProfileFtgdwfFilter, ObjectWebfilterProfileFtgdwfFilterArgs

    Action string
    Action to take for matches. Valid values: block, monitor, warning, authenticate.
    AuthUsrGrp string
    Groups with permission to authenticate.
    Category string
    Categories and groups the filter examines.
    Id double
    ID number.
    Log string
    Enable/disable logging. Valid values: disable, enable.
    OverrideReplacemsg string
    Override replacement message.
    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.
    AuthUsrGrp string
    Groups with permission to authenticate.
    Category string
    Categories and groups the filter examines.
    Id float64
    ID number.
    Log string
    Enable/disable logging. Valid values: disable, enable.
    OverrideReplacemsg string
    Override replacement message.
    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.
    authUsrGrp String
    Groups with permission to authenticate.
    category String
    Categories and groups the filter examines.
    id Double
    ID number.
    log String
    Enable/disable logging. Valid values: disable, enable.
    overrideReplacemsg String
    Override replacement message.
    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.
    authUsrGrp string
    Groups with permission to authenticate.
    category string
    Categories and groups the filter examines.
    id number
    ID number.
    log string
    Enable/disable logging. Valid values: disable, enable.
    overrideReplacemsg string
    Override replacement message.
    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.
    auth_usr_grp str
    Groups with permission to authenticate.
    category str
    Categories and groups the filter examines.
    id float
    ID number.
    log str
    Enable/disable logging. Valid values: disable, enable.
    override_replacemsg str
    Override replacement message.
    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.
    authUsrGrp String
    Groups with permission to authenticate.
    category String
    Categories and groups the filter examines.
    id Number
    ID number.
    log String
    Enable/disable logging. Valid values: disable, enable.
    overrideReplacemsg String
    Override replacement message.
    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.

    ObjectWebfilterProfileFtgdwfQuota, ObjectWebfilterProfileFtgdwfQuotaArgs

    Category string
    FortiGuard categories to apply quota to (category action must be set to monitor).
    Duration string
    Duration of quota.
    Id double
    ID number.
    OverrideReplacemsg string
    Override replacement message.
    Type string
    Quota type. Valid values: time, traffic.
    Unit string
    Traffic quota unit of measurement. Valid values: B, KB, MB, GB.
    Value double
    Traffic quota value.
    Category string
    FortiGuard categories to apply quota to (category action must be set to monitor).
    Duration string
    Duration of quota.
    Id float64
    ID number.
    OverrideReplacemsg string
    Override replacement message.
    Type string
    Quota type. Valid values: time, traffic.
    Unit string
    Traffic quota unit of measurement. Valid values: B, KB, MB, GB.
    Value float64
    Traffic quota value.
    category String
    FortiGuard categories to apply quota to (category action must be set to monitor).
    duration String
    Duration of quota.
    id Double
    ID number.
    overrideReplacemsg String
    Override replacement message.
    type String
    Quota type. Valid values: time, traffic.
    unit String
    Traffic quota unit of measurement. Valid values: B, KB, MB, GB.
    value Double
    Traffic quota value.
    category string
    FortiGuard categories to apply quota to (category action must be set to monitor).
    duration string
    Duration of quota.
    id number
    ID number.
    overrideReplacemsg string
    Override replacement message.
    type string
    Quota type. Valid values: time, traffic.
    unit string
    Traffic quota unit of measurement. Valid values: B, KB, MB, GB.
    value number
    Traffic quota value.
    category str
    FortiGuard categories to apply quota to (category action must be set to monitor).
    duration str
    Duration of quota.
    id float
    ID number.
    override_replacemsg str
    Override replacement message.
    type str
    Quota type. Valid values: time, traffic.
    unit str
    Traffic quota unit of measurement. Valid values: B, KB, MB, GB.
    value float
    Traffic quota value.
    category String
    FortiGuard categories to apply quota to (category action must be set to monitor).
    duration String
    Duration of quota.
    id Number
    ID number.
    overrideReplacemsg String
    Override replacement message.
    type String
    Quota type. Valid values: time, traffic.
    unit String
    Traffic quota unit of measurement. Valid values: B, KB, MB, GB.
    value Number
    Traffic quota value.

    Import

    ObjectWebfilter ProfileFtgdWf 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/objectWebfilterProfileFtgdwf:ObjectWebfilterProfileFtgdwf labelname ObjectWebfilterProfileFtgdWf
    

    $ 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