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

fortimanager.SystemLocallogDiskSetting

Explore with Pulumi AI

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

    Settings for local disk logging.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemLocallogDiskSetting("trname", {
        diskfull: "overwrite",
        rollDays: ["sunday"],
        rollSchedule: "weekly",
        serverType: "FTP",
        severity: "emergency",
        status: "enable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemLocallogDiskSetting("trname",
        diskfull="overwrite",
        roll_days=["sunday"],
        roll_schedule="weekly",
        server_type="FTP",
        severity="emergency",
        status="enable")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewSystemLocallogDiskSetting(ctx, "trname", &fortimanager.SystemLocallogDiskSettingArgs{
    			Diskfull: pulumi.String("overwrite"),
    			RollDays: pulumi.StringArray{
    				pulumi.String("sunday"),
    			},
    			RollSchedule: pulumi.String("weekly"),
    			ServerType:   pulumi.String("FTP"),
    			Severity:     pulumi.String("emergency"),
    			Status:       pulumi.String("enable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortimanager.SystemLocallogDiskSetting("trname", new()
        {
            Diskfull = "overwrite",
            RollDays = new[]
            {
                "sunday",
            },
            RollSchedule = "weekly",
            ServerType = "FTP",
            Severity = "emergency",
            Status = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemLocallogDiskSetting;
    import com.pulumi.fortimanager.SystemLocallogDiskSettingArgs;
    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 SystemLocallogDiskSetting("trname", SystemLocallogDiskSettingArgs.builder()
                .diskfull("overwrite")
                .rollDays("sunday")
                .rollSchedule("weekly")
                .serverType("FTP")
                .severity("emergency")
                .status("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemLocallogDiskSetting
        properties:
          diskfull: overwrite
          rollDays:
            - sunday
          rollSchedule: weekly
          serverType: FTP
          severity: emergency
          status: enable
    

    Create SystemLocallogDiskSetting Resource

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

    Constructor syntax

    new SystemLocallogDiskSetting(name: string, args?: SystemLocallogDiskSettingArgs, opts?: CustomResourceOptions);
    @overload
    def SystemLocallogDiskSetting(resource_name: str,
                                  args: Optional[SystemLocallogDiskSettingArgs] = None,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemLocallogDiskSetting(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  diskfull: Optional[str] = None,
                                  log_disk_full_percentage: Optional[float] = None,
                                  log_disk_quota: Optional[float] = None,
                                  max_log_file_num: Optional[float] = None,
                                  max_log_file_size: Optional[float] = None,
                                  roll_days: Optional[Sequence[str]] = None,
                                  roll_schedule: Optional[str] = None,
                                  roll_time: Optional[str] = None,
                                  server_type: Optional[str] = None,
                                  severity: Optional[str] = None,
                                  status: Optional[str] = None,
                                  system_locallog_disk_setting_id: Optional[str] = None,
                                  upload: Optional[str] = None,
                                  upload_delete_files: Optional[str] = None,
                                  upload_time: Optional[str] = None,
                                  uploaddir: Optional[str] = None,
                                  uploadip: Optional[str] = None,
                                  uploadpasses: Optional[Sequence[str]] = None,
                                  uploadport: Optional[float] = None,
                                  uploadsched: Optional[str] = None,
                                  uploadtypes: Optional[Sequence[str]] = None,
                                  uploaduser: Optional[str] = None,
                                  uploadzip: Optional[str] = None)
    func NewSystemLocallogDiskSetting(ctx *Context, name string, args *SystemLocallogDiskSettingArgs, opts ...ResourceOption) (*SystemLocallogDiskSetting, error)
    public SystemLocallogDiskSetting(string name, SystemLocallogDiskSettingArgs? args = null, CustomResourceOptions? opts = null)
    public SystemLocallogDiskSetting(String name, SystemLocallogDiskSettingArgs args)
    public SystemLocallogDiskSetting(String name, SystemLocallogDiskSettingArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemLocallogDiskSetting
    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 SystemLocallogDiskSettingArgs
    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 SystemLocallogDiskSettingArgs
    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 SystemLocallogDiskSettingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemLocallogDiskSettingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemLocallogDiskSettingArgs
    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 systemLocallogDiskSettingResource = new Fortimanager.SystemLocallogDiskSetting("systemLocallogDiskSettingResource", new()
    {
        Diskfull = "string",
        LogDiskFullPercentage = 0,
        LogDiskQuota = 0,
        MaxLogFileNum = 0,
        MaxLogFileSize = 0,
        RollDays = new[]
        {
            "string",
        },
        RollSchedule = "string",
        RollTime = "string",
        ServerType = "string",
        Severity = "string",
        Status = "string",
        SystemLocallogDiskSettingId = "string",
        Upload = "string",
        UploadDeleteFiles = "string",
        UploadTime = "string",
        Uploaddir = "string",
        Uploadip = "string",
        Uploadpasses = new[]
        {
            "string",
        },
        Uploadport = 0,
        Uploadsched = "string",
        Uploadtypes = new[]
        {
            "string",
        },
        Uploaduser = "string",
        Uploadzip = "string",
    });
    
    example, err := fortimanager.NewSystemLocallogDiskSetting(ctx, "systemLocallogDiskSettingResource", &fortimanager.SystemLocallogDiskSettingArgs{
    Diskfull: pulumi.String("string"),
    LogDiskFullPercentage: pulumi.Float64(0),
    LogDiskQuota: pulumi.Float64(0),
    MaxLogFileNum: pulumi.Float64(0),
    MaxLogFileSize: pulumi.Float64(0),
    RollDays: pulumi.StringArray{
    pulumi.String("string"),
    },
    RollSchedule: pulumi.String("string"),
    RollTime: pulumi.String("string"),
    ServerType: pulumi.String("string"),
    Severity: pulumi.String("string"),
    Status: pulumi.String("string"),
    SystemLocallogDiskSettingId: pulumi.String("string"),
    Upload: pulumi.String("string"),
    UploadDeleteFiles: pulumi.String("string"),
    UploadTime: pulumi.String("string"),
    Uploaddir: pulumi.String("string"),
    Uploadip: pulumi.String("string"),
    Uploadpasses: pulumi.StringArray{
    pulumi.String("string"),
    },
    Uploadport: pulumi.Float64(0),
    Uploadsched: pulumi.String("string"),
    Uploadtypes: pulumi.StringArray{
    pulumi.String("string"),
    },
    Uploaduser: pulumi.String("string"),
    Uploadzip: pulumi.String("string"),
    })
    
    var systemLocallogDiskSettingResource = new SystemLocallogDiskSetting("systemLocallogDiskSettingResource", SystemLocallogDiskSettingArgs.builder()
        .diskfull("string")
        .logDiskFullPercentage(0)
        .logDiskQuota(0)
        .maxLogFileNum(0)
        .maxLogFileSize(0)
        .rollDays("string")
        .rollSchedule("string")
        .rollTime("string")
        .serverType("string")
        .severity("string")
        .status("string")
        .systemLocallogDiskSettingId("string")
        .upload("string")
        .uploadDeleteFiles("string")
        .uploadTime("string")
        .uploaddir("string")
        .uploadip("string")
        .uploadpasses("string")
        .uploadport(0)
        .uploadsched("string")
        .uploadtypes("string")
        .uploaduser("string")
        .uploadzip("string")
        .build());
    
    system_locallog_disk_setting_resource = fortimanager.SystemLocallogDiskSetting("systemLocallogDiskSettingResource",
        diskfull="string",
        log_disk_full_percentage=0,
        log_disk_quota=0,
        max_log_file_num=0,
        max_log_file_size=0,
        roll_days=["string"],
        roll_schedule="string",
        roll_time="string",
        server_type="string",
        severity="string",
        status="string",
        system_locallog_disk_setting_id="string",
        upload="string",
        upload_delete_files="string",
        upload_time="string",
        uploaddir="string",
        uploadip="string",
        uploadpasses=["string"],
        uploadport=0,
        uploadsched="string",
        uploadtypes=["string"],
        uploaduser="string",
        uploadzip="string")
    
    const systemLocallogDiskSettingResource = new fortimanager.SystemLocallogDiskSetting("systemLocallogDiskSettingResource", {
        diskfull: "string",
        logDiskFullPercentage: 0,
        logDiskQuota: 0,
        maxLogFileNum: 0,
        maxLogFileSize: 0,
        rollDays: ["string"],
        rollSchedule: "string",
        rollTime: "string",
        serverType: "string",
        severity: "string",
        status: "string",
        systemLocallogDiskSettingId: "string",
        upload: "string",
        uploadDeleteFiles: "string",
        uploadTime: "string",
        uploaddir: "string",
        uploadip: "string",
        uploadpasses: ["string"],
        uploadport: 0,
        uploadsched: "string",
        uploadtypes: ["string"],
        uploaduser: "string",
        uploadzip: "string",
    });
    
    type: fortimanager:SystemLocallogDiskSetting
    properties:
        diskfull: string
        logDiskFullPercentage: 0
        logDiskQuota: 0
        maxLogFileNum: 0
        maxLogFileSize: 0
        rollDays:
            - string
        rollSchedule: string
        rollTime: string
        serverType: string
        severity: string
        status: string
        systemLocallogDiskSettingId: string
        upload: string
        uploadDeleteFiles: string
        uploadTime: string
        uploaddir: string
        uploadip: string
        uploadpasses:
            - string
        uploadport: 0
        uploadsched: string
        uploadtypes:
            - string
        uploaduser: string
        uploadzip: string
    

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

    Diskfull string
    Policy to apply when disk is full. overwrite - Overwrite oldest log when disk is full. nolog - Stop logging when disk is full. Valid values: overwrite, nolog.
    LogDiskFullPercentage double
    Consider log disk as full at this usage percentage.
    LogDiskQuota double
    Quota for controlling local log size.
    MaxLogFileNum double
    Maximum number of log files before rolling.
    MaxLogFileSize double
    Maximum log file size before rolling.
    RollDays List<string>
    Days of week to roll logs. sunday - Sunday. monday - Monday. tuesday - Tuesday. wednesday - Wednesday. thursday - Thursday. friday - Friday. saturday - Saturday. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    RollSchedule string
    Frequency to check log file for rolling. none - Not scheduled. daily - Every day. weekly - Every week. Valid values: none, daily, weekly.
    RollTime string
    Time to roll logs (hh:mm).
    ServerType string
    Server type. FTP - Upload via FTP. SFTP - Upload via SFTP. SCP - Upload via SCP. Valid values: FTP, SFTP, SCP.
    Severity string
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    Status string
    Enable/disable local disk log. disable - Do not log to local disk. enable - Log to local disk. Valid values: disable, enable.
    SystemLocallogDiskSettingId string
    an identifier for the resource.
    Upload string
    Upload log file when rolling. disable - Disable uploading when rolling log file. enable - Enable uploading when rolling log file. Valid values: disable, enable.
    UploadDeleteFiles string
    Delete log files after uploading (default = enable). disable - Do not delete log files after uploading. enable - Delete log files after uploading. Valid values: disable, enable.
    UploadTime string
    Time to upload logs (hh:mm).
    Uploaddir string
    Log file upload remote directory.
    Uploadip string
    IP address of log uploading server.
    Uploadpasses List<string>
    Password of user account in upload server.
    Uploadport double
    Server port (0 = default protocol port).
    Uploadsched string
    Scheduled upload (disable = upload when rolling). disable - Upload when rolling. enable - Scheduled upload. Valid values: disable, enable.
    Uploadtypes List<string>
    Types of log files that need to be uploaded. event - Upload event log. Valid values: event.
    Uploaduser string
    User account in upload server.
    Uploadzip string
    Compress upload logs. disable - Upload log files as plain text. enable - Upload log files compressed. Valid values: disable, enable.
    Diskfull string
    Policy to apply when disk is full. overwrite - Overwrite oldest log when disk is full. nolog - Stop logging when disk is full. Valid values: overwrite, nolog.
    LogDiskFullPercentage float64
    Consider log disk as full at this usage percentage.
    LogDiskQuota float64
    Quota for controlling local log size.
    MaxLogFileNum float64
    Maximum number of log files before rolling.
    MaxLogFileSize float64
    Maximum log file size before rolling.
    RollDays []string
    Days of week to roll logs. sunday - Sunday. monday - Monday. tuesday - Tuesday. wednesday - Wednesday. thursday - Thursday. friday - Friday. saturday - Saturday. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    RollSchedule string
    Frequency to check log file for rolling. none - Not scheduled. daily - Every day. weekly - Every week. Valid values: none, daily, weekly.
    RollTime string
    Time to roll logs (hh:mm).
    ServerType string
    Server type. FTP - Upload via FTP. SFTP - Upload via SFTP. SCP - Upload via SCP. Valid values: FTP, SFTP, SCP.
    Severity string
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    Status string
    Enable/disable local disk log. disable - Do not log to local disk. enable - Log to local disk. Valid values: disable, enable.
    SystemLocallogDiskSettingId string
    an identifier for the resource.
    Upload string
    Upload log file when rolling. disable - Disable uploading when rolling log file. enable - Enable uploading when rolling log file. Valid values: disable, enable.
    UploadDeleteFiles string
    Delete log files after uploading (default = enable). disable - Do not delete log files after uploading. enable - Delete log files after uploading. Valid values: disable, enable.
    UploadTime string
    Time to upload logs (hh:mm).
    Uploaddir string
    Log file upload remote directory.
    Uploadip string
    IP address of log uploading server.
    Uploadpasses []string
    Password of user account in upload server.
    Uploadport float64
    Server port (0 = default protocol port).
    Uploadsched string
    Scheduled upload (disable = upload when rolling). disable - Upload when rolling. enable - Scheduled upload. Valid values: disable, enable.
    Uploadtypes []string
    Types of log files that need to be uploaded. event - Upload event log. Valid values: event.
    Uploaduser string
    User account in upload server.
    Uploadzip string
    Compress upload logs. disable - Upload log files as plain text. enable - Upload log files compressed. Valid values: disable, enable.
    diskfull String
    Policy to apply when disk is full. overwrite - Overwrite oldest log when disk is full. nolog - Stop logging when disk is full. Valid values: overwrite, nolog.
    logDiskFullPercentage Double
    Consider log disk as full at this usage percentage.
    logDiskQuota Double
    Quota for controlling local log size.
    maxLogFileNum Double
    Maximum number of log files before rolling.
    maxLogFileSize Double
    Maximum log file size before rolling.
    rollDays List<String>
    Days of week to roll logs. sunday - Sunday. monday - Monday. tuesday - Tuesday. wednesday - Wednesday. thursday - Thursday. friday - Friday. saturday - Saturday. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    rollSchedule String
    Frequency to check log file for rolling. none - Not scheduled. daily - Every day. weekly - Every week. Valid values: none, daily, weekly.
    rollTime String
    Time to roll logs (hh:mm).
    serverType String
    Server type. FTP - Upload via FTP. SFTP - Upload via SFTP. SCP - Upload via SCP. Valid values: FTP, SFTP, SCP.
    severity String
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status String
    Enable/disable local disk log. disable - Do not log to local disk. enable - Log to local disk. Valid values: disable, enable.
    systemLocallogDiskSettingId String
    an identifier for the resource.
    upload String
    Upload log file when rolling. disable - Disable uploading when rolling log file. enable - Enable uploading when rolling log file. Valid values: disable, enable.
    uploadDeleteFiles String
    Delete log files after uploading (default = enable). disable - Do not delete log files after uploading. enable - Delete log files after uploading. Valid values: disable, enable.
    uploadTime String
    Time to upload logs (hh:mm).
    uploaddir String
    Log file upload remote directory.
    uploadip String
    IP address of log uploading server.
    uploadpasses List<String>
    Password of user account in upload server.
    uploadport Double
    Server port (0 = default protocol port).
    uploadsched String
    Scheduled upload (disable = upload when rolling). disable - Upload when rolling. enable - Scheduled upload. Valid values: disable, enable.
    uploadtypes List<String>
    Types of log files that need to be uploaded. event - Upload event log. Valid values: event.
    uploaduser String
    User account in upload server.
    uploadzip String
    Compress upload logs. disable - Upload log files as plain text. enable - Upload log files compressed. Valid values: disable, enable.
    diskfull string
    Policy to apply when disk is full. overwrite - Overwrite oldest log when disk is full. nolog - Stop logging when disk is full. Valid values: overwrite, nolog.
    logDiskFullPercentage number
    Consider log disk as full at this usage percentage.
    logDiskQuota number
    Quota for controlling local log size.
    maxLogFileNum number
    Maximum number of log files before rolling.
    maxLogFileSize number
    Maximum log file size before rolling.
    rollDays string[]
    Days of week to roll logs. sunday - Sunday. monday - Monday. tuesday - Tuesday. wednesday - Wednesday. thursday - Thursday. friday - Friday. saturday - Saturday. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    rollSchedule string
    Frequency to check log file for rolling. none - Not scheduled. daily - Every day. weekly - Every week. Valid values: none, daily, weekly.
    rollTime string
    Time to roll logs (hh:mm).
    serverType string
    Server type. FTP - Upload via FTP. SFTP - Upload via SFTP. SCP - Upload via SCP. Valid values: FTP, SFTP, SCP.
    severity string
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status string
    Enable/disable local disk log. disable - Do not log to local disk. enable - Log to local disk. Valid values: disable, enable.
    systemLocallogDiskSettingId string
    an identifier for the resource.
    upload string
    Upload log file when rolling. disable - Disable uploading when rolling log file. enable - Enable uploading when rolling log file. Valid values: disable, enable.
    uploadDeleteFiles string
    Delete log files after uploading (default = enable). disable - Do not delete log files after uploading. enable - Delete log files after uploading. Valid values: disable, enable.
    uploadTime string
    Time to upload logs (hh:mm).
    uploaddir string
    Log file upload remote directory.
    uploadip string
    IP address of log uploading server.
    uploadpasses string[]
    Password of user account in upload server.
    uploadport number
    Server port (0 = default protocol port).
    uploadsched string
    Scheduled upload (disable = upload when rolling). disable - Upload when rolling. enable - Scheduled upload. Valid values: disable, enable.
    uploadtypes string[]
    Types of log files that need to be uploaded. event - Upload event log. Valid values: event.
    uploaduser string
    User account in upload server.
    uploadzip string
    Compress upload logs. disable - Upload log files as plain text. enable - Upload log files compressed. Valid values: disable, enable.
    diskfull str
    Policy to apply when disk is full. overwrite - Overwrite oldest log when disk is full. nolog - Stop logging when disk is full. Valid values: overwrite, nolog.
    log_disk_full_percentage float
    Consider log disk as full at this usage percentage.
    log_disk_quota float
    Quota for controlling local log size.
    max_log_file_num float
    Maximum number of log files before rolling.
    max_log_file_size float
    Maximum log file size before rolling.
    roll_days Sequence[str]
    Days of week to roll logs. sunday - Sunday. monday - Monday. tuesday - Tuesday. wednesday - Wednesday. thursday - Thursday. friday - Friday. saturday - Saturday. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    roll_schedule str
    Frequency to check log file for rolling. none - Not scheduled. daily - Every day. weekly - Every week. Valid values: none, daily, weekly.
    roll_time str
    Time to roll logs (hh:mm).
    server_type str
    Server type. FTP - Upload via FTP. SFTP - Upload via SFTP. SCP - Upload via SCP. Valid values: FTP, SFTP, SCP.
    severity str
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status str
    Enable/disable local disk log. disable - Do not log to local disk. enable - Log to local disk. Valid values: disable, enable.
    system_locallog_disk_setting_id str
    an identifier for the resource.
    upload str
    Upload log file when rolling. disable - Disable uploading when rolling log file. enable - Enable uploading when rolling log file. Valid values: disable, enable.
    upload_delete_files str
    Delete log files after uploading (default = enable). disable - Do not delete log files after uploading. enable - Delete log files after uploading. Valid values: disable, enable.
    upload_time str
    Time to upload logs (hh:mm).
    uploaddir str
    Log file upload remote directory.
    uploadip str
    IP address of log uploading server.
    uploadpasses Sequence[str]
    Password of user account in upload server.
    uploadport float
    Server port (0 = default protocol port).
    uploadsched str
    Scheduled upload (disable = upload when rolling). disable - Upload when rolling. enable - Scheduled upload. Valid values: disable, enable.
    uploadtypes Sequence[str]
    Types of log files that need to be uploaded. event - Upload event log. Valid values: event.
    uploaduser str
    User account in upload server.
    uploadzip str
    Compress upload logs. disable - Upload log files as plain text. enable - Upload log files compressed. Valid values: disable, enable.
    diskfull String
    Policy to apply when disk is full. overwrite - Overwrite oldest log when disk is full. nolog - Stop logging when disk is full. Valid values: overwrite, nolog.
    logDiskFullPercentage Number
    Consider log disk as full at this usage percentage.
    logDiskQuota Number
    Quota for controlling local log size.
    maxLogFileNum Number
    Maximum number of log files before rolling.
    maxLogFileSize Number
    Maximum log file size before rolling.
    rollDays List<String>
    Days of week to roll logs. sunday - Sunday. monday - Monday. tuesday - Tuesday. wednesday - Wednesday. thursday - Thursday. friday - Friday. saturday - Saturday. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    rollSchedule String
    Frequency to check log file for rolling. none - Not scheduled. daily - Every day. weekly - Every week. Valid values: none, daily, weekly.
    rollTime String
    Time to roll logs (hh:mm).
    serverType String
    Server type. FTP - Upload via FTP. SFTP - Upload via SFTP. SCP - Upload via SCP. Valid values: FTP, SFTP, SCP.
    severity String
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status String
    Enable/disable local disk log. disable - Do not log to local disk. enable - Log to local disk. Valid values: disable, enable.
    systemLocallogDiskSettingId String
    an identifier for the resource.
    upload String
    Upload log file when rolling. disable - Disable uploading when rolling log file. enable - Enable uploading when rolling log file. Valid values: disable, enable.
    uploadDeleteFiles String
    Delete log files after uploading (default = enable). disable - Do not delete log files after uploading. enable - Delete log files after uploading. Valid values: disable, enable.
    uploadTime String
    Time to upload logs (hh:mm).
    uploaddir String
    Log file upload remote directory.
    uploadip String
    IP address of log uploading server.
    uploadpasses List<String>
    Password of user account in upload server.
    uploadport Number
    Server port (0 = default protocol port).
    uploadsched String
    Scheduled upload (disable = upload when rolling). disable - Upload when rolling. enable - Scheduled upload. Valid values: disable, enable.
    uploadtypes List<String>
    Types of log files that need to be uploaded. event - Upload event log. Valid values: event.
    uploaduser String
    User account in upload server.
    uploadzip String
    Compress upload logs. disable - Upload log files as plain text. enable - Upload log files compressed. Valid values: disable, enable.

    Outputs

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

    Get an existing SystemLocallogDiskSetting 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?: SystemLocallogDiskSettingState, opts?: CustomResourceOptions): SystemLocallogDiskSetting
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            diskfull: Optional[str] = None,
            log_disk_full_percentage: Optional[float] = None,
            log_disk_quota: Optional[float] = None,
            max_log_file_num: Optional[float] = None,
            max_log_file_size: Optional[float] = None,
            roll_days: Optional[Sequence[str]] = None,
            roll_schedule: Optional[str] = None,
            roll_time: Optional[str] = None,
            server_type: Optional[str] = None,
            severity: Optional[str] = None,
            status: Optional[str] = None,
            system_locallog_disk_setting_id: Optional[str] = None,
            upload: Optional[str] = None,
            upload_delete_files: Optional[str] = None,
            upload_time: Optional[str] = None,
            uploaddir: Optional[str] = None,
            uploadip: Optional[str] = None,
            uploadpasses: Optional[Sequence[str]] = None,
            uploadport: Optional[float] = None,
            uploadsched: Optional[str] = None,
            uploadtypes: Optional[Sequence[str]] = None,
            uploaduser: Optional[str] = None,
            uploadzip: Optional[str] = None) -> SystemLocallogDiskSetting
    func GetSystemLocallogDiskSetting(ctx *Context, name string, id IDInput, state *SystemLocallogDiskSettingState, opts ...ResourceOption) (*SystemLocallogDiskSetting, error)
    public static SystemLocallogDiskSetting Get(string name, Input<string> id, SystemLocallogDiskSettingState? state, CustomResourceOptions? opts = null)
    public static SystemLocallogDiskSetting get(String name, Output<String> id, SystemLocallogDiskSettingState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemLocallogDiskSetting    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:
    Diskfull string
    Policy to apply when disk is full. overwrite - Overwrite oldest log when disk is full. nolog - Stop logging when disk is full. Valid values: overwrite, nolog.
    LogDiskFullPercentage double
    Consider log disk as full at this usage percentage.
    LogDiskQuota double
    Quota for controlling local log size.
    MaxLogFileNum double
    Maximum number of log files before rolling.
    MaxLogFileSize double
    Maximum log file size before rolling.
    RollDays List<string>
    Days of week to roll logs. sunday - Sunday. monday - Monday. tuesday - Tuesday. wednesday - Wednesday. thursday - Thursday. friday - Friday. saturday - Saturday. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    RollSchedule string
    Frequency to check log file for rolling. none - Not scheduled. daily - Every day. weekly - Every week. Valid values: none, daily, weekly.
    RollTime string
    Time to roll logs (hh:mm).
    ServerType string
    Server type. FTP - Upload via FTP. SFTP - Upload via SFTP. SCP - Upload via SCP. Valid values: FTP, SFTP, SCP.
    Severity string
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    Status string
    Enable/disable local disk log. disable - Do not log to local disk. enable - Log to local disk. Valid values: disable, enable.
    SystemLocallogDiskSettingId string
    an identifier for the resource.
    Upload string
    Upload log file when rolling. disable - Disable uploading when rolling log file. enable - Enable uploading when rolling log file. Valid values: disable, enable.
    UploadDeleteFiles string
    Delete log files after uploading (default = enable). disable - Do not delete log files after uploading. enable - Delete log files after uploading. Valid values: disable, enable.
    UploadTime string
    Time to upload logs (hh:mm).
    Uploaddir string
    Log file upload remote directory.
    Uploadip string
    IP address of log uploading server.
    Uploadpasses List<string>
    Password of user account in upload server.
    Uploadport double
    Server port (0 = default protocol port).
    Uploadsched string
    Scheduled upload (disable = upload when rolling). disable - Upload when rolling. enable - Scheduled upload. Valid values: disable, enable.
    Uploadtypes List<string>
    Types of log files that need to be uploaded. event - Upload event log. Valid values: event.
    Uploaduser string
    User account in upload server.
    Uploadzip string
    Compress upload logs. disable - Upload log files as plain text. enable - Upload log files compressed. Valid values: disable, enable.
    Diskfull string
    Policy to apply when disk is full. overwrite - Overwrite oldest log when disk is full. nolog - Stop logging when disk is full. Valid values: overwrite, nolog.
    LogDiskFullPercentage float64
    Consider log disk as full at this usage percentage.
    LogDiskQuota float64
    Quota for controlling local log size.
    MaxLogFileNum float64
    Maximum number of log files before rolling.
    MaxLogFileSize float64
    Maximum log file size before rolling.
    RollDays []string
    Days of week to roll logs. sunday - Sunday. monday - Monday. tuesday - Tuesday. wednesday - Wednesday. thursday - Thursday. friday - Friday. saturday - Saturday. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    RollSchedule string
    Frequency to check log file for rolling. none - Not scheduled. daily - Every day. weekly - Every week. Valid values: none, daily, weekly.
    RollTime string
    Time to roll logs (hh:mm).
    ServerType string
    Server type. FTP - Upload via FTP. SFTP - Upload via SFTP. SCP - Upload via SCP. Valid values: FTP, SFTP, SCP.
    Severity string
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    Status string
    Enable/disable local disk log. disable - Do not log to local disk. enable - Log to local disk. Valid values: disable, enable.
    SystemLocallogDiskSettingId string
    an identifier for the resource.
    Upload string
    Upload log file when rolling. disable - Disable uploading when rolling log file. enable - Enable uploading when rolling log file. Valid values: disable, enable.
    UploadDeleteFiles string
    Delete log files after uploading (default = enable). disable - Do not delete log files after uploading. enable - Delete log files after uploading. Valid values: disable, enable.
    UploadTime string
    Time to upload logs (hh:mm).
    Uploaddir string
    Log file upload remote directory.
    Uploadip string
    IP address of log uploading server.
    Uploadpasses []string
    Password of user account in upload server.
    Uploadport float64
    Server port (0 = default protocol port).
    Uploadsched string
    Scheduled upload (disable = upload when rolling). disable - Upload when rolling. enable - Scheduled upload. Valid values: disable, enable.
    Uploadtypes []string
    Types of log files that need to be uploaded. event - Upload event log. Valid values: event.
    Uploaduser string
    User account in upload server.
    Uploadzip string
    Compress upload logs. disable - Upload log files as plain text. enable - Upload log files compressed. Valid values: disable, enable.
    diskfull String
    Policy to apply when disk is full. overwrite - Overwrite oldest log when disk is full. nolog - Stop logging when disk is full. Valid values: overwrite, nolog.
    logDiskFullPercentage Double
    Consider log disk as full at this usage percentage.
    logDiskQuota Double
    Quota for controlling local log size.
    maxLogFileNum Double
    Maximum number of log files before rolling.
    maxLogFileSize Double
    Maximum log file size before rolling.
    rollDays List<String>
    Days of week to roll logs. sunday - Sunday. monday - Monday. tuesday - Tuesday. wednesday - Wednesday. thursday - Thursday. friday - Friday. saturday - Saturday. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    rollSchedule String
    Frequency to check log file for rolling. none - Not scheduled. daily - Every day. weekly - Every week. Valid values: none, daily, weekly.
    rollTime String
    Time to roll logs (hh:mm).
    serverType String
    Server type. FTP - Upload via FTP. SFTP - Upload via SFTP. SCP - Upload via SCP. Valid values: FTP, SFTP, SCP.
    severity String
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status String
    Enable/disable local disk log. disable - Do not log to local disk. enable - Log to local disk. Valid values: disable, enable.
    systemLocallogDiskSettingId String
    an identifier for the resource.
    upload String
    Upload log file when rolling. disable - Disable uploading when rolling log file. enable - Enable uploading when rolling log file. Valid values: disable, enable.
    uploadDeleteFiles String
    Delete log files after uploading (default = enable). disable - Do not delete log files after uploading. enable - Delete log files after uploading. Valid values: disable, enable.
    uploadTime String
    Time to upload logs (hh:mm).
    uploaddir String
    Log file upload remote directory.
    uploadip String
    IP address of log uploading server.
    uploadpasses List<String>
    Password of user account in upload server.
    uploadport Double
    Server port (0 = default protocol port).
    uploadsched String
    Scheduled upload (disable = upload when rolling). disable - Upload when rolling. enable - Scheduled upload. Valid values: disable, enable.
    uploadtypes List<String>
    Types of log files that need to be uploaded. event - Upload event log. Valid values: event.
    uploaduser String
    User account in upload server.
    uploadzip String
    Compress upload logs. disable - Upload log files as plain text. enable - Upload log files compressed. Valid values: disable, enable.
    diskfull string
    Policy to apply when disk is full. overwrite - Overwrite oldest log when disk is full. nolog - Stop logging when disk is full. Valid values: overwrite, nolog.
    logDiskFullPercentage number
    Consider log disk as full at this usage percentage.
    logDiskQuota number
    Quota for controlling local log size.
    maxLogFileNum number
    Maximum number of log files before rolling.
    maxLogFileSize number
    Maximum log file size before rolling.
    rollDays string[]
    Days of week to roll logs. sunday - Sunday. monday - Monday. tuesday - Tuesday. wednesday - Wednesday. thursday - Thursday. friday - Friday. saturday - Saturday. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    rollSchedule string
    Frequency to check log file for rolling. none - Not scheduled. daily - Every day. weekly - Every week. Valid values: none, daily, weekly.
    rollTime string
    Time to roll logs (hh:mm).
    serverType string
    Server type. FTP - Upload via FTP. SFTP - Upload via SFTP. SCP - Upload via SCP. Valid values: FTP, SFTP, SCP.
    severity string
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status string
    Enable/disable local disk log. disable - Do not log to local disk. enable - Log to local disk. Valid values: disable, enable.
    systemLocallogDiskSettingId string
    an identifier for the resource.
    upload string
    Upload log file when rolling. disable - Disable uploading when rolling log file. enable - Enable uploading when rolling log file. Valid values: disable, enable.
    uploadDeleteFiles string
    Delete log files after uploading (default = enable). disable - Do not delete log files after uploading. enable - Delete log files after uploading. Valid values: disable, enable.
    uploadTime string
    Time to upload logs (hh:mm).
    uploaddir string
    Log file upload remote directory.
    uploadip string
    IP address of log uploading server.
    uploadpasses string[]
    Password of user account in upload server.
    uploadport number
    Server port (0 = default protocol port).
    uploadsched string
    Scheduled upload (disable = upload when rolling). disable - Upload when rolling. enable - Scheduled upload. Valid values: disable, enable.
    uploadtypes string[]
    Types of log files that need to be uploaded. event - Upload event log. Valid values: event.
    uploaduser string
    User account in upload server.
    uploadzip string
    Compress upload logs. disable - Upload log files as plain text. enable - Upload log files compressed. Valid values: disable, enable.
    diskfull str
    Policy to apply when disk is full. overwrite - Overwrite oldest log when disk is full. nolog - Stop logging when disk is full. Valid values: overwrite, nolog.
    log_disk_full_percentage float
    Consider log disk as full at this usage percentage.
    log_disk_quota float
    Quota for controlling local log size.
    max_log_file_num float
    Maximum number of log files before rolling.
    max_log_file_size float
    Maximum log file size before rolling.
    roll_days Sequence[str]
    Days of week to roll logs. sunday - Sunday. monday - Monday. tuesday - Tuesday. wednesday - Wednesday. thursday - Thursday. friday - Friday. saturday - Saturday. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    roll_schedule str
    Frequency to check log file for rolling. none - Not scheduled. daily - Every day. weekly - Every week. Valid values: none, daily, weekly.
    roll_time str
    Time to roll logs (hh:mm).
    server_type str
    Server type. FTP - Upload via FTP. SFTP - Upload via SFTP. SCP - Upload via SCP. Valid values: FTP, SFTP, SCP.
    severity str
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status str
    Enable/disable local disk log. disable - Do not log to local disk. enable - Log to local disk. Valid values: disable, enable.
    system_locallog_disk_setting_id str
    an identifier for the resource.
    upload str
    Upload log file when rolling. disable - Disable uploading when rolling log file. enable - Enable uploading when rolling log file. Valid values: disable, enable.
    upload_delete_files str
    Delete log files after uploading (default = enable). disable - Do not delete log files after uploading. enable - Delete log files after uploading. Valid values: disable, enable.
    upload_time str
    Time to upload logs (hh:mm).
    uploaddir str
    Log file upload remote directory.
    uploadip str
    IP address of log uploading server.
    uploadpasses Sequence[str]
    Password of user account in upload server.
    uploadport float
    Server port (0 = default protocol port).
    uploadsched str
    Scheduled upload (disable = upload when rolling). disable - Upload when rolling. enable - Scheduled upload. Valid values: disable, enable.
    uploadtypes Sequence[str]
    Types of log files that need to be uploaded. event - Upload event log. Valid values: event.
    uploaduser str
    User account in upload server.
    uploadzip str
    Compress upload logs. disable - Upload log files as plain text. enable - Upload log files compressed. Valid values: disable, enable.
    diskfull String
    Policy to apply when disk is full. overwrite - Overwrite oldest log when disk is full. nolog - Stop logging when disk is full. Valid values: overwrite, nolog.
    logDiskFullPercentage Number
    Consider log disk as full at this usage percentage.
    logDiskQuota Number
    Quota for controlling local log size.
    maxLogFileNum Number
    Maximum number of log files before rolling.
    maxLogFileSize Number
    Maximum log file size before rolling.
    rollDays List<String>
    Days of week to roll logs. sunday - Sunday. monday - Monday. tuesday - Tuesday. wednesday - Wednesday. thursday - Thursday. friday - Friday. saturday - Saturday. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    rollSchedule String
    Frequency to check log file for rolling. none - Not scheduled. daily - Every day. weekly - Every week. Valid values: none, daily, weekly.
    rollTime String
    Time to roll logs (hh:mm).
    serverType String
    Server type. FTP - Upload via FTP. SFTP - Upload via SFTP. SCP - Upload via SCP. Valid values: FTP, SFTP, SCP.
    severity String
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status String
    Enable/disable local disk log. disable - Do not log to local disk. enable - Log to local disk. Valid values: disable, enable.
    systemLocallogDiskSettingId String
    an identifier for the resource.
    upload String
    Upload log file when rolling. disable - Disable uploading when rolling log file. enable - Enable uploading when rolling log file. Valid values: disable, enable.
    uploadDeleteFiles String
    Delete log files after uploading (default = enable). disable - Do not delete log files after uploading. enable - Delete log files after uploading. Valid values: disable, enable.
    uploadTime String
    Time to upload logs (hh:mm).
    uploaddir String
    Log file upload remote directory.
    uploadip String
    IP address of log uploading server.
    uploadpasses List<String>
    Password of user account in upload server.
    uploadport Number
    Server port (0 = default protocol port).
    uploadsched String
    Scheduled upload (disable = upload when rolling). disable - Upload when rolling. enable - Scheduled upload. Valid values: disable, enable.
    uploadtypes List<String>
    Types of log files that need to be uploaded. event - Upload event log. Valid values: event.
    uploaduser String
    User account in upload server.
    uploadzip String
    Compress upload logs. disable - Upload log files as plain text. enable - Upload log files compressed. Valid values: disable, enable.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemLocallogDiskSetting:SystemLocallogDiskSetting labelname SystemLocallogDiskSetting
    

    $ 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