fortimanager.SystemAutodeleteReportautodeletion
Explore with Pulumi AI
Automatic deletion policy for reports.
This resource is a sub resource for variable
report_auto_deletion
of resourcefortimanager.SystemAutodelete
. Conflict and overwrite may occur if use both of them.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.SystemAutodeleteReportautodeletion("trname", {
retention: "days",
runat: 2,
status: "enable",
value: 10,
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.SystemAutodeleteReportautodeletion("trname",
retention="days",
runat=2,
status="enable",
value=10)
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.NewSystemAutodeleteReportautodeletion(ctx, "trname", &fortimanager.SystemAutodeleteReportautodeletionArgs{
Retention: pulumi.String("days"),
Runat: pulumi.Float64(2),
Status: pulumi.String("enable"),
Value: pulumi.Float64(10),
})
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.SystemAutodeleteReportautodeletion("trname", new()
{
Retention = "days",
Runat = 2,
Status = "enable",
Value = 10,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystemAutodeleteReportautodeletion;
import com.pulumi.fortimanager.SystemAutodeleteReportautodeletionArgs;
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 SystemAutodeleteReportautodeletion("trname", SystemAutodeleteReportautodeletionArgs.builder()
.retention("days")
.runat("2")
.status("enable")
.value("10")
.build());
}
}
resources:
trname:
type: fortimanager:SystemAutodeleteReportautodeletion
properties:
retention: days
runat: '2'
status: enable
value: '10'
Create SystemAutodeleteReportautodeletion Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemAutodeleteReportautodeletion(name: string, args?: SystemAutodeleteReportautodeletionArgs, opts?: CustomResourceOptions);
@overload
def SystemAutodeleteReportautodeletion(resource_name: str,
args: Optional[SystemAutodeleteReportautodeletionArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SystemAutodeleteReportautodeletion(resource_name: str,
opts: Optional[ResourceOptions] = None,
retention: Optional[str] = None,
runat: Optional[float] = None,
status: Optional[str] = None,
system_autodelete_reportautodeletion_id: Optional[str] = None,
value: Optional[float] = None)
func NewSystemAutodeleteReportautodeletion(ctx *Context, name string, args *SystemAutodeleteReportautodeletionArgs, opts ...ResourceOption) (*SystemAutodeleteReportautodeletion, error)
public SystemAutodeleteReportautodeletion(string name, SystemAutodeleteReportautodeletionArgs? args = null, CustomResourceOptions? opts = null)
public SystemAutodeleteReportautodeletion(String name, SystemAutodeleteReportautodeletionArgs args)
public SystemAutodeleteReportautodeletion(String name, SystemAutodeleteReportautodeletionArgs args, CustomResourceOptions options)
type: fortimanager:SystemAutodeleteReportautodeletion
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 SystemAutodeleteReportautodeletionArgs
- 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 SystemAutodeleteReportautodeletionArgs
- 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 SystemAutodeleteReportautodeletionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemAutodeleteReportautodeletionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemAutodeleteReportautodeletionArgs
- 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 systemAutodeleteReportautodeletionResource = new Fortimanager.SystemAutodeleteReportautodeletion("systemAutodeleteReportautodeletionResource", new()
{
Retention = "string",
Runat = 0,
Status = "string",
SystemAutodeleteReportautodeletionId = "string",
Value = 0,
});
example, err := fortimanager.NewSystemAutodeleteReportautodeletion(ctx, "systemAutodeleteReportautodeletionResource", &fortimanager.SystemAutodeleteReportautodeletionArgs{
Retention: pulumi.String("string"),
Runat: pulumi.Float64(0),
Status: pulumi.String("string"),
SystemAutodeleteReportautodeletionId: pulumi.String("string"),
Value: pulumi.Float64(0),
})
var systemAutodeleteReportautodeletionResource = new SystemAutodeleteReportautodeletion("systemAutodeleteReportautodeletionResource", SystemAutodeleteReportautodeletionArgs.builder()
.retention("string")
.runat(0)
.status("string")
.systemAutodeleteReportautodeletionId("string")
.value(0)
.build());
system_autodelete_reportautodeletion_resource = fortimanager.SystemAutodeleteReportautodeletion("systemAutodeleteReportautodeletionResource",
retention="string",
runat=0,
status="string",
system_autodelete_reportautodeletion_id="string",
value=0)
const systemAutodeleteReportautodeletionResource = new fortimanager.SystemAutodeleteReportautodeletion("systemAutodeleteReportautodeletionResource", {
retention: "string",
runat: 0,
status: "string",
systemAutodeleteReportautodeletionId: "string",
value: 0,
});
type: fortimanager:SystemAutodeleteReportautodeletion
properties:
retention: string
runat: 0
status: string
systemAutodeleteReportautodeletionId: string
value: 0
SystemAutodeleteReportautodeletion 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 SystemAutodeleteReportautodeletion resource accepts the following input properties:
- 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
. - System
Autodelete stringReportautodeletion Id - an identifier for the resource.
- 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
. - System
Autodelete stringReportautodeletion Id - an identifier for the resource.
- 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
. - system
Autodelete StringReportautodeletion Id - an identifier for the resource.
- 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
. - system
Autodelete stringReportautodeletion Id - an identifier for the resource.
- 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
. - system_
autodelete_ strreportautodeletion_ id - an identifier for the resource.
- 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
. - system
Autodelete StringReportautodeletion Id - an identifier for the resource.
- value Number
- Automatic deletion in x days, weeks, or months.
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemAutodeleteReportautodeletion 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 SystemAutodeleteReportautodeletion Resource
Get an existing SystemAutodeleteReportautodeletion 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?: SystemAutodeleteReportautodeletionState, opts?: CustomResourceOptions): SystemAutodeleteReportautodeletion
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
retention: Optional[str] = None,
runat: Optional[float] = None,
status: Optional[str] = None,
system_autodelete_reportautodeletion_id: Optional[str] = None,
value: Optional[float] = None) -> SystemAutodeleteReportautodeletion
func GetSystemAutodeleteReportautodeletion(ctx *Context, name string, id IDInput, state *SystemAutodeleteReportautodeletionState, opts ...ResourceOption) (*SystemAutodeleteReportautodeletion, error)
public static SystemAutodeleteReportautodeletion Get(string name, Input<string> id, SystemAutodeleteReportautodeletionState? state, CustomResourceOptions? opts = null)
public static SystemAutodeleteReportautodeletion get(String name, Output<String> id, SystemAutodeleteReportautodeletionState state, CustomResourceOptions options)
resources: _: type: fortimanager:SystemAutodeleteReportautodeletion 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.
- 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
. - System
Autodelete stringReportautodeletion Id - an identifier for the resource.
- 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
. - System
Autodelete stringReportautodeletion Id - an identifier for the resource.
- 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
. - system
Autodelete StringReportautodeletion Id - an identifier for the resource.
- 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
. - system
Autodelete stringReportautodeletion Id - an identifier for the resource.
- 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
. - system_
autodelete_ strreportautodeletion_ id - an identifier for the resource.
- 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
. - system
Autodelete StringReportautodeletion Id - an identifier for the resource.
- value Number
- Automatic deletion in x days, weeks, or months.
Import
System AutoDeleteReportAutoDeletion can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/systemAutodeleteReportautodeletion:SystemAutodeleteReportautodeletion labelname SystemAutoDeleteReportAutoDeletion
$ 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.