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

fortimanager.SystemAutodelete

Explore with Pulumi AI

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

    Automatic deletion policy for logs, reports, archived, and quarantined files.

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

    • dlp_files_auto_deletion: fortimanager.SystemAutodeleteDlpfilesautodeletion
    • log_auto_deletion: fortimanager.SystemAutodeleteLogautodeletion
    • quarantine_files_auto_deletion: fortimanager.SystemAutodeleteQuarantinefilesautodeletion
    • report_auto_deletion: fortimanager.SystemAutodeleteReportautodeletion

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemAutodelete("trname", {statusFake: 1});
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemAutodelete("trname", status_fake=1)
    
    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.NewSystemAutodelete(ctx, "trname", &fortimanager.SystemAutodeleteArgs{
    			StatusFake: pulumi.Float64(1),
    		})
    		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.SystemAutodelete("trname", new()
        {
            StatusFake = 1,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemAutodelete;
    import com.pulumi.fortimanager.SystemAutodeleteArgs;
    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 SystemAutodelete("trname", SystemAutodeleteArgs.builder()
                .statusFake(1)
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemAutodelete
        properties:
          statusFake: 1
    

    Create SystemAutodelete Resource

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

    Constructor syntax

    new SystemAutodelete(name: string, args?: SystemAutodeleteArgs, opts?: CustomResourceOptions);
    @overload
    def SystemAutodelete(resource_name: str,
                         args: Optional[SystemAutodeleteArgs] = None,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemAutodelete(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         dlp_files_auto_deletion: Optional[SystemAutodeleteDlpFilesAutoDeletionArgs] = None,
                         log_auto_deletion: Optional[SystemAutodeleteLogAutoDeletionArgs] = None,
                         quarantine_files_auto_deletion: Optional[SystemAutodeleteQuarantineFilesAutoDeletionArgs] = None,
                         report_auto_deletion: Optional[SystemAutodeleteReportAutoDeletionArgs] = None,
                         status_fake: Optional[float] = None,
                         system_autodelete_id: Optional[str] = None)
    func NewSystemAutodelete(ctx *Context, name string, args *SystemAutodeleteArgs, opts ...ResourceOption) (*SystemAutodelete, error)
    public SystemAutodelete(string name, SystemAutodeleteArgs? args = null, CustomResourceOptions? opts = null)
    public SystemAutodelete(String name, SystemAutodeleteArgs args)
    public SystemAutodelete(String name, SystemAutodeleteArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemAutodelete
    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 SystemAutodeleteArgs
    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 SystemAutodeleteArgs
    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 SystemAutodeleteArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemAutodeleteArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemAutodeleteArgs
    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 systemAutodeleteResource = new Fortimanager.SystemAutodelete("systemAutodeleteResource", new()
    {
        DlpFilesAutoDeletion = new Fortimanager.Inputs.SystemAutodeleteDlpFilesAutoDeletionArgs
        {
            Retention = "string",
            Runat = 0,
            Status = "string",
            Value = 0,
        },
        LogAutoDeletion = new Fortimanager.Inputs.SystemAutodeleteLogAutoDeletionArgs
        {
            Retention = "string",
            Runat = 0,
            Status = "string",
            Value = 0,
        },
        QuarantineFilesAutoDeletion = new Fortimanager.Inputs.SystemAutodeleteQuarantineFilesAutoDeletionArgs
        {
            Retention = "string",
            Runat = 0,
            Status = "string",
            Value = 0,
        },
        ReportAutoDeletion = new Fortimanager.Inputs.SystemAutodeleteReportAutoDeletionArgs
        {
            Retention = "string",
            Runat = 0,
            Status = "string",
            Value = 0,
        },
        StatusFake = 0,
        SystemAutodeleteId = "string",
    });
    
    example, err := fortimanager.NewSystemAutodelete(ctx, "systemAutodeleteResource", &fortimanager.SystemAutodeleteArgs{
    DlpFilesAutoDeletion: &.SystemAutodeleteDlpFilesAutoDeletionTypeArgs{
    Retention: pulumi.String("string"),
    Runat: pulumi.Float64(0),
    Status: pulumi.String("string"),
    Value: pulumi.Float64(0),
    },
    LogAutoDeletion: &.SystemAutodeleteLogAutoDeletionTypeArgs{
    Retention: pulumi.String("string"),
    Runat: pulumi.Float64(0),
    Status: pulumi.String("string"),
    Value: pulumi.Float64(0),
    },
    QuarantineFilesAutoDeletion: &.SystemAutodeleteQuarantineFilesAutoDeletionTypeArgs{
    Retention: pulumi.String("string"),
    Runat: pulumi.Float64(0),
    Status: pulumi.String("string"),
    Value: pulumi.Float64(0),
    },
    ReportAutoDeletion: &.SystemAutodeleteReportAutoDeletionTypeArgs{
    Retention: pulumi.String("string"),
    Runat: pulumi.Float64(0),
    Status: pulumi.String("string"),
    Value: pulumi.Float64(0),
    },
    StatusFake: pulumi.Float64(0),
    SystemAutodeleteId: pulumi.String("string"),
    })
    
    var systemAutodeleteResource = new SystemAutodelete("systemAutodeleteResource", SystemAutodeleteArgs.builder()
        .dlpFilesAutoDeletion(SystemAutodeleteDlpFilesAutoDeletionArgs.builder()
            .retention("string")
            .runat(0)
            .status("string")
            .value(0)
            .build())
        .logAutoDeletion(SystemAutodeleteLogAutoDeletionArgs.builder()
            .retention("string")
            .runat(0)
            .status("string")
            .value(0)
            .build())
        .quarantineFilesAutoDeletion(SystemAutodeleteQuarantineFilesAutoDeletionArgs.builder()
            .retention("string")
            .runat(0)
            .status("string")
            .value(0)
            .build())
        .reportAutoDeletion(SystemAutodeleteReportAutoDeletionArgs.builder()
            .retention("string")
            .runat(0)
            .status("string")
            .value(0)
            .build())
        .statusFake(0)
        .systemAutodeleteId("string")
        .build());
    
    system_autodelete_resource = fortimanager.SystemAutodelete("systemAutodeleteResource",
        dlp_files_auto_deletion={
            "retention": "string",
            "runat": 0,
            "status": "string",
            "value": 0,
        },
        log_auto_deletion={
            "retention": "string",
            "runat": 0,
            "status": "string",
            "value": 0,
        },
        quarantine_files_auto_deletion={
            "retention": "string",
            "runat": 0,
            "status": "string",
            "value": 0,
        },
        report_auto_deletion={
            "retention": "string",
            "runat": 0,
            "status": "string",
            "value": 0,
        },
        status_fake=0,
        system_autodelete_id="string")
    
    const systemAutodeleteResource = new fortimanager.SystemAutodelete("systemAutodeleteResource", {
        dlpFilesAutoDeletion: {
            retention: "string",
            runat: 0,
            status: "string",
            value: 0,
        },
        logAutoDeletion: {
            retention: "string",
            runat: 0,
            status: "string",
            value: 0,
        },
        quarantineFilesAutoDeletion: {
            retention: "string",
            runat: 0,
            status: "string",
            value: 0,
        },
        reportAutoDeletion: {
            retention: "string",
            runat: 0,
            status: "string",
            value: 0,
        },
        statusFake: 0,
        systemAutodeleteId: "string",
    });
    
    type: fortimanager:SystemAutodelete
    properties:
        dlpFilesAutoDeletion:
            retention: string
            runat: 0
            status: string
            value: 0
        logAutoDeletion:
            retention: string
            runat: 0
            status: string
            value: 0
        quarantineFilesAutoDeletion:
            retention: string
            runat: 0
            status: string
            value: 0
        reportAutoDeletion:
            retention: string
            runat: 0
            status: string
            value: 0
        statusFake: 0
        systemAutodeleteId: string
    

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

    DlpFilesAutoDeletion SystemAutodeleteDlpFilesAutoDeletion
    Dlp-Files-Auto-Deletion. The structure of dlp_files_auto_deletion block is documented below.
    LogAutoDeletion SystemAutodeleteLogAutoDeletion
    Log-Auto-Deletion. The structure of log_auto_deletion block is documented below.
    QuarantineFilesAutoDeletion SystemAutodeleteQuarantineFilesAutoDeletion
    Quarantine-Files-Auto-Deletion. The structure of quarantine_files_auto_deletion block is documented below.
    ReportAutoDeletion SystemAutodeleteReportAutoDeletion
    Report-Auto-Deletion. The structure of report_auto_deletion block is documented below.
    StatusFake double
    Fake value for the menu to work.
    SystemAutodeleteId string
    an identifier for the resource.
    DlpFilesAutoDeletion SystemAutodeleteDlpFilesAutoDeletionTypeArgs
    Dlp-Files-Auto-Deletion. The structure of dlp_files_auto_deletion block is documented below.
    LogAutoDeletion SystemAutodeleteLogAutoDeletionTypeArgs
    Log-Auto-Deletion. The structure of log_auto_deletion block is documented below.
    QuarantineFilesAutoDeletion SystemAutodeleteQuarantineFilesAutoDeletionTypeArgs
    Quarantine-Files-Auto-Deletion. The structure of quarantine_files_auto_deletion block is documented below.
    ReportAutoDeletion SystemAutodeleteReportAutoDeletionTypeArgs
    Report-Auto-Deletion. The structure of report_auto_deletion block is documented below.
    StatusFake float64
    Fake value for the menu to work.
    SystemAutodeleteId string
    an identifier for the resource.
    dlpFilesAutoDeletion SystemAutodeleteDlpFilesAutoDeletion
    Dlp-Files-Auto-Deletion. The structure of dlp_files_auto_deletion block is documented below.
    logAutoDeletion SystemAutodeleteLogAutoDeletion
    Log-Auto-Deletion. The structure of log_auto_deletion block is documented below.
    quarantineFilesAutoDeletion SystemAutodeleteQuarantineFilesAutoDeletion
    Quarantine-Files-Auto-Deletion. The structure of quarantine_files_auto_deletion block is documented below.
    reportAutoDeletion SystemAutodeleteReportAutoDeletion
    Report-Auto-Deletion. The structure of report_auto_deletion block is documented below.
    statusFake Double
    Fake value for the menu to work.
    systemAutodeleteId String
    an identifier for the resource.
    dlpFilesAutoDeletion SystemAutodeleteDlpFilesAutoDeletion
    Dlp-Files-Auto-Deletion. The structure of dlp_files_auto_deletion block is documented below.
    logAutoDeletion SystemAutodeleteLogAutoDeletion
    Log-Auto-Deletion. The structure of log_auto_deletion block is documented below.
    quarantineFilesAutoDeletion SystemAutodeleteQuarantineFilesAutoDeletion
    Quarantine-Files-Auto-Deletion. The structure of quarantine_files_auto_deletion block is documented below.
    reportAutoDeletion SystemAutodeleteReportAutoDeletion
    Report-Auto-Deletion. The structure of report_auto_deletion block is documented below.
    statusFake number
    Fake value for the menu to work.
    systemAutodeleteId string
    an identifier for the resource.
    dlp_files_auto_deletion SystemAutodeleteDlpFilesAutoDeletionArgs
    Dlp-Files-Auto-Deletion. The structure of dlp_files_auto_deletion block is documented below.
    log_auto_deletion SystemAutodeleteLogAutoDeletionArgs
    Log-Auto-Deletion. The structure of log_auto_deletion block is documented below.
    quarantine_files_auto_deletion SystemAutodeleteQuarantineFilesAutoDeletionArgs
    Quarantine-Files-Auto-Deletion. The structure of quarantine_files_auto_deletion block is documented below.
    report_auto_deletion SystemAutodeleteReportAutoDeletionArgs
    Report-Auto-Deletion. The structure of report_auto_deletion block is documented below.
    status_fake float
    Fake value for the menu to work.
    system_autodelete_id str
    an identifier for the resource.
    dlpFilesAutoDeletion Property Map
    Dlp-Files-Auto-Deletion. The structure of dlp_files_auto_deletion block is documented below.
    logAutoDeletion Property Map
    Log-Auto-Deletion. The structure of log_auto_deletion block is documented below.
    quarantineFilesAutoDeletion Property Map
    Quarantine-Files-Auto-Deletion. The structure of quarantine_files_auto_deletion block is documented below.
    reportAutoDeletion Property Map
    Report-Auto-Deletion. The structure of report_auto_deletion block is documented below.
    statusFake Number
    Fake value for the menu to work.
    systemAutodeleteId String
    an identifier for the resource.

    Outputs

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

    Get an existing SystemAutodelete 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?: SystemAutodeleteState, opts?: CustomResourceOptions): SystemAutodelete
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dlp_files_auto_deletion: Optional[SystemAutodeleteDlpFilesAutoDeletionArgs] = None,
            log_auto_deletion: Optional[SystemAutodeleteLogAutoDeletionArgs] = None,
            quarantine_files_auto_deletion: Optional[SystemAutodeleteQuarantineFilesAutoDeletionArgs] = None,
            report_auto_deletion: Optional[SystemAutodeleteReportAutoDeletionArgs] = None,
            status_fake: Optional[float] = None,
            system_autodelete_id: Optional[str] = None) -> SystemAutodelete
    func GetSystemAutodelete(ctx *Context, name string, id IDInput, state *SystemAutodeleteState, opts ...ResourceOption) (*SystemAutodelete, error)
    public static SystemAutodelete Get(string name, Input<string> id, SystemAutodeleteState? state, CustomResourceOptions? opts = null)
    public static SystemAutodelete get(String name, Output<String> id, SystemAutodeleteState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemAutodelete    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:
    DlpFilesAutoDeletion SystemAutodeleteDlpFilesAutoDeletion
    Dlp-Files-Auto-Deletion. The structure of dlp_files_auto_deletion block is documented below.
    LogAutoDeletion SystemAutodeleteLogAutoDeletion
    Log-Auto-Deletion. The structure of log_auto_deletion block is documented below.
    QuarantineFilesAutoDeletion SystemAutodeleteQuarantineFilesAutoDeletion
    Quarantine-Files-Auto-Deletion. The structure of quarantine_files_auto_deletion block is documented below.
    ReportAutoDeletion SystemAutodeleteReportAutoDeletion
    Report-Auto-Deletion. The structure of report_auto_deletion block is documented below.
    StatusFake double
    Fake value for the menu to work.
    SystemAutodeleteId string
    an identifier for the resource.
    DlpFilesAutoDeletion SystemAutodeleteDlpFilesAutoDeletionTypeArgs
    Dlp-Files-Auto-Deletion. The structure of dlp_files_auto_deletion block is documented below.
    LogAutoDeletion SystemAutodeleteLogAutoDeletionTypeArgs
    Log-Auto-Deletion. The structure of log_auto_deletion block is documented below.
    QuarantineFilesAutoDeletion SystemAutodeleteQuarantineFilesAutoDeletionTypeArgs
    Quarantine-Files-Auto-Deletion. The structure of quarantine_files_auto_deletion block is documented below.
    ReportAutoDeletion SystemAutodeleteReportAutoDeletionTypeArgs
    Report-Auto-Deletion. The structure of report_auto_deletion block is documented below.
    StatusFake float64
    Fake value for the menu to work.
    SystemAutodeleteId string
    an identifier for the resource.
    dlpFilesAutoDeletion SystemAutodeleteDlpFilesAutoDeletion
    Dlp-Files-Auto-Deletion. The structure of dlp_files_auto_deletion block is documented below.
    logAutoDeletion SystemAutodeleteLogAutoDeletion
    Log-Auto-Deletion. The structure of log_auto_deletion block is documented below.
    quarantineFilesAutoDeletion SystemAutodeleteQuarantineFilesAutoDeletion
    Quarantine-Files-Auto-Deletion. The structure of quarantine_files_auto_deletion block is documented below.
    reportAutoDeletion SystemAutodeleteReportAutoDeletion
    Report-Auto-Deletion. The structure of report_auto_deletion block is documented below.
    statusFake Double
    Fake value for the menu to work.
    systemAutodeleteId String
    an identifier for the resource.
    dlpFilesAutoDeletion SystemAutodeleteDlpFilesAutoDeletion
    Dlp-Files-Auto-Deletion. The structure of dlp_files_auto_deletion block is documented below.
    logAutoDeletion SystemAutodeleteLogAutoDeletion
    Log-Auto-Deletion. The structure of log_auto_deletion block is documented below.
    quarantineFilesAutoDeletion SystemAutodeleteQuarantineFilesAutoDeletion
    Quarantine-Files-Auto-Deletion. The structure of quarantine_files_auto_deletion block is documented below.
    reportAutoDeletion SystemAutodeleteReportAutoDeletion
    Report-Auto-Deletion. The structure of report_auto_deletion block is documented below.
    statusFake number
    Fake value for the menu to work.
    systemAutodeleteId string
    an identifier for the resource.
    dlp_files_auto_deletion SystemAutodeleteDlpFilesAutoDeletionArgs
    Dlp-Files-Auto-Deletion. The structure of dlp_files_auto_deletion block is documented below.
    log_auto_deletion SystemAutodeleteLogAutoDeletionArgs
    Log-Auto-Deletion. The structure of log_auto_deletion block is documented below.
    quarantine_files_auto_deletion SystemAutodeleteQuarantineFilesAutoDeletionArgs
    Quarantine-Files-Auto-Deletion. The structure of quarantine_files_auto_deletion block is documented below.
    report_auto_deletion SystemAutodeleteReportAutoDeletionArgs
    Report-Auto-Deletion. The structure of report_auto_deletion block is documented below.
    status_fake float
    Fake value for the menu to work.
    system_autodelete_id str
    an identifier for the resource.
    dlpFilesAutoDeletion Property Map
    Dlp-Files-Auto-Deletion. The structure of dlp_files_auto_deletion block is documented below.
    logAutoDeletion Property Map
    Log-Auto-Deletion. The structure of log_auto_deletion block is documented below.
    quarantineFilesAutoDeletion Property Map
    Quarantine-Files-Auto-Deletion. The structure of quarantine_files_auto_deletion block is documented below.
    reportAutoDeletion Property Map
    Report-Auto-Deletion. The structure of report_auto_deletion block is documented below.
    statusFake Number
    Fake value for the menu to work.
    systemAutodeleteId String
    an identifier for the resource.

    Supporting Types

    SystemAutodeleteDlpFilesAutoDeletion, SystemAutodeleteDlpFilesAutoDeletionArgs

    Retention string
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    Runat double
    Automatic deletion run at (0 - 23) o'clock.
    Status string
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    Value double
    Automatic deletion in x days, weeks, or months.
    Retention string
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    Runat float64
    Automatic deletion run at (0 - 23) o'clock.
    Status string
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    Value float64
    Automatic deletion in x days, weeks, or months.
    retention String
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat Double
    Automatic deletion run at (0 - 23) o'clock.
    status String
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value Double
    Automatic deletion in x days, weeks, or months.
    retention string
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat number
    Automatic deletion run at (0 - 23) o'clock.
    status string
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value number
    Automatic deletion in x days, weeks, or months.
    retention str
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat float
    Automatic deletion run at (0 - 23) o'clock.
    status str
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value float
    Automatic deletion in x days, weeks, or months.
    retention String
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat Number
    Automatic deletion run at (0 - 23) o'clock.
    status String
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value Number
    Automatic deletion in x days, weeks, or months.

    SystemAutodeleteLogAutoDeletion, SystemAutodeleteLogAutoDeletionArgs

    Retention string
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    Runat double
    Automatic deletion run at (0 - 23) o'clock.
    Status string
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    Value double
    Automatic deletion in x days, weeks, or months.
    Retention string
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    Runat float64
    Automatic deletion run at (0 - 23) o'clock.
    Status string
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    Value float64
    Automatic deletion in x days, weeks, or months.
    retention String
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat Double
    Automatic deletion run at (0 - 23) o'clock.
    status String
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value Double
    Automatic deletion in x days, weeks, or months.
    retention string
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat number
    Automatic deletion run at (0 - 23) o'clock.
    status string
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value number
    Automatic deletion in x days, weeks, or months.
    retention str
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat float
    Automatic deletion run at (0 - 23) o'clock.
    status str
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value float
    Automatic deletion in x days, weeks, or months.
    retention String
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat Number
    Automatic deletion run at (0 - 23) o'clock.
    status String
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value Number
    Automatic deletion in x days, weeks, or months.

    SystemAutodeleteQuarantineFilesAutoDeletion, SystemAutodeleteQuarantineFilesAutoDeletionArgs

    Retention string
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    Runat double
    Automatic deletion run at (0 - 23) o'clock.
    Status string
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    Value double
    Automatic deletion in x days, weeks, or months.
    Retention string
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    Runat float64
    Automatic deletion run at (0 - 23) o'clock.
    Status string
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    Value float64
    Automatic deletion in x days, weeks, or months.
    retention String
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat Double
    Automatic deletion run at (0 - 23) o'clock.
    status String
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value Double
    Automatic deletion in x days, weeks, or months.
    retention string
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat number
    Automatic deletion run at (0 - 23) o'clock.
    status string
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value number
    Automatic deletion in x days, weeks, or months.
    retention str
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat float
    Automatic deletion run at (0 - 23) o'clock.
    status str
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value float
    Automatic deletion in x days, weeks, or months.
    retention String
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat Number
    Automatic deletion run at (0 - 23) o'clock.
    status String
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value Number
    Automatic deletion in x days, weeks, or months.

    SystemAutodeleteReportAutoDeletion, SystemAutodeleteReportAutoDeletionArgs

    Retention string
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    Runat double
    Automatic deletion run at (0 - 23) o'clock.
    Status string
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    Value double
    Automatic deletion in x days, weeks, or months.
    Retention string
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    Runat float64
    Automatic deletion run at (0 - 23) o'clock.
    Status string
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    Value float64
    Automatic deletion in x days, weeks, or months.
    retention String
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat Double
    Automatic deletion run at (0 - 23) o'clock.
    status String
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value Double
    Automatic deletion in x days, weeks, or months.
    retention string
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat number
    Automatic deletion run at (0 - 23) o'clock.
    status string
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value number
    Automatic deletion in x days, weeks, or months.
    retention str
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat float
    Automatic deletion run at (0 - 23) o'clock.
    status str
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value float
    Automatic deletion in x days, weeks, or months.
    retention String
    Automatic deletion in days, weeks, or months. days - Auto-delete data older than days. weeks - Auto-delete data older than weeks. months - Auto-delete data older than months. Valid values: days, weeks, months.
    runat Number
    Automatic deletion run at (0 - 23) o'clock.
    status String
    Enable/disable automatic deletion. disable - Disable automatic deletion. enable - Enable automatic deletion. Valid values: disable, enable.
    value Number
    Automatic deletion in x days, weeks, or months.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemAutodelete:SystemAutodelete labelname SystemAutoDelete
    

    $ 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