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

fortimanager.FmupdateWebspamFgdsetting

Explore with Pulumi AI

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

    Configure the FortiGuard run parameters.

    The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • server_override: fortimanager_fmupdate_webspam_fgdsetting_serveroverride

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.FmupdateWebspamFgdsetting("trname", {
        avCache: 400,
        avLog: "all",
        avPreload: "enable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.FmupdateWebspamFgdsetting("trname",
        av_cache=400,
        av_log="all",
        av_preload="enable")
    
    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 {
    		_, err := fortimanager.NewFmupdateWebspamFgdsetting(ctx, "trname", &fortimanager.FmupdateWebspamFgdsettingArgs{
    			AvCache:   pulumi.Float64(400),
    			AvLog:     pulumi.String("all"),
    			AvPreload: pulumi.String("enable"),
    		})
    		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 trname = new Fortimanager.FmupdateWebspamFgdsetting("trname", new()
        {
            AvCache = 400,
            AvLog = "all",
            AvPreload = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.FmupdateWebspamFgdsetting;
    import com.pulumi.fortimanager.FmupdateWebspamFgdsettingArgs;
    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 trname = new FmupdateWebspamFgdsetting("trname", FmupdateWebspamFgdsettingArgs.builder()
                .avCache("400")
                .avLog("all")
                .avPreload("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:FmupdateWebspamFgdsetting
        properties:
          avCache: '400'
          avLog: all
          avPreload: enable
    

    Create FmupdateWebspamFgdsetting Resource

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

    Constructor syntax

    new FmupdateWebspamFgdsetting(name: string, args?: FmupdateWebspamFgdsettingArgs, opts?: CustomResourceOptions);
    @overload
    def FmupdateWebspamFgdsetting(resource_name: str,
                                  args: Optional[FmupdateWebspamFgdsettingArgs] = None,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def FmupdateWebspamFgdsetting(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  as_cache: Optional[float] = None,
                                  as_log: Optional[str] = None,
                                  as_preload: Optional[str] = None,
                                  av2_cache: Optional[float] = None,
                                  av2_log: Optional[str] = None,
                                  av2_preload: Optional[str] = None,
                                  av_cache: Optional[float] = None,
                                  av_log: Optional[str] = None,
                                  av_preload: Optional[str] = None,
                                  eventlog_query: Optional[str] = None,
                                  fgd_pull_interval: Optional[float] = None,
                                  fmupdate_webspam_fgdsetting_id: Optional[str] = None,
                                  fq_cache: Optional[float] = None,
                                  fq_log: Optional[str] = None,
                                  fq_preload: Optional[str] = None,
                                  iot_cache: Optional[float] = None,
                                  iot_log: Optional[str] = None,
                                  iot_preload: Optional[str] = None,
                                  iotv_preload: Optional[str] = None,
                                  linkd_log: Optional[str] = None,
                                  max_client_worker: Optional[float] = None,
                                  max_log_quota: Optional[float] = None,
                                  max_unrated_site: Optional[float] = None,
                                  restrict_as1_dbver: Optional[str] = None,
                                  restrict_as2_dbver: Optional[str] = None,
                                  restrict_as4_dbver: Optional[str] = None,
                                  restrict_av2_dbver: Optional[str] = None,
                                  restrict_av_dbver: Optional[str] = None,
                                  restrict_fq_dbver: Optional[str] = None,
                                  restrict_iots_dbver: Optional[str] = None,
                                  restrict_wf_dbver: Optional[str] = None,
                                  server_override: Optional[FmupdateWebspamFgdsettingServerOverrideArgs] = None,
                                  stat_log: Optional[str] = None,
                                  stat_log_interval: Optional[float] = None,
                                  stat_sync_interval: Optional[float] = None,
                                  update_interval: Optional[float] = None,
                                  update_log: Optional[str] = None,
                                  wf_cache: Optional[float] = None,
                                  wf_dn_cache_expire_time: Optional[float] = None,
                                  wf_dn_cache_max_number: Optional[float] = None,
                                  wf_log: Optional[str] = None,
                                  wf_preload: Optional[str] = None)
    func NewFmupdateWebspamFgdsetting(ctx *Context, name string, args *FmupdateWebspamFgdsettingArgs, opts ...ResourceOption) (*FmupdateWebspamFgdsetting, error)
    public FmupdateWebspamFgdsetting(string name, FmupdateWebspamFgdsettingArgs? args = null, CustomResourceOptions? opts = null)
    public FmupdateWebspamFgdsetting(String name, FmupdateWebspamFgdsettingArgs args)
    public FmupdateWebspamFgdsetting(String name, FmupdateWebspamFgdsettingArgs args, CustomResourceOptions options)
    
    type: fortimanager:FmupdateWebspamFgdsetting
    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 FmupdateWebspamFgdsettingArgs
    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 FmupdateWebspamFgdsettingArgs
    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 FmupdateWebspamFgdsettingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FmupdateWebspamFgdsettingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FmupdateWebspamFgdsettingArgs
    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 fmupdateWebspamFgdsettingResource = new Fortimanager.FmupdateWebspamFgdsetting("fmupdateWebspamFgdsettingResource", new()
    {
        AsCache = 0,
        AsLog = "string",
        AsPreload = "string",
        Av2Cache = 0,
        Av2Log = "string",
        Av2Preload = "string",
        AvCache = 0,
        AvLog = "string",
        AvPreload = "string",
        EventlogQuery = "string",
        FgdPullInterval = 0,
        FmupdateWebspamFgdsettingId = "string",
        FqCache = 0,
        FqLog = "string",
        FqPreload = "string",
        IotCache = 0,
        IotLog = "string",
        IotPreload = "string",
        IotvPreload = "string",
        LinkdLog = "string",
        MaxClientWorker = 0,
        MaxLogQuota = 0,
        MaxUnratedSite = 0,
        RestrictAs1Dbver = "string",
        RestrictAs2Dbver = "string",
        RestrictAs4Dbver = "string",
        RestrictAv2Dbver = "string",
        RestrictAvDbver = "string",
        RestrictFqDbver = "string",
        RestrictIotsDbver = "string",
        RestrictWfDbver = "string",
        ServerOverride = new Fortimanager.Inputs.FmupdateWebspamFgdsettingServerOverrideArgs
        {
            Servlists = new[]
            {
                new Fortimanager.Inputs.FmupdateWebspamFgdsettingServerOverrideServlistArgs
                {
                    Id = 0,
                    Ip = "string",
                    Ip6 = "string",
                    Port = 0,
                    ServiceType = "string",
                },
            },
            Status = "string",
        },
        StatLog = "string",
        StatLogInterval = 0,
        StatSyncInterval = 0,
        UpdateInterval = 0,
        UpdateLog = "string",
        WfCache = 0,
        WfDnCacheExpireTime = 0,
        WfDnCacheMaxNumber = 0,
        WfLog = "string",
        WfPreload = "string",
    });
    
    example, err := fortimanager.NewFmupdateWebspamFgdsetting(ctx, "fmupdateWebspamFgdsettingResource", &fortimanager.FmupdateWebspamFgdsettingArgs{
    AsCache: pulumi.Float64(0),
    AsLog: pulumi.String("string"),
    AsPreload: pulumi.String("string"),
    Av2Cache: pulumi.Float64(0),
    Av2Log: pulumi.String("string"),
    Av2Preload: pulumi.String("string"),
    AvCache: pulumi.Float64(0),
    AvLog: pulumi.String("string"),
    AvPreload: pulumi.String("string"),
    EventlogQuery: pulumi.String("string"),
    FgdPullInterval: pulumi.Float64(0),
    FmupdateWebspamFgdsettingId: pulumi.String("string"),
    FqCache: pulumi.Float64(0),
    FqLog: pulumi.String("string"),
    FqPreload: pulumi.String("string"),
    IotCache: pulumi.Float64(0),
    IotLog: pulumi.String("string"),
    IotPreload: pulumi.String("string"),
    IotvPreload: pulumi.String("string"),
    LinkdLog: pulumi.String("string"),
    MaxClientWorker: pulumi.Float64(0),
    MaxLogQuota: pulumi.Float64(0),
    MaxUnratedSite: pulumi.Float64(0),
    RestrictAs1Dbver: pulumi.String("string"),
    RestrictAs2Dbver: pulumi.String("string"),
    RestrictAs4Dbver: pulumi.String("string"),
    RestrictAv2Dbver: pulumi.String("string"),
    RestrictAvDbver: pulumi.String("string"),
    RestrictFqDbver: pulumi.String("string"),
    RestrictIotsDbver: pulumi.String("string"),
    RestrictWfDbver: pulumi.String("string"),
    ServerOverride: &.FmupdateWebspamFgdsettingServerOverrideArgs{
    Servlists: .FmupdateWebspamFgdsettingServerOverrideServlistArray{
    &.FmupdateWebspamFgdsettingServerOverrideServlistArgs{
    Id: pulumi.Float64(0),
    Ip: pulumi.String("string"),
    Ip6: pulumi.String("string"),
    Port: pulumi.Float64(0),
    ServiceType: pulumi.String("string"),
    },
    },
    Status: pulumi.String("string"),
    },
    StatLog: pulumi.String("string"),
    StatLogInterval: pulumi.Float64(0),
    StatSyncInterval: pulumi.Float64(0),
    UpdateInterval: pulumi.Float64(0),
    UpdateLog: pulumi.String("string"),
    WfCache: pulumi.Float64(0),
    WfDnCacheExpireTime: pulumi.Float64(0),
    WfDnCacheMaxNumber: pulumi.Float64(0),
    WfLog: pulumi.String("string"),
    WfPreload: pulumi.String("string"),
    })
    
    var fmupdateWebspamFgdsettingResource = new FmupdateWebspamFgdsetting("fmupdateWebspamFgdsettingResource", FmupdateWebspamFgdsettingArgs.builder()
        .asCache(0)
        .asLog("string")
        .asPreload("string")
        .av2Cache(0)
        .av2Log("string")
        .av2Preload("string")
        .avCache(0)
        .avLog("string")
        .avPreload("string")
        .eventlogQuery("string")
        .fgdPullInterval(0)
        .fmupdateWebspamFgdsettingId("string")
        .fqCache(0)
        .fqLog("string")
        .fqPreload("string")
        .iotCache(0)
        .iotLog("string")
        .iotPreload("string")
        .iotvPreload("string")
        .linkdLog("string")
        .maxClientWorker(0)
        .maxLogQuota(0)
        .maxUnratedSite(0)
        .restrictAs1Dbver("string")
        .restrictAs2Dbver("string")
        .restrictAs4Dbver("string")
        .restrictAv2Dbver("string")
        .restrictAvDbver("string")
        .restrictFqDbver("string")
        .restrictIotsDbver("string")
        .restrictWfDbver("string")
        .serverOverride(FmupdateWebspamFgdsettingServerOverrideArgs.builder()
            .servlists(FmupdateWebspamFgdsettingServerOverrideServlistArgs.builder()
                .id(0)
                .ip("string")
                .ip6("string")
                .port(0)
                .serviceType("string")
                .build())
            .status("string")
            .build())
        .statLog("string")
        .statLogInterval(0)
        .statSyncInterval(0)
        .updateInterval(0)
        .updateLog("string")
        .wfCache(0)
        .wfDnCacheExpireTime(0)
        .wfDnCacheMaxNumber(0)
        .wfLog("string")
        .wfPreload("string")
        .build());
    
    fmupdate_webspam_fgdsetting_resource = fortimanager.FmupdateWebspamFgdsetting("fmupdateWebspamFgdsettingResource",
        as_cache=0,
        as_log="string",
        as_preload="string",
        av2_cache=0,
        av2_log="string",
        av2_preload="string",
        av_cache=0,
        av_log="string",
        av_preload="string",
        eventlog_query="string",
        fgd_pull_interval=0,
        fmupdate_webspam_fgdsetting_id="string",
        fq_cache=0,
        fq_log="string",
        fq_preload="string",
        iot_cache=0,
        iot_log="string",
        iot_preload="string",
        iotv_preload="string",
        linkd_log="string",
        max_client_worker=0,
        max_log_quota=0,
        max_unrated_site=0,
        restrict_as1_dbver="string",
        restrict_as2_dbver="string",
        restrict_as4_dbver="string",
        restrict_av2_dbver="string",
        restrict_av_dbver="string",
        restrict_fq_dbver="string",
        restrict_iots_dbver="string",
        restrict_wf_dbver="string",
        server_override={
            "servlists": [{
                "id": 0,
                "ip": "string",
                "ip6": "string",
                "port": 0,
                "service_type": "string",
            }],
            "status": "string",
        },
        stat_log="string",
        stat_log_interval=0,
        stat_sync_interval=0,
        update_interval=0,
        update_log="string",
        wf_cache=0,
        wf_dn_cache_expire_time=0,
        wf_dn_cache_max_number=0,
        wf_log="string",
        wf_preload="string")
    
    const fmupdateWebspamFgdsettingResource = new fortimanager.FmupdateWebspamFgdsetting("fmupdateWebspamFgdsettingResource", {
        asCache: 0,
        asLog: "string",
        asPreload: "string",
        av2Cache: 0,
        av2Log: "string",
        av2Preload: "string",
        avCache: 0,
        avLog: "string",
        avPreload: "string",
        eventlogQuery: "string",
        fgdPullInterval: 0,
        fmupdateWebspamFgdsettingId: "string",
        fqCache: 0,
        fqLog: "string",
        fqPreload: "string",
        iotCache: 0,
        iotLog: "string",
        iotPreload: "string",
        iotvPreload: "string",
        linkdLog: "string",
        maxClientWorker: 0,
        maxLogQuota: 0,
        maxUnratedSite: 0,
        restrictAs1Dbver: "string",
        restrictAs2Dbver: "string",
        restrictAs4Dbver: "string",
        restrictAv2Dbver: "string",
        restrictAvDbver: "string",
        restrictFqDbver: "string",
        restrictIotsDbver: "string",
        restrictWfDbver: "string",
        serverOverride: {
            servlists: [{
                id: 0,
                ip: "string",
                ip6: "string",
                port: 0,
                serviceType: "string",
            }],
            status: "string",
        },
        statLog: "string",
        statLogInterval: 0,
        statSyncInterval: 0,
        updateInterval: 0,
        updateLog: "string",
        wfCache: 0,
        wfDnCacheExpireTime: 0,
        wfDnCacheMaxNumber: 0,
        wfLog: "string",
        wfPreload: "string",
    });
    
    type: fortimanager:FmupdateWebspamFgdsetting
    properties:
        asCache: 0
        asLog: string
        asPreload: string
        av2Cache: 0
        av2Log: string
        av2Preload: string
        avCache: 0
        avLog: string
        avPreload: string
        eventlogQuery: string
        fgdPullInterval: 0
        fmupdateWebspamFgdsettingId: string
        fqCache: 0
        fqLog: string
        fqPreload: string
        iotCache: 0
        iotLog: string
        iotPreload: string
        iotvPreload: string
        linkdLog: string
        maxClientWorker: 0
        maxLogQuota: 0
        maxUnratedSite: 0
        restrictAs1Dbver: string
        restrictAs2Dbver: string
        restrictAs4Dbver: string
        restrictAv2Dbver: string
        restrictAvDbver: string
        restrictFqDbver: string
        restrictIotsDbver: string
        restrictWfDbver: string
        serverOverride:
            servlists:
                - id: 0
                  ip: string
                  ip6: string
                  port: 0
                  serviceType: string
            status: string
        statLog: string
        statLogInterval: 0
        statSyncInterval: 0
        updateInterval: 0
        updateLog: string
        wfCache: 0
        wfDnCacheExpireTime: 0
        wfDnCacheMaxNumber: 0
        wfLog: string
        wfPreload: string
    

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

    AsCache double
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 300).
    AsLog string
    Antispam log setting (default = nospam). disable - Disable spam log. nospam - Log non-spam events. all - Log all spam lookups. Valid values: disable, nospam, all.
    AsPreload string
    Enable/disable preloading antispam database to memory (default = disable). disable - Disable antispam database preload. enable - Enable antispam database preload. Valid values: disable, enable.
    Av2Cache double
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 800).
    Av2Log string
    Outbreak prevention log setting (default = noav2). disable - Disable av2 log. noav2 - Log non-av2 events. all - Log all av2 lookups. Valid values: disable, noav2, all.
    Av2Preload string
    Enable/disable preloading outbreak prevention database to memory (default = disable). disable - Disable outbreak prevention database preload. enable - Enable outbreak prevention database preload. Valid values: disable, enable.
    AvCache double
    Antivirus service maximum memory usage, in megabytes (100 - 500, default = 300).
    AvLog string
    Antivirus log setting (default = novirus). disable - Disable virus log. novirus - Log non-virus events. all - Log all virus lookups. Valid values: disable, novirus, all.
    AvPreload string
    Enable/disable preloading antivirus database to memory (default = disable). disable - Disable antivirus database preload. enable - Enable antivirus database preload. Valid values: disable, enable.
    EventlogQuery string
    Enable/disable record query to event-log besides fgd-log (default = disable). disable - Record query to event-log besides fgd-log. enable - Do not log to event-log. Valid values: disable, enable.
    FgdPullInterval double
    Fgd pull interval setting, in minutes (1 - 1440, default = 10).
    FmupdateWebspamFgdsettingId string
    an identifier for the resource.
    FqCache double
    File query service maximum memory usage, in megabytes (100 - 500, default = 300).
    FqLog string
    File query log setting (default = nofilequery). disable - Disable file query log. nofilequery - Log non-file query events. all - Log all file query events. Valid values: disable, nofilequery, all.
    FqPreload string
    Enable/disable preloading file query database to memory (default = disable). disable - Disable file query db preload. enable - Enable file query db preload. Valid values: disable, enable.
    IotCache double
    IoT service maximum memory usage, in megabytes (100 - 500, default = 300).
    IotLog string
    IoT log setting (default = nofilequery). disable - Disable IoT log. nofilequery - Log non-IoT events. all - Log all IoT events. Valid values: disable, nofilequery, all.
    IotPreload string
    Enable/disable preloading IoT database to memory (default = disable). disable - Disable IoT db preload. enable - Enable IoT db preload. Valid values: disable, enable.
    IotvPreload string
    Enable/disable preloading IoT-Vulnerability database to memory (default = disable). disable - Disable IoT-Vulnerability db preload. enable - Enable IoT-Vulnerability db preload. Valid values: disable, enable.
    LinkdLog string
    Linkd log setting (default = debug). emergency - The unit is unusable. alert - Immediate action is required critical - Functionality is affected. error - Functionality is probably affected. warn - Functionality might be affected. notice - Information about normal events. info - General information. debug - Debug information. disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    MaxClientWorker double
    max worker for tcp client connection (0~16: 0 means use cpu number up to 4).
    MaxLogQuota double
    Maximum log quota setting, in megabytes (100 - 20480, default = 6144).
    MaxUnratedSite double
    Maximum number of unrated site in memory, in kilobytes(10 - 5120, default = 500).
    RestrictAs1Dbver string
    Restrict system update to indicated antispam(1) database version (character limit = 127).
    RestrictAs2Dbver string
    Restrict system update to indicated antispam(2) database version (character limit = 127).
    RestrictAs4Dbver string
    Restrict system update to indicated antispam(4) database version (character limit = 127).
    RestrictAv2Dbver string
    Restrict system update to indicated outbreak prevention database version (character limit = 127).
    RestrictAvDbver string
    Restrict system update to indicated antivirus database version (character limit = 127).
    RestrictFqDbver string
    Restrict system update to indicated file query database version (character limit = 127).
    RestrictIotsDbver string
    Restrict system update to indicated file query database version (character limit = 127).
    RestrictWfDbver string
    Restrict system update to indicated web filter database version (character limit = 127).
    ServerOverride FmupdateWebspamFgdsettingServerOverride
    Server-Override. The structure of server_override block is documented below.
    StatLog string
    stat log setting (default = disable). emergency - The unit is unusable(0). alert - Immediate action is required(1) critical - Functionality is affected(2). error - Functionality is probably affected(3). warn - Functionality might be affected(4). notice - Information about normal events(5). info - General information(6). debug - Debug information(7). disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    StatLogInterval double
    Statistic log interval setting, in minutes (1 - 1440, default = 60).
    StatSyncInterval double
    Synchronization interval for statistic of unrated site in minutes (1 - 60, default = 60).
    UpdateInterval double
    FortiGuard database update wait time if not enough delta files, in hours (2 - 24, default = 6).
    UpdateLog string
    Enable/disable update log setting (default = enable). disable - Disable update log. enable - Enable update log. Valid values: disable, enable.
    WfCache double
    Web filter service maximum memory usage, in megabytes (maximum = Physical memory-1024, 0 = no limit, default = 600).
    WfDnCacheExpireTime double
    Web filter DN cache expire time, in minutes (1 - 1440, 0 = never, default = 30).
    WfDnCacheMaxNumber double
    Maximum number of Web filter DN cache (0 = disable, default = 10000).
    WfLog string
    Web filter log setting (default = nour1) disable - Disable URL log. nourl - Log non-URL events. all - Log all URL lookups. Valid values: disable, nourl, all.
    WfPreload string
    Enable/disable preloading the web filter database into memory (default = disable). disable - Disable web filter database preload. enable - Enable web filter database preload. Valid values: disable, enable.
    AsCache float64
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 300).
    AsLog string
    Antispam log setting (default = nospam). disable - Disable spam log. nospam - Log non-spam events. all - Log all spam lookups. Valid values: disable, nospam, all.
    AsPreload string
    Enable/disable preloading antispam database to memory (default = disable). disable - Disable antispam database preload. enable - Enable antispam database preload. Valid values: disable, enable.
    Av2Cache float64
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 800).
    Av2Log string
    Outbreak prevention log setting (default = noav2). disable - Disable av2 log. noav2 - Log non-av2 events. all - Log all av2 lookups. Valid values: disable, noav2, all.
    Av2Preload string
    Enable/disable preloading outbreak prevention database to memory (default = disable). disable - Disable outbreak prevention database preload. enable - Enable outbreak prevention database preload. Valid values: disable, enable.
    AvCache float64
    Antivirus service maximum memory usage, in megabytes (100 - 500, default = 300).
    AvLog string
    Antivirus log setting (default = novirus). disable - Disable virus log. novirus - Log non-virus events. all - Log all virus lookups. Valid values: disable, novirus, all.
    AvPreload string
    Enable/disable preloading antivirus database to memory (default = disable). disable - Disable antivirus database preload. enable - Enable antivirus database preload. Valid values: disable, enable.
    EventlogQuery string
    Enable/disable record query to event-log besides fgd-log (default = disable). disable - Record query to event-log besides fgd-log. enable - Do not log to event-log. Valid values: disable, enable.
    FgdPullInterval float64
    Fgd pull interval setting, in minutes (1 - 1440, default = 10).
    FmupdateWebspamFgdsettingId string
    an identifier for the resource.
    FqCache float64
    File query service maximum memory usage, in megabytes (100 - 500, default = 300).
    FqLog string
    File query log setting (default = nofilequery). disable - Disable file query log. nofilequery - Log non-file query events. all - Log all file query events. Valid values: disable, nofilequery, all.
    FqPreload string
    Enable/disable preloading file query database to memory (default = disable). disable - Disable file query db preload. enable - Enable file query db preload. Valid values: disable, enable.
    IotCache float64
    IoT service maximum memory usage, in megabytes (100 - 500, default = 300).
    IotLog string
    IoT log setting (default = nofilequery). disable - Disable IoT log. nofilequery - Log non-IoT events. all - Log all IoT events. Valid values: disable, nofilequery, all.
    IotPreload string
    Enable/disable preloading IoT database to memory (default = disable). disable - Disable IoT db preload. enable - Enable IoT db preload. Valid values: disable, enable.
    IotvPreload string
    Enable/disable preloading IoT-Vulnerability database to memory (default = disable). disable - Disable IoT-Vulnerability db preload. enable - Enable IoT-Vulnerability db preload. Valid values: disable, enable.
    LinkdLog string
    Linkd log setting (default = debug). emergency - The unit is unusable. alert - Immediate action is required critical - Functionality is affected. error - Functionality is probably affected. warn - Functionality might be affected. notice - Information about normal events. info - General information. debug - Debug information. disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    MaxClientWorker float64
    max worker for tcp client connection (0~16: 0 means use cpu number up to 4).
    MaxLogQuota float64
    Maximum log quota setting, in megabytes (100 - 20480, default = 6144).
    MaxUnratedSite float64
    Maximum number of unrated site in memory, in kilobytes(10 - 5120, default = 500).
    RestrictAs1Dbver string
    Restrict system update to indicated antispam(1) database version (character limit = 127).
    RestrictAs2Dbver string
    Restrict system update to indicated antispam(2) database version (character limit = 127).
    RestrictAs4Dbver string
    Restrict system update to indicated antispam(4) database version (character limit = 127).
    RestrictAv2Dbver string
    Restrict system update to indicated outbreak prevention database version (character limit = 127).
    RestrictAvDbver string
    Restrict system update to indicated antivirus database version (character limit = 127).
    RestrictFqDbver string
    Restrict system update to indicated file query database version (character limit = 127).
    RestrictIotsDbver string
    Restrict system update to indicated file query database version (character limit = 127).
    RestrictWfDbver string
    Restrict system update to indicated web filter database version (character limit = 127).
    ServerOverride FmupdateWebspamFgdsettingServerOverrideArgs
    Server-Override. The structure of server_override block is documented below.
    StatLog string
    stat log setting (default = disable). emergency - The unit is unusable(0). alert - Immediate action is required(1) critical - Functionality is affected(2). error - Functionality is probably affected(3). warn - Functionality might be affected(4). notice - Information about normal events(5). info - General information(6). debug - Debug information(7). disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    StatLogInterval float64
    Statistic log interval setting, in minutes (1 - 1440, default = 60).
    StatSyncInterval float64
    Synchronization interval for statistic of unrated site in minutes (1 - 60, default = 60).
    UpdateInterval float64
    FortiGuard database update wait time if not enough delta files, in hours (2 - 24, default = 6).
    UpdateLog string
    Enable/disable update log setting (default = enable). disable - Disable update log. enable - Enable update log. Valid values: disable, enable.
    WfCache float64
    Web filter service maximum memory usage, in megabytes (maximum = Physical memory-1024, 0 = no limit, default = 600).
    WfDnCacheExpireTime float64
    Web filter DN cache expire time, in minutes (1 - 1440, 0 = never, default = 30).
    WfDnCacheMaxNumber float64
    Maximum number of Web filter DN cache (0 = disable, default = 10000).
    WfLog string
    Web filter log setting (default = nour1) disable - Disable URL log. nourl - Log non-URL events. all - Log all URL lookups. Valid values: disable, nourl, all.
    WfPreload string
    Enable/disable preloading the web filter database into memory (default = disable). disable - Disable web filter database preload. enable - Enable web filter database preload. Valid values: disable, enable.
    asCache Double
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 300).
    asLog String
    Antispam log setting (default = nospam). disable - Disable spam log. nospam - Log non-spam events. all - Log all spam lookups. Valid values: disable, nospam, all.
    asPreload String
    Enable/disable preloading antispam database to memory (default = disable). disable - Disable antispam database preload. enable - Enable antispam database preload. Valid values: disable, enable.
    av2Cache Double
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 800).
    av2Log String
    Outbreak prevention log setting (default = noav2). disable - Disable av2 log. noav2 - Log non-av2 events. all - Log all av2 lookups. Valid values: disable, noav2, all.
    av2Preload String
    Enable/disable preloading outbreak prevention database to memory (default = disable). disable - Disable outbreak prevention database preload. enable - Enable outbreak prevention database preload. Valid values: disable, enable.
    avCache Double
    Antivirus service maximum memory usage, in megabytes (100 - 500, default = 300).
    avLog String
    Antivirus log setting (default = novirus). disable - Disable virus log. novirus - Log non-virus events. all - Log all virus lookups. Valid values: disable, novirus, all.
    avPreload String
    Enable/disable preloading antivirus database to memory (default = disable). disable - Disable antivirus database preload. enable - Enable antivirus database preload. Valid values: disable, enable.
    eventlogQuery String
    Enable/disable record query to event-log besides fgd-log (default = disable). disable - Record query to event-log besides fgd-log. enable - Do not log to event-log. Valid values: disable, enable.
    fgdPullInterval Double
    Fgd pull interval setting, in minutes (1 - 1440, default = 10).
    fmupdateWebspamFgdsettingId String
    an identifier for the resource.
    fqCache Double
    File query service maximum memory usage, in megabytes (100 - 500, default = 300).
    fqLog String
    File query log setting (default = nofilequery). disable - Disable file query log. nofilequery - Log non-file query events. all - Log all file query events. Valid values: disable, nofilequery, all.
    fqPreload String
    Enable/disable preloading file query database to memory (default = disable). disable - Disable file query db preload. enable - Enable file query db preload. Valid values: disable, enable.
    iotCache Double
    IoT service maximum memory usage, in megabytes (100 - 500, default = 300).
    iotLog String
    IoT log setting (default = nofilequery). disable - Disable IoT log. nofilequery - Log non-IoT events. all - Log all IoT events. Valid values: disable, nofilequery, all.
    iotPreload String
    Enable/disable preloading IoT database to memory (default = disable). disable - Disable IoT db preload. enable - Enable IoT db preload. Valid values: disable, enable.
    iotvPreload String
    Enable/disable preloading IoT-Vulnerability database to memory (default = disable). disable - Disable IoT-Vulnerability db preload. enable - Enable IoT-Vulnerability db preload. Valid values: disable, enable.
    linkdLog String
    Linkd log setting (default = debug). emergency - The unit is unusable. alert - Immediate action is required critical - Functionality is affected. error - Functionality is probably affected. warn - Functionality might be affected. notice - Information about normal events. info - General information. debug - Debug information. disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    maxClientWorker Double
    max worker for tcp client connection (0~16: 0 means use cpu number up to 4).
    maxLogQuota Double
    Maximum log quota setting, in megabytes (100 - 20480, default = 6144).
    maxUnratedSite Double
    Maximum number of unrated site in memory, in kilobytes(10 - 5120, default = 500).
    restrictAs1Dbver String
    Restrict system update to indicated antispam(1) database version (character limit = 127).
    restrictAs2Dbver String
    Restrict system update to indicated antispam(2) database version (character limit = 127).
    restrictAs4Dbver String
    Restrict system update to indicated antispam(4) database version (character limit = 127).
    restrictAv2Dbver String
    Restrict system update to indicated outbreak prevention database version (character limit = 127).
    restrictAvDbver String
    Restrict system update to indicated antivirus database version (character limit = 127).
    restrictFqDbver String
    Restrict system update to indicated file query database version (character limit = 127).
    restrictIotsDbver String
    Restrict system update to indicated file query database version (character limit = 127).
    restrictWfDbver String
    Restrict system update to indicated web filter database version (character limit = 127).
    serverOverride FmupdateWebspamFgdsettingServerOverride
    Server-Override. The structure of server_override block is documented below.
    statLog String
    stat log setting (default = disable). emergency - The unit is unusable(0). alert - Immediate action is required(1) critical - Functionality is affected(2). error - Functionality is probably affected(3). warn - Functionality might be affected(4). notice - Information about normal events(5). info - General information(6). debug - Debug information(7). disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    statLogInterval Double
    Statistic log interval setting, in minutes (1 - 1440, default = 60).
    statSyncInterval Double
    Synchronization interval for statistic of unrated site in minutes (1 - 60, default = 60).
    updateInterval Double
    FortiGuard database update wait time if not enough delta files, in hours (2 - 24, default = 6).
    updateLog String
    Enable/disable update log setting (default = enable). disable - Disable update log. enable - Enable update log. Valid values: disable, enable.
    wfCache Double
    Web filter service maximum memory usage, in megabytes (maximum = Physical memory-1024, 0 = no limit, default = 600).
    wfDnCacheExpireTime Double
    Web filter DN cache expire time, in minutes (1 - 1440, 0 = never, default = 30).
    wfDnCacheMaxNumber Double
    Maximum number of Web filter DN cache (0 = disable, default = 10000).
    wfLog String
    Web filter log setting (default = nour1) disable - Disable URL log. nourl - Log non-URL events. all - Log all URL lookups. Valid values: disable, nourl, all.
    wfPreload String
    Enable/disable preloading the web filter database into memory (default = disable). disable - Disable web filter database preload. enable - Enable web filter database preload. Valid values: disable, enable.
    asCache number
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 300).
    asLog string
    Antispam log setting (default = nospam). disable - Disable spam log. nospam - Log non-spam events. all - Log all spam lookups. Valid values: disable, nospam, all.
    asPreload string
    Enable/disable preloading antispam database to memory (default = disable). disable - Disable antispam database preload. enable - Enable antispam database preload. Valid values: disable, enable.
    av2Cache number
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 800).
    av2Log string
    Outbreak prevention log setting (default = noav2). disable - Disable av2 log. noav2 - Log non-av2 events. all - Log all av2 lookups. Valid values: disable, noav2, all.
    av2Preload string
    Enable/disable preloading outbreak prevention database to memory (default = disable). disable - Disable outbreak prevention database preload. enable - Enable outbreak prevention database preload. Valid values: disable, enable.
    avCache number
    Antivirus service maximum memory usage, in megabytes (100 - 500, default = 300).
    avLog string
    Antivirus log setting (default = novirus). disable - Disable virus log. novirus - Log non-virus events. all - Log all virus lookups. Valid values: disable, novirus, all.
    avPreload string
    Enable/disable preloading antivirus database to memory (default = disable). disable - Disable antivirus database preload. enable - Enable antivirus database preload. Valid values: disable, enable.
    eventlogQuery string
    Enable/disable record query to event-log besides fgd-log (default = disable). disable - Record query to event-log besides fgd-log. enable - Do not log to event-log. Valid values: disable, enable.
    fgdPullInterval number
    Fgd pull interval setting, in minutes (1 - 1440, default = 10).
    fmupdateWebspamFgdsettingId string
    an identifier for the resource.
    fqCache number
    File query service maximum memory usage, in megabytes (100 - 500, default = 300).
    fqLog string
    File query log setting (default = nofilequery). disable - Disable file query log. nofilequery - Log non-file query events. all - Log all file query events. Valid values: disable, nofilequery, all.
    fqPreload string
    Enable/disable preloading file query database to memory (default = disable). disable - Disable file query db preload. enable - Enable file query db preload. Valid values: disable, enable.
    iotCache number
    IoT service maximum memory usage, in megabytes (100 - 500, default = 300).
    iotLog string
    IoT log setting (default = nofilequery). disable - Disable IoT log. nofilequery - Log non-IoT events. all - Log all IoT events. Valid values: disable, nofilequery, all.
    iotPreload string
    Enable/disable preloading IoT database to memory (default = disable). disable - Disable IoT db preload. enable - Enable IoT db preload. Valid values: disable, enable.
    iotvPreload string
    Enable/disable preloading IoT-Vulnerability database to memory (default = disable). disable - Disable IoT-Vulnerability db preload. enable - Enable IoT-Vulnerability db preload. Valid values: disable, enable.
    linkdLog string
    Linkd log setting (default = debug). emergency - The unit is unusable. alert - Immediate action is required critical - Functionality is affected. error - Functionality is probably affected. warn - Functionality might be affected. notice - Information about normal events. info - General information. debug - Debug information. disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    maxClientWorker number
    max worker for tcp client connection (0~16: 0 means use cpu number up to 4).
    maxLogQuota number
    Maximum log quota setting, in megabytes (100 - 20480, default = 6144).
    maxUnratedSite number
    Maximum number of unrated site in memory, in kilobytes(10 - 5120, default = 500).
    restrictAs1Dbver string
    Restrict system update to indicated antispam(1) database version (character limit = 127).
    restrictAs2Dbver string
    Restrict system update to indicated antispam(2) database version (character limit = 127).
    restrictAs4Dbver string
    Restrict system update to indicated antispam(4) database version (character limit = 127).
    restrictAv2Dbver string
    Restrict system update to indicated outbreak prevention database version (character limit = 127).
    restrictAvDbver string
    Restrict system update to indicated antivirus database version (character limit = 127).
    restrictFqDbver string
    Restrict system update to indicated file query database version (character limit = 127).
    restrictIotsDbver string
    Restrict system update to indicated file query database version (character limit = 127).
    restrictWfDbver string
    Restrict system update to indicated web filter database version (character limit = 127).
    serverOverride FmupdateWebspamFgdsettingServerOverride
    Server-Override. The structure of server_override block is documented below.
    statLog string
    stat log setting (default = disable). emergency - The unit is unusable(0). alert - Immediate action is required(1) critical - Functionality is affected(2). error - Functionality is probably affected(3). warn - Functionality might be affected(4). notice - Information about normal events(5). info - General information(6). debug - Debug information(7). disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    statLogInterval number
    Statistic log interval setting, in minutes (1 - 1440, default = 60).
    statSyncInterval number
    Synchronization interval for statistic of unrated site in minutes (1 - 60, default = 60).
    updateInterval number
    FortiGuard database update wait time if not enough delta files, in hours (2 - 24, default = 6).
    updateLog string
    Enable/disable update log setting (default = enable). disable - Disable update log. enable - Enable update log. Valid values: disable, enable.
    wfCache number
    Web filter service maximum memory usage, in megabytes (maximum = Physical memory-1024, 0 = no limit, default = 600).
    wfDnCacheExpireTime number
    Web filter DN cache expire time, in minutes (1 - 1440, 0 = never, default = 30).
    wfDnCacheMaxNumber number
    Maximum number of Web filter DN cache (0 = disable, default = 10000).
    wfLog string
    Web filter log setting (default = nour1) disable - Disable URL log. nourl - Log non-URL events. all - Log all URL lookups. Valid values: disable, nourl, all.
    wfPreload string
    Enable/disable preloading the web filter database into memory (default = disable). disable - Disable web filter database preload. enable - Enable web filter database preload. Valid values: disable, enable.
    as_cache float
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 300).
    as_log str
    Antispam log setting (default = nospam). disable - Disable spam log. nospam - Log non-spam events. all - Log all spam lookups. Valid values: disable, nospam, all.
    as_preload str
    Enable/disable preloading antispam database to memory (default = disable). disable - Disable antispam database preload. enable - Enable antispam database preload. Valid values: disable, enable.
    av2_cache float
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 800).
    av2_log str
    Outbreak prevention log setting (default = noav2). disable - Disable av2 log. noav2 - Log non-av2 events. all - Log all av2 lookups. Valid values: disable, noav2, all.
    av2_preload str
    Enable/disable preloading outbreak prevention database to memory (default = disable). disable - Disable outbreak prevention database preload. enable - Enable outbreak prevention database preload. Valid values: disable, enable.
    av_cache float
    Antivirus service maximum memory usage, in megabytes (100 - 500, default = 300).
    av_log str
    Antivirus log setting (default = novirus). disable - Disable virus log. novirus - Log non-virus events. all - Log all virus lookups. Valid values: disable, novirus, all.
    av_preload str
    Enable/disable preloading antivirus database to memory (default = disable). disable - Disable antivirus database preload. enable - Enable antivirus database preload. Valid values: disable, enable.
    eventlog_query str
    Enable/disable record query to event-log besides fgd-log (default = disable). disable - Record query to event-log besides fgd-log. enable - Do not log to event-log. Valid values: disable, enable.
    fgd_pull_interval float
    Fgd pull interval setting, in minutes (1 - 1440, default = 10).
    fmupdate_webspam_fgdsetting_id str
    an identifier for the resource.
    fq_cache float
    File query service maximum memory usage, in megabytes (100 - 500, default = 300).
    fq_log str
    File query log setting (default = nofilequery). disable - Disable file query log. nofilequery - Log non-file query events. all - Log all file query events. Valid values: disable, nofilequery, all.
    fq_preload str
    Enable/disable preloading file query database to memory (default = disable). disable - Disable file query db preload. enable - Enable file query db preload. Valid values: disable, enable.
    iot_cache float
    IoT service maximum memory usage, in megabytes (100 - 500, default = 300).
    iot_log str
    IoT log setting (default = nofilequery). disable - Disable IoT log. nofilequery - Log non-IoT events. all - Log all IoT events. Valid values: disable, nofilequery, all.
    iot_preload str
    Enable/disable preloading IoT database to memory (default = disable). disable - Disable IoT db preload. enable - Enable IoT db preload. Valid values: disable, enable.
    iotv_preload str
    Enable/disable preloading IoT-Vulnerability database to memory (default = disable). disable - Disable IoT-Vulnerability db preload. enable - Enable IoT-Vulnerability db preload. Valid values: disable, enable.
    linkd_log str
    Linkd log setting (default = debug). emergency - The unit is unusable. alert - Immediate action is required critical - Functionality is affected. error - Functionality is probably affected. warn - Functionality might be affected. notice - Information about normal events. info - General information. debug - Debug information. disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    max_client_worker float
    max worker for tcp client connection (0~16: 0 means use cpu number up to 4).
    max_log_quota float
    Maximum log quota setting, in megabytes (100 - 20480, default = 6144).
    max_unrated_site float
    Maximum number of unrated site in memory, in kilobytes(10 - 5120, default = 500).
    restrict_as1_dbver str
    Restrict system update to indicated antispam(1) database version (character limit = 127).
    restrict_as2_dbver str
    Restrict system update to indicated antispam(2) database version (character limit = 127).
    restrict_as4_dbver str
    Restrict system update to indicated antispam(4) database version (character limit = 127).
    restrict_av2_dbver str
    Restrict system update to indicated outbreak prevention database version (character limit = 127).
    restrict_av_dbver str
    Restrict system update to indicated antivirus database version (character limit = 127).
    restrict_fq_dbver str
    Restrict system update to indicated file query database version (character limit = 127).
    restrict_iots_dbver str
    Restrict system update to indicated file query database version (character limit = 127).
    restrict_wf_dbver str
    Restrict system update to indicated web filter database version (character limit = 127).
    server_override FmupdateWebspamFgdsettingServerOverrideArgs
    Server-Override. The structure of server_override block is documented below.
    stat_log str
    stat log setting (default = disable). emergency - The unit is unusable(0). alert - Immediate action is required(1) critical - Functionality is affected(2). error - Functionality is probably affected(3). warn - Functionality might be affected(4). notice - Information about normal events(5). info - General information(6). debug - Debug information(7). disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    stat_log_interval float
    Statistic log interval setting, in minutes (1 - 1440, default = 60).
    stat_sync_interval float
    Synchronization interval for statistic of unrated site in minutes (1 - 60, default = 60).
    update_interval float
    FortiGuard database update wait time if not enough delta files, in hours (2 - 24, default = 6).
    update_log str
    Enable/disable update log setting (default = enable). disable - Disable update log. enable - Enable update log. Valid values: disable, enable.
    wf_cache float
    Web filter service maximum memory usage, in megabytes (maximum = Physical memory-1024, 0 = no limit, default = 600).
    wf_dn_cache_expire_time float
    Web filter DN cache expire time, in minutes (1 - 1440, 0 = never, default = 30).
    wf_dn_cache_max_number float
    Maximum number of Web filter DN cache (0 = disable, default = 10000).
    wf_log str
    Web filter log setting (default = nour1) disable - Disable URL log. nourl - Log non-URL events. all - Log all URL lookups. Valid values: disable, nourl, all.
    wf_preload str
    Enable/disable preloading the web filter database into memory (default = disable). disable - Disable web filter database preload. enable - Enable web filter database preload. Valid values: disable, enable.
    asCache Number
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 300).
    asLog String
    Antispam log setting (default = nospam). disable - Disable spam log. nospam - Log non-spam events. all - Log all spam lookups. Valid values: disable, nospam, all.
    asPreload String
    Enable/disable preloading antispam database to memory (default = disable). disable - Disable antispam database preload. enable - Enable antispam database preload. Valid values: disable, enable.
    av2Cache Number
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 800).
    av2Log String
    Outbreak prevention log setting (default = noav2). disable - Disable av2 log. noav2 - Log non-av2 events. all - Log all av2 lookups. Valid values: disable, noav2, all.
    av2Preload String
    Enable/disable preloading outbreak prevention database to memory (default = disable). disable - Disable outbreak prevention database preload. enable - Enable outbreak prevention database preload. Valid values: disable, enable.
    avCache Number
    Antivirus service maximum memory usage, in megabytes (100 - 500, default = 300).
    avLog String
    Antivirus log setting (default = novirus). disable - Disable virus log. novirus - Log non-virus events. all - Log all virus lookups. Valid values: disable, novirus, all.
    avPreload String
    Enable/disable preloading antivirus database to memory (default = disable). disable - Disable antivirus database preload. enable - Enable antivirus database preload. Valid values: disable, enable.
    eventlogQuery String
    Enable/disable record query to event-log besides fgd-log (default = disable). disable - Record query to event-log besides fgd-log. enable - Do not log to event-log. Valid values: disable, enable.
    fgdPullInterval Number
    Fgd pull interval setting, in minutes (1 - 1440, default = 10).
    fmupdateWebspamFgdsettingId String
    an identifier for the resource.
    fqCache Number
    File query service maximum memory usage, in megabytes (100 - 500, default = 300).
    fqLog String
    File query log setting (default = nofilequery). disable - Disable file query log. nofilequery - Log non-file query events. all - Log all file query events. Valid values: disable, nofilequery, all.
    fqPreload String
    Enable/disable preloading file query database to memory (default = disable). disable - Disable file query db preload. enable - Enable file query db preload. Valid values: disable, enable.
    iotCache Number
    IoT service maximum memory usage, in megabytes (100 - 500, default = 300).
    iotLog String
    IoT log setting (default = nofilequery). disable - Disable IoT log. nofilequery - Log non-IoT events. all - Log all IoT events. Valid values: disable, nofilequery, all.
    iotPreload String
    Enable/disable preloading IoT database to memory (default = disable). disable - Disable IoT db preload. enable - Enable IoT db preload. Valid values: disable, enable.
    iotvPreload String
    Enable/disable preloading IoT-Vulnerability database to memory (default = disable). disable - Disable IoT-Vulnerability db preload. enable - Enable IoT-Vulnerability db preload. Valid values: disable, enable.
    linkdLog String
    Linkd log setting (default = debug). emergency - The unit is unusable. alert - Immediate action is required critical - Functionality is affected. error - Functionality is probably affected. warn - Functionality might be affected. notice - Information about normal events. info - General information. debug - Debug information. disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    maxClientWorker Number
    max worker for tcp client connection (0~16: 0 means use cpu number up to 4).
    maxLogQuota Number
    Maximum log quota setting, in megabytes (100 - 20480, default = 6144).
    maxUnratedSite Number
    Maximum number of unrated site in memory, in kilobytes(10 - 5120, default = 500).
    restrictAs1Dbver String
    Restrict system update to indicated antispam(1) database version (character limit = 127).
    restrictAs2Dbver String
    Restrict system update to indicated antispam(2) database version (character limit = 127).
    restrictAs4Dbver String
    Restrict system update to indicated antispam(4) database version (character limit = 127).
    restrictAv2Dbver String
    Restrict system update to indicated outbreak prevention database version (character limit = 127).
    restrictAvDbver String
    Restrict system update to indicated antivirus database version (character limit = 127).
    restrictFqDbver String
    Restrict system update to indicated file query database version (character limit = 127).
    restrictIotsDbver String
    Restrict system update to indicated file query database version (character limit = 127).
    restrictWfDbver String
    Restrict system update to indicated web filter database version (character limit = 127).
    serverOverride Property Map
    Server-Override. The structure of server_override block is documented below.
    statLog String
    stat log setting (default = disable). emergency - The unit is unusable(0). alert - Immediate action is required(1) critical - Functionality is affected(2). error - Functionality is probably affected(3). warn - Functionality might be affected(4). notice - Information about normal events(5). info - General information(6). debug - Debug information(7). disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    statLogInterval Number
    Statistic log interval setting, in minutes (1 - 1440, default = 60).
    statSyncInterval Number
    Synchronization interval for statistic of unrated site in minutes (1 - 60, default = 60).
    updateInterval Number
    FortiGuard database update wait time if not enough delta files, in hours (2 - 24, default = 6).
    updateLog String
    Enable/disable update log setting (default = enable). disable - Disable update log. enable - Enable update log. Valid values: disable, enable.
    wfCache Number
    Web filter service maximum memory usage, in megabytes (maximum = Physical memory-1024, 0 = no limit, default = 600).
    wfDnCacheExpireTime Number
    Web filter DN cache expire time, in minutes (1 - 1440, 0 = never, default = 30).
    wfDnCacheMaxNumber Number
    Maximum number of Web filter DN cache (0 = disable, default = 10000).
    wfLog String
    Web filter log setting (default = nour1) disable - Disable URL log. nourl - Log non-URL events. all - Log all URL lookups. Valid values: disable, nourl, all.
    wfPreload String
    Enable/disable preloading the web filter database into memory (default = disable). disable - Disable web filter database preload. enable - Enable web filter database preload. Valid values: disable, enable.

    Outputs

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

    Get an existing FmupdateWebspamFgdsetting 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?: FmupdateWebspamFgdsettingState, opts?: CustomResourceOptions): FmupdateWebspamFgdsetting
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            as_cache: Optional[float] = None,
            as_log: Optional[str] = None,
            as_preload: Optional[str] = None,
            av2_cache: Optional[float] = None,
            av2_log: Optional[str] = None,
            av2_preload: Optional[str] = None,
            av_cache: Optional[float] = None,
            av_log: Optional[str] = None,
            av_preload: Optional[str] = None,
            eventlog_query: Optional[str] = None,
            fgd_pull_interval: Optional[float] = None,
            fmupdate_webspam_fgdsetting_id: Optional[str] = None,
            fq_cache: Optional[float] = None,
            fq_log: Optional[str] = None,
            fq_preload: Optional[str] = None,
            iot_cache: Optional[float] = None,
            iot_log: Optional[str] = None,
            iot_preload: Optional[str] = None,
            iotv_preload: Optional[str] = None,
            linkd_log: Optional[str] = None,
            max_client_worker: Optional[float] = None,
            max_log_quota: Optional[float] = None,
            max_unrated_site: Optional[float] = None,
            restrict_as1_dbver: Optional[str] = None,
            restrict_as2_dbver: Optional[str] = None,
            restrict_as4_dbver: Optional[str] = None,
            restrict_av2_dbver: Optional[str] = None,
            restrict_av_dbver: Optional[str] = None,
            restrict_fq_dbver: Optional[str] = None,
            restrict_iots_dbver: Optional[str] = None,
            restrict_wf_dbver: Optional[str] = None,
            server_override: Optional[FmupdateWebspamFgdsettingServerOverrideArgs] = None,
            stat_log: Optional[str] = None,
            stat_log_interval: Optional[float] = None,
            stat_sync_interval: Optional[float] = None,
            update_interval: Optional[float] = None,
            update_log: Optional[str] = None,
            wf_cache: Optional[float] = None,
            wf_dn_cache_expire_time: Optional[float] = None,
            wf_dn_cache_max_number: Optional[float] = None,
            wf_log: Optional[str] = None,
            wf_preload: Optional[str] = None) -> FmupdateWebspamFgdsetting
    func GetFmupdateWebspamFgdsetting(ctx *Context, name string, id IDInput, state *FmupdateWebspamFgdsettingState, opts ...ResourceOption) (*FmupdateWebspamFgdsetting, error)
    public static FmupdateWebspamFgdsetting Get(string name, Input<string> id, FmupdateWebspamFgdsettingState? state, CustomResourceOptions? opts = null)
    public static FmupdateWebspamFgdsetting get(String name, Output<String> id, FmupdateWebspamFgdsettingState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:FmupdateWebspamFgdsetting    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:
    AsCache double
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 300).
    AsLog string
    Antispam log setting (default = nospam). disable - Disable spam log. nospam - Log non-spam events. all - Log all spam lookups. Valid values: disable, nospam, all.
    AsPreload string
    Enable/disable preloading antispam database to memory (default = disable). disable - Disable antispam database preload. enable - Enable antispam database preload. Valid values: disable, enable.
    Av2Cache double
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 800).
    Av2Log string
    Outbreak prevention log setting (default = noav2). disable - Disable av2 log. noav2 - Log non-av2 events. all - Log all av2 lookups. Valid values: disable, noav2, all.
    Av2Preload string
    Enable/disable preloading outbreak prevention database to memory (default = disable). disable - Disable outbreak prevention database preload. enable - Enable outbreak prevention database preload. Valid values: disable, enable.
    AvCache double
    Antivirus service maximum memory usage, in megabytes (100 - 500, default = 300).
    AvLog string
    Antivirus log setting (default = novirus). disable - Disable virus log. novirus - Log non-virus events. all - Log all virus lookups. Valid values: disable, novirus, all.
    AvPreload string
    Enable/disable preloading antivirus database to memory (default = disable). disable - Disable antivirus database preload. enable - Enable antivirus database preload. Valid values: disable, enable.
    EventlogQuery string
    Enable/disable record query to event-log besides fgd-log (default = disable). disable - Record query to event-log besides fgd-log. enable - Do not log to event-log. Valid values: disable, enable.
    FgdPullInterval double
    Fgd pull interval setting, in minutes (1 - 1440, default = 10).
    FmupdateWebspamFgdsettingId string
    an identifier for the resource.
    FqCache double
    File query service maximum memory usage, in megabytes (100 - 500, default = 300).
    FqLog string
    File query log setting (default = nofilequery). disable - Disable file query log. nofilequery - Log non-file query events. all - Log all file query events. Valid values: disable, nofilequery, all.
    FqPreload string
    Enable/disable preloading file query database to memory (default = disable). disable - Disable file query db preload. enable - Enable file query db preload. Valid values: disable, enable.
    IotCache double
    IoT service maximum memory usage, in megabytes (100 - 500, default = 300).
    IotLog string
    IoT log setting (default = nofilequery). disable - Disable IoT log. nofilequery - Log non-IoT events. all - Log all IoT events. Valid values: disable, nofilequery, all.
    IotPreload string
    Enable/disable preloading IoT database to memory (default = disable). disable - Disable IoT db preload. enable - Enable IoT db preload. Valid values: disable, enable.
    IotvPreload string
    Enable/disable preloading IoT-Vulnerability database to memory (default = disable). disable - Disable IoT-Vulnerability db preload. enable - Enable IoT-Vulnerability db preload. Valid values: disable, enable.
    LinkdLog string
    Linkd log setting (default = debug). emergency - The unit is unusable. alert - Immediate action is required critical - Functionality is affected. error - Functionality is probably affected. warn - Functionality might be affected. notice - Information about normal events. info - General information. debug - Debug information. disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    MaxClientWorker double
    max worker for tcp client connection (0~16: 0 means use cpu number up to 4).
    MaxLogQuota double
    Maximum log quota setting, in megabytes (100 - 20480, default = 6144).
    MaxUnratedSite double
    Maximum number of unrated site in memory, in kilobytes(10 - 5120, default = 500).
    RestrictAs1Dbver string
    Restrict system update to indicated antispam(1) database version (character limit = 127).
    RestrictAs2Dbver string
    Restrict system update to indicated antispam(2) database version (character limit = 127).
    RestrictAs4Dbver string
    Restrict system update to indicated antispam(4) database version (character limit = 127).
    RestrictAv2Dbver string
    Restrict system update to indicated outbreak prevention database version (character limit = 127).
    RestrictAvDbver string
    Restrict system update to indicated antivirus database version (character limit = 127).
    RestrictFqDbver string
    Restrict system update to indicated file query database version (character limit = 127).
    RestrictIotsDbver string
    Restrict system update to indicated file query database version (character limit = 127).
    RestrictWfDbver string
    Restrict system update to indicated web filter database version (character limit = 127).
    ServerOverride FmupdateWebspamFgdsettingServerOverride
    Server-Override. The structure of server_override block is documented below.
    StatLog string
    stat log setting (default = disable). emergency - The unit is unusable(0). alert - Immediate action is required(1) critical - Functionality is affected(2). error - Functionality is probably affected(3). warn - Functionality might be affected(4). notice - Information about normal events(5). info - General information(6). debug - Debug information(7). disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    StatLogInterval double
    Statistic log interval setting, in minutes (1 - 1440, default = 60).
    StatSyncInterval double
    Synchronization interval for statistic of unrated site in minutes (1 - 60, default = 60).
    UpdateInterval double
    FortiGuard database update wait time if not enough delta files, in hours (2 - 24, default = 6).
    UpdateLog string
    Enable/disable update log setting (default = enable). disable - Disable update log. enable - Enable update log. Valid values: disable, enable.
    WfCache double
    Web filter service maximum memory usage, in megabytes (maximum = Physical memory-1024, 0 = no limit, default = 600).
    WfDnCacheExpireTime double
    Web filter DN cache expire time, in minutes (1 - 1440, 0 = never, default = 30).
    WfDnCacheMaxNumber double
    Maximum number of Web filter DN cache (0 = disable, default = 10000).
    WfLog string
    Web filter log setting (default = nour1) disable - Disable URL log. nourl - Log non-URL events. all - Log all URL lookups. Valid values: disable, nourl, all.
    WfPreload string
    Enable/disable preloading the web filter database into memory (default = disable). disable - Disable web filter database preload. enable - Enable web filter database preload. Valid values: disable, enable.
    AsCache float64
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 300).
    AsLog string
    Antispam log setting (default = nospam). disable - Disable spam log. nospam - Log non-spam events. all - Log all spam lookups. Valid values: disable, nospam, all.
    AsPreload string
    Enable/disable preloading antispam database to memory (default = disable). disable - Disable antispam database preload. enable - Enable antispam database preload. Valid values: disable, enable.
    Av2Cache float64
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 800).
    Av2Log string
    Outbreak prevention log setting (default = noav2). disable - Disable av2 log. noav2 - Log non-av2 events. all - Log all av2 lookups. Valid values: disable, noav2, all.
    Av2Preload string
    Enable/disable preloading outbreak prevention database to memory (default = disable). disable - Disable outbreak prevention database preload. enable - Enable outbreak prevention database preload. Valid values: disable, enable.
    AvCache float64
    Antivirus service maximum memory usage, in megabytes (100 - 500, default = 300).
    AvLog string
    Antivirus log setting (default = novirus). disable - Disable virus log. novirus - Log non-virus events. all - Log all virus lookups. Valid values: disable, novirus, all.
    AvPreload string
    Enable/disable preloading antivirus database to memory (default = disable). disable - Disable antivirus database preload. enable - Enable antivirus database preload. Valid values: disable, enable.
    EventlogQuery string
    Enable/disable record query to event-log besides fgd-log (default = disable). disable - Record query to event-log besides fgd-log. enable - Do not log to event-log. Valid values: disable, enable.
    FgdPullInterval float64
    Fgd pull interval setting, in minutes (1 - 1440, default = 10).
    FmupdateWebspamFgdsettingId string
    an identifier for the resource.
    FqCache float64
    File query service maximum memory usage, in megabytes (100 - 500, default = 300).
    FqLog string
    File query log setting (default = nofilequery). disable - Disable file query log. nofilequery - Log non-file query events. all - Log all file query events. Valid values: disable, nofilequery, all.
    FqPreload string
    Enable/disable preloading file query database to memory (default = disable). disable - Disable file query db preload. enable - Enable file query db preload. Valid values: disable, enable.
    IotCache float64
    IoT service maximum memory usage, in megabytes (100 - 500, default = 300).
    IotLog string
    IoT log setting (default = nofilequery). disable - Disable IoT log. nofilequery - Log non-IoT events. all - Log all IoT events. Valid values: disable, nofilequery, all.
    IotPreload string
    Enable/disable preloading IoT database to memory (default = disable). disable - Disable IoT db preload. enable - Enable IoT db preload. Valid values: disable, enable.
    IotvPreload string
    Enable/disable preloading IoT-Vulnerability database to memory (default = disable). disable - Disable IoT-Vulnerability db preload. enable - Enable IoT-Vulnerability db preload. Valid values: disable, enable.
    LinkdLog string
    Linkd log setting (default = debug). emergency - The unit is unusable. alert - Immediate action is required critical - Functionality is affected. error - Functionality is probably affected. warn - Functionality might be affected. notice - Information about normal events. info - General information. debug - Debug information. disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    MaxClientWorker float64
    max worker for tcp client connection (0~16: 0 means use cpu number up to 4).
    MaxLogQuota float64
    Maximum log quota setting, in megabytes (100 - 20480, default = 6144).
    MaxUnratedSite float64
    Maximum number of unrated site in memory, in kilobytes(10 - 5120, default = 500).
    RestrictAs1Dbver string
    Restrict system update to indicated antispam(1) database version (character limit = 127).
    RestrictAs2Dbver string
    Restrict system update to indicated antispam(2) database version (character limit = 127).
    RestrictAs4Dbver string
    Restrict system update to indicated antispam(4) database version (character limit = 127).
    RestrictAv2Dbver string
    Restrict system update to indicated outbreak prevention database version (character limit = 127).
    RestrictAvDbver string
    Restrict system update to indicated antivirus database version (character limit = 127).
    RestrictFqDbver string
    Restrict system update to indicated file query database version (character limit = 127).
    RestrictIotsDbver string
    Restrict system update to indicated file query database version (character limit = 127).
    RestrictWfDbver string
    Restrict system update to indicated web filter database version (character limit = 127).
    ServerOverride FmupdateWebspamFgdsettingServerOverrideArgs
    Server-Override. The structure of server_override block is documented below.
    StatLog string
    stat log setting (default = disable). emergency - The unit is unusable(0). alert - Immediate action is required(1) critical - Functionality is affected(2). error - Functionality is probably affected(3). warn - Functionality might be affected(4). notice - Information about normal events(5). info - General information(6). debug - Debug information(7). disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    StatLogInterval float64
    Statistic log interval setting, in minutes (1 - 1440, default = 60).
    StatSyncInterval float64
    Synchronization interval for statistic of unrated site in minutes (1 - 60, default = 60).
    UpdateInterval float64
    FortiGuard database update wait time if not enough delta files, in hours (2 - 24, default = 6).
    UpdateLog string
    Enable/disable update log setting (default = enable). disable - Disable update log. enable - Enable update log. Valid values: disable, enable.
    WfCache float64
    Web filter service maximum memory usage, in megabytes (maximum = Physical memory-1024, 0 = no limit, default = 600).
    WfDnCacheExpireTime float64
    Web filter DN cache expire time, in minutes (1 - 1440, 0 = never, default = 30).
    WfDnCacheMaxNumber float64
    Maximum number of Web filter DN cache (0 = disable, default = 10000).
    WfLog string
    Web filter log setting (default = nour1) disable - Disable URL log. nourl - Log non-URL events. all - Log all URL lookups. Valid values: disable, nourl, all.
    WfPreload string
    Enable/disable preloading the web filter database into memory (default = disable). disable - Disable web filter database preload. enable - Enable web filter database preload. Valid values: disable, enable.
    asCache Double
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 300).
    asLog String
    Antispam log setting (default = nospam). disable - Disable spam log. nospam - Log non-spam events. all - Log all spam lookups. Valid values: disable, nospam, all.
    asPreload String
    Enable/disable preloading antispam database to memory (default = disable). disable - Disable antispam database preload. enable - Enable antispam database preload. Valid values: disable, enable.
    av2Cache Double
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 800).
    av2Log String
    Outbreak prevention log setting (default = noav2). disable - Disable av2 log. noav2 - Log non-av2 events. all - Log all av2 lookups. Valid values: disable, noav2, all.
    av2Preload String
    Enable/disable preloading outbreak prevention database to memory (default = disable). disable - Disable outbreak prevention database preload. enable - Enable outbreak prevention database preload. Valid values: disable, enable.
    avCache Double
    Antivirus service maximum memory usage, in megabytes (100 - 500, default = 300).
    avLog String
    Antivirus log setting (default = novirus). disable - Disable virus log. novirus - Log non-virus events. all - Log all virus lookups. Valid values: disable, novirus, all.
    avPreload String
    Enable/disable preloading antivirus database to memory (default = disable). disable - Disable antivirus database preload. enable - Enable antivirus database preload. Valid values: disable, enable.
    eventlogQuery String
    Enable/disable record query to event-log besides fgd-log (default = disable). disable - Record query to event-log besides fgd-log. enable - Do not log to event-log. Valid values: disable, enable.
    fgdPullInterval Double
    Fgd pull interval setting, in minutes (1 - 1440, default = 10).
    fmupdateWebspamFgdsettingId String
    an identifier for the resource.
    fqCache Double
    File query service maximum memory usage, in megabytes (100 - 500, default = 300).
    fqLog String
    File query log setting (default = nofilequery). disable - Disable file query log. nofilequery - Log non-file query events. all - Log all file query events. Valid values: disable, nofilequery, all.
    fqPreload String
    Enable/disable preloading file query database to memory (default = disable). disable - Disable file query db preload. enable - Enable file query db preload. Valid values: disable, enable.
    iotCache Double
    IoT service maximum memory usage, in megabytes (100 - 500, default = 300).
    iotLog String
    IoT log setting (default = nofilequery). disable - Disable IoT log. nofilequery - Log non-IoT events. all - Log all IoT events. Valid values: disable, nofilequery, all.
    iotPreload String
    Enable/disable preloading IoT database to memory (default = disable). disable - Disable IoT db preload. enable - Enable IoT db preload. Valid values: disable, enable.
    iotvPreload String
    Enable/disable preloading IoT-Vulnerability database to memory (default = disable). disable - Disable IoT-Vulnerability db preload. enable - Enable IoT-Vulnerability db preload. Valid values: disable, enable.
    linkdLog String
    Linkd log setting (default = debug). emergency - The unit is unusable. alert - Immediate action is required critical - Functionality is affected. error - Functionality is probably affected. warn - Functionality might be affected. notice - Information about normal events. info - General information. debug - Debug information. disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    maxClientWorker Double
    max worker for tcp client connection (0~16: 0 means use cpu number up to 4).
    maxLogQuota Double
    Maximum log quota setting, in megabytes (100 - 20480, default = 6144).
    maxUnratedSite Double
    Maximum number of unrated site in memory, in kilobytes(10 - 5120, default = 500).
    restrictAs1Dbver String
    Restrict system update to indicated antispam(1) database version (character limit = 127).
    restrictAs2Dbver String
    Restrict system update to indicated antispam(2) database version (character limit = 127).
    restrictAs4Dbver String
    Restrict system update to indicated antispam(4) database version (character limit = 127).
    restrictAv2Dbver String
    Restrict system update to indicated outbreak prevention database version (character limit = 127).
    restrictAvDbver String
    Restrict system update to indicated antivirus database version (character limit = 127).
    restrictFqDbver String
    Restrict system update to indicated file query database version (character limit = 127).
    restrictIotsDbver String
    Restrict system update to indicated file query database version (character limit = 127).
    restrictWfDbver String
    Restrict system update to indicated web filter database version (character limit = 127).
    serverOverride FmupdateWebspamFgdsettingServerOverride
    Server-Override. The structure of server_override block is documented below.
    statLog String
    stat log setting (default = disable). emergency - The unit is unusable(0). alert - Immediate action is required(1) critical - Functionality is affected(2). error - Functionality is probably affected(3). warn - Functionality might be affected(4). notice - Information about normal events(5). info - General information(6). debug - Debug information(7). disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    statLogInterval Double
    Statistic log interval setting, in minutes (1 - 1440, default = 60).
    statSyncInterval Double
    Synchronization interval for statistic of unrated site in minutes (1 - 60, default = 60).
    updateInterval Double
    FortiGuard database update wait time if not enough delta files, in hours (2 - 24, default = 6).
    updateLog String
    Enable/disable update log setting (default = enable). disable - Disable update log. enable - Enable update log. Valid values: disable, enable.
    wfCache Double
    Web filter service maximum memory usage, in megabytes (maximum = Physical memory-1024, 0 = no limit, default = 600).
    wfDnCacheExpireTime Double
    Web filter DN cache expire time, in minutes (1 - 1440, 0 = never, default = 30).
    wfDnCacheMaxNumber Double
    Maximum number of Web filter DN cache (0 = disable, default = 10000).
    wfLog String
    Web filter log setting (default = nour1) disable - Disable URL log. nourl - Log non-URL events. all - Log all URL lookups. Valid values: disable, nourl, all.
    wfPreload String
    Enable/disable preloading the web filter database into memory (default = disable). disable - Disable web filter database preload. enable - Enable web filter database preload. Valid values: disable, enable.
    asCache number
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 300).
    asLog string
    Antispam log setting (default = nospam). disable - Disable spam log. nospam - Log non-spam events. all - Log all spam lookups. Valid values: disable, nospam, all.
    asPreload string
    Enable/disable preloading antispam database to memory (default = disable). disable - Disable antispam database preload. enable - Enable antispam database preload. Valid values: disable, enable.
    av2Cache number
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 800).
    av2Log string
    Outbreak prevention log setting (default = noav2). disable - Disable av2 log. noav2 - Log non-av2 events. all - Log all av2 lookups. Valid values: disable, noav2, all.
    av2Preload string
    Enable/disable preloading outbreak prevention database to memory (default = disable). disable - Disable outbreak prevention database preload. enable - Enable outbreak prevention database preload. Valid values: disable, enable.
    avCache number
    Antivirus service maximum memory usage, in megabytes (100 - 500, default = 300).
    avLog string
    Antivirus log setting (default = novirus). disable - Disable virus log. novirus - Log non-virus events. all - Log all virus lookups. Valid values: disable, novirus, all.
    avPreload string
    Enable/disable preloading antivirus database to memory (default = disable). disable - Disable antivirus database preload. enable - Enable antivirus database preload. Valid values: disable, enable.
    eventlogQuery string
    Enable/disable record query to event-log besides fgd-log (default = disable). disable - Record query to event-log besides fgd-log. enable - Do not log to event-log. Valid values: disable, enable.
    fgdPullInterval number
    Fgd pull interval setting, in minutes (1 - 1440, default = 10).
    fmupdateWebspamFgdsettingId string
    an identifier for the resource.
    fqCache number
    File query service maximum memory usage, in megabytes (100 - 500, default = 300).
    fqLog string
    File query log setting (default = nofilequery). disable - Disable file query log. nofilequery - Log non-file query events. all - Log all file query events. Valid values: disable, nofilequery, all.
    fqPreload string
    Enable/disable preloading file query database to memory (default = disable). disable - Disable file query db preload. enable - Enable file query db preload. Valid values: disable, enable.
    iotCache number
    IoT service maximum memory usage, in megabytes (100 - 500, default = 300).
    iotLog string
    IoT log setting (default = nofilequery). disable - Disable IoT log. nofilequery - Log non-IoT events. all - Log all IoT events. Valid values: disable, nofilequery, all.
    iotPreload string
    Enable/disable preloading IoT database to memory (default = disable). disable - Disable IoT db preload. enable - Enable IoT db preload. Valid values: disable, enable.
    iotvPreload string
    Enable/disable preloading IoT-Vulnerability database to memory (default = disable). disable - Disable IoT-Vulnerability db preload. enable - Enable IoT-Vulnerability db preload. Valid values: disable, enable.
    linkdLog string
    Linkd log setting (default = debug). emergency - The unit is unusable. alert - Immediate action is required critical - Functionality is affected. error - Functionality is probably affected. warn - Functionality might be affected. notice - Information about normal events. info - General information. debug - Debug information. disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    maxClientWorker number
    max worker for tcp client connection (0~16: 0 means use cpu number up to 4).
    maxLogQuota number
    Maximum log quota setting, in megabytes (100 - 20480, default = 6144).
    maxUnratedSite number
    Maximum number of unrated site in memory, in kilobytes(10 - 5120, default = 500).
    restrictAs1Dbver string
    Restrict system update to indicated antispam(1) database version (character limit = 127).
    restrictAs2Dbver string
    Restrict system update to indicated antispam(2) database version (character limit = 127).
    restrictAs4Dbver string
    Restrict system update to indicated antispam(4) database version (character limit = 127).
    restrictAv2Dbver string
    Restrict system update to indicated outbreak prevention database version (character limit = 127).
    restrictAvDbver string
    Restrict system update to indicated antivirus database version (character limit = 127).
    restrictFqDbver string
    Restrict system update to indicated file query database version (character limit = 127).
    restrictIotsDbver string
    Restrict system update to indicated file query database version (character limit = 127).
    restrictWfDbver string
    Restrict system update to indicated web filter database version (character limit = 127).
    serverOverride FmupdateWebspamFgdsettingServerOverride
    Server-Override. The structure of server_override block is documented below.
    statLog string
    stat log setting (default = disable). emergency - The unit is unusable(0). alert - Immediate action is required(1) critical - Functionality is affected(2). error - Functionality is probably affected(3). warn - Functionality might be affected(4). notice - Information about normal events(5). info - General information(6). debug - Debug information(7). disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    statLogInterval number
    Statistic log interval setting, in minutes (1 - 1440, default = 60).
    statSyncInterval number
    Synchronization interval for statistic of unrated site in minutes (1 - 60, default = 60).
    updateInterval number
    FortiGuard database update wait time if not enough delta files, in hours (2 - 24, default = 6).
    updateLog string
    Enable/disable update log setting (default = enable). disable - Disable update log. enable - Enable update log. Valid values: disable, enable.
    wfCache number
    Web filter service maximum memory usage, in megabytes (maximum = Physical memory-1024, 0 = no limit, default = 600).
    wfDnCacheExpireTime number
    Web filter DN cache expire time, in minutes (1 - 1440, 0 = never, default = 30).
    wfDnCacheMaxNumber number
    Maximum number of Web filter DN cache (0 = disable, default = 10000).
    wfLog string
    Web filter log setting (default = nour1) disable - Disable URL log. nourl - Log non-URL events. all - Log all URL lookups. Valid values: disable, nourl, all.
    wfPreload string
    Enable/disable preloading the web filter database into memory (default = disable). disable - Disable web filter database preload. enable - Enable web filter database preload. Valid values: disable, enable.
    as_cache float
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 300).
    as_log str
    Antispam log setting (default = nospam). disable - Disable spam log. nospam - Log non-spam events. all - Log all spam lookups. Valid values: disable, nospam, all.
    as_preload str
    Enable/disable preloading antispam database to memory (default = disable). disable - Disable antispam database preload. enable - Enable antispam database preload. Valid values: disable, enable.
    av2_cache float
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 800).
    av2_log str
    Outbreak prevention log setting (default = noav2). disable - Disable av2 log. noav2 - Log non-av2 events. all - Log all av2 lookups. Valid values: disable, noav2, all.
    av2_preload str
    Enable/disable preloading outbreak prevention database to memory (default = disable). disable - Disable outbreak prevention database preload. enable - Enable outbreak prevention database preload. Valid values: disable, enable.
    av_cache float
    Antivirus service maximum memory usage, in megabytes (100 - 500, default = 300).
    av_log str
    Antivirus log setting (default = novirus). disable - Disable virus log. novirus - Log non-virus events. all - Log all virus lookups. Valid values: disable, novirus, all.
    av_preload str
    Enable/disable preloading antivirus database to memory (default = disable). disable - Disable antivirus database preload. enable - Enable antivirus database preload. Valid values: disable, enable.
    eventlog_query str
    Enable/disable record query to event-log besides fgd-log (default = disable). disable - Record query to event-log besides fgd-log. enable - Do not log to event-log. Valid values: disable, enable.
    fgd_pull_interval float
    Fgd pull interval setting, in minutes (1 - 1440, default = 10).
    fmupdate_webspam_fgdsetting_id str
    an identifier for the resource.
    fq_cache float
    File query service maximum memory usage, in megabytes (100 - 500, default = 300).
    fq_log str
    File query log setting (default = nofilequery). disable - Disable file query log. nofilequery - Log non-file query events. all - Log all file query events. Valid values: disable, nofilequery, all.
    fq_preload str
    Enable/disable preloading file query database to memory (default = disable). disable - Disable file query db preload. enable - Enable file query db preload. Valid values: disable, enable.
    iot_cache float
    IoT service maximum memory usage, in megabytes (100 - 500, default = 300).
    iot_log str
    IoT log setting (default = nofilequery). disable - Disable IoT log. nofilequery - Log non-IoT events. all - Log all IoT events. Valid values: disable, nofilequery, all.
    iot_preload str
    Enable/disable preloading IoT database to memory (default = disable). disable - Disable IoT db preload. enable - Enable IoT db preload. Valid values: disable, enable.
    iotv_preload str
    Enable/disable preloading IoT-Vulnerability database to memory (default = disable). disable - Disable IoT-Vulnerability db preload. enable - Enable IoT-Vulnerability db preload. Valid values: disable, enable.
    linkd_log str
    Linkd log setting (default = debug). emergency - The unit is unusable. alert - Immediate action is required critical - Functionality is affected. error - Functionality is probably affected. warn - Functionality might be affected. notice - Information about normal events. info - General information. debug - Debug information. disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    max_client_worker float
    max worker for tcp client connection (0~16: 0 means use cpu number up to 4).
    max_log_quota float
    Maximum log quota setting, in megabytes (100 - 20480, default = 6144).
    max_unrated_site float
    Maximum number of unrated site in memory, in kilobytes(10 - 5120, default = 500).
    restrict_as1_dbver str
    Restrict system update to indicated antispam(1) database version (character limit = 127).
    restrict_as2_dbver str
    Restrict system update to indicated antispam(2) database version (character limit = 127).
    restrict_as4_dbver str
    Restrict system update to indicated antispam(4) database version (character limit = 127).
    restrict_av2_dbver str
    Restrict system update to indicated outbreak prevention database version (character limit = 127).
    restrict_av_dbver str
    Restrict system update to indicated antivirus database version (character limit = 127).
    restrict_fq_dbver str
    Restrict system update to indicated file query database version (character limit = 127).
    restrict_iots_dbver str
    Restrict system update to indicated file query database version (character limit = 127).
    restrict_wf_dbver str
    Restrict system update to indicated web filter database version (character limit = 127).
    server_override FmupdateWebspamFgdsettingServerOverrideArgs
    Server-Override. The structure of server_override block is documented below.
    stat_log str
    stat log setting (default = disable). emergency - The unit is unusable(0). alert - Immediate action is required(1) critical - Functionality is affected(2). error - Functionality is probably affected(3). warn - Functionality might be affected(4). notice - Information about normal events(5). info - General information(6). debug - Debug information(7). disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    stat_log_interval float
    Statistic log interval setting, in minutes (1 - 1440, default = 60).
    stat_sync_interval float
    Synchronization interval for statistic of unrated site in minutes (1 - 60, default = 60).
    update_interval float
    FortiGuard database update wait time if not enough delta files, in hours (2 - 24, default = 6).
    update_log str
    Enable/disable update log setting (default = enable). disable - Disable update log. enable - Enable update log. Valid values: disable, enable.
    wf_cache float
    Web filter service maximum memory usage, in megabytes (maximum = Physical memory-1024, 0 = no limit, default = 600).
    wf_dn_cache_expire_time float
    Web filter DN cache expire time, in minutes (1 - 1440, 0 = never, default = 30).
    wf_dn_cache_max_number float
    Maximum number of Web filter DN cache (0 = disable, default = 10000).
    wf_log str
    Web filter log setting (default = nour1) disable - Disable URL log. nourl - Log non-URL events. all - Log all URL lookups. Valid values: disable, nourl, all.
    wf_preload str
    Enable/disable preloading the web filter database into memory (default = disable). disable - Disable web filter database preload. enable - Enable web filter database preload. Valid values: disable, enable.
    asCache Number
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 300).
    asLog String
    Antispam log setting (default = nospam). disable - Disable spam log. nospam - Log non-spam events. all - Log all spam lookups. Valid values: disable, nospam, all.
    asPreload String
    Enable/disable preloading antispam database to memory (default = disable). disable - Disable antispam database preload. enable - Enable antispam database preload. Valid values: disable, enable.
    av2Cache Number
    Antispam service maximum memory usage in megabytes (Maximum = Physical memory-1024, 0: no limit, default = 800).
    av2Log String
    Outbreak prevention log setting (default = noav2). disable - Disable av2 log. noav2 - Log non-av2 events. all - Log all av2 lookups. Valid values: disable, noav2, all.
    av2Preload String
    Enable/disable preloading outbreak prevention database to memory (default = disable). disable - Disable outbreak prevention database preload. enable - Enable outbreak prevention database preload. Valid values: disable, enable.
    avCache Number
    Antivirus service maximum memory usage, in megabytes (100 - 500, default = 300).
    avLog String
    Antivirus log setting (default = novirus). disable - Disable virus log. novirus - Log non-virus events. all - Log all virus lookups. Valid values: disable, novirus, all.
    avPreload String
    Enable/disable preloading antivirus database to memory (default = disable). disable - Disable antivirus database preload. enable - Enable antivirus database preload. Valid values: disable, enable.
    eventlogQuery String
    Enable/disable record query to event-log besides fgd-log (default = disable). disable - Record query to event-log besides fgd-log. enable - Do not log to event-log. Valid values: disable, enable.
    fgdPullInterval Number
    Fgd pull interval setting, in minutes (1 - 1440, default = 10).
    fmupdateWebspamFgdsettingId String
    an identifier for the resource.
    fqCache Number
    File query service maximum memory usage, in megabytes (100 - 500, default = 300).
    fqLog String
    File query log setting (default = nofilequery). disable - Disable file query log. nofilequery - Log non-file query events. all - Log all file query events. Valid values: disable, nofilequery, all.
    fqPreload String
    Enable/disable preloading file query database to memory (default = disable). disable - Disable file query db preload. enable - Enable file query db preload. Valid values: disable, enable.
    iotCache Number
    IoT service maximum memory usage, in megabytes (100 - 500, default = 300).
    iotLog String
    IoT log setting (default = nofilequery). disable - Disable IoT log. nofilequery - Log non-IoT events. all - Log all IoT events. Valid values: disable, nofilequery, all.
    iotPreload String
    Enable/disable preloading IoT database to memory (default = disable). disable - Disable IoT db preload. enable - Enable IoT db preload. Valid values: disable, enable.
    iotvPreload String
    Enable/disable preloading IoT-Vulnerability database to memory (default = disable). disable - Disable IoT-Vulnerability db preload. enable - Enable IoT-Vulnerability db preload. Valid values: disable, enable.
    linkdLog String
    Linkd log setting (default = debug). emergency - The unit is unusable. alert - Immediate action is required critical - Functionality is affected. error - Functionality is probably affected. warn - Functionality might be affected. notice - Information about normal events. info - General information. debug - Debug information. disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    maxClientWorker Number
    max worker for tcp client connection (0~16: 0 means use cpu number up to 4).
    maxLogQuota Number
    Maximum log quota setting, in megabytes (100 - 20480, default = 6144).
    maxUnratedSite Number
    Maximum number of unrated site in memory, in kilobytes(10 - 5120, default = 500).
    restrictAs1Dbver String
    Restrict system update to indicated antispam(1) database version (character limit = 127).
    restrictAs2Dbver String
    Restrict system update to indicated antispam(2) database version (character limit = 127).
    restrictAs4Dbver String
    Restrict system update to indicated antispam(4) database version (character limit = 127).
    restrictAv2Dbver String
    Restrict system update to indicated outbreak prevention database version (character limit = 127).
    restrictAvDbver String
    Restrict system update to indicated antivirus database version (character limit = 127).
    restrictFqDbver String
    Restrict system update to indicated file query database version (character limit = 127).
    restrictIotsDbver String
    Restrict system update to indicated file query database version (character limit = 127).
    restrictWfDbver String
    Restrict system update to indicated web filter database version (character limit = 127).
    serverOverride Property Map
    Server-Override. The structure of server_override block is documented below.
    statLog String
    stat log setting (default = disable). emergency - The unit is unusable(0). alert - Immediate action is required(1) critical - Functionality is affected(2). error - Functionality is probably affected(3). warn - Functionality might be affected(4). notice - Information about normal events(5). info - General information(6). debug - Debug information(7). disable - Linkd logging is disabled. Valid values: emergency, alert, critical, error, warn, notice, info, debug, disable.
    statLogInterval Number
    Statistic log interval setting, in minutes (1 - 1440, default = 60).
    statSyncInterval Number
    Synchronization interval for statistic of unrated site in minutes (1 - 60, default = 60).
    updateInterval Number
    FortiGuard database update wait time if not enough delta files, in hours (2 - 24, default = 6).
    updateLog String
    Enable/disable update log setting (default = enable). disable - Disable update log. enable - Enable update log. Valid values: disable, enable.
    wfCache Number
    Web filter service maximum memory usage, in megabytes (maximum = Physical memory-1024, 0 = no limit, default = 600).
    wfDnCacheExpireTime Number
    Web filter DN cache expire time, in minutes (1 - 1440, 0 = never, default = 30).
    wfDnCacheMaxNumber Number
    Maximum number of Web filter DN cache (0 = disable, default = 10000).
    wfLog String
    Web filter log setting (default = nour1) disable - Disable URL log. nourl - Log non-URL events. all - Log all URL lookups. Valid values: disable, nourl, all.
    wfPreload String
    Enable/disable preloading the web filter database into memory (default = disable). disable - Disable web filter database preload. enable - Enable web filter database preload. Valid values: disable, enable.

    Supporting Types

    FmupdateWebspamFgdsettingServerOverride, FmupdateWebspamFgdsettingServerOverrideArgs

    Servlists List<FmupdateWebspamFgdsettingServerOverrideServlist>
    Servlist. The structure of servlist block is documented below.
    Status string
    Override status. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Servlists []FmupdateWebspamFgdsettingServerOverrideServlist
    Servlist. The structure of servlist block is documented below.
    Status string
    Override status. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    servlists List<FmupdateWebspamFgdsettingServerOverrideServlist>
    Servlist. The structure of servlist block is documented below.
    status String
    Override status. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    servlists FmupdateWebspamFgdsettingServerOverrideServlist[]
    Servlist. The structure of servlist block is documented below.
    status string
    Override status. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    servlists Sequence[FmupdateWebspamFgdsettingServerOverrideServlist]
    Servlist. The structure of servlist block is documented below.
    status str
    Override status. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    servlists List<Property Map>
    Servlist. The structure of servlist block is documented below.
    status String
    Override status. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.

    FmupdateWebspamFgdsettingServerOverrideServlist, FmupdateWebspamFgdsettingServerOverrideServlistArgs

    Id double
    Override server ID (1 - 10).
    Ip string
    IPv4 address of the override server.
    Ip6 string
    IPv6 address of the override server.
    Port double
    Port number to use when contacting FortiGuard (1 - 65535, default = 443).
    ServiceType string
    Override service type. fgd - Server override config for fgd fgc - Server override config for fgc fsa - Server override config for fsa Valid values: fgd, fgc, fsa.
    Id float64
    Override server ID (1 - 10).
    Ip string
    IPv4 address of the override server.
    Ip6 string
    IPv6 address of the override server.
    Port float64
    Port number to use when contacting FortiGuard (1 - 65535, default = 443).
    ServiceType string
    Override service type. fgd - Server override config for fgd fgc - Server override config for fgc fsa - Server override config for fsa Valid values: fgd, fgc, fsa.
    id Double
    Override server ID (1 - 10).
    ip String
    IPv4 address of the override server.
    ip6 String
    IPv6 address of the override server.
    port Double
    Port number to use when contacting FortiGuard (1 - 65535, default = 443).
    serviceType String
    Override service type. fgd - Server override config for fgd fgc - Server override config for fgc fsa - Server override config for fsa Valid values: fgd, fgc, fsa.
    id number
    Override server ID (1 - 10).
    ip string
    IPv4 address of the override server.
    ip6 string
    IPv6 address of the override server.
    port number
    Port number to use when contacting FortiGuard (1 - 65535, default = 443).
    serviceType string
    Override service type. fgd - Server override config for fgd fgc - Server override config for fgc fsa - Server override config for fsa Valid values: fgd, fgc, fsa.
    id float
    Override server ID (1 - 10).
    ip str
    IPv4 address of the override server.
    ip6 str
    IPv6 address of the override server.
    port float
    Port number to use when contacting FortiGuard (1 - 65535, default = 443).
    service_type str
    Override service type. fgd - Server override config for fgd fgc - Server override config for fgc fsa - Server override config for fsa Valid values: fgd, fgc, fsa.
    id Number
    Override server ID (1 - 10).
    ip String
    IPv4 address of the override server.
    ip6 String
    IPv6 address of the override server.
    port Number
    Port number to use when contacting FortiGuard (1 - 65535, default = 443).
    serviceType String
    Override service type. fgd - Server override config for fgd fgc - Server override config for fgc fsa - Server override config for fsa Valid values: fgd, fgc, fsa.

    Import

    Fmupdate WebSpamFgdSetting can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/fmupdateWebspamFgdsetting:FmupdateWebspamFgdsetting labelname FmupdateWebSpamFgdSetting
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    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