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

fortimanager.SystemSqlCustomindex

Explore with Pulumi AI

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

    List of SQL index fields.

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemSqlCustomindex("trname", {
        caseSensitive: "disable",
        deviceType: "FortiGate",
        fosid: 1,
        indexField: "srcip",
        logType: "attack",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemSqlCustomindex("trname",
        case_sensitive="disable",
        device_type="FortiGate",
        fosid=1,
        index_field="srcip",
        log_type="attack")
    
    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.NewSystemSqlCustomindex(ctx, "trname", &fortimanager.SystemSqlCustomindexArgs{
    			CaseSensitive: pulumi.String("disable"),
    			DeviceType:    pulumi.String("FortiGate"),
    			Fosid:         pulumi.Float64(1),
    			IndexField:    pulumi.String("srcip"),
    			LogType:       pulumi.String("attack"),
    		})
    		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.SystemSqlCustomindex("trname", new()
        {
            CaseSensitive = "disable",
            DeviceType = "FortiGate",
            Fosid = 1,
            IndexField = "srcip",
            LogType = "attack",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemSqlCustomindex;
    import com.pulumi.fortimanager.SystemSqlCustomindexArgs;
    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 SystemSqlCustomindex("trname", SystemSqlCustomindexArgs.builder()
                .caseSensitive("disable")
                .deviceType("FortiGate")
                .fosid("1")
                .indexField("srcip")
                .logType("attack")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemSqlCustomindex
        properties:
          caseSensitive: disable
          deviceType: FortiGate
          fosid: '1'
          indexField: srcip
          logType: attack
    

    Create SystemSqlCustomindex Resource

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

    Constructor syntax

    new SystemSqlCustomindex(name: string, args?: SystemSqlCustomindexArgs, opts?: CustomResourceOptions);
    @overload
    def SystemSqlCustomindex(resource_name: str,
                             args: Optional[SystemSqlCustomindexArgs] = None,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemSqlCustomindex(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             case_sensitive: Optional[str] = None,
                             device_type: Optional[str] = None,
                             fosid: Optional[float] = None,
                             index_field: Optional[str] = None,
                             log_type: Optional[str] = None,
                             system_sql_customindex_id: Optional[str] = None)
    func NewSystemSqlCustomindex(ctx *Context, name string, args *SystemSqlCustomindexArgs, opts ...ResourceOption) (*SystemSqlCustomindex, error)
    public SystemSqlCustomindex(string name, SystemSqlCustomindexArgs? args = null, CustomResourceOptions? opts = null)
    public SystemSqlCustomindex(String name, SystemSqlCustomindexArgs args)
    public SystemSqlCustomindex(String name, SystemSqlCustomindexArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemSqlCustomindex
    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 SystemSqlCustomindexArgs
    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 SystemSqlCustomindexArgs
    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 SystemSqlCustomindexArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemSqlCustomindexArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemSqlCustomindexArgs
    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 systemSqlCustomindexResource = new Fortimanager.SystemSqlCustomindex("systemSqlCustomindexResource", new()
    {
        CaseSensitive = "string",
        DeviceType = "string",
        Fosid = 0,
        IndexField = "string",
        LogType = "string",
        SystemSqlCustomindexId = "string",
    });
    
    example, err := fortimanager.NewSystemSqlCustomindex(ctx, "systemSqlCustomindexResource", &fortimanager.SystemSqlCustomindexArgs{
    CaseSensitive: pulumi.String("string"),
    DeviceType: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    IndexField: pulumi.String("string"),
    LogType: pulumi.String("string"),
    SystemSqlCustomindexId: pulumi.String("string"),
    })
    
    var systemSqlCustomindexResource = new SystemSqlCustomindex("systemSqlCustomindexResource", SystemSqlCustomindexArgs.builder()
        .caseSensitive("string")
        .deviceType("string")
        .fosid(0)
        .indexField("string")
        .logType("string")
        .systemSqlCustomindexId("string")
        .build());
    
    system_sql_customindex_resource = fortimanager.SystemSqlCustomindex("systemSqlCustomindexResource",
        case_sensitive="string",
        device_type="string",
        fosid=0,
        index_field="string",
        log_type="string",
        system_sql_customindex_id="string")
    
    const systemSqlCustomindexResource = new fortimanager.SystemSqlCustomindex("systemSqlCustomindexResource", {
        caseSensitive: "string",
        deviceType: "string",
        fosid: 0,
        indexField: "string",
        logType: "string",
        systemSqlCustomindexId: "string",
    });
    
    type: fortimanager:SystemSqlCustomindex
    properties:
        caseSensitive: string
        deviceType: string
        fosid: 0
        indexField: string
        logType: string
        systemSqlCustomindexId: string
    

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

    CaseSensitive string
    Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values: disable, enable.
    DeviceType string
    Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values: FortiGate, FortiMail, FortiWeb.
    Fosid double
    Add or Edit log index fields.
    IndexField string
    Log field name to be indexed.
    LogType string
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    SystemSqlCustomindexId string
    an identifier for the resource with format {{fosid}}.
    CaseSensitive string
    Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values: disable, enable.
    DeviceType string
    Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values: FortiGate, FortiMail, FortiWeb.
    Fosid float64
    Add or Edit log index fields.
    IndexField string
    Log field name to be indexed.
    LogType string
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    SystemSqlCustomindexId string
    an identifier for the resource with format {{fosid}}.
    caseSensitive String
    Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values: disable, enable.
    deviceType String
    Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values: FortiGate, FortiMail, FortiWeb.
    fosid Double
    Add or Edit log index fields.
    indexField String
    Log field name to be indexed.
    logType String
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    systemSqlCustomindexId String
    an identifier for the resource with format {{fosid}}.
    caseSensitive string
    Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values: disable, enable.
    deviceType string
    Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values: FortiGate, FortiMail, FortiWeb.
    fosid number
    Add or Edit log index fields.
    indexField string
    Log field name to be indexed.
    logType string
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    systemSqlCustomindexId string
    an identifier for the resource with format {{fosid}}.
    case_sensitive str
    Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values: disable, enable.
    device_type str
    Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values: FortiGate, FortiMail, FortiWeb.
    fosid float
    Add or Edit log index fields.
    index_field str
    Log field name to be indexed.
    log_type str
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    system_sql_customindex_id str
    an identifier for the resource with format {{fosid}}.
    caseSensitive String
    Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values: disable, enable.
    deviceType String
    Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values: FortiGate, FortiMail, FortiWeb.
    fosid Number
    Add or Edit log index fields.
    indexField String
    Log field name to be indexed.
    logType String
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    systemSqlCustomindexId String
    an identifier for the resource with format {{fosid}}.

    Outputs

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

    Get an existing SystemSqlCustomindex 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?: SystemSqlCustomindexState, opts?: CustomResourceOptions): SystemSqlCustomindex
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            case_sensitive: Optional[str] = None,
            device_type: Optional[str] = None,
            fosid: Optional[float] = None,
            index_field: Optional[str] = None,
            log_type: Optional[str] = None,
            system_sql_customindex_id: Optional[str] = None) -> SystemSqlCustomindex
    func GetSystemSqlCustomindex(ctx *Context, name string, id IDInput, state *SystemSqlCustomindexState, opts ...ResourceOption) (*SystemSqlCustomindex, error)
    public static SystemSqlCustomindex Get(string name, Input<string> id, SystemSqlCustomindexState? state, CustomResourceOptions? opts = null)
    public static SystemSqlCustomindex get(String name, Output<String> id, SystemSqlCustomindexState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemSqlCustomindex    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:
    CaseSensitive string
    Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values: disable, enable.
    DeviceType string
    Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values: FortiGate, FortiMail, FortiWeb.
    Fosid double
    Add or Edit log index fields.
    IndexField string
    Log field name to be indexed.
    LogType string
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    SystemSqlCustomindexId string
    an identifier for the resource with format {{fosid}}.
    CaseSensitive string
    Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values: disable, enable.
    DeviceType string
    Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values: FortiGate, FortiMail, FortiWeb.
    Fosid float64
    Add or Edit log index fields.
    IndexField string
    Log field name to be indexed.
    LogType string
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    SystemSqlCustomindexId string
    an identifier for the resource with format {{fosid}}.
    caseSensitive String
    Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values: disable, enable.
    deviceType String
    Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values: FortiGate, FortiMail, FortiWeb.
    fosid Double
    Add or Edit log index fields.
    indexField String
    Log field name to be indexed.
    logType String
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    systemSqlCustomindexId String
    an identifier for the resource with format {{fosid}}.
    caseSensitive string
    Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values: disable, enable.
    deviceType string
    Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values: FortiGate, FortiMail, FortiWeb.
    fosid number
    Add or Edit log index fields.
    indexField string
    Log field name to be indexed.
    logType string
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    systemSqlCustomindexId string
    an identifier for the resource with format {{fosid}}.
    case_sensitive str
    Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values: disable, enable.
    device_type str
    Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values: FortiGate, FortiMail, FortiWeb.
    fosid float
    Add or Edit log index fields.
    index_field str
    Log field name to be indexed.
    log_type str
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    system_sql_customindex_id str
    an identifier for the resource with format {{fosid}}.
    caseSensitive String
    Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values: disable, enable.
    deviceType String
    Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values: FortiGate, FortiMail, FortiWeb.
    fosid Number
    Add or Edit log index fields.
    indexField String
    Log field name to be indexed.
    logType String
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    systemSqlCustomindexId String
    an identifier for the resource with format {{fosid}}.

    Import

    System SqlCustomIndex can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemSqlCustomindex:SystemSqlCustomindex labelname {{fosid}}
    

    $ 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