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

fortimanager.SystempLogSyslogdFilter

Explore with Pulumi AI

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

    Filters for remote system server.

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

    • exclude_list: fortimanager_systemp_log_syslogd_filter_excludelist
    • free_style: fortimanager.SystempLogSyslogdFilterFreestyle

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystempLogSyslogdFilter("trname", {
        cifs: "disable",
        devprof: "default",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystempLogSyslogdFilter("trname",
        cifs="disable",
        devprof="default")
    
    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.NewSystempLogSyslogdFilter(ctx, "trname", &fortimanager.SystempLogSyslogdFilterArgs{
    			Cifs:    pulumi.String("disable"),
    			Devprof: pulumi.String("default"),
    		})
    		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.SystempLogSyslogdFilter("trname", new()
        {
            Cifs = "disable",
            Devprof = "default",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystempLogSyslogdFilter;
    import com.pulumi.fortimanager.SystempLogSyslogdFilterArgs;
    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 SystempLogSyslogdFilter("trname", SystempLogSyslogdFilterArgs.builder()
                .cifs("disable")
                .devprof("default")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystempLogSyslogdFilter
        properties:
          cifs: disable
          devprof: default
    

    Create SystempLogSyslogdFilter Resource

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

    Constructor syntax

    new SystempLogSyslogdFilter(name: string, args: SystempLogSyslogdFilterArgs, opts?: CustomResourceOptions);
    @overload
    def SystempLogSyslogdFilter(resource_name: str,
                                args: SystempLogSyslogdFilterArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystempLogSyslogdFilter(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                devprof: Optional[str] = None,
                                gtp: Optional[str] = None,
                                dynamic_sort_subtable: Optional[str] = None,
                                http_transaction: Optional[str] = None,
                                dns: Optional[str] = None,
                                local_traffic: Optional[str] = None,
                                exclude_lists: Optional[Sequence[SystempLogSyslogdFilterExcludeListArgs]] = None,
                                filter: Optional[str] = None,
                                multicast_traffic: Optional[str] = None,
                                forti_switch: Optional[str] = None,
                                forward_traffic: Optional[str] = None,
                                free_styles: Optional[Sequence[SystempLogSyslogdFilterFreeStyleArgs]] = None,
                                adom: Optional[str] = None,
                                anomaly: Optional[str] = None,
                                cifs: Optional[str] = None,
                                filter_type: Optional[str] = None,
                                netscan_discovery: Optional[str] = None,
                                netscan_vulnerability: Optional[str] = None,
                                scopetype: Optional[str] = None,
                                severity: Optional[str] = None,
                                sniffer_traffic: Optional[str] = None,
                                ssh: Optional[str] = None,
                                ssl: Optional[str] = None,
                                systemp_log_syslogd_filter_id: Optional[str] = None,
                                voip: Optional[str] = None,
                                ztna_traffic: Optional[str] = None)
    func NewSystempLogSyslogdFilter(ctx *Context, name string, args SystempLogSyslogdFilterArgs, opts ...ResourceOption) (*SystempLogSyslogdFilter, error)
    public SystempLogSyslogdFilter(string name, SystempLogSyslogdFilterArgs args, CustomResourceOptions? opts = null)
    public SystempLogSyslogdFilter(String name, SystempLogSyslogdFilterArgs args)
    public SystempLogSyslogdFilter(String name, SystempLogSyslogdFilterArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystempLogSyslogdFilter
    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 SystempLogSyslogdFilterArgs
    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 SystempLogSyslogdFilterArgs
    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 SystempLogSyslogdFilterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystempLogSyslogdFilterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystempLogSyslogdFilterArgs
    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 systempLogSyslogdFilterResource = new Fortimanager.SystempLogSyslogdFilter("systempLogSyslogdFilterResource", new()
    {
        Devprof = "string",
        Gtp = "string",
        DynamicSortSubtable = "string",
        HttpTransaction = "string",
        Dns = "string",
        LocalTraffic = "string",
        ExcludeLists = new[]
        {
            new Fortimanager.Inputs.SystempLogSyslogdFilterExcludeListArgs
            {
                Category = "string",
                Fields = new[]
                {
                    new Fortimanager.Inputs.SystempLogSyslogdFilterExcludeListFieldArgs
                    {
                        Args = new[]
                        {
                            "string",
                        },
                        Field = "string",
                        Negate = "string",
                    },
                },
                Id = 0,
            },
        },
        Filter = "string",
        MulticastTraffic = "string",
        FortiSwitch = "string",
        ForwardTraffic = "string",
        FreeStyles = new[]
        {
            new Fortimanager.Inputs.SystempLogSyslogdFilterFreeStyleArgs
            {
                Category = "string",
                Filter = "string",
                FilterType = "string",
                Id = 0,
            },
        },
        Adom = "string",
        Anomaly = "string",
        Cifs = "string",
        FilterType = "string",
        NetscanDiscovery = "string",
        NetscanVulnerability = "string",
        Scopetype = "string",
        Severity = "string",
        SnifferTraffic = "string",
        Ssh = "string",
        Ssl = "string",
        SystempLogSyslogdFilterId = "string",
        Voip = "string",
        ZtnaTraffic = "string",
    });
    
    example, err := fortimanager.NewSystempLogSyslogdFilter(ctx, "systempLogSyslogdFilterResource", &fortimanager.SystempLogSyslogdFilterArgs{
    Devprof: pulumi.String("string"),
    Gtp: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    HttpTransaction: pulumi.String("string"),
    Dns: pulumi.String("string"),
    LocalTraffic: pulumi.String("string"),
    ExcludeLists: .SystempLogSyslogdFilterExcludeListArray{
    &.SystempLogSyslogdFilterExcludeListArgs{
    Category: pulumi.String("string"),
    Fields: .SystempLogSyslogdFilterExcludeListFieldArray{
    &.SystempLogSyslogdFilterExcludeListFieldArgs{
    Args: pulumi.StringArray{
    pulumi.String("string"),
    },
    Field: pulumi.String("string"),
    Negate: pulumi.String("string"),
    },
    },
    Id: pulumi.Float64(0),
    },
    },
    Filter: pulumi.String("string"),
    MulticastTraffic: pulumi.String("string"),
    FortiSwitch: pulumi.String("string"),
    ForwardTraffic: pulumi.String("string"),
    FreeStyles: .SystempLogSyslogdFilterFreeStyleTypeArray{
    &.SystempLogSyslogdFilterFreeStyleTypeArgs{
    Category: pulumi.String("string"),
    Filter: pulumi.String("string"),
    FilterType: pulumi.String("string"),
    Id: pulumi.Float64(0),
    },
    },
    Adom: pulumi.String("string"),
    Anomaly: pulumi.String("string"),
    Cifs: pulumi.String("string"),
    FilterType: pulumi.String("string"),
    NetscanDiscovery: pulumi.String("string"),
    NetscanVulnerability: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Severity: pulumi.String("string"),
    SnifferTraffic: pulumi.String("string"),
    Ssh: pulumi.String("string"),
    Ssl: pulumi.String("string"),
    SystempLogSyslogdFilterId: pulumi.String("string"),
    Voip: pulumi.String("string"),
    ZtnaTraffic: pulumi.String("string"),
    })
    
    var systempLogSyslogdFilterResource = new SystempLogSyslogdFilter("systempLogSyslogdFilterResource", SystempLogSyslogdFilterArgs.builder()
        .devprof("string")
        .gtp("string")
        .dynamicSortSubtable("string")
        .httpTransaction("string")
        .dns("string")
        .localTraffic("string")
        .excludeLists(SystempLogSyslogdFilterExcludeListArgs.builder()
            .category("string")
            .fields(SystempLogSyslogdFilterExcludeListFieldArgs.builder()
                .args("string")
                .field("string")
                .negate("string")
                .build())
            .id(0)
            .build())
        .filter("string")
        .multicastTraffic("string")
        .fortiSwitch("string")
        .forwardTraffic("string")
        .freeStyles(SystempLogSyslogdFilterFreeStyleArgs.builder()
            .category("string")
            .filter("string")
            .filterType("string")
            .id(0)
            .build())
        .adom("string")
        .anomaly("string")
        .cifs("string")
        .filterType("string")
        .netscanDiscovery("string")
        .netscanVulnerability("string")
        .scopetype("string")
        .severity("string")
        .snifferTraffic("string")
        .ssh("string")
        .ssl("string")
        .systempLogSyslogdFilterId("string")
        .voip("string")
        .ztnaTraffic("string")
        .build());
    
    systemp_log_syslogd_filter_resource = fortimanager.SystempLogSyslogdFilter("systempLogSyslogdFilterResource",
        devprof="string",
        gtp="string",
        dynamic_sort_subtable="string",
        http_transaction="string",
        dns="string",
        local_traffic="string",
        exclude_lists=[{
            "category": "string",
            "fields": [{
                "args": ["string"],
                "field": "string",
                "negate": "string",
            }],
            "id": 0,
        }],
        filter="string",
        multicast_traffic="string",
        forti_switch="string",
        forward_traffic="string",
        free_styles=[{
            "category": "string",
            "filter": "string",
            "filter_type": "string",
            "id": 0,
        }],
        adom="string",
        anomaly="string",
        cifs="string",
        filter_type="string",
        netscan_discovery="string",
        netscan_vulnerability="string",
        scopetype="string",
        severity="string",
        sniffer_traffic="string",
        ssh="string",
        ssl="string",
        systemp_log_syslogd_filter_id="string",
        voip="string",
        ztna_traffic="string")
    
    const systempLogSyslogdFilterResource = new fortimanager.SystempLogSyslogdFilter("systempLogSyslogdFilterResource", {
        devprof: "string",
        gtp: "string",
        dynamicSortSubtable: "string",
        httpTransaction: "string",
        dns: "string",
        localTraffic: "string",
        excludeLists: [{
            category: "string",
            fields: [{
                args: ["string"],
                field: "string",
                negate: "string",
            }],
            id: 0,
        }],
        filter: "string",
        multicastTraffic: "string",
        fortiSwitch: "string",
        forwardTraffic: "string",
        freeStyles: [{
            category: "string",
            filter: "string",
            filterType: "string",
            id: 0,
        }],
        adom: "string",
        anomaly: "string",
        cifs: "string",
        filterType: "string",
        netscanDiscovery: "string",
        netscanVulnerability: "string",
        scopetype: "string",
        severity: "string",
        snifferTraffic: "string",
        ssh: "string",
        ssl: "string",
        systempLogSyslogdFilterId: "string",
        voip: "string",
        ztnaTraffic: "string",
    });
    
    type: fortimanager:SystempLogSyslogdFilter
    properties:
        adom: string
        anomaly: string
        cifs: string
        devprof: string
        dns: string
        dynamicSortSubtable: string
        excludeLists:
            - category: string
              fields:
                - args:
                    - string
                  field: string
                  negate: string
              id: 0
        filter: string
        filterType: string
        fortiSwitch: string
        forwardTraffic: string
        freeStyles:
            - category: string
              filter: string
              filterType: string
              id: 0
        gtp: string
        httpTransaction: string
        localTraffic: string
        multicastTraffic: string
        netscanDiscovery: string
        netscanVulnerability: string
        scopetype: string
        severity: string
        snifferTraffic: string
        ssh: string
        ssl: string
        systempLogSyslogdFilterId: string
        voip: string
        ztnaTraffic: string
    

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

    Devprof string
    Devprof.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Anomaly string
    Enable/disable anomaly logging. Valid values: disable, enable.
    Cifs string
    Cifs. Valid values: disable, enable.
    Dns string
    Dns. Valid values: disable, enable.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ExcludeLists List<SystempLogSyslogdFilterExcludeList>
    Exclude-List. The structure of exclude_list block is documented below.
    Filter string
    Syslog filter.
    FilterType string
    Include/exclude logs that match the filter. Valid values: include, exclude.
    FortiSwitch string
    Enable/disable Forti-Switch logging. Valid values: disable, enable.
    ForwardTraffic string
    Enable/disable forward traffic logging. Valid values: disable, enable.
    FreeStyles List<SystempLogSyslogdFilterFreeStyle>
    Free-Style. The structure of free_style block is documented below.
    Gtp string
    Enable/disable GTP messages logging. Valid values: disable, enable.
    HttpTransaction string
    Enable/disable log HTTP transaction messages. Valid values: disable, enable.
    LocalTraffic string
    Enable/disable local in or out traffic logging. Valid values: disable, enable.
    MulticastTraffic string
    Enable/disable multicast traffic logging. Valid values: disable, enable.
    NetscanDiscovery string
    Enable/disable netscan discovery event logging. Valid values: disable, enable.
    NetscanVulnerability string
    Enable/disable netscan vulnerability event logging. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Severity string
    Lowest severity level to log. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    SnifferTraffic string
    Enable/disable sniffer traffic logging. Valid values: disable, enable.
    Ssh string
    Ssh. Valid values: disable, enable.
    Ssl string
    Ssl. Valid values: disable, enable.
    SystempLogSyslogdFilterId string
    an identifier for the resource.
    Voip string
    Enable/disable VoIP logging. Valid values: disable, enable.
    ZtnaTraffic string
    Enable/disable ztna traffic logging. Valid values: disable, enable.
    Devprof string
    Devprof.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Anomaly string
    Enable/disable anomaly logging. Valid values: disable, enable.
    Cifs string
    Cifs. Valid values: disable, enable.
    Dns string
    Dns. Valid values: disable, enable.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ExcludeLists []SystempLogSyslogdFilterExcludeListArgs
    Exclude-List. The structure of exclude_list block is documented below.
    Filter string
    Syslog filter.
    FilterType string
    Include/exclude logs that match the filter. Valid values: include, exclude.
    FortiSwitch string
    Enable/disable Forti-Switch logging. Valid values: disable, enable.
    ForwardTraffic string
    Enable/disable forward traffic logging. Valid values: disable, enable.
    FreeStyles []SystempLogSyslogdFilterFreeStyleTypeArgs
    Free-Style. The structure of free_style block is documented below.
    Gtp string
    Enable/disable GTP messages logging. Valid values: disable, enable.
    HttpTransaction string
    Enable/disable log HTTP transaction messages. Valid values: disable, enable.
    LocalTraffic string
    Enable/disable local in or out traffic logging. Valid values: disable, enable.
    MulticastTraffic string
    Enable/disable multicast traffic logging. Valid values: disable, enable.
    NetscanDiscovery string
    Enable/disable netscan discovery event logging. Valid values: disable, enable.
    NetscanVulnerability string
    Enable/disable netscan vulnerability event logging. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Severity string
    Lowest severity level to log. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    SnifferTraffic string
    Enable/disable sniffer traffic logging. Valid values: disable, enable.
    Ssh string
    Ssh. Valid values: disable, enable.
    Ssl string
    Ssl. Valid values: disable, enable.
    SystempLogSyslogdFilterId string
    an identifier for the resource.
    Voip string
    Enable/disable VoIP logging. Valid values: disable, enable.
    ZtnaTraffic string
    Enable/disable ztna traffic logging. Valid values: disable, enable.
    devprof String
    Devprof.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    anomaly String
    Enable/disable anomaly logging. Valid values: disable, enable.
    cifs String
    Cifs. Valid values: disable, enable.
    dns String
    Dns. Valid values: disable, enable.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    excludeLists List<SystempLogSyslogdFilterExcludeList>
    Exclude-List. The structure of exclude_list block is documented below.
    filter String
    Syslog filter.
    filterType String
    Include/exclude logs that match the filter. Valid values: include, exclude.
    fortiSwitch String
    Enable/disable Forti-Switch logging. Valid values: disable, enable.
    forwardTraffic String
    Enable/disable forward traffic logging. Valid values: disable, enable.
    freeStyles List<SystempLogSyslogdFilterFreeStyle>
    Free-Style. The structure of free_style block is documented below.
    gtp String
    Enable/disable GTP messages logging. Valid values: disable, enable.
    httpTransaction String
    Enable/disable log HTTP transaction messages. Valid values: disable, enable.
    localTraffic String
    Enable/disable local in or out traffic logging. Valid values: disable, enable.
    multicastTraffic String
    Enable/disable multicast traffic logging. Valid values: disable, enable.
    netscanDiscovery String
    Enable/disable netscan discovery event logging. Valid values: disable, enable.
    netscanVulnerability String
    Enable/disable netscan vulnerability event logging. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severity String
    Lowest severity level to log. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    snifferTraffic String
    Enable/disable sniffer traffic logging. Valid values: disable, enable.
    ssh String
    Ssh. Valid values: disable, enable.
    ssl String
    Ssl. Valid values: disable, enable.
    systempLogSyslogdFilterId String
    an identifier for the resource.
    voip String
    Enable/disable VoIP logging. Valid values: disable, enable.
    ztnaTraffic String
    Enable/disable ztna traffic logging. Valid values: disable, enable.
    devprof string
    Devprof.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    anomaly string
    Enable/disable anomaly logging. Valid values: disable, enable.
    cifs string
    Cifs. Valid values: disable, enable.
    dns string
    Dns. Valid values: disable, enable.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    excludeLists SystempLogSyslogdFilterExcludeList[]
    Exclude-List. The structure of exclude_list block is documented below.
    filter string
    Syslog filter.
    filterType string
    Include/exclude logs that match the filter. Valid values: include, exclude.
    fortiSwitch string
    Enable/disable Forti-Switch logging. Valid values: disable, enable.
    forwardTraffic string
    Enable/disable forward traffic logging. Valid values: disable, enable.
    freeStyles SystempLogSyslogdFilterFreeStyle[]
    Free-Style. The structure of free_style block is documented below.
    gtp string
    Enable/disable GTP messages logging. Valid values: disable, enable.
    httpTransaction string
    Enable/disable log HTTP transaction messages. Valid values: disable, enable.
    localTraffic string
    Enable/disable local in or out traffic logging. Valid values: disable, enable.
    multicastTraffic string
    Enable/disable multicast traffic logging. Valid values: disable, enable.
    netscanDiscovery string
    Enable/disable netscan discovery event logging. Valid values: disable, enable.
    netscanVulnerability string
    Enable/disable netscan vulnerability event logging. Valid values: disable, enable.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severity string
    Lowest severity level to log. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    snifferTraffic string
    Enable/disable sniffer traffic logging. Valid values: disable, enable.
    ssh string
    Ssh. Valid values: disable, enable.
    ssl string
    Ssl. Valid values: disable, enable.
    systempLogSyslogdFilterId string
    an identifier for the resource.
    voip string
    Enable/disable VoIP logging. Valid values: disable, enable.
    ztnaTraffic string
    Enable/disable ztna traffic logging. Valid values: disable, enable.
    devprof str
    Devprof.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    anomaly str
    Enable/disable anomaly logging. Valid values: disable, enable.
    cifs str
    Cifs. Valid values: disable, enable.
    dns str
    Dns. Valid values: disable, enable.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exclude_lists Sequence[SystempLogSyslogdFilterExcludeListArgs]
    Exclude-List. The structure of exclude_list block is documented below.
    filter str
    Syslog filter.
    filter_type str
    Include/exclude logs that match the filter. Valid values: include, exclude.
    forti_switch str
    Enable/disable Forti-Switch logging. Valid values: disable, enable.
    forward_traffic str
    Enable/disable forward traffic logging. Valid values: disable, enable.
    free_styles Sequence[SystempLogSyslogdFilterFreeStyleArgs]
    Free-Style. The structure of free_style block is documented below.
    gtp str
    Enable/disable GTP messages logging. Valid values: disable, enable.
    http_transaction str
    Enable/disable log HTTP transaction messages. Valid values: disable, enable.
    local_traffic str
    Enable/disable local in or out traffic logging. Valid values: disable, enable.
    multicast_traffic str
    Enable/disable multicast traffic logging. Valid values: disable, enable.
    netscan_discovery str
    Enable/disable netscan discovery event logging. Valid values: disable, enable.
    netscan_vulnerability str
    Enable/disable netscan vulnerability event logging. Valid values: disable, enable.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severity str
    Lowest severity level to log. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    sniffer_traffic str
    Enable/disable sniffer traffic logging. Valid values: disable, enable.
    ssh str
    Ssh. Valid values: disable, enable.
    ssl str
    Ssl. Valid values: disable, enable.
    systemp_log_syslogd_filter_id str
    an identifier for the resource.
    voip str
    Enable/disable VoIP logging. Valid values: disable, enable.
    ztna_traffic str
    Enable/disable ztna traffic logging. Valid values: disable, enable.
    devprof String
    Devprof.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    anomaly String
    Enable/disable anomaly logging. Valid values: disable, enable.
    cifs String
    Cifs. Valid values: disable, enable.
    dns String
    Dns. Valid values: disable, enable.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    excludeLists List<Property Map>
    Exclude-List. The structure of exclude_list block is documented below.
    filter String
    Syslog filter.
    filterType String
    Include/exclude logs that match the filter. Valid values: include, exclude.
    fortiSwitch String
    Enable/disable Forti-Switch logging. Valid values: disable, enable.
    forwardTraffic String
    Enable/disable forward traffic logging. Valid values: disable, enable.
    freeStyles List<Property Map>
    Free-Style. The structure of free_style block is documented below.
    gtp String
    Enable/disable GTP messages logging. Valid values: disable, enable.
    httpTransaction String
    Enable/disable log HTTP transaction messages. Valid values: disable, enable.
    localTraffic String
    Enable/disable local in or out traffic logging. Valid values: disable, enable.
    multicastTraffic String
    Enable/disable multicast traffic logging. Valid values: disable, enable.
    netscanDiscovery String
    Enable/disable netscan discovery event logging. Valid values: disable, enable.
    netscanVulnerability String
    Enable/disable netscan vulnerability event logging. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severity String
    Lowest severity level to log. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    snifferTraffic String
    Enable/disable sniffer traffic logging. Valid values: disable, enable.
    ssh String
    Ssh. Valid values: disable, enable.
    ssl String
    Ssl. Valid values: disable, enable.
    systempLogSyslogdFilterId String
    an identifier for the resource.
    voip String
    Enable/disable VoIP logging. Valid values: disable, enable.
    ztnaTraffic String
    Enable/disable ztna traffic logging. Valid values: disable, enable.

    Outputs

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

    Get an existing SystempLogSyslogdFilter 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?: SystempLogSyslogdFilterState, opts?: CustomResourceOptions): SystempLogSyslogdFilter
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            anomaly: Optional[str] = None,
            cifs: Optional[str] = None,
            devprof: Optional[str] = None,
            dns: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            exclude_lists: Optional[Sequence[SystempLogSyslogdFilterExcludeListArgs]] = None,
            filter: Optional[str] = None,
            filter_type: Optional[str] = None,
            forti_switch: Optional[str] = None,
            forward_traffic: Optional[str] = None,
            free_styles: Optional[Sequence[SystempLogSyslogdFilterFreeStyleArgs]] = None,
            gtp: Optional[str] = None,
            http_transaction: Optional[str] = None,
            local_traffic: Optional[str] = None,
            multicast_traffic: Optional[str] = None,
            netscan_discovery: Optional[str] = None,
            netscan_vulnerability: Optional[str] = None,
            scopetype: Optional[str] = None,
            severity: Optional[str] = None,
            sniffer_traffic: Optional[str] = None,
            ssh: Optional[str] = None,
            ssl: Optional[str] = None,
            systemp_log_syslogd_filter_id: Optional[str] = None,
            voip: Optional[str] = None,
            ztna_traffic: Optional[str] = None) -> SystempLogSyslogdFilter
    func GetSystempLogSyslogdFilter(ctx *Context, name string, id IDInput, state *SystempLogSyslogdFilterState, opts ...ResourceOption) (*SystempLogSyslogdFilter, error)
    public static SystempLogSyslogdFilter Get(string name, Input<string> id, SystempLogSyslogdFilterState? state, CustomResourceOptions? opts = null)
    public static SystempLogSyslogdFilter get(String name, Output<String> id, SystempLogSyslogdFilterState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystempLogSyslogdFilter    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Anomaly string
    Enable/disable anomaly logging. Valid values: disable, enable.
    Cifs string
    Cifs. Valid values: disable, enable.
    Devprof string
    Devprof.
    Dns string
    Dns. Valid values: disable, enable.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ExcludeLists List<SystempLogSyslogdFilterExcludeList>
    Exclude-List. The structure of exclude_list block is documented below.
    Filter string
    Syslog filter.
    FilterType string
    Include/exclude logs that match the filter. Valid values: include, exclude.
    FortiSwitch string
    Enable/disable Forti-Switch logging. Valid values: disable, enable.
    ForwardTraffic string
    Enable/disable forward traffic logging. Valid values: disable, enable.
    FreeStyles List<SystempLogSyslogdFilterFreeStyle>
    Free-Style. The structure of free_style block is documented below.
    Gtp string
    Enable/disable GTP messages logging. Valid values: disable, enable.
    HttpTransaction string
    Enable/disable log HTTP transaction messages. Valid values: disable, enable.
    LocalTraffic string
    Enable/disable local in or out traffic logging. Valid values: disable, enable.
    MulticastTraffic string
    Enable/disable multicast traffic logging. Valid values: disable, enable.
    NetscanDiscovery string
    Enable/disable netscan discovery event logging. Valid values: disable, enable.
    NetscanVulnerability string
    Enable/disable netscan vulnerability event logging. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Severity string
    Lowest severity level to log. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    SnifferTraffic string
    Enable/disable sniffer traffic logging. Valid values: disable, enable.
    Ssh string
    Ssh. Valid values: disable, enable.
    Ssl string
    Ssl. Valid values: disable, enable.
    SystempLogSyslogdFilterId string
    an identifier for the resource.
    Voip string
    Enable/disable VoIP logging. Valid values: disable, enable.
    ZtnaTraffic string
    Enable/disable ztna traffic logging. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Anomaly string
    Enable/disable anomaly logging. Valid values: disable, enable.
    Cifs string
    Cifs. Valid values: disable, enable.
    Devprof string
    Devprof.
    Dns string
    Dns. Valid values: disable, enable.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ExcludeLists []SystempLogSyslogdFilterExcludeListArgs
    Exclude-List. The structure of exclude_list block is documented below.
    Filter string
    Syslog filter.
    FilterType string
    Include/exclude logs that match the filter. Valid values: include, exclude.
    FortiSwitch string
    Enable/disable Forti-Switch logging. Valid values: disable, enable.
    ForwardTraffic string
    Enable/disable forward traffic logging. Valid values: disable, enable.
    FreeStyles []SystempLogSyslogdFilterFreeStyleTypeArgs
    Free-Style. The structure of free_style block is documented below.
    Gtp string
    Enable/disable GTP messages logging. Valid values: disable, enable.
    HttpTransaction string
    Enable/disable log HTTP transaction messages. Valid values: disable, enable.
    LocalTraffic string
    Enable/disable local in or out traffic logging. Valid values: disable, enable.
    MulticastTraffic string
    Enable/disable multicast traffic logging. Valid values: disable, enable.
    NetscanDiscovery string
    Enable/disable netscan discovery event logging. Valid values: disable, enable.
    NetscanVulnerability string
    Enable/disable netscan vulnerability event logging. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Severity string
    Lowest severity level to log. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    SnifferTraffic string
    Enable/disable sniffer traffic logging. Valid values: disable, enable.
    Ssh string
    Ssh. Valid values: disable, enable.
    Ssl string
    Ssl. Valid values: disable, enable.
    SystempLogSyslogdFilterId string
    an identifier for the resource.
    Voip string
    Enable/disable VoIP logging. Valid values: disable, enable.
    ZtnaTraffic string
    Enable/disable ztna traffic logging. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    anomaly String
    Enable/disable anomaly logging. Valid values: disable, enable.
    cifs String
    Cifs. Valid values: disable, enable.
    devprof String
    Devprof.
    dns String
    Dns. Valid values: disable, enable.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    excludeLists List<SystempLogSyslogdFilterExcludeList>
    Exclude-List. The structure of exclude_list block is documented below.
    filter String
    Syslog filter.
    filterType String
    Include/exclude logs that match the filter. Valid values: include, exclude.
    fortiSwitch String
    Enable/disable Forti-Switch logging. Valid values: disable, enable.
    forwardTraffic String
    Enable/disable forward traffic logging. Valid values: disable, enable.
    freeStyles List<SystempLogSyslogdFilterFreeStyle>
    Free-Style. The structure of free_style block is documented below.
    gtp String
    Enable/disable GTP messages logging. Valid values: disable, enable.
    httpTransaction String
    Enable/disable log HTTP transaction messages. Valid values: disable, enable.
    localTraffic String
    Enable/disable local in or out traffic logging. Valid values: disable, enable.
    multicastTraffic String
    Enable/disable multicast traffic logging. Valid values: disable, enable.
    netscanDiscovery String
    Enable/disable netscan discovery event logging. Valid values: disable, enable.
    netscanVulnerability String
    Enable/disable netscan vulnerability event logging. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severity String
    Lowest severity level to log. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    snifferTraffic String
    Enable/disable sniffer traffic logging. Valid values: disable, enable.
    ssh String
    Ssh. Valid values: disable, enable.
    ssl String
    Ssl. Valid values: disable, enable.
    systempLogSyslogdFilterId String
    an identifier for the resource.
    voip String
    Enable/disable VoIP logging. Valid values: disable, enable.
    ztnaTraffic String
    Enable/disable ztna traffic logging. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    anomaly string
    Enable/disable anomaly logging. Valid values: disable, enable.
    cifs string
    Cifs. Valid values: disable, enable.
    devprof string
    Devprof.
    dns string
    Dns. Valid values: disable, enable.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    excludeLists SystempLogSyslogdFilterExcludeList[]
    Exclude-List. The structure of exclude_list block is documented below.
    filter string
    Syslog filter.
    filterType string
    Include/exclude logs that match the filter. Valid values: include, exclude.
    fortiSwitch string
    Enable/disable Forti-Switch logging. Valid values: disable, enable.
    forwardTraffic string
    Enable/disable forward traffic logging. Valid values: disable, enable.
    freeStyles SystempLogSyslogdFilterFreeStyle[]
    Free-Style. The structure of free_style block is documented below.
    gtp string
    Enable/disable GTP messages logging. Valid values: disable, enable.
    httpTransaction string
    Enable/disable log HTTP transaction messages. Valid values: disable, enable.
    localTraffic string
    Enable/disable local in or out traffic logging. Valid values: disable, enable.
    multicastTraffic string
    Enable/disable multicast traffic logging. Valid values: disable, enable.
    netscanDiscovery string
    Enable/disable netscan discovery event logging. Valid values: disable, enable.
    netscanVulnerability string
    Enable/disable netscan vulnerability event logging. Valid values: disable, enable.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severity string
    Lowest severity level to log. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    snifferTraffic string
    Enable/disable sniffer traffic logging. Valid values: disable, enable.
    ssh string
    Ssh. Valid values: disable, enable.
    ssl string
    Ssl. Valid values: disable, enable.
    systempLogSyslogdFilterId string
    an identifier for the resource.
    voip string
    Enable/disable VoIP logging. Valid values: disable, enable.
    ztnaTraffic string
    Enable/disable ztna traffic logging. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    anomaly str
    Enable/disable anomaly logging. Valid values: disable, enable.
    cifs str
    Cifs. Valid values: disable, enable.
    devprof str
    Devprof.
    dns str
    Dns. Valid values: disable, enable.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exclude_lists Sequence[SystempLogSyslogdFilterExcludeListArgs]
    Exclude-List. The structure of exclude_list block is documented below.
    filter str
    Syslog filter.
    filter_type str
    Include/exclude logs that match the filter. Valid values: include, exclude.
    forti_switch str
    Enable/disable Forti-Switch logging. Valid values: disable, enable.
    forward_traffic str
    Enable/disable forward traffic logging. Valid values: disable, enable.
    free_styles Sequence[SystempLogSyslogdFilterFreeStyleArgs]
    Free-Style. The structure of free_style block is documented below.
    gtp str
    Enable/disable GTP messages logging. Valid values: disable, enable.
    http_transaction str
    Enable/disable log HTTP transaction messages. Valid values: disable, enable.
    local_traffic str
    Enable/disable local in or out traffic logging. Valid values: disable, enable.
    multicast_traffic str
    Enable/disable multicast traffic logging. Valid values: disable, enable.
    netscan_discovery str
    Enable/disable netscan discovery event logging. Valid values: disable, enable.
    netscan_vulnerability str
    Enable/disable netscan vulnerability event logging. Valid values: disable, enable.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severity str
    Lowest severity level to log. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    sniffer_traffic str
    Enable/disable sniffer traffic logging. Valid values: disable, enable.
    ssh str
    Ssh. Valid values: disable, enable.
    ssl str
    Ssl. Valid values: disable, enable.
    systemp_log_syslogd_filter_id str
    an identifier for the resource.
    voip str
    Enable/disable VoIP logging. Valid values: disable, enable.
    ztna_traffic str
    Enable/disable ztna traffic logging. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    anomaly String
    Enable/disable anomaly logging. Valid values: disable, enable.
    cifs String
    Cifs. Valid values: disable, enable.
    devprof String
    Devprof.
    dns String
    Dns. Valid values: disable, enable.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    excludeLists List<Property Map>
    Exclude-List. The structure of exclude_list block is documented below.
    filter String
    Syslog filter.
    filterType String
    Include/exclude logs that match the filter. Valid values: include, exclude.
    fortiSwitch String
    Enable/disable Forti-Switch logging. Valid values: disable, enable.
    forwardTraffic String
    Enable/disable forward traffic logging. Valid values: disable, enable.
    freeStyles List<Property Map>
    Free-Style. The structure of free_style block is documented below.
    gtp String
    Enable/disable GTP messages logging. Valid values: disable, enable.
    httpTransaction String
    Enable/disable log HTTP transaction messages. Valid values: disable, enable.
    localTraffic String
    Enable/disable local in or out traffic logging. Valid values: disable, enable.
    multicastTraffic String
    Enable/disable multicast traffic logging. Valid values: disable, enable.
    netscanDiscovery String
    Enable/disable netscan discovery event logging. Valid values: disable, enable.
    netscanVulnerability String
    Enable/disable netscan vulnerability event logging. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severity String
    Lowest severity level to log. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    snifferTraffic String
    Enable/disable sniffer traffic logging. Valid values: disable, enable.
    ssh String
    Ssh. Valid values: disable, enable.
    ssl String
    Ssl. Valid values: disable, enable.
    systempLogSyslogdFilterId String
    an identifier for the resource.
    voip String
    Enable/disable VoIP logging. Valid values: disable, enable.
    ztnaTraffic String
    Enable/disable ztna traffic logging. Valid values: disable, enable.

    Supporting Types

    SystempLogSyslogdFilterExcludeList, SystempLogSyslogdFilterExcludeListArgs

    Category string
    Category. Valid values: app-ctrl, attack, dlp, event, traffic, virus, voip, webfilter, netscan, spam, anomaly, waf.
    Fields List<SystempLogSyslogdFilterExcludeListField>
    Fields. The structure of fields block is documented below.
    Id double
    Id.
    Category string
    Category. Valid values: app-ctrl, attack, dlp, event, traffic, virus, voip, webfilter, netscan, spam, anomaly, waf.
    Fields []SystempLogSyslogdFilterExcludeListField
    Fields. The structure of fields block is documented below.
    Id float64
    Id.
    category String
    Category. Valid values: app-ctrl, attack, dlp, event, traffic, virus, voip, webfilter, netscan, spam, anomaly, waf.
    fields List<SystempLogSyslogdFilterExcludeListField>
    Fields. The structure of fields block is documented below.
    id Double
    Id.
    category string
    Category. Valid values: app-ctrl, attack, dlp, event, traffic, virus, voip, webfilter, netscan, spam, anomaly, waf.
    fields SystempLogSyslogdFilterExcludeListField[]
    Fields. The structure of fields block is documented below.
    id number
    Id.
    category str
    Category. Valid values: app-ctrl, attack, dlp, event, traffic, virus, voip, webfilter, netscan, spam, anomaly, waf.
    fields Sequence[SystempLogSyslogdFilterExcludeListField]
    Fields. The structure of fields block is documented below.
    id float
    Id.
    category String
    Category. Valid values: app-ctrl, attack, dlp, event, traffic, virus, voip, webfilter, netscan, spam, anomaly, waf.
    fields List<Property Map>
    Fields. The structure of fields block is documented below.
    id Number
    Id.

    SystempLogSyslogdFilterExcludeListField, SystempLogSyslogdFilterExcludeListFieldArgs

    Args List<string>
    Args.
    Field string
    Field.
    Negate string
    Negate. Valid values: disable, enable.
    Args []string
    Args.
    Field string
    Field.
    Negate string
    Negate. Valid values: disable, enable.
    args List<String>
    Args.
    field String
    Field.
    negate String
    Negate. Valid values: disable, enable.
    args string[]
    Args.
    field string
    Field.
    negate string
    Negate. Valid values: disable, enable.
    args Sequence[str]
    Args.
    field str
    Field.
    negate str
    Negate. Valid values: disable, enable.
    args List<String>
    Args.
    field String
    Field.
    negate String
    Negate. Valid values: disable, enable.

    SystempLogSyslogdFilterFreeStyle, SystempLogSyslogdFilterFreeStyleArgs

    Category string
    Log category. Valid values: traffic, event, virus, webfilter, attack, spam, voip, dlp, app-ctrl, anomaly, waf, gtp, dns, ssh, ssl, file-filter, icap, ztna.
    Filter string
    Free style filter string.
    FilterType string
    Include/exclude logs that match the filter. Valid values: include, exclude.
    Id double
    Entry ID.
    Category string
    Log category. Valid values: traffic, event, virus, webfilter, attack, spam, voip, dlp, app-ctrl, anomaly, waf, gtp, dns, ssh, ssl, file-filter, icap, ztna.
    Filter string
    Free style filter string.
    FilterType string
    Include/exclude logs that match the filter. Valid values: include, exclude.
    Id float64
    Entry ID.
    category String
    Log category. Valid values: traffic, event, virus, webfilter, attack, spam, voip, dlp, app-ctrl, anomaly, waf, gtp, dns, ssh, ssl, file-filter, icap, ztna.
    filter String
    Free style filter string.
    filterType String
    Include/exclude logs that match the filter. Valid values: include, exclude.
    id Double
    Entry ID.
    category string
    Log category. Valid values: traffic, event, virus, webfilter, attack, spam, voip, dlp, app-ctrl, anomaly, waf, gtp, dns, ssh, ssl, file-filter, icap, ztna.
    filter string
    Free style filter string.
    filterType string
    Include/exclude logs that match the filter. Valid values: include, exclude.
    id number
    Entry ID.
    category str
    Log category. Valid values: traffic, event, virus, webfilter, attack, spam, voip, dlp, app-ctrl, anomaly, waf, gtp, dns, ssh, ssl, file-filter, icap, ztna.
    filter str
    Free style filter string.
    filter_type str
    Include/exclude logs that match the filter. Valid values: include, exclude.
    id float
    Entry ID.
    category String
    Log category. Valid values: traffic, event, virus, webfilter, attack, spam, voip, dlp, app-ctrl, anomaly, waf, gtp, dns, ssh, ssl, file-filter, icap, ztna.
    filter String
    Free style filter string.
    filterType String
    Include/exclude logs that match the filter. Valid values: include, exclude.
    id Number
    Entry ID.

    Import

    Systemp LogSyslogdFilter can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systempLogSyslogdFilter:SystempLogSyslogdFilter labelname SystempLogSyslogdFilter
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

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

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

    Package Details

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