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

fortimanager.SystemReportSetting

Explore with Pulumi AI

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

    Report settings.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemReportSetting("trname", {
        aggregateReport: "disable",
        excludeCapwap: "disable",
        reportPriority: "high",
        templateAutoInstall: "default",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemReportSetting("trname",
        aggregate_report="disable",
        exclude_capwap="disable",
        report_priority="high",
        template_auto_install="default")
    
    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.NewSystemReportSetting(ctx, "trname", &fortimanager.SystemReportSettingArgs{
    			AggregateReport:     pulumi.String("disable"),
    			ExcludeCapwap:       pulumi.String("disable"),
    			ReportPriority:      pulumi.String("high"),
    			TemplateAutoInstall: pulumi.String("default"),
    		})
    		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.SystemReportSetting("trname", new()
        {
            AggregateReport = "disable",
            ExcludeCapwap = "disable",
            ReportPriority = "high",
            TemplateAutoInstall = "default",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemReportSetting;
    import com.pulumi.fortimanager.SystemReportSettingArgs;
    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 SystemReportSetting("trname", SystemReportSettingArgs.builder()
                .aggregateReport("disable")
                .excludeCapwap("disable")
                .reportPriority("high")
                .templateAutoInstall("default")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemReportSetting
        properties:
          aggregateReport: disable
          excludeCapwap: disable
          reportPriority: high
          templateAutoInstall: default
    

    Create SystemReportSetting Resource

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

    Constructor syntax

    new SystemReportSetting(name: string, args?: SystemReportSettingArgs, opts?: CustomResourceOptions);
    @overload
    def SystemReportSetting(resource_name: str,
                            args: Optional[SystemReportSettingArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemReportSetting(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            aggregate_report: Optional[str] = None,
                            capwap_port: Optional[float] = None,
                            capwap_service: Optional[str] = None,
                            exclude_capwap: Optional[str] = None,
                            hcache_lossless: Optional[str] = None,
                            ldap_cache_timeout: Optional[float] = None,
                            max_rpt_pdf_rows: Optional[float] = None,
                            max_table_rows: Optional[float] = None,
                            report_priority: Optional[str] = None,
                            system_report_setting_id: Optional[str] = None,
                            template_auto_install: Optional[str] = None,
                            week_start: Optional[str] = None)
    func NewSystemReportSetting(ctx *Context, name string, args *SystemReportSettingArgs, opts ...ResourceOption) (*SystemReportSetting, error)
    public SystemReportSetting(string name, SystemReportSettingArgs? args = null, CustomResourceOptions? opts = null)
    public SystemReportSetting(String name, SystemReportSettingArgs args)
    public SystemReportSetting(String name, SystemReportSettingArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemReportSetting
    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 SystemReportSettingArgs
    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 SystemReportSettingArgs
    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 SystemReportSettingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemReportSettingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemReportSettingArgs
    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 systemReportSettingResource = new Fortimanager.SystemReportSetting("systemReportSettingResource", new()
    {
        AggregateReport = "string",
        CapwapPort = 0,
        CapwapService = "string",
        ExcludeCapwap = "string",
        HcacheLossless = "string",
        LdapCacheTimeout = 0,
        MaxRptPdfRows = 0,
        MaxTableRows = 0,
        ReportPriority = "string",
        SystemReportSettingId = "string",
        TemplateAutoInstall = "string",
        WeekStart = "string",
    });
    
    example, err := fortimanager.NewSystemReportSetting(ctx, "systemReportSettingResource", &fortimanager.SystemReportSettingArgs{
    AggregateReport: pulumi.String("string"),
    CapwapPort: pulumi.Float64(0),
    CapwapService: pulumi.String("string"),
    ExcludeCapwap: pulumi.String("string"),
    HcacheLossless: pulumi.String("string"),
    LdapCacheTimeout: pulumi.Float64(0),
    MaxRptPdfRows: pulumi.Float64(0),
    MaxTableRows: pulumi.Float64(0),
    ReportPriority: pulumi.String("string"),
    SystemReportSettingId: pulumi.String("string"),
    TemplateAutoInstall: pulumi.String("string"),
    WeekStart: pulumi.String("string"),
    })
    
    var systemReportSettingResource = new SystemReportSetting("systemReportSettingResource", SystemReportSettingArgs.builder()
        .aggregateReport("string")
        .capwapPort(0)
        .capwapService("string")
        .excludeCapwap("string")
        .hcacheLossless("string")
        .ldapCacheTimeout(0)
        .maxRptPdfRows(0)
        .maxTableRows(0)
        .reportPriority("string")
        .systemReportSettingId("string")
        .templateAutoInstall("string")
        .weekStart("string")
        .build());
    
    system_report_setting_resource = fortimanager.SystemReportSetting("systemReportSettingResource",
        aggregate_report="string",
        capwap_port=0,
        capwap_service="string",
        exclude_capwap="string",
        hcache_lossless="string",
        ldap_cache_timeout=0,
        max_rpt_pdf_rows=0,
        max_table_rows=0,
        report_priority="string",
        system_report_setting_id="string",
        template_auto_install="string",
        week_start="string")
    
    const systemReportSettingResource = new fortimanager.SystemReportSetting("systemReportSettingResource", {
        aggregateReport: "string",
        capwapPort: 0,
        capwapService: "string",
        excludeCapwap: "string",
        hcacheLossless: "string",
        ldapCacheTimeout: 0,
        maxRptPdfRows: 0,
        maxTableRows: 0,
        reportPriority: "string",
        systemReportSettingId: "string",
        templateAutoInstall: "string",
        weekStart: "string",
    });
    
    type: fortimanager:SystemReportSetting
    properties:
        aggregateReport: string
        capwapPort: 0
        capwapService: string
        excludeCapwap: string
        hcacheLossless: string
        ldapCacheTimeout: 0
        maxRptPdfRows: 0
        maxTableRows: 0
        reportPriority: string
        systemReportSettingId: string
        templateAutoInstall: string
        weekStart: string
    

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

    AggregateReport string
    Enable/disable including a group report along with the per-device reports. disable - Exclude a group report along with the per-device reports. enable - Include a group report along with the per-device reports. Valid values: disable, enable.
    CapwapPort double
    Exclude capwap traffic by port.
    CapwapService string
    Exclude capwap traffic by service.
    ExcludeCapwap string
    Exclude capwap traffic. disable - Disable. by-port - By port. by-service - By service. Valid values: disable, by-port, by-service.
    HcacheLossless string
    Usableness of ready-with-loss hcaches. disable - Use ready-with-loss hcaches. enable - Do not use ready-with-loss hcaches. Valid values: disable, enable.
    LdapCacheTimeout double
    LDAP cache timeout in minutes, default 60, 0 means not use cache.
    MaxRptPdfRows double
    Maximum number of rows can be generated in a single pdf.
    MaxTableRows double
    Maximum number of rows can be generated in a single table.
    ReportPriority string
    Priority of sql report. high - High low - Low auto - Auto Valid values: high, low, auto.
    SystemReportSettingId string
    an identifier for the resource.
    TemplateAutoInstall string
    The language used for new ADOMs (default = default). default - Default. english - English. Valid values: default, english.
    WeekStart string
    Day of the week on which the week starts. sun - Sunday. mon - Monday. Valid values: sun, mon.
    AggregateReport string
    Enable/disable including a group report along with the per-device reports. disable - Exclude a group report along with the per-device reports. enable - Include a group report along with the per-device reports. Valid values: disable, enable.
    CapwapPort float64
    Exclude capwap traffic by port.
    CapwapService string
    Exclude capwap traffic by service.
    ExcludeCapwap string
    Exclude capwap traffic. disable - Disable. by-port - By port. by-service - By service. Valid values: disable, by-port, by-service.
    HcacheLossless string
    Usableness of ready-with-loss hcaches. disable - Use ready-with-loss hcaches. enable - Do not use ready-with-loss hcaches. Valid values: disable, enable.
    LdapCacheTimeout float64
    LDAP cache timeout in minutes, default 60, 0 means not use cache.
    MaxRptPdfRows float64
    Maximum number of rows can be generated in a single pdf.
    MaxTableRows float64
    Maximum number of rows can be generated in a single table.
    ReportPriority string
    Priority of sql report. high - High low - Low auto - Auto Valid values: high, low, auto.
    SystemReportSettingId string
    an identifier for the resource.
    TemplateAutoInstall string
    The language used for new ADOMs (default = default). default - Default. english - English. Valid values: default, english.
    WeekStart string
    Day of the week on which the week starts. sun - Sunday. mon - Monday. Valid values: sun, mon.
    aggregateReport String
    Enable/disable including a group report along with the per-device reports. disable - Exclude a group report along with the per-device reports. enable - Include a group report along with the per-device reports. Valid values: disable, enable.
    capwapPort Double
    Exclude capwap traffic by port.
    capwapService String
    Exclude capwap traffic by service.
    excludeCapwap String
    Exclude capwap traffic. disable - Disable. by-port - By port. by-service - By service. Valid values: disable, by-port, by-service.
    hcacheLossless String
    Usableness of ready-with-loss hcaches. disable - Use ready-with-loss hcaches. enable - Do not use ready-with-loss hcaches. Valid values: disable, enable.
    ldapCacheTimeout Double
    LDAP cache timeout in minutes, default 60, 0 means not use cache.
    maxRptPdfRows Double
    Maximum number of rows can be generated in a single pdf.
    maxTableRows Double
    Maximum number of rows can be generated in a single table.
    reportPriority String
    Priority of sql report. high - High low - Low auto - Auto Valid values: high, low, auto.
    systemReportSettingId String
    an identifier for the resource.
    templateAutoInstall String
    The language used for new ADOMs (default = default). default - Default. english - English. Valid values: default, english.
    weekStart String
    Day of the week on which the week starts. sun - Sunday. mon - Monday. Valid values: sun, mon.
    aggregateReport string
    Enable/disable including a group report along with the per-device reports. disable - Exclude a group report along with the per-device reports. enable - Include a group report along with the per-device reports. Valid values: disable, enable.
    capwapPort number
    Exclude capwap traffic by port.
    capwapService string
    Exclude capwap traffic by service.
    excludeCapwap string
    Exclude capwap traffic. disable - Disable. by-port - By port. by-service - By service. Valid values: disable, by-port, by-service.
    hcacheLossless string
    Usableness of ready-with-loss hcaches. disable - Use ready-with-loss hcaches. enable - Do not use ready-with-loss hcaches. Valid values: disable, enable.
    ldapCacheTimeout number
    LDAP cache timeout in minutes, default 60, 0 means not use cache.
    maxRptPdfRows number
    Maximum number of rows can be generated in a single pdf.
    maxTableRows number
    Maximum number of rows can be generated in a single table.
    reportPriority string
    Priority of sql report. high - High low - Low auto - Auto Valid values: high, low, auto.
    systemReportSettingId string
    an identifier for the resource.
    templateAutoInstall string
    The language used for new ADOMs (default = default). default - Default. english - English. Valid values: default, english.
    weekStart string
    Day of the week on which the week starts. sun - Sunday. mon - Monday. Valid values: sun, mon.
    aggregate_report str
    Enable/disable including a group report along with the per-device reports. disable - Exclude a group report along with the per-device reports. enable - Include a group report along with the per-device reports. Valid values: disable, enable.
    capwap_port float
    Exclude capwap traffic by port.
    capwap_service str
    Exclude capwap traffic by service.
    exclude_capwap str
    Exclude capwap traffic. disable - Disable. by-port - By port. by-service - By service. Valid values: disable, by-port, by-service.
    hcache_lossless str
    Usableness of ready-with-loss hcaches. disable - Use ready-with-loss hcaches. enable - Do not use ready-with-loss hcaches. Valid values: disable, enable.
    ldap_cache_timeout float
    LDAP cache timeout in minutes, default 60, 0 means not use cache.
    max_rpt_pdf_rows float
    Maximum number of rows can be generated in a single pdf.
    max_table_rows float
    Maximum number of rows can be generated in a single table.
    report_priority str
    Priority of sql report. high - High low - Low auto - Auto Valid values: high, low, auto.
    system_report_setting_id str
    an identifier for the resource.
    template_auto_install str
    The language used for new ADOMs (default = default). default - Default. english - English. Valid values: default, english.
    week_start str
    Day of the week on which the week starts. sun - Sunday. mon - Monday. Valid values: sun, mon.
    aggregateReport String
    Enable/disable including a group report along with the per-device reports. disable - Exclude a group report along with the per-device reports. enable - Include a group report along with the per-device reports. Valid values: disable, enable.
    capwapPort Number
    Exclude capwap traffic by port.
    capwapService String
    Exclude capwap traffic by service.
    excludeCapwap String
    Exclude capwap traffic. disable - Disable. by-port - By port. by-service - By service. Valid values: disable, by-port, by-service.
    hcacheLossless String
    Usableness of ready-with-loss hcaches. disable - Use ready-with-loss hcaches. enable - Do not use ready-with-loss hcaches. Valid values: disable, enable.
    ldapCacheTimeout Number
    LDAP cache timeout in minutes, default 60, 0 means not use cache.
    maxRptPdfRows Number
    Maximum number of rows can be generated in a single pdf.
    maxTableRows Number
    Maximum number of rows can be generated in a single table.
    reportPriority String
    Priority of sql report. high - High low - Low auto - Auto Valid values: high, low, auto.
    systemReportSettingId String
    an identifier for the resource.
    templateAutoInstall String
    The language used for new ADOMs (default = default). default - Default. english - English. Valid values: default, english.
    weekStart String
    Day of the week on which the week starts. sun - Sunday. mon - Monday. Valid values: sun, mon.

    Outputs

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

    Get an existing SystemReportSetting 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?: SystemReportSettingState, opts?: CustomResourceOptions): SystemReportSetting
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            aggregate_report: Optional[str] = None,
            capwap_port: Optional[float] = None,
            capwap_service: Optional[str] = None,
            exclude_capwap: Optional[str] = None,
            hcache_lossless: Optional[str] = None,
            ldap_cache_timeout: Optional[float] = None,
            max_rpt_pdf_rows: Optional[float] = None,
            max_table_rows: Optional[float] = None,
            report_priority: Optional[str] = None,
            system_report_setting_id: Optional[str] = None,
            template_auto_install: Optional[str] = None,
            week_start: Optional[str] = None) -> SystemReportSetting
    func GetSystemReportSetting(ctx *Context, name string, id IDInput, state *SystemReportSettingState, opts ...ResourceOption) (*SystemReportSetting, error)
    public static SystemReportSetting Get(string name, Input<string> id, SystemReportSettingState? state, CustomResourceOptions? opts = null)
    public static SystemReportSetting get(String name, Output<String> id, SystemReportSettingState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemReportSetting    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:
    AggregateReport string
    Enable/disable including a group report along with the per-device reports. disable - Exclude a group report along with the per-device reports. enable - Include a group report along with the per-device reports. Valid values: disable, enable.
    CapwapPort double
    Exclude capwap traffic by port.
    CapwapService string
    Exclude capwap traffic by service.
    ExcludeCapwap string
    Exclude capwap traffic. disable - Disable. by-port - By port. by-service - By service. Valid values: disable, by-port, by-service.
    HcacheLossless string
    Usableness of ready-with-loss hcaches. disable - Use ready-with-loss hcaches. enable - Do not use ready-with-loss hcaches. Valid values: disable, enable.
    LdapCacheTimeout double
    LDAP cache timeout in minutes, default 60, 0 means not use cache.
    MaxRptPdfRows double
    Maximum number of rows can be generated in a single pdf.
    MaxTableRows double
    Maximum number of rows can be generated in a single table.
    ReportPriority string
    Priority of sql report. high - High low - Low auto - Auto Valid values: high, low, auto.
    SystemReportSettingId string
    an identifier for the resource.
    TemplateAutoInstall string
    The language used for new ADOMs (default = default). default - Default. english - English. Valid values: default, english.
    WeekStart string
    Day of the week on which the week starts. sun - Sunday. mon - Monday. Valid values: sun, mon.
    AggregateReport string
    Enable/disable including a group report along with the per-device reports. disable - Exclude a group report along with the per-device reports. enable - Include a group report along with the per-device reports. Valid values: disable, enable.
    CapwapPort float64
    Exclude capwap traffic by port.
    CapwapService string
    Exclude capwap traffic by service.
    ExcludeCapwap string
    Exclude capwap traffic. disable - Disable. by-port - By port. by-service - By service. Valid values: disable, by-port, by-service.
    HcacheLossless string
    Usableness of ready-with-loss hcaches. disable - Use ready-with-loss hcaches. enable - Do not use ready-with-loss hcaches. Valid values: disable, enable.
    LdapCacheTimeout float64
    LDAP cache timeout in minutes, default 60, 0 means not use cache.
    MaxRptPdfRows float64
    Maximum number of rows can be generated in a single pdf.
    MaxTableRows float64
    Maximum number of rows can be generated in a single table.
    ReportPriority string
    Priority of sql report. high - High low - Low auto - Auto Valid values: high, low, auto.
    SystemReportSettingId string
    an identifier for the resource.
    TemplateAutoInstall string
    The language used for new ADOMs (default = default). default - Default. english - English. Valid values: default, english.
    WeekStart string
    Day of the week on which the week starts. sun - Sunday. mon - Monday. Valid values: sun, mon.
    aggregateReport String
    Enable/disable including a group report along with the per-device reports. disable - Exclude a group report along with the per-device reports. enable - Include a group report along with the per-device reports. Valid values: disable, enable.
    capwapPort Double
    Exclude capwap traffic by port.
    capwapService String
    Exclude capwap traffic by service.
    excludeCapwap String
    Exclude capwap traffic. disable - Disable. by-port - By port. by-service - By service. Valid values: disable, by-port, by-service.
    hcacheLossless String
    Usableness of ready-with-loss hcaches. disable - Use ready-with-loss hcaches. enable - Do not use ready-with-loss hcaches. Valid values: disable, enable.
    ldapCacheTimeout Double
    LDAP cache timeout in minutes, default 60, 0 means not use cache.
    maxRptPdfRows Double
    Maximum number of rows can be generated in a single pdf.
    maxTableRows Double
    Maximum number of rows can be generated in a single table.
    reportPriority String
    Priority of sql report. high - High low - Low auto - Auto Valid values: high, low, auto.
    systemReportSettingId String
    an identifier for the resource.
    templateAutoInstall String
    The language used for new ADOMs (default = default). default - Default. english - English. Valid values: default, english.
    weekStart String
    Day of the week on which the week starts. sun - Sunday. mon - Monday. Valid values: sun, mon.
    aggregateReport string
    Enable/disable including a group report along with the per-device reports. disable - Exclude a group report along with the per-device reports. enable - Include a group report along with the per-device reports. Valid values: disable, enable.
    capwapPort number
    Exclude capwap traffic by port.
    capwapService string
    Exclude capwap traffic by service.
    excludeCapwap string
    Exclude capwap traffic. disable - Disable. by-port - By port. by-service - By service. Valid values: disable, by-port, by-service.
    hcacheLossless string
    Usableness of ready-with-loss hcaches. disable - Use ready-with-loss hcaches. enable - Do not use ready-with-loss hcaches. Valid values: disable, enable.
    ldapCacheTimeout number
    LDAP cache timeout in minutes, default 60, 0 means not use cache.
    maxRptPdfRows number
    Maximum number of rows can be generated in a single pdf.
    maxTableRows number
    Maximum number of rows can be generated in a single table.
    reportPriority string
    Priority of sql report. high - High low - Low auto - Auto Valid values: high, low, auto.
    systemReportSettingId string
    an identifier for the resource.
    templateAutoInstall string
    The language used for new ADOMs (default = default). default - Default. english - English. Valid values: default, english.
    weekStart string
    Day of the week on which the week starts. sun - Sunday. mon - Monday. Valid values: sun, mon.
    aggregate_report str
    Enable/disable including a group report along with the per-device reports. disable - Exclude a group report along with the per-device reports. enable - Include a group report along with the per-device reports. Valid values: disable, enable.
    capwap_port float
    Exclude capwap traffic by port.
    capwap_service str
    Exclude capwap traffic by service.
    exclude_capwap str
    Exclude capwap traffic. disable - Disable. by-port - By port. by-service - By service. Valid values: disable, by-port, by-service.
    hcache_lossless str
    Usableness of ready-with-loss hcaches. disable - Use ready-with-loss hcaches. enable - Do not use ready-with-loss hcaches. Valid values: disable, enable.
    ldap_cache_timeout float
    LDAP cache timeout in minutes, default 60, 0 means not use cache.
    max_rpt_pdf_rows float
    Maximum number of rows can be generated in a single pdf.
    max_table_rows float
    Maximum number of rows can be generated in a single table.
    report_priority str
    Priority of sql report. high - High low - Low auto - Auto Valid values: high, low, auto.
    system_report_setting_id str
    an identifier for the resource.
    template_auto_install str
    The language used for new ADOMs (default = default). default - Default. english - English. Valid values: default, english.
    week_start str
    Day of the week on which the week starts. sun - Sunday. mon - Monday. Valid values: sun, mon.
    aggregateReport String
    Enable/disable including a group report along with the per-device reports. disable - Exclude a group report along with the per-device reports. enable - Include a group report along with the per-device reports. Valid values: disable, enable.
    capwapPort Number
    Exclude capwap traffic by port.
    capwapService String
    Exclude capwap traffic by service.
    excludeCapwap String
    Exclude capwap traffic. disable - Disable. by-port - By port. by-service - By service. Valid values: disable, by-port, by-service.
    hcacheLossless String
    Usableness of ready-with-loss hcaches. disable - Use ready-with-loss hcaches. enable - Do not use ready-with-loss hcaches. Valid values: disable, enable.
    ldapCacheTimeout Number
    LDAP cache timeout in minutes, default 60, 0 means not use cache.
    maxRptPdfRows Number
    Maximum number of rows can be generated in a single pdf.
    maxTableRows Number
    Maximum number of rows can be generated in a single table.
    reportPriority String
    Priority of sql report. high - High low - Low auto - Auto Valid values: high, low, auto.
    systemReportSettingId String
    an identifier for the resource.
    templateAutoInstall String
    The language used for new ADOMs (default = default). default - Default. english - English. Valid values: default, english.
    weekStart String
    Day of the week on which the week starts. sun - Sunday. mon - Monday. Valid values: sun, mon.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemReportSetting:SystemReportSetting labelname SystemReportSetting
    

    $ 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