fortimanager.SystemSql
Explore with Pulumi AI
SQL settings.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
custom_index
:fortimanager.SystemSqlCustomindex
custom_skipidx
:fortimanager.SystemSqlCustomskipidx
ts_index_field
:fortimanager.SystemSqlTsindexfield
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.SystemSql("trname", {
passwords: ["fortinet"],
server: "192.168.1.1",
status: "enable",
username: "admin",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.SystemSql("trname",
passwords=["fortinet"],
server="192.168.1.1",
status="enable",
username="admin")
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.NewSystemSql(ctx, "trname", &fortimanager.SystemSqlArgs{
Passwords: pulumi.StringArray{
pulumi.String("fortinet"),
},
Server: pulumi.String("192.168.1.1"),
Status: pulumi.String("enable"),
Username: pulumi.String("admin"),
})
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.SystemSql("trname", new()
{
Passwords = new[]
{
"fortinet",
},
Server = "192.168.1.1",
Status = "enable",
Username = "admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystemSql;
import com.pulumi.fortimanager.SystemSqlArgs;
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 SystemSql("trname", SystemSqlArgs.builder()
.passwords("fortinet")
.server("192.168.1.1")
.status("enable")
.username("admin")
.build());
}
}
resources:
trname:
type: fortimanager:SystemSql
properties:
passwords:
- fortinet
server: 192.168.1.1
status: enable
username: admin
Create SystemSql Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemSql(name: string, args?: SystemSqlArgs, opts?: CustomResourceOptions);
@overload
def SystemSql(resource_name: str,
args: Optional[SystemSqlArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SystemSql(resource_name: str,
opts: Optional[ResourceOptions] = None,
background_rebuild: Optional[str] = None,
compress_table_min_age: Optional[float] = None,
custom_indices: Optional[Sequence[SystemSqlCustomIndexArgs]] = None,
custom_skipidxes: Optional[Sequence[SystemSqlCustomSkipidxArgs]] = None,
database_name: Optional[str] = None,
database_type: Optional[str] = None,
device_count_high: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
event_table_partition_time: Optional[float] = None,
fct_table_partition_time: Optional[float] = None,
logtypes: Optional[Sequence[str]] = None,
passwords: Optional[Sequence[str]] = None,
prompt_sql_upgrade: Optional[str] = None,
rebuild_event: Optional[str] = None,
rebuild_event_start_times: Optional[Sequence[str]] = None,
server: Optional[str] = None,
start_times: Optional[Sequence[str]] = None,
status: Optional[str] = None,
system_sql_id: Optional[str] = None,
text_search_index: Optional[str] = None,
traffic_table_partition_time: Optional[float] = None,
ts_index_fields: Optional[Sequence[SystemSqlTsIndexFieldArgs]] = None,
username: Optional[str] = None,
utm_table_partition_time: Optional[float] = None)
func NewSystemSql(ctx *Context, name string, args *SystemSqlArgs, opts ...ResourceOption) (*SystemSql, error)
public SystemSql(string name, SystemSqlArgs? args = null, CustomResourceOptions? opts = null)
public SystemSql(String name, SystemSqlArgs args)
public SystemSql(String name, SystemSqlArgs args, CustomResourceOptions options)
type: fortimanager:SystemSql
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 SystemSqlArgs
- 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 SystemSqlArgs
- 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 SystemSqlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemSqlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemSqlArgs
- 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 systemSqlResource = new Fortimanager.SystemSql("systemSqlResource", new()
{
BackgroundRebuild = "string",
CompressTableMinAge = 0,
CustomIndices = new[]
{
new Fortimanager.Inputs.SystemSqlCustomIndexArgs
{
CaseSensitive = "string",
DeviceType = "string",
Id = 0,
IndexField = "string",
LogType = "string",
},
},
CustomSkipidxes = new[]
{
new Fortimanager.Inputs.SystemSqlCustomSkipidxArgs
{
DeviceType = "string",
Id = 0,
IndexField = "string",
LogType = "string",
},
},
DatabaseName = "string",
DatabaseType = "string",
DeviceCountHigh = "string",
DynamicSortSubtable = "string",
EventTablePartitionTime = 0,
FctTablePartitionTime = 0,
Logtypes = new[]
{
"string",
},
Passwords = new[]
{
"string",
},
PromptSqlUpgrade = "string",
RebuildEvent = "string",
RebuildEventStartTimes = new[]
{
"string",
},
Server = "string",
StartTimes = new[]
{
"string",
},
Status = "string",
SystemSqlId = "string",
TextSearchIndex = "string",
TrafficTablePartitionTime = 0,
TsIndexFields = new[]
{
new Fortimanager.Inputs.SystemSqlTsIndexFieldArgs
{
Category = "string",
Value = "string",
},
},
Username = "string",
UtmTablePartitionTime = 0,
});
example, err := fortimanager.NewSystemSql(ctx, "systemSqlResource", &fortimanager.SystemSqlArgs{
BackgroundRebuild: pulumi.String("string"),
CompressTableMinAge: pulumi.Float64(0),
CustomIndices: .SystemSqlCustomIndexTypeArray{
&.SystemSqlCustomIndexTypeArgs{
CaseSensitive: pulumi.String("string"),
DeviceType: pulumi.String("string"),
Id: pulumi.Float64(0),
IndexField: pulumi.String("string"),
LogType: pulumi.String("string"),
},
},
CustomSkipidxes: .SystemSqlCustomSkipidxTypeArray{
&.SystemSqlCustomSkipidxTypeArgs{
DeviceType: pulumi.String("string"),
Id: pulumi.Float64(0),
IndexField: pulumi.String("string"),
LogType: pulumi.String("string"),
},
},
DatabaseName: pulumi.String("string"),
DatabaseType: pulumi.String("string"),
DeviceCountHigh: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
EventTablePartitionTime: pulumi.Float64(0),
FctTablePartitionTime: pulumi.Float64(0),
Logtypes: pulumi.StringArray{
pulumi.String("string"),
},
Passwords: pulumi.StringArray{
pulumi.String("string"),
},
PromptSqlUpgrade: pulumi.String("string"),
RebuildEvent: pulumi.String("string"),
RebuildEventStartTimes: pulumi.StringArray{
pulumi.String("string"),
},
Server: pulumi.String("string"),
StartTimes: pulumi.StringArray{
pulumi.String("string"),
},
Status: pulumi.String("string"),
SystemSqlId: pulumi.String("string"),
TextSearchIndex: pulumi.String("string"),
TrafficTablePartitionTime: pulumi.Float64(0),
TsIndexFields: .SystemSqlTsIndexFieldTypeArray{
&.SystemSqlTsIndexFieldTypeArgs{
Category: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Username: pulumi.String("string"),
UtmTablePartitionTime: pulumi.Float64(0),
})
var systemSqlResource = new SystemSql("systemSqlResource", SystemSqlArgs.builder()
.backgroundRebuild("string")
.compressTableMinAge(0)
.customIndices(SystemSqlCustomIndexArgs.builder()
.caseSensitive("string")
.deviceType("string")
.id(0)
.indexField("string")
.logType("string")
.build())
.customSkipidxes(SystemSqlCustomSkipidxArgs.builder()
.deviceType("string")
.id(0)
.indexField("string")
.logType("string")
.build())
.databaseName("string")
.databaseType("string")
.deviceCountHigh("string")
.dynamicSortSubtable("string")
.eventTablePartitionTime(0)
.fctTablePartitionTime(0)
.logtypes("string")
.passwords("string")
.promptSqlUpgrade("string")
.rebuildEvent("string")
.rebuildEventStartTimes("string")
.server("string")
.startTimes("string")
.status("string")
.systemSqlId("string")
.textSearchIndex("string")
.trafficTablePartitionTime(0)
.tsIndexFields(SystemSqlTsIndexFieldArgs.builder()
.category("string")
.value("string")
.build())
.username("string")
.utmTablePartitionTime(0)
.build());
system_sql_resource = fortimanager.SystemSql("systemSqlResource",
background_rebuild="string",
compress_table_min_age=0,
custom_indices=[{
"case_sensitive": "string",
"device_type": "string",
"id": 0,
"index_field": "string",
"log_type": "string",
}],
custom_skipidxes=[{
"device_type": "string",
"id": 0,
"index_field": "string",
"log_type": "string",
}],
database_name="string",
database_type="string",
device_count_high="string",
dynamic_sort_subtable="string",
event_table_partition_time=0,
fct_table_partition_time=0,
logtypes=["string"],
passwords=["string"],
prompt_sql_upgrade="string",
rebuild_event="string",
rebuild_event_start_times=["string"],
server="string",
start_times=["string"],
status="string",
system_sql_id="string",
text_search_index="string",
traffic_table_partition_time=0,
ts_index_fields=[{
"category": "string",
"value": "string",
}],
username="string",
utm_table_partition_time=0)
const systemSqlResource = new fortimanager.SystemSql("systemSqlResource", {
backgroundRebuild: "string",
compressTableMinAge: 0,
customIndices: [{
caseSensitive: "string",
deviceType: "string",
id: 0,
indexField: "string",
logType: "string",
}],
customSkipidxes: [{
deviceType: "string",
id: 0,
indexField: "string",
logType: "string",
}],
databaseName: "string",
databaseType: "string",
deviceCountHigh: "string",
dynamicSortSubtable: "string",
eventTablePartitionTime: 0,
fctTablePartitionTime: 0,
logtypes: ["string"],
passwords: ["string"],
promptSqlUpgrade: "string",
rebuildEvent: "string",
rebuildEventStartTimes: ["string"],
server: "string",
startTimes: ["string"],
status: "string",
systemSqlId: "string",
textSearchIndex: "string",
trafficTablePartitionTime: 0,
tsIndexFields: [{
category: "string",
value: "string",
}],
username: "string",
utmTablePartitionTime: 0,
});
type: fortimanager:SystemSql
properties:
backgroundRebuild: string
compressTableMinAge: 0
customIndices:
- caseSensitive: string
deviceType: string
id: 0
indexField: string
logType: string
customSkipidxes:
- deviceType: string
id: 0
indexField: string
logType: string
databaseName: string
databaseType: string
deviceCountHigh: string
dynamicSortSubtable: string
eventTablePartitionTime: 0
fctTablePartitionTime: 0
logtypes:
- string
passwords:
- string
promptSqlUpgrade: string
rebuildEvent: string
rebuildEventStartTimes:
- string
server: string
startTimes:
- string
status: string
systemSqlId: string
textSearchIndex: string
trafficTablePartitionTime: 0
tsIndexFields:
- category: string
value: string
username: string
utmTablePartitionTime: 0
SystemSql 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 SystemSql resource accepts the following input properties:
- Background
Rebuild string - Disable/Enable rebuild SQL database in the background. disable - Rebuild SQL database not in the background. enable - Rebuild SQL database in the background. Valid values:
disable
,enable
. - Compress
Table doubleMin Age - Minimum age in days for SQL tables to be compressed.
- Custom
Indices List<SystemSql Custom Index> - Custom-Index. The structure of
custom_index
block is documented below. - Custom
Skipidxes List<SystemSql Custom Skipidx> - Custom-Skipidx. The structure of
custom_skipidx
block is documented below. - Database
Name string - Database name.
- Database
Type string - Database type. mysql - MySQL database. postgres - PostgreSQL local database. Valid values:
mysql
,postgres
. - Device
Count stringHigh - Must set to enable if the count of registered devices is greater than 8000. disable - Set to disable if device count is less than 8000. enable - Set to enable if device count is equal to or greater than 8000. Valid values:
disable
,enable
. - Dynamic
Sort stringSubtable - 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.
- Event
Table doublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for event logs.
- Fct
Table doublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for FortiClient logs.
- Logtypes List<string>
- Log type. none - None. 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:
none
,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
. - Passwords List<string>
- Password for login remote database.
- Prompt
Sql stringUpgrade - Prompt to convert log database into SQL database at start time on GUI. disable - Do not prompt to upgrade log database to SQL database at start time on GUI. enable - Prompt to upgrade log database to SQL database at start time on GUI. Valid values:
disable
,enable
. - Rebuild
Event string - Disable/Enable rebuild event during SQL database rebuilding. disable - Do not rebuild event during SQL database rebuilding. enable - Rebuild event during SQL database rebuilding. Valid values:
disable
,enable
. - Rebuild
Event List<string>Start Times - Rebuild event starting date and time <hh:mm yyyy/mm/dd>.
- Server string
- Database IP or hostname.
- Start
Times List<string> - Start date and time <hh:mm yyyy/mm/dd>.
- Status string
- SQL database status. disable - Disable SQL database. local - Enable local database. Valid values:
disable
,local
. - System
Sql stringId - an identifier for the resource.
- Text
Search stringIndex - Disable/Enable text search index. disable - Do not create text search index. enable - Create text search index. Valid values:
disable
,enable
. - Traffic
Table doublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for traffic logs.
- Ts
Index List<SystemFields Sql Ts Index Field> - Ts-Index-Field. The structure of
ts_index_field
block is documented below. - Username string
- User name for login remote database.
- Utm
Table doublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for UTM logs.
- Background
Rebuild string - Disable/Enable rebuild SQL database in the background. disable - Rebuild SQL database not in the background. enable - Rebuild SQL database in the background. Valid values:
disable
,enable
. - Compress
Table float64Min Age - Minimum age in days for SQL tables to be compressed.
- Custom
Indices []SystemSql Custom Index Type Args - Custom-Index. The structure of
custom_index
block is documented below. - Custom
Skipidxes []SystemSql Custom Skipidx Type Args - Custom-Skipidx. The structure of
custom_skipidx
block is documented below. - Database
Name string - Database name.
- Database
Type string - Database type. mysql - MySQL database. postgres - PostgreSQL local database. Valid values:
mysql
,postgres
. - Device
Count stringHigh - Must set to enable if the count of registered devices is greater than 8000. disable - Set to disable if device count is less than 8000. enable - Set to enable if device count is equal to or greater than 8000. Valid values:
disable
,enable
. - Dynamic
Sort stringSubtable - 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.
- Event
Table float64Partition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for event logs.
- Fct
Table float64Partition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for FortiClient logs.
- Logtypes []string
- Log type. none - None. 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:
none
,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
. - Passwords []string
- Password for login remote database.
- Prompt
Sql stringUpgrade - Prompt to convert log database into SQL database at start time on GUI. disable - Do not prompt to upgrade log database to SQL database at start time on GUI. enable - Prompt to upgrade log database to SQL database at start time on GUI. Valid values:
disable
,enable
. - Rebuild
Event string - Disable/Enable rebuild event during SQL database rebuilding. disable - Do not rebuild event during SQL database rebuilding. enable - Rebuild event during SQL database rebuilding. Valid values:
disable
,enable
. - Rebuild
Event []stringStart Times - Rebuild event starting date and time <hh:mm yyyy/mm/dd>.
- Server string
- Database IP or hostname.
- Start
Times []string - Start date and time <hh:mm yyyy/mm/dd>.
- Status string
- SQL database status. disable - Disable SQL database. local - Enable local database. Valid values:
disable
,local
. - System
Sql stringId - an identifier for the resource.
- Text
Search stringIndex - Disable/Enable text search index. disable - Do not create text search index. enable - Create text search index. Valid values:
disable
,enable
. - Traffic
Table float64Partition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for traffic logs.
- Ts
Index []SystemFields Sql Ts Index Field Type Args - Ts-Index-Field. The structure of
ts_index_field
block is documented below. - Username string
- User name for login remote database.
- Utm
Table float64Partition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for UTM logs.
- background
Rebuild String - Disable/Enable rebuild SQL database in the background. disable - Rebuild SQL database not in the background. enable - Rebuild SQL database in the background. Valid values:
disable
,enable
. - compress
Table DoubleMin Age - Minimum age in days for SQL tables to be compressed.
- custom
Indices List<SystemSql Custom Index> - Custom-Index. The structure of
custom_index
block is documented below. - custom
Skipidxes List<SystemSql Custom Skipidx> - Custom-Skipidx. The structure of
custom_skipidx
block is documented below. - database
Name String - Database name.
- database
Type String - Database type. mysql - MySQL database. postgres - PostgreSQL local database. Valid values:
mysql
,postgres
. - device
Count StringHigh - Must set to enable if the count of registered devices is greater than 8000. disable - Set to disable if device count is less than 8000. enable - Set to enable if device count is equal to or greater than 8000. Valid values:
disable
,enable
. - dynamic
Sort StringSubtable - 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.
- event
Table DoublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for event logs.
- fct
Table DoublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for FortiClient logs.
- logtypes List<String>
- Log type. none - None. 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:
none
,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
. - passwords List<String>
- Password for login remote database.
- prompt
Sql StringUpgrade - Prompt to convert log database into SQL database at start time on GUI. disable - Do not prompt to upgrade log database to SQL database at start time on GUI. enable - Prompt to upgrade log database to SQL database at start time on GUI. Valid values:
disable
,enable
. - rebuild
Event String - Disable/Enable rebuild event during SQL database rebuilding. disable - Do not rebuild event during SQL database rebuilding. enable - Rebuild event during SQL database rebuilding. Valid values:
disable
,enable
. - rebuild
Event List<String>Start Times - Rebuild event starting date and time <hh:mm yyyy/mm/dd>.
- server String
- Database IP or hostname.
- start
Times List<String> - Start date and time <hh:mm yyyy/mm/dd>.
- status String
- SQL database status. disable - Disable SQL database. local - Enable local database. Valid values:
disable
,local
. - system
Sql StringId - an identifier for the resource.
- text
Search StringIndex - Disable/Enable text search index. disable - Do not create text search index. enable - Create text search index. Valid values:
disable
,enable
. - traffic
Table DoublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for traffic logs.
- ts
Index List<SystemFields Sql Ts Index Field> - Ts-Index-Field. The structure of
ts_index_field
block is documented below. - username String
- User name for login remote database.
- utm
Table DoublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for UTM logs.
- background
Rebuild string - Disable/Enable rebuild SQL database in the background. disable - Rebuild SQL database not in the background. enable - Rebuild SQL database in the background. Valid values:
disable
,enable
. - compress
Table numberMin Age - Minimum age in days for SQL tables to be compressed.
- custom
Indices SystemSql Custom Index[] - Custom-Index. The structure of
custom_index
block is documented below. - custom
Skipidxes SystemSql Custom Skipidx[] - Custom-Skipidx. The structure of
custom_skipidx
block is documented below. - database
Name string - Database name.
- database
Type string - Database type. mysql - MySQL database. postgres - PostgreSQL local database. Valid values:
mysql
,postgres
. - device
Count stringHigh - Must set to enable if the count of registered devices is greater than 8000. disable - Set to disable if device count is less than 8000. enable - Set to enable if device count is equal to or greater than 8000. Valid values:
disable
,enable
. - dynamic
Sort stringSubtable - 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.
- event
Table numberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for event logs.
- fct
Table numberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for FortiClient logs.
- logtypes string[]
- Log type. none - None. 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:
none
,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
. - passwords string[]
- Password for login remote database.
- prompt
Sql stringUpgrade - Prompt to convert log database into SQL database at start time on GUI. disable - Do not prompt to upgrade log database to SQL database at start time on GUI. enable - Prompt to upgrade log database to SQL database at start time on GUI. Valid values:
disable
,enable
. - rebuild
Event string - Disable/Enable rebuild event during SQL database rebuilding. disable - Do not rebuild event during SQL database rebuilding. enable - Rebuild event during SQL database rebuilding. Valid values:
disable
,enable
. - rebuild
Event string[]Start Times - Rebuild event starting date and time <hh:mm yyyy/mm/dd>.
- server string
- Database IP or hostname.
- start
Times string[] - Start date and time <hh:mm yyyy/mm/dd>.
- status string
- SQL database status. disable - Disable SQL database. local - Enable local database. Valid values:
disable
,local
. - system
Sql stringId - an identifier for the resource.
- text
Search stringIndex - Disable/Enable text search index. disable - Do not create text search index. enable - Create text search index. Valid values:
disable
,enable
. - traffic
Table numberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for traffic logs.
- ts
Index SystemFields Sql Ts Index Field[] - Ts-Index-Field. The structure of
ts_index_field
block is documented below. - username string
- User name for login remote database.
- utm
Table numberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for UTM logs.
- background_
rebuild str - Disable/Enable rebuild SQL database in the background. disable - Rebuild SQL database not in the background. enable - Rebuild SQL database in the background. Valid values:
disable
,enable
. - compress_
table_ floatmin_ age - Minimum age in days for SQL tables to be compressed.
- custom_
indices Sequence[SystemSql Custom Index Args] - Custom-Index. The structure of
custom_index
block is documented below. - custom_
skipidxes Sequence[SystemSql Custom Skipidx Args] - Custom-Skipidx. The structure of
custom_skipidx
block is documented below. - database_
name str - Database name.
- database_
type str - Database type. mysql - MySQL database. postgres - PostgreSQL local database. Valid values:
mysql
,postgres
. - device_
count_ strhigh - Must set to enable if the count of registered devices is greater than 8000. disable - Set to disable if device count is less than 8000. enable - Set to enable if device count is equal to or greater than 8000. Valid values:
disable
,enable
. - dynamic_
sort_ strsubtable - 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.
- event_
table_ floatpartition_ time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for event logs.
- fct_
table_ floatpartition_ time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for FortiClient logs.
- logtypes Sequence[str]
- Log type. none - None. 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:
none
,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
. - passwords Sequence[str]
- Password for login remote database.
- prompt_
sql_ strupgrade - Prompt to convert log database into SQL database at start time on GUI. disable - Do not prompt to upgrade log database to SQL database at start time on GUI. enable - Prompt to upgrade log database to SQL database at start time on GUI. Valid values:
disable
,enable
. - rebuild_
event str - Disable/Enable rebuild event during SQL database rebuilding. disable - Do not rebuild event during SQL database rebuilding. enable - Rebuild event during SQL database rebuilding. Valid values:
disable
,enable
. - rebuild_
event_ Sequence[str]start_ times - Rebuild event starting date and time <hh:mm yyyy/mm/dd>.
- server str
- Database IP or hostname.
- start_
times Sequence[str] - Start date and time <hh:mm yyyy/mm/dd>.
- status str
- SQL database status. disable - Disable SQL database. local - Enable local database. Valid values:
disable
,local
. - system_
sql_ strid - an identifier for the resource.
- text_
search_ strindex - Disable/Enable text search index. disable - Do not create text search index. enable - Create text search index. Valid values:
disable
,enable
. - traffic_
table_ floatpartition_ time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for traffic logs.
- ts_
index_ Sequence[Systemfields Sql Ts Index Field Args] - Ts-Index-Field. The structure of
ts_index_field
block is documented below. - username str
- User name for login remote database.
- utm_
table_ floatpartition_ time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for UTM logs.
- background
Rebuild String - Disable/Enable rebuild SQL database in the background. disable - Rebuild SQL database not in the background. enable - Rebuild SQL database in the background. Valid values:
disable
,enable
. - compress
Table NumberMin Age - Minimum age in days for SQL tables to be compressed.
- custom
Indices List<Property Map> - Custom-Index. The structure of
custom_index
block is documented below. - custom
Skipidxes List<Property Map> - Custom-Skipidx. The structure of
custom_skipidx
block is documented below. - database
Name String - Database name.
- database
Type String - Database type. mysql - MySQL database. postgres - PostgreSQL local database. Valid values:
mysql
,postgres
. - device
Count StringHigh - Must set to enable if the count of registered devices is greater than 8000. disable - Set to disable if device count is less than 8000. enable - Set to enable if device count is equal to or greater than 8000. Valid values:
disable
,enable
. - dynamic
Sort StringSubtable - 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.
- event
Table NumberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for event logs.
- fct
Table NumberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for FortiClient logs.
- logtypes List<String>
- Log type. none - None. 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:
none
,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
. - passwords List<String>
- Password for login remote database.
- prompt
Sql StringUpgrade - Prompt to convert log database into SQL database at start time on GUI. disable - Do not prompt to upgrade log database to SQL database at start time on GUI. enable - Prompt to upgrade log database to SQL database at start time on GUI. Valid values:
disable
,enable
. - rebuild
Event String - Disable/Enable rebuild event during SQL database rebuilding. disable - Do not rebuild event during SQL database rebuilding. enable - Rebuild event during SQL database rebuilding. Valid values:
disable
,enable
. - rebuild
Event List<String>Start Times - Rebuild event starting date and time <hh:mm yyyy/mm/dd>.
- server String
- Database IP or hostname.
- start
Times List<String> - Start date and time <hh:mm yyyy/mm/dd>.
- status String
- SQL database status. disable - Disable SQL database. local - Enable local database. Valid values:
disable
,local
. - system
Sql StringId - an identifier for the resource.
- text
Search StringIndex - Disable/Enable text search index. disable - Do not create text search index. enable - Create text search index. Valid values:
disable
,enable
. - traffic
Table NumberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for traffic logs.
- ts
Index List<Property Map>Fields - Ts-Index-Field. The structure of
ts_index_field
block is documented below. - username String
- User name for login remote database.
- utm
Table NumberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for UTM logs.
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemSql 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 SystemSql Resource
Get an existing SystemSql 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?: SystemSqlState, opts?: CustomResourceOptions): SystemSql
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
background_rebuild: Optional[str] = None,
compress_table_min_age: Optional[float] = None,
custom_indices: Optional[Sequence[SystemSqlCustomIndexArgs]] = None,
custom_skipidxes: Optional[Sequence[SystemSqlCustomSkipidxArgs]] = None,
database_name: Optional[str] = None,
database_type: Optional[str] = None,
device_count_high: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
event_table_partition_time: Optional[float] = None,
fct_table_partition_time: Optional[float] = None,
logtypes: Optional[Sequence[str]] = None,
passwords: Optional[Sequence[str]] = None,
prompt_sql_upgrade: Optional[str] = None,
rebuild_event: Optional[str] = None,
rebuild_event_start_times: Optional[Sequence[str]] = None,
server: Optional[str] = None,
start_times: Optional[Sequence[str]] = None,
status: Optional[str] = None,
system_sql_id: Optional[str] = None,
text_search_index: Optional[str] = None,
traffic_table_partition_time: Optional[float] = None,
ts_index_fields: Optional[Sequence[SystemSqlTsIndexFieldArgs]] = None,
username: Optional[str] = None,
utm_table_partition_time: Optional[float] = None) -> SystemSql
func GetSystemSql(ctx *Context, name string, id IDInput, state *SystemSqlState, opts ...ResourceOption) (*SystemSql, error)
public static SystemSql Get(string name, Input<string> id, SystemSqlState? state, CustomResourceOptions? opts = null)
public static SystemSql get(String name, Output<String> id, SystemSqlState state, CustomResourceOptions options)
resources: _: type: fortimanager:SystemSql 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.
- Background
Rebuild string - Disable/Enable rebuild SQL database in the background. disable - Rebuild SQL database not in the background. enable - Rebuild SQL database in the background. Valid values:
disable
,enable
. - Compress
Table doubleMin Age - Minimum age in days for SQL tables to be compressed.
- Custom
Indices List<SystemSql Custom Index> - Custom-Index. The structure of
custom_index
block is documented below. - Custom
Skipidxes List<SystemSql Custom Skipidx> - Custom-Skipidx. The structure of
custom_skipidx
block is documented below. - Database
Name string - Database name.
- Database
Type string - Database type. mysql - MySQL database. postgres - PostgreSQL local database. Valid values:
mysql
,postgres
. - Device
Count stringHigh - Must set to enable if the count of registered devices is greater than 8000. disable - Set to disable if device count is less than 8000. enable - Set to enable if device count is equal to or greater than 8000. Valid values:
disable
,enable
. - Dynamic
Sort stringSubtable - 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.
- Event
Table doublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for event logs.
- Fct
Table doublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for FortiClient logs.
- Logtypes List<string>
- Log type. none - None. 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:
none
,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
. - Passwords List<string>
- Password for login remote database.
- Prompt
Sql stringUpgrade - Prompt to convert log database into SQL database at start time on GUI. disable - Do not prompt to upgrade log database to SQL database at start time on GUI. enable - Prompt to upgrade log database to SQL database at start time on GUI. Valid values:
disable
,enable
. - Rebuild
Event string - Disable/Enable rebuild event during SQL database rebuilding. disable - Do not rebuild event during SQL database rebuilding. enable - Rebuild event during SQL database rebuilding. Valid values:
disable
,enable
. - Rebuild
Event List<string>Start Times - Rebuild event starting date and time <hh:mm yyyy/mm/dd>.
- Server string
- Database IP or hostname.
- Start
Times List<string> - Start date and time <hh:mm yyyy/mm/dd>.
- Status string
- SQL database status. disable - Disable SQL database. local - Enable local database. Valid values:
disable
,local
. - System
Sql stringId - an identifier for the resource.
- Text
Search stringIndex - Disable/Enable text search index. disable - Do not create text search index. enable - Create text search index. Valid values:
disable
,enable
. - Traffic
Table doublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for traffic logs.
- Ts
Index List<SystemFields Sql Ts Index Field> - Ts-Index-Field. The structure of
ts_index_field
block is documented below. - Username string
- User name for login remote database.
- Utm
Table doublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for UTM logs.
- Background
Rebuild string - Disable/Enable rebuild SQL database in the background. disable - Rebuild SQL database not in the background. enable - Rebuild SQL database in the background. Valid values:
disable
,enable
. - Compress
Table float64Min Age - Minimum age in days for SQL tables to be compressed.
- Custom
Indices []SystemSql Custom Index Type Args - Custom-Index. The structure of
custom_index
block is documented below. - Custom
Skipidxes []SystemSql Custom Skipidx Type Args - Custom-Skipidx. The structure of
custom_skipidx
block is documented below. - Database
Name string - Database name.
- Database
Type string - Database type. mysql - MySQL database. postgres - PostgreSQL local database. Valid values:
mysql
,postgres
. - Device
Count stringHigh - Must set to enable if the count of registered devices is greater than 8000. disable - Set to disable if device count is less than 8000. enable - Set to enable if device count is equal to or greater than 8000. Valid values:
disable
,enable
. - Dynamic
Sort stringSubtable - 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.
- Event
Table float64Partition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for event logs.
- Fct
Table float64Partition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for FortiClient logs.
- Logtypes []string
- Log type. none - None. 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:
none
,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
. - Passwords []string
- Password for login remote database.
- Prompt
Sql stringUpgrade - Prompt to convert log database into SQL database at start time on GUI. disable - Do not prompt to upgrade log database to SQL database at start time on GUI. enable - Prompt to upgrade log database to SQL database at start time on GUI. Valid values:
disable
,enable
. - Rebuild
Event string - Disable/Enable rebuild event during SQL database rebuilding. disable - Do not rebuild event during SQL database rebuilding. enable - Rebuild event during SQL database rebuilding. Valid values:
disable
,enable
. - Rebuild
Event []stringStart Times - Rebuild event starting date and time <hh:mm yyyy/mm/dd>.
- Server string
- Database IP or hostname.
- Start
Times []string - Start date and time <hh:mm yyyy/mm/dd>.
- Status string
- SQL database status. disable - Disable SQL database. local - Enable local database. Valid values:
disable
,local
. - System
Sql stringId - an identifier for the resource.
- Text
Search stringIndex - Disable/Enable text search index. disable - Do not create text search index. enable - Create text search index. Valid values:
disable
,enable
. - Traffic
Table float64Partition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for traffic logs.
- Ts
Index []SystemFields Sql Ts Index Field Type Args - Ts-Index-Field. The structure of
ts_index_field
block is documented below. - Username string
- User name for login remote database.
- Utm
Table float64Partition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for UTM logs.
- background
Rebuild String - Disable/Enable rebuild SQL database in the background. disable - Rebuild SQL database not in the background. enable - Rebuild SQL database in the background. Valid values:
disable
,enable
. - compress
Table DoubleMin Age - Minimum age in days for SQL tables to be compressed.
- custom
Indices List<SystemSql Custom Index> - Custom-Index. The structure of
custom_index
block is documented below. - custom
Skipidxes List<SystemSql Custom Skipidx> - Custom-Skipidx. The structure of
custom_skipidx
block is documented below. - database
Name String - Database name.
- database
Type String - Database type. mysql - MySQL database. postgres - PostgreSQL local database. Valid values:
mysql
,postgres
. - device
Count StringHigh - Must set to enable if the count of registered devices is greater than 8000. disable - Set to disable if device count is less than 8000. enable - Set to enable if device count is equal to or greater than 8000. Valid values:
disable
,enable
. - dynamic
Sort StringSubtable - 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.
- event
Table DoublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for event logs.
- fct
Table DoublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for FortiClient logs.
- logtypes List<String>
- Log type. none - None. 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:
none
,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
. - passwords List<String>
- Password for login remote database.
- prompt
Sql StringUpgrade - Prompt to convert log database into SQL database at start time on GUI. disable - Do not prompt to upgrade log database to SQL database at start time on GUI. enable - Prompt to upgrade log database to SQL database at start time on GUI. Valid values:
disable
,enable
. - rebuild
Event String - Disable/Enable rebuild event during SQL database rebuilding. disable - Do not rebuild event during SQL database rebuilding. enable - Rebuild event during SQL database rebuilding. Valid values:
disable
,enable
. - rebuild
Event List<String>Start Times - Rebuild event starting date and time <hh:mm yyyy/mm/dd>.
- server String
- Database IP or hostname.
- start
Times List<String> - Start date and time <hh:mm yyyy/mm/dd>.
- status String
- SQL database status. disable - Disable SQL database. local - Enable local database. Valid values:
disable
,local
. - system
Sql StringId - an identifier for the resource.
- text
Search StringIndex - Disable/Enable text search index. disable - Do not create text search index. enable - Create text search index. Valid values:
disable
,enable
. - traffic
Table DoublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for traffic logs.
- ts
Index List<SystemFields Sql Ts Index Field> - Ts-Index-Field. The structure of
ts_index_field
block is documented below. - username String
- User name for login remote database.
- utm
Table DoublePartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for UTM logs.
- background
Rebuild string - Disable/Enable rebuild SQL database in the background. disable - Rebuild SQL database not in the background. enable - Rebuild SQL database in the background. Valid values:
disable
,enable
. - compress
Table numberMin Age - Minimum age in days for SQL tables to be compressed.
- custom
Indices SystemSql Custom Index[] - Custom-Index. The structure of
custom_index
block is documented below. - custom
Skipidxes SystemSql Custom Skipidx[] - Custom-Skipidx. The structure of
custom_skipidx
block is documented below. - database
Name string - Database name.
- database
Type string - Database type. mysql - MySQL database. postgres - PostgreSQL local database. Valid values:
mysql
,postgres
. - device
Count stringHigh - Must set to enable if the count of registered devices is greater than 8000. disable - Set to disable if device count is less than 8000. enable - Set to enable if device count is equal to or greater than 8000. Valid values:
disable
,enable
. - dynamic
Sort stringSubtable - 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.
- event
Table numberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for event logs.
- fct
Table numberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for FortiClient logs.
- logtypes string[]
- Log type. none - None. 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:
none
,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
. - passwords string[]
- Password for login remote database.
- prompt
Sql stringUpgrade - Prompt to convert log database into SQL database at start time on GUI. disable - Do not prompt to upgrade log database to SQL database at start time on GUI. enable - Prompt to upgrade log database to SQL database at start time on GUI. Valid values:
disable
,enable
. - rebuild
Event string - Disable/Enable rebuild event during SQL database rebuilding. disable - Do not rebuild event during SQL database rebuilding. enable - Rebuild event during SQL database rebuilding. Valid values:
disable
,enable
. - rebuild
Event string[]Start Times - Rebuild event starting date and time <hh:mm yyyy/mm/dd>.
- server string
- Database IP or hostname.
- start
Times string[] - Start date and time <hh:mm yyyy/mm/dd>.
- status string
- SQL database status. disable - Disable SQL database. local - Enable local database. Valid values:
disable
,local
. - system
Sql stringId - an identifier for the resource.
- text
Search stringIndex - Disable/Enable text search index. disable - Do not create text search index. enable - Create text search index. Valid values:
disable
,enable
. - traffic
Table numberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for traffic logs.
- ts
Index SystemFields Sql Ts Index Field[] - Ts-Index-Field. The structure of
ts_index_field
block is documented below. - username string
- User name for login remote database.
- utm
Table numberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for UTM logs.
- background_
rebuild str - Disable/Enable rebuild SQL database in the background. disable - Rebuild SQL database not in the background. enable - Rebuild SQL database in the background. Valid values:
disable
,enable
. - compress_
table_ floatmin_ age - Minimum age in days for SQL tables to be compressed.
- custom_
indices Sequence[SystemSql Custom Index Args] - Custom-Index. The structure of
custom_index
block is documented below. - custom_
skipidxes Sequence[SystemSql Custom Skipidx Args] - Custom-Skipidx. The structure of
custom_skipidx
block is documented below. - database_
name str - Database name.
- database_
type str - Database type. mysql - MySQL database. postgres - PostgreSQL local database. Valid values:
mysql
,postgres
. - device_
count_ strhigh - Must set to enable if the count of registered devices is greater than 8000. disable - Set to disable if device count is less than 8000. enable - Set to enable if device count is equal to or greater than 8000. Valid values:
disable
,enable
. - dynamic_
sort_ strsubtable - 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.
- event_
table_ floatpartition_ time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for event logs.
- fct_
table_ floatpartition_ time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for FortiClient logs.
- logtypes Sequence[str]
- Log type. none - None. 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:
none
,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
. - passwords Sequence[str]
- Password for login remote database.
- prompt_
sql_ strupgrade - Prompt to convert log database into SQL database at start time on GUI. disable - Do not prompt to upgrade log database to SQL database at start time on GUI. enable - Prompt to upgrade log database to SQL database at start time on GUI. Valid values:
disable
,enable
. - rebuild_
event str - Disable/Enable rebuild event during SQL database rebuilding. disable - Do not rebuild event during SQL database rebuilding. enable - Rebuild event during SQL database rebuilding. Valid values:
disable
,enable
. - rebuild_
event_ Sequence[str]start_ times - Rebuild event starting date and time <hh:mm yyyy/mm/dd>.
- server str
- Database IP or hostname.
- start_
times Sequence[str] - Start date and time <hh:mm yyyy/mm/dd>.
- status str
- SQL database status. disable - Disable SQL database. local - Enable local database. Valid values:
disable
,local
. - system_
sql_ strid - an identifier for the resource.
- text_
search_ strindex - Disable/Enable text search index. disable - Do not create text search index. enable - Create text search index. Valid values:
disable
,enable
. - traffic_
table_ floatpartition_ time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for traffic logs.
- ts_
index_ Sequence[Systemfields Sql Ts Index Field Args] - Ts-Index-Field. The structure of
ts_index_field
block is documented below. - username str
- User name for login remote database.
- utm_
table_ floatpartition_ time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for UTM logs.
- background
Rebuild String - Disable/Enable rebuild SQL database in the background. disable - Rebuild SQL database not in the background. enable - Rebuild SQL database in the background. Valid values:
disable
,enable
. - compress
Table NumberMin Age - Minimum age in days for SQL tables to be compressed.
- custom
Indices List<Property Map> - Custom-Index. The structure of
custom_index
block is documented below. - custom
Skipidxes List<Property Map> - Custom-Skipidx. The structure of
custom_skipidx
block is documented below. - database
Name String - Database name.
- database
Type String - Database type. mysql - MySQL database. postgres - PostgreSQL local database. Valid values:
mysql
,postgres
. - device
Count StringHigh - Must set to enable if the count of registered devices is greater than 8000. disable - Set to disable if device count is less than 8000. enable - Set to enable if device count is equal to or greater than 8000. Valid values:
disable
,enable
. - dynamic
Sort StringSubtable - 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.
- event
Table NumberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for event logs.
- fct
Table NumberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for FortiClient logs.
- logtypes List<String>
- Log type. none - None. 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:
none
,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
. - passwords List<String>
- Password for login remote database.
- prompt
Sql StringUpgrade - Prompt to convert log database into SQL database at start time on GUI. disable - Do not prompt to upgrade log database to SQL database at start time on GUI. enable - Prompt to upgrade log database to SQL database at start time on GUI. Valid values:
disable
,enable
. - rebuild
Event String - Disable/Enable rebuild event during SQL database rebuilding. disable - Do not rebuild event during SQL database rebuilding. enable - Rebuild event during SQL database rebuilding. Valid values:
disable
,enable
. - rebuild
Event List<String>Start Times - Rebuild event starting date and time <hh:mm yyyy/mm/dd>.
- server String
- Database IP or hostname.
- start
Times List<String> - Start date and time <hh:mm yyyy/mm/dd>.
- status String
- SQL database status. disable - Disable SQL database. local - Enable local database. Valid values:
disable
,local
. - system
Sql StringId - an identifier for the resource.
- text
Search StringIndex - Disable/Enable text search index. disable - Do not create text search index. enable - Create text search index. Valid values:
disable
,enable
. - traffic
Table NumberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for traffic logs.
- ts
Index List<Property Map>Fields - Ts-Index-Field. The structure of
ts_index_field
block is documented below. - username String
- User name for login remote database.
- utm
Table NumberPartition Time - Maximum SQL database table partitioning time range in minute (0 for unlimited) for UTM logs.
Supporting Types
SystemSqlCustomIndex, SystemSqlCustomIndexArgs
- Case
Sensitive string - Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values:
disable
,enable
. - Device
Type string - Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values:
FortiGate
,FortiMail
,FortiWeb
. - Id double
- Add or Edit log index fields.
- Index
Field string - Log field name to be indexed.
- Log
Type 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
.
- Case
Sensitive string - Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values:
disable
,enable
. - Device
Type string - Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values:
FortiGate
,FortiMail
,FortiWeb
. - Id float64
- Add or Edit log index fields.
- Index
Field string - Log field name to be indexed.
- Log
Type 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
.
- case
Sensitive String - Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values:
disable
,enable
. - device
Type String - Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values:
FortiGate
,FortiMail
,FortiWeb
. - id Double
- Add or Edit log index fields.
- index
Field String - Log field name to be indexed.
- log
Type 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
.
- case
Sensitive string - Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values:
disable
,enable
. - device
Type string - Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values:
FortiGate
,FortiMail
,FortiWeb
. - id number
- Add or Edit log index fields.
- index
Field string - Log field name to be indexed.
- log
Type 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
.
- 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
. - id 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
.
- case
Sensitive String - Disable/Enable case sensitive index. disable - Build a case insensitive index. enable - Build a case sensitive index. Valid values:
disable
,enable
. - device
Type String - Device type. FortiGate - Device type to FortiGate. FortiMail - Device type to FortiMail. FortiWeb - Device type to FortiWeb. Valid values:
FortiGate
,FortiMail
,FortiWeb
. - id Number
- Add or Edit log index fields.
- index
Field String - Log field name to be indexed.
- log
Type 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
.
SystemSqlCustomSkipidx, SystemSqlCustomSkipidxArgs
- Device
Type string - Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values:
FortiGate
,FortiManager
,FortiClient
,FortiMail
,FortiWeb
,FortiSandbox
,FortiProxy
. - Id double
- Add or Edit log index fields.
- Index
Field string - Field to be added to skip index.
- Log
Type 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
.
- Device
Type string - Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values:
FortiGate
,FortiManager
,FortiClient
,FortiMail
,FortiWeb
,FortiSandbox
,FortiProxy
. - Id float64
- Add or Edit log index fields.
- Index
Field string - Field to be added to skip index.
- Log
Type 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
.
- device
Type String - Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values:
FortiGate
,FortiManager
,FortiClient
,FortiMail
,FortiWeb
,FortiSandbox
,FortiProxy
. - id Double
- Add or Edit log index fields.
- index
Field String - Field to be added to skip index.
- log
Type 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
.
- device
Type string - Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values:
FortiGate
,FortiManager
,FortiClient
,FortiMail
,FortiWeb
,FortiSandbox
,FortiProxy
. - id number
- Add or Edit log index fields.
- index
Field string - Field to be added to skip index.
- log
Type 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
.
- device_
type str - Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values:
FortiGate
,FortiManager
,FortiClient
,FortiMail
,FortiWeb
,FortiSandbox
,FortiProxy
. - id float
- Add or Edit log index fields.
- index_
field str - Field to be added to skip index.
- 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
.
- device
Type String - Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values:
FortiGate
,FortiManager
,FortiClient
,FortiMail
,FortiWeb
,FortiSandbox
,FortiProxy
. - id Number
- Add or Edit log index fields.
- index
Field String - Field to be added to skip index.
- log
Type 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
.
SystemSqlTsIndexField, SystemSqlTsIndexFieldArgs
Import
System Sql can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/systemSql:SystemSql labelname SystemSql
$ 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.