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

fortimanager.SystemReportAutocache

Explore with Pulumi AI

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

    Report auto-cache settings.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemReportAutocache("trname", {
        aggressiveSchedule: "disable",
        status: "enable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemReportAutocache("trname",
        aggressive_schedule="disable",
        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.NewSystemReportAutocache(ctx, "trname", &fortimanager.SystemReportAutocacheArgs{
    			AggressiveSchedule: pulumi.String("disable"),
    			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.SystemReportAutocache("trname", new()
        {
            AggressiveSchedule = "disable",
            Status = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemReportAutocache;
    import com.pulumi.fortimanager.SystemReportAutocacheArgs;
    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 SystemReportAutocache("trname", SystemReportAutocacheArgs.builder()
                .aggressiveSchedule("disable")
                .status("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemReportAutocache
        properties:
          aggressiveSchedule: disable
          status: enable
    

    Create SystemReportAutocache Resource

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

    Constructor syntax

    new SystemReportAutocache(name: string, args?: SystemReportAutocacheArgs, opts?: CustomResourceOptions);
    @overload
    def SystemReportAutocache(resource_name: str,
                              args: Optional[SystemReportAutocacheArgs] = None,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemReportAutocache(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              aggressive_schedule: Optional[str] = None,
                              order: Optional[str] = None,
                              sche_rpt_only: Optional[str] = None,
                              status: Optional[str] = None,
                              system_report_autocache_id: Optional[str] = None)
    func NewSystemReportAutocache(ctx *Context, name string, args *SystemReportAutocacheArgs, opts ...ResourceOption) (*SystemReportAutocache, error)
    public SystemReportAutocache(string name, SystemReportAutocacheArgs? args = null, CustomResourceOptions? opts = null)
    public SystemReportAutocache(String name, SystemReportAutocacheArgs args)
    public SystemReportAutocache(String name, SystemReportAutocacheArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemReportAutocache
    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 SystemReportAutocacheArgs
    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 SystemReportAutocacheArgs
    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 SystemReportAutocacheArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemReportAutocacheArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemReportAutocacheArgs
    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 systemReportAutocacheResource = new Fortimanager.SystemReportAutocache("systemReportAutocacheResource", new()
    {
        AggressiveSchedule = "string",
        Order = "string",
        ScheRptOnly = "string",
        Status = "string",
        SystemReportAutocacheId = "string",
    });
    
    example, err := fortimanager.NewSystemReportAutocache(ctx, "systemReportAutocacheResource", &fortimanager.SystemReportAutocacheArgs{
    AggressiveSchedule: pulumi.String("string"),
    Order: pulumi.String("string"),
    ScheRptOnly: pulumi.String("string"),
    Status: pulumi.String("string"),
    SystemReportAutocacheId: pulumi.String("string"),
    })
    
    var systemReportAutocacheResource = new SystemReportAutocache("systemReportAutocacheResource", SystemReportAutocacheArgs.builder()
        .aggressiveSchedule("string")
        .order("string")
        .scheRptOnly("string")
        .status("string")
        .systemReportAutocacheId("string")
        .build());
    
    system_report_autocache_resource = fortimanager.SystemReportAutocache("systemReportAutocacheResource",
        aggressive_schedule="string",
        order="string",
        sche_rpt_only="string",
        status="string",
        system_report_autocache_id="string")
    
    const systemReportAutocacheResource = new fortimanager.SystemReportAutocache("systemReportAutocacheResource", {
        aggressiveSchedule: "string",
        order: "string",
        scheRptOnly: "string",
        status: "string",
        systemReportAutocacheId: "string",
    });
    
    type: fortimanager:SystemReportAutocache
    properties:
        aggressiveSchedule: string
        order: string
        scheRptOnly: string
        status: string
        systemReportAutocacheId: string
    

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

    AggressiveSchedule string
    Enable/disable auto-cache on schedule reports aggressively. disable - Disable the aggressive schedule auto-cache. enable - Enable the aggressive schedule auto-cache. Valid values: disable, enable.
    Order string
    The order of which SQL log table is processed first. oldest-first - The oldest SQL log table is processed first. Valid values: oldest-first.
    ScheRptOnly string
    Enable/disable auto-cache on scheduled reports only. disable - Disable auto-cache on scheduled report only. enable - Enable auto-cache on scheduled report only. Valid values: disable, enable.
    Status string
    Enable/disable sql report auto cache. disable - Disable the sql report auto-cache. enable - Enable the sql report auto-cache. Valid values: disable, enable.
    SystemReportAutocacheId string
    an identifier for the resource.
    AggressiveSchedule string
    Enable/disable auto-cache on schedule reports aggressively. disable - Disable the aggressive schedule auto-cache. enable - Enable the aggressive schedule auto-cache. Valid values: disable, enable.
    Order string
    The order of which SQL log table is processed first. oldest-first - The oldest SQL log table is processed first. Valid values: oldest-first.
    ScheRptOnly string
    Enable/disable auto-cache on scheduled reports only. disable - Disable auto-cache on scheduled report only. enable - Enable auto-cache on scheduled report only. Valid values: disable, enable.
    Status string
    Enable/disable sql report auto cache. disable - Disable the sql report auto-cache. enable - Enable the sql report auto-cache. Valid values: disable, enable.
    SystemReportAutocacheId string
    an identifier for the resource.
    aggressiveSchedule String
    Enable/disable auto-cache on schedule reports aggressively. disable - Disable the aggressive schedule auto-cache. enable - Enable the aggressive schedule auto-cache. Valid values: disable, enable.
    order String
    The order of which SQL log table is processed first. oldest-first - The oldest SQL log table is processed first. Valid values: oldest-first.
    scheRptOnly String
    Enable/disable auto-cache on scheduled reports only. disable - Disable auto-cache on scheduled report only. enable - Enable auto-cache on scheduled report only. Valid values: disable, enable.
    status String
    Enable/disable sql report auto cache. disable - Disable the sql report auto-cache. enable - Enable the sql report auto-cache. Valid values: disable, enable.
    systemReportAutocacheId String
    an identifier for the resource.
    aggressiveSchedule string
    Enable/disable auto-cache on schedule reports aggressively. disable - Disable the aggressive schedule auto-cache. enable - Enable the aggressive schedule auto-cache. Valid values: disable, enable.
    order string
    The order of which SQL log table is processed first. oldest-first - The oldest SQL log table is processed first. Valid values: oldest-first.
    scheRptOnly string
    Enable/disable auto-cache on scheduled reports only. disable - Disable auto-cache on scheduled report only. enable - Enable auto-cache on scheduled report only. Valid values: disable, enable.
    status string
    Enable/disable sql report auto cache. disable - Disable the sql report auto-cache. enable - Enable the sql report auto-cache. Valid values: disable, enable.
    systemReportAutocacheId string
    an identifier for the resource.
    aggressive_schedule str
    Enable/disable auto-cache on schedule reports aggressively. disable - Disable the aggressive schedule auto-cache. enable - Enable the aggressive schedule auto-cache. Valid values: disable, enable.
    order str
    The order of which SQL log table is processed first. oldest-first - The oldest SQL log table is processed first. Valid values: oldest-first.
    sche_rpt_only str
    Enable/disable auto-cache on scheduled reports only. disable - Disable auto-cache on scheduled report only. enable - Enable auto-cache on scheduled report only. Valid values: disable, enable.
    status str
    Enable/disable sql report auto cache. disable - Disable the sql report auto-cache. enable - Enable the sql report auto-cache. Valid values: disable, enable.
    system_report_autocache_id str
    an identifier for the resource.
    aggressiveSchedule String
    Enable/disable auto-cache on schedule reports aggressively. disable - Disable the aggressive schedule auto-cache. enable - Enable the aggressive schedule auto-cache. Valid values: disable, enable.
    order String
    The order of which SQL log table is processed first. oldest-first - The oldest SQL log table is processed first. Valid values: oldest-first.
    scheRptOnly String
    Enable/disable auto-cache on scheduled reports only. disable - Disable auto-cache on scheduled report only. enable - Enable auto-cache on scheduled report only. Valid values: disable, enable.
    status String
    Enable/disable sql report auto cache. disable - Disable the sql report auto-cache. enable - Enable the sql report auto-cache. Valid values: disable, enable.
    systemReportAutocacheId String
    an identifier for the resource.

    Outputs

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

    Get an existing SystemReportAutocache 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?: SystemReportAutocacheState, opts?: CustomResourceOptions): SystemReportAutocache
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            aggressive_schedule: Optional[str] = None,
            order: Optional[str] = None,
            sche_rpt_only: Optional[str] = None,
            status: Optional[str] = None,
            system_report_autocache_id: Optional[str] = None) -> SystemReportAutocache
    func GetSystemReportAutocache(ctx *Context, name string, id IDInput, state *SystemReportAutocacheState, opts ...ResourceOption) (*SystemReportAutocache, error)
    public static SystemReportAutocache Get(string name, Input<string> id, SystemReportAutocacheState? state, CustomResourceOptions? opts = null)
    public static SystemReportAutocache get(String name, Output<String> id, SystemReportAutocacheState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemReportAutocache    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:
    AggressiveSchedule string
    Enable/disable auto-cache on schedule reports aggressively. disable - Disable the aggressive schedule auto-cache. enable - Enable the aggressive schedule auto-cache. Valid values: disable, enable.
    Order string
    The order of which SQL log table is processed first. oldest-first - The oldest SQL log table is processed first. Valid values: oldest-first.
    ScheRptOnly string
    Enable/disable auto-cache on scheduled reports only. disable - Disable auto-cache on scheduled report only. enable - Enable auto-cache on scheduled report only. Valid values: disable, enable.
    Status string
    Enable/disable sql report auto cache. disable - Disable the sql report auto-cache. enable - Enable the sql report auto-cache. Valid values: disable, enable.
    SystemReportAutocacheId string
    an identifier for the resource.
    AggressiveSchedule string
    Enable/disable auto-cache on schedule reports aggressively. disable - Disable the aggressive schedule auto-cache. enable - Enable the aggressive schedule auto-cache. Valid values: disable, enable.
    Order string
    The order of which SQL log table is processed first. oldest-first - The oldest SQL log table is processed first. Valid values: oldest-first.
    ScheRptOnly string
    Enable/disable auto-cache on scheduled reports only. disable - Disable auto-cache on scheduled report only. enable - Enable auto-cache on scheduled report only. Valid values: disable, enable.
    Status string
    Enable/disable sql report auto cache. disable - Disable the sql report auto-cache. enable - Enable the sql report auto-cache. Valid values: disable, enable.
    SystemReportAutocacheId string
    an identifier for the resource.
    aggressiveSchedule String
    Enable/disable auto-cache on schedule reports aggressively. disable - Disable the aggressive schedule auto-cache. enable - Enable the aggressive schedule auto-cache. Valid values: disable, enable.
    order String
    The order of which SQL log table is processed first. oldest-first - The oldest SQL log table is processed first. Valid values: oldest-first.
    scheRptOnly String
    Enable/disable auto-cache on scheduled reports only. disable - Disable auto-cache on scheduled report only. enable - Enable auto-cache on scheduled report only. Valid values: disable, enable.
    status String
    Enable/disable sql report auto cache. disable - Disable the sql report auto-cache. enable - Enable the sql report auto-cache. Valid values: disable, enable.
    systemReportAutocacheId String
    an identifier for the resource.
    aggressiveSchedule string
    Enable/disable auto-cache on schedule reports aggressively. disable - Disable the aggressive schedule auto-cache. enable - Enable the aggressive schedule auto-cache. Valid values: disable, enable.
    order string
    The order of which SQL log table is processed first. oldest-first - The oldest SQL log table is processed first. Valid values: oldest-first.
    scheRptOnly string
    Enable/disable auto-cache on scheduled reports only. disable - Disable auto-cache on scheduled report only. enable - Enable auto-cache on scheduled report only. Valid values: disable, enable.
    status string
    Enable/disable sql report auto cache. disable - Disable the sql report auto-cache. enable - Enable the sql report auto-cache. Valid values: disable, enable.
    systemReportAutocacheId string
    an identifier for the resource.
    aggressive_schedule str
    Enable/disable auto-cache on schedule reports aggressively. disable - Disable the aggressive schedule auto-cache. enable - Enable the aggressive schedule auto-cache. Valid values: disable, enable.
    order str
    The order of which SQL log table is processed first. oldest-first - The oldest SQL log table is processed first. Valid values: oldest-first.
    sche_rpt_only str
    Enable/disable auto-cache on scheduled reports only. disable - Disable auto-cache on scheduled report only. enable - Enable auto-cache on scheduled report only. Valid values: disable, enable.
    status str
    Enable/disable sql report auto cache. disable - Disable the sql report auto-cache. enable - Enable the sql report auto-cache. Valid values: disable, enable.
    system_report_autocache_id str
    an identifier for the resource.
    aggressiveSchedule String
    Enable/disable auto-cache on schedule reports aggressively. disable - Disable the aggressive schedule auto-cache. enable - Enable the aggressive schedule auto-cache. Valid values: disable, enable.
    order String
    The order of which SQL log table is processed first. oldest-first - The oldest SQL log table is processed first. Valid values: oldest-first.
    scheRptOnly String
    Enable/disable auto-cache on scheduled reports only. disable - Disable auto-cache on scheduled report only. enable - Enable auto-cache on scheduled report only. Valid values: disable, enable.
    status String
    Enable/disable sql report auto cache. disable - Disable the sql report auto-cache. enable - Enable the sql report auto-cache. Valid values: disable, enable.
    systemReportAutocacheId String
    an identifier for the resource.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemReportAutocache:SystemReportAutocache labelname SystemReportAutoCache
    

    $ 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