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

fortimanager.SystemAlertconsole

Explore with Pulumi AI

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

    Alert console.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemAlertconsole("trname", {
        period: "2",
        severityLevels: ["debug"],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemAlertconsole("trname",
        period="2",
        severity_levels=["debug"])
    
    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.NewSystemAlertconsole(ctx, "trname", &fortimanager.SystemAlertconsoleArgs{
    			Period: pulumi.String("2"),
    			SeverityLevels: pulumi.StringArray{
    				pulumi.String("debug"),
    			},
    		})
    		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.SystemAlertconsole("trname", new()
        {
            Period = "2",
            SeverityLevels = new[]
            {
                "debug",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemAlertconsole;
    import com.pulumi.fortimanager.SystemAlertconsoleArgs;
    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 SystemAlertconsole("trname", SystemAlertconsoleArgs.builder()
                .period("2")
                .severityLevels("debug")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemAlertconsole
        properties:
          period: '2'
          severityLevels:
            - debug
    

    Create SystemAlertconsole Resource

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

    Constructor syntax

    new SystemAlertconsole(name: string, args?: SystemAlertconsoleArgs, opts?: CustomResourceOptions);
    @overload
    def SystemAlertconsole(resource_name: str,
                           args: Optional[SystemAlertconsoleArgs] = None,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemAlertconsole(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           period: Optional[str] = None,
                           severity_levels: Optional[Sequence[str]] = None,
                           system_alertconsole_id: Optional[str] = None)
    func NewSystemAlertconsole(ctx *Context, name string, args *SystemAlertconsoleArgs, opts ...ResourceOption) (*SystemAlertconsole, error)
    public SystemAlertconsole(string name, SystemAlertconsoleArgs? args = null, CustomResourceOptions? opts = null)
    public SystemAlertconsole(String name, SystemAlertconsoleArgs args)
    public SystemAlertconsole(String name, SystemAlertconsoleArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemAlertconsole
    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 SystemAlertconsoleArgs
    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 SystemAlertconsoleArgs
    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 SystemAlertconsoleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemAlertconsoleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemAlertconsoleArgs
    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 systemAlertconsoleResource = new Fortimanager.SystemAlertconsole("systemAlertconsoleResource", new()
    {
        Period = "string",
        SeverityLevels = new[]
        {
            "string",
        },
        SystemAlertconsoleId = "string",
    });
    
    example, err := fortimanager.NewSystemAlertconsole(ctx, "systemAlertconsoleResource", &fortimanager.SystemAlertconsoleArgs{
    Period: pulumi.String("string"),
    SeverityLevels: pulumi.StringArray{
    pulumi.String("string"),
    },
    SystemAlertconsoleId: pulumi.String("string"),
    })
    
    var systemAlertconsoleResource = new SystemAlertconsole("systemAlertconsoleResource", SystemAlertconsoleArgs.builder()
        .period("string")
        .severityLevels("string")
        .systemAlertconsoleId("string")
        .build());
    
    system_alertconsole_resource = fortimanager.SystemAlertconsole("systemAlertconsoleResource",
        period="string",
        severity_levels=["string"],
        system_alertconsole_id="string")
    
    const systemAlertconsoleResource = new fortimanager.SystemAlertconsole("systemAlertconsoleResource", {
        period: "string",
        severityLevels: ["string"],
        systemAlertconsoleId: "string",
    });
    
    type: fortimanager:SystemAlertconsole
    properties:
        period: string
        severityLevels:
            - string
        systemAlertconsoleId: string
    

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

    Period string
    Alert console keeps alerts for this period. 1 - 1 day. 2 - 2 days. 3 - 3 days. 4 - 4 days. 5 - 5 days. 6 - 6 days. 7 - 7 days. Valid values: 1, 2, 3, 4, 5, 6, 7.
    SeverityLevels List<string>
    Alert console keeps alerts of this and higher severity. debug - Debug level. information - Information level. notify - Notify level. warning - Warning level. error - Error level. critical - Critical level. alert - Alert level. emergency - Emergency level. Valid values: debug, information, notify, warning, error, critical, alert, emergency.
    SystemAlertconsoleId string
    an identifier for the resource.
    Period string
    Alert console keeps alerts for this period. 1 - 1 day. 2 - 2 days. 3 - 3 days. 4 - 4 days. 5 - 5 days. 6 - 6 days. 7 - 7 days. Valid values: 1, 2, 3, 4, 5, 6, 7.
    SeverityLevels []string
    Alert console keeps alerts of this and higher severity. debug - Debug level. information - Information level. notify - Notify level. warning - Warning level. error - Error level. critical - Critical level. alert - Alert level. emergency - Emergency level. Valid values: debug, information, notify, warning, error, critical, alert, emergency.
    SystemAlertconsoleId string
    an identifier for the resource.
    period String
    Alert console keeps alerts for this period. 1 - 1 day. 2 - 2 days. 3 - 3 days. 4 - 4 days. 5 - 5 days. 6 - 6 days. 7 - 7 days. Valid values: 1, 2, 3, 4, 5, 6, 7.
    severityLevels List<String>
    Alert console keeps alerts of this and higher severity. debug - Debug level. information - Information level. notify - Notify level. warning - Warning level. error - Error level. critical - Critical level. alert - Alert level. emergency - Emergency level. Valid values: debug, information, notify, warning, error, critical, alert, emergency.
    systemAlertconsoleId String
    an identifier for the resource.
    period string
    Alert console keeps alerts for this period. 1 - 1 day. 2 - 2 days. 3 - 3 days. 4 - 4 days. 5 - 5 days. 6 - 6 days. 7 - 7 days. Valid values: 1, 2, 3, 4, 5, 6, 7.
    severityLevels string[]
    Alert console keeps alerts of this and higher severity. debug - Debug level. information - Information level. notify - Notify level. warning - Warning level. error - Error level. critical - Critical level. alert - Alert level. emergency - Emergency level. Valid values: debug, information, notify, warning, error, critical, alert, emergency.
    systemAlertconsoleId string
    an identifier for the resource.
    period str
    Alert console keeps alerts for this period. 1 - 1 day. 2 - 2 days. 3 - 3 days. 4 - 4 days. 5 - 5 days. 6 - 6 days. 7 - 7 days. Valid values: 1, 2, 3, 4, 5, 6, 7.
    severity_levels Sequence[str]
    Alert console keeps alerts of this and higher severity. debug - Debug level. information - Information level. notify - Notify level. warning - Warning level. error - Error level. critical - Critical level. alert - Alert level. emergency - Emergency level. Valid values: debug, information, notify, warning, error, critical, alert, emergency.
    system_alertconsole_id str
    an identifier for the resource.
    period String
    Alert console keeps alerts for this period. 1 - 1 day. 2 - 2 days. 3 - 3 days. 4 - 4 days. 5 - 5 days. 6 - 6 days. 7 - 7 days. Valid values: 1, 2, 3, 4, 5, 6, 7.
    severityLevels List<String>
    Alert console keeps alerts of this and higher severity. debug - Debug level. information - Information level. notify - Notify level. warning - Warning level. error - Error level. critical - Critical level. alert - Alert level. emergency - Emergency level. Valid values: debug, information, notify, warning, error, critical, alert, emergency.
    systemAlertconsoleId String
    an identifier for the resource.

    Outputs

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

    Get an existing SystemAlertconsole 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?: SystemAlertconsoleState, opts?: CustomResourceOptions): SystemAlertconsole
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            period: Optional[str] = None,
            severity_levels: Optional[Sequence[str]] = None,
            system_alertconsole_id: Optional[str] = None) -> SystemAlertconsole
    func GetSystemAlertconsole(ctx *Context, name string, id IDInput, state *SystemAlertconsoleState, opts ...ResourceOption) (*SystemAlertconsole, error)
    public static SystemAlertconsole Get(string name, Input<string> id, SystemAlertconsoleState? state, CustomResourceOptions? opts = null)
    public static SystemAlertconsole get(String name, Output<String> id, SystemAlertconsoleState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemAlertconsole    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:
    Period string
    Alert console keeps alerts for this period. 1 - 1 day. 2 - 2 days. 3 - 3 days. 4 - 4 days. 5 - 5 days. 6 - 6 days. 7 - 7 days. Valid values: 1, 2, 3, 4, 5, 6, 7.
    SeverityLevels List<string>
    Alert console keeps alerts of this and higher severity. debug - Debug level. information - Information level. notify - Notify level. warning - Warning level. error - Error level. critical - Critical level. alert - Alert level. emergency - Emergency level. Valid values: debug, information, notify, warning, error, critical, alert, emergency.
    SystemAlertconsoleId string
    an identifier for the resource.
    Period string
    Alert console keeps alerts for this period. 1 - 1 day. 2 - 2 days. 3 - 3 days. 4 - 4 days. 5 - 5 days. 6 - 6 days. 7 - 7 days. Valid values: 1, 2, 3, 4, 5, 6, 7.
    SeverityLevels []string
    Alert console keeps alerts of this and higher severity. debug - Debug level. information - Information level. notify - Notify level. warning - Warning level. error - Error level. critical - Critical level. alert - Alert level. emergency - Emergency level. Valid values: debug, information, notify, warning, error, critical, alert, emergency.
    SystemAlertconsoleId string
    an identifier for the resource.
    period String
    Alert console keeps alerts for this period. 1 - 1 day. 2 - 2 days. 3 - 3 days. 4 - 4 days. 5 - 5 days. 6 - 6 days. 7 - 7 days. Valid values: 1, 2, 3, 4, 5, 6, 7.
    severityLevels List<String>
    Alert console keeps alerts of this and higher severity. debug - Debug level. information - Information level. notify - Notify level. warning - Warning level. error - Error level. critical - Critical level. alert - Alert level. emergency - Emergency level. Valid values: debug, information, notify, warning, error, critical, alert, emergency.
    systemAlertconsoleId String
    an identifier for the resource.
    period string
    Alert console keeps alerts for this period. 1 - 1 day. 2 - 2 days. 3 - 3 days. 4 - 4 days. 5 - 5 days. 6 - 6 days. 7 - 7 days. Valid values: 1, 2, 3, 4, 5, 6, 7.
    severityLevels string[]
    Alert console keeps alerts of this and higher severity. debug - Debug level. information - Information level. notify - Notify level. warning - Warning level. error - Error level. critical - Critical level. alert - Alert level. emergency - Emergency level. Valid values: debug, information, notify, warning, error, critical, alert, emergency.
    systemAlertconsoleId string
    an identifier for the resource.
    period str
    Alert console keeps alerts for this period. 1 - 1 day. 2 - 2 days. 3 - 3 days. 4 - 4 days. 5 - 5 days. 6 - 6 days. 7 - 7 days. Valid values: 1, 2, 3, 4, 5, 6, 7.
    severity_levels Sequence[str]
    Alert console keeps alerts of this and higher severity. debug - Debug level. information - Information level. notify - Notify level. warning - Warning level. error - Error level. critical - Critical level. alert - Alert level. emergency - Emergency level. Valid values: debug, information, notify, warning, error, critical, alert, emergency.
    system_alertconsole_id str
    an identifier for the resource.
    period String
    Alert console keeps alerts for this period. 1 - 1 day. 2 - 2 days. 3 - 3 days. 4 - 4 days. 5 - 5 days. 6 - 6 days. 7 - 7 days. Valid values: 1, 2, 3, 4, 5, 6, 7.
    severityLevels List<String>
    Alert console keeps alerts of this and higher severity. debug - Debug level. information - Information level. notify - Notify level. warning - Warning level. error - Error level. critical - Critical level. alert - Alert level. emergency - Emergency level. Valid values: debug, information, notify, warning, error, critical, alert, emergency.
    systemAlertconsoleId String
    an identifier for the resource.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemAlertconsole:SystemAlertconsole labelname SystemAlertConsole
    

    $ 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