fortimanager.SystemLocallogSetting
Explore with Pulumi AI
Settings for locallog logging.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.SystemLocallogSetting("trname", {
logIntervalDevNoLogging: 300,
logIntervalDiskFull: 200,
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.SystemLocallogSetting("trname",
log_interval_dev_no_logging=300,
log_interval_disk_full=200)
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.NewSystemLocallogSetting(ctx, "trname", &fortimanager.SystemLocallogSettingArgs{
LogIntervalDevNoLogging: pulumi.Float64(300),
LogIntervalDiskFull: pulumi.Float64(200),
})
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.SystemLocallogSetting("trname", new()
{
LogIntervalDevNoLogging = 300,
LogIntervalDiskFull = 200,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystemLocallogSetting;
import com.pulumi.fortimanager.SystemLocallogSettingArgs;
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 SystemLocallogSetting("trname", SystemLocallogSettingArgs.builder()
.logIntervalDevNoLogging("300")
.logIntervalDiskFull("200")
.build());
}
}
resources:
trname:
type: fortimanager:SystemLocallogSetting
properties:
logIntervalDevNoLogging: '300'
logIntervalDiskFull: '200'
Create SystemLocallogSetting Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemLocallogSetting(name: string, args?: SystemLocallogSettingArgs, opts?: CustomResourceOptions);
@overload
def SystemLocallogSetting(resource_name: str,
args: Optional[SystemLocallogSettingArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SystemLocallogSetting(resource_name: str,
opts: Optional[ResourceOptions] = None,
log_daemon_crash: Optional[str] = None,
log_interval_adom_perf_stats: Optional[float] = None,
log_interval_dev_no_logging: Optional[float] = None,
log_interval_disk_full: Optional[float] = None,
log_interval_gbday_exceeded: Optional[float] = None,
no_log_detection_threshold: Optional[float] = None,
system_locallog_setting_id: Optional[str] = None)
func NewSystemLocallogSetting(ctx *Context, name string, args *SystemLocallogSettingArgs, opts ...ResourceOption) (*SystemLocallogSetting, error)
public SystemLocallogSetting(string name, SystemLocallogSettingArgs? args = null, CustomResourceOptions? opts = null)
public SystemLocallogSetting(String name, SystemLocallogSettingArgs args)
public SystemLocallogSetting(String name, SystemLocallogSettingArgs args, CustomResourceOptions options)
type: fortimanager:SystemLocallogSetting
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 SystemLocallogSettingArgs
- 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 SystemLocallogSettingArgs
- 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 SystemLocallogSettingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemLocallogSettingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemLocallogSettingArgs
- 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 systemLocallogSettingResource = new Fortimanager.SystemLocallogSetting("systemLocallogSettingResource", new()
{
LogDaemonCrash = "string",
LogIntervalAdomPerfStats = 0,
LogIntervalDevNoLogging = 0,
LogIntervalDiskFull = 0,
LogIntervalGbdayExceeded = 0,
NoLogDetectionThreshold = 0,
SystemLocallogSettingId = "string",
});
example, err := fortimanager.NewSystemLocallogSetting(ctx, "systemLocallogSettingResource", &fortimanager.SystemLocallogSettingArgs{
LogDaemonCrash: pulumi.String("string"),
LogIntervalAdomPerfStats: pulumi.Float64(0),
LogIntervalDevNoLogging: pulumi.Float64(0),
LogIntervalDiskFull: pulumi.Float64(0),
LogIntervalGbdayExceeded: pulumi.Float64(0),
NoLogDetectionThreshold: pulumi.Float64(0),
SystemLocallogSettingId: pulumi.String("string"),
})
var systemLocallogSettingResource = new SystemLocallogSetting("systemLocallogSettingResource", SystemLocallogSettingArgs.builder()
.logDaemonCrash("string")
.logIntervalAdomPerfStats(0)
.logIntervalDevNoLogging(0)
.logIntervalDiskFull(0)
.logIntervalGbdayExceeded(0)
.noLogDetectionThreshold(0)
.systemLocallogSettingId("string")
.build());
system_locallog_setting_resource = fortimanager.SystemLocallogSetting("systemLocallogSettingResource",
log_daemon_crash="string",
log_interval_adom_perf_stats=0,
log_interval_dev_no_logging=0,
log_interval_disk_full=0,
log_interval_gbday_exceeded=0,
no_log_detection_threshold=0,
system_locallog_setting_id="string")
const systemLocallogSettingResource = new fortimanager.SystemLocallogSetting("systemLocallogSettingResource", {
logDaemonCrash: "string",
logIntervalAdomPerfStats: 0,
logIntervalDevNoLogging: 0,
logIntervalDiskFull: 0,
logIntervalGbdayExceeded: 0,
noLogDetectionThreshold: 0,
systemLocallogSettingId: "string",
});
type: fortimanager:SystemLocallogSetting
properties:
logDaemonCrash: string
logIntervalAdomPerfStats: 0
logIntervalDevNoLogging: 0
logIntervalDiskFull: 0
logIntervalGbdayExceeded: 0
noLogDetectionThreshold: 0
systemLocallogSettingId: string
SystemLocallogSetting 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 SystemLocallogSetting resource accepts the following input properties:
- Log
Daemon stringCrash - Send a logmsg when a daemon crashes. enable/disable disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Log
Interval doubleAdom Perf Stats - Interval in minute for logging the event of adom perf stats.
- Log
Interval doubleDev No Logging - Interval in minute for logging the event of no logs received from a device.
- Log
Interval doubleDisk Full - Interval in minute for logging the event of disk full.
- Log
Interval doubleGbday Exceeded - Interval in minute for logging the event of the GB/Day license exceeded.
- No
Log doubleDetection Threshold - Time interval in minutes to trigger a local event message if no log data is received.
- System
Locallog stringSetting Id - an identifier for the resource.
- Log
Daemon stringCrash - Send a logmsg when a daemon crashes. enable/disable disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Log
Interval float64Adom Perf Stats - Interval in minute for logging the event of adom perf stats.
- Log
Interval float64Dev No Logging - Interval in minute for logging the event of no logs received from a device.
- Log
Interval float64Disk Full - Interval in minute for logging the event of disk full.
- Log
Interval float64Gbday Exceeded - Interval in minute for logging the event of the GB/Day license exceeded.
- No
Log float64Detection Threshold - Time interval in minutes to trigger a local event message if no log data is received.
- System
Locallog stringSetting Id - an identifier for the resource.
- log
Daemon StringCrash - Send a logmsg when a daemon crashes. enable/disable disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - log
Interval DoubleAdom Perf Stats - Interval in minute for logging the event of adom perf stats.
- log
Interval DoubleDev No Logging - Interval in minute for logging the event of no logs received from a device.
- log
Interval DoubleDisk Full - Interval in minute for logging the event of disk full.
- log
Interval DoubleGbday Exceeded - Interval in minute for logging the event of the GB/Day license exceeded.
- no
Log DoubleDetection Threshold - Time interval in minutes to trigger a local event message if no log data is received.
- system
Locallog StringSetting Id - an identifier for the resource.
- log
Daemon stringCrash - Send a logmsg when a daemon crashes. enable/disable disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - log
Interval numberAdom Perf Stats - Interval in minute for logging the event of adom perf stats.
- log
Interval numberDev No Logging - Interval in minute for logging the event of no logs received from a device.
- log
Interval numberDisk Full - Interval in minute for logging the event of disk full.
- log
Interval numberGbday Exceeded - Interval in minute for logging the event of the GB/Day license exceeded.
- no
Log numberDetection Threshold - Time interval in minutes to trigger a local event message if no log data is received.
- system
Locallog stringSetting Id - an identifier for the resource.
- log_
daemon_ strcrash - Send a logmsg when a daemon crashes. enable/disable disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - log_
interval_ floatadom_ perf_ stats - Interval in minute for logging the event of adom perf stats.
- log_
interval_ floatdev_ no_ logging - Interval in minute for logging the event of no logs received from a device.
- log_
interval_ floatdisk_ full - Interval in minute for logging the event of disk full.
- log_
interval_ floatgbday_ exceeded - Interval in minute for logging the event of the GB/Day license exceeded.
- no_
log_ floatdetection_ threshold - Time interval in minutes to trigger a local event message if no log data is received.
- system_
locallog_ strsetting_ id - an identifier for the resource.
- log
Daemon StringCrash - Send a logmsg when a daemon crashes. enable/disable disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - log
Interval NumberAdom Perf Stats - Interval in minute for logging the event of adom perf stats.
- log
Interval NumberDev No Logging - Interval in minute for logging the event of no logs received from a device.
- log
Interval NumberDisk Full - Interval in minute for logging the event of disk full.
- log
Interval NumberGbday Exceeded - Interval in minute for logging the event of the GB/Day license exceeded.
- no
Log NumberDetection Threshold - Time interval in minutes to trigger a local event message if no log data is received.
- system
Locallog StringSetting Id - an identifier for the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemLocallogSetting 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 SystemLocallogSetting Resource
Get an existing SystemLocallogSetting 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?: SystemLocallogSettingState, opts?: CustomResourceOptions): SystemLocallogSetting
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
log_daemon_crash: Optional[str] = None,
log_interval_adom_perf_stats: Optional[float] = None,
log_interval_dev_no_logging: Optional[float] = None,
log_interval_disk_full: Optional[float] = None,
log_interval_gbday_exceeded: Optional[float] = None,
no_log_detection_threshold: Optional[float] = None,
system_locallog_setting_id: Optional[str] = None) -> SystemLocallogSetting
func GetSystemLocallogSetting(ctx *Context, name string, id IDInput, state *SystemLocallogSettingState, opts ...ResourceOption) (*SystemLocallogSetting, error)
public static SystemLocallogSetting Get(string name, Input<string> id, SystemLocallogSettingState? state, CustomResourceOptions? opts = null)
public static SystemLocallogSetting get(String name, Output<String> id, SystemLocallogSettingState state, CustomResourceOptions options)
resources: _: type: fortimanager:SystemLocallogSetting 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.
- Log
Daemon stringCrash - Send a logmsg when a daemon crashes. enable/disable disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Log
Interval doubleAdom Perf Stats - Interval in minute for logging the event of adom perf stats.
- Log
Interval doubleDev No Logging - Interval in minute for logging the event of no logs received from a device.
- Log
Interval doubleDisk Full - Interval in minute for logging the event of disk full.
- Log
Interval doubleGbday Exceeded - Interval in minute for logging the event of the GB/Day license exceeded.
- No
Log doubleDetection Threshold - Time interval in minutes to trigger a local event message if no log data is received.
- System
Locallog stringSetting Id - an identifier for the resource.
- Log
Daemon stringCrash - Send a logmsg when a daemon crashes. enable/disable disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Log
Interval float64Adom Perf Stats - Interval in minute for logging the event of adom perf stats.
- Log
Interval float64Dev No Logging - Interval in minute for logging the event of no logs received from a device.
- Log
Interval float64Disk Full - Interval in minute for logging the event of disk full.
- Log
Interval float64Gbday Exceeded - Interval in minute for logging the event of the GB/Day license exceeded.
- No
Log float64Detection Threshold - Time interval in minutes to trigger a local event message if no log data is received.
- System
Locallog stringSetting Id - an identifier for the resource.
- log
Daemon StringCrash - Send a logmsg when a daemon crashes. enable/disable disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - log
Interval DoubleAdom Perf Stats - Interval in minute for logging the event of adom perf stats.
- log
Interval DoubleDev No Logging - Interval in minute for logging the event of no logs received from a device.
- log
Interval DoubleDisk Full - Interval in minute for logging the event of disk full.
- log
Interval DoubleGbday Exceeded - Interval in minute for logging the event of the GB/Day license exceeded.
- no
Log DoubleDetection Threshold - Time interval in minutes to trigger a local event message if no log data is received.
- system
Locallog StringSetting Id - an identifier for the resource.
- log
Daemon stringCrash - Send a logmsg when a daemon crashes. enable/disable disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - log
Interval numberAdom Perf Stats - Interval in minute for logging the event of adom perf stats.
- log
Interval numberDev No Logging - Interval in minute for logging the event of no logs received from a device.
- log
Interval numberDisk Full - Interval in minute for logging the event of disk full.
- log
Interval numberGbday Exceeded - Interval in minute for logging the event of the GB/Day license exceeded.
- no
Log numberDetection Threshold - Time interval in minutes to trigger a local event message if no log data is received.
- system
Locallog stringSetting Id - an identifier for the resource.
- log_
daemon_ strcrash - Send a logmsg when a daemon crashes. enable/disable disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - log_
interval_ floatadom_ perf_ stats - Interval in minute for logging the event of adom perf stats.
- log_
interval_ floatdev_ no_ logging - Interval in minute for logging the event of no logs received from a device.
- log_
interval_ floatdisk_ full - Interval in minute for logging the event of disk full.
- log_
interval_ floatgbday_ exceeded - Interval in minute for logging the event of the GB/Day license exceeded.
- no_
log_ floatdetection_ threshold - Time interval in minutes to trigger a local event message if no log data is received.
- system_
locallog_ strsetting_ id - an identifier for the resource.
- log
Daemon StringCrash - Send a logmsg when a daemon crashes. enable/disable disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - log
Interval NumberAdom Perf Stats - Interval in minute for logging the event of adom perf stats.
- log
Interval NumberDev No Logging - Interval in minute for logging the event of no logs received from a device.
- log
Interval NumberDisk Full - Interval in minute for logging the event of disk full.
- log
Interval NumberGbday Exceeded - Interval in minute for logging the event of the GB/Day license exceeded.
- no
Log NumberDetection Threshold - Time interval in minutes to trigger a local event message if no log data is received.
- system
Locallog StringSetting Id - an identifier for the resource.
Import
System LocallogSetting can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/systemLocallogSetting:SystemLocallogSetting labelname SystemLocallogSetting
$ 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.