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

fortimanager.SystemAlertemail

Explore with Pulumi AI

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

    Configure alertemail.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemAlertemail("trname", {
        fromaddress: "tefv@tefv.com",
        fromname: "terr-sys-alertemail",
        smtpport: 2000,
        smtpserver: "192.168.1.2",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemAlertemail("trname",
        fromaddress="tefv@tefv.com",
        fromname="terr-sys-alertemail",
        smtpport=2000,
        smtpserver="192.168.1.2")
    
    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.NewSystemAlertemail(ctx, "trname", &fortimanager.SystemAlertemailArgs{
    			Fromaddress: pulumi.String("tefv@tefv.com"),
    			Fromname:    pulumi.String("terr-sys-alertemail"),
    			Smtpport:    pulumi.Float64(2000),
    			Smtpserver:  pulumi.String("192.168.1.2"),
    		})
    		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.SystemAlertemail("trname", new()
        {
            Fromaddress = "tefv@tefv.com",
            Fromname = "terr-sys-alertemail",
            Smtpport = 2000,
            Smtpserver = "192.168.1.2",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemAlertemail;
    import com.pulumi.fortimanager.SystemAlertemailArgs;
    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 SystemAlertemail("trname", SystemAlertemailArgs.builder()
                .fromaddress("tefv@tefv.com")
                .fromname("terr-sys-alertemail")
                .smtpport("2000")
                .smtpserver("192.168.1.2")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemAlertemail
        properties:
          fromaddress: tefv@tefv.com
          fromname: terr-sys-alertemail
          smtpport: '2000'
          smtpserver: 192.168.1.2
    

    Create SystemAlertemail Resource

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

    Constructor syntax

    new SystemAlertemail(name: string, args?: SystemAlertemailArgs, opts?: CustomResourceOptions);
    @overload
    def SystemAlertemail(resource_name: str,
                         args: Optional[SystemAlertemailArgs] = None,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemAlertemail(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         authentication: Optional[str] = None,
                         fromaddress: Optional[str] = None,
                         fromname: Optional[str] = None,
                         smtppasswords: Optional[Sequence[str]] = None,
                         smtpport: Optional[float] = None,
                         smtpserver: Optional[str] = None,
                         smtpuser: Optional[str] = None,
                         system_alertemail_id: Optional[str] = None)
    func NewSystemAlertemail(ctx *Context, name string, args *SystemAlertemailArgs, opts ...ResourceOption) (*SystemAlertemail, error)
    public SystemAlertemail(string name, SystemAlertemailArgs? args = null, CustomResourceOptions? opts = null)
    public SystemAlertemail(String name, SystemAlertemailArgs args)
    public SystemAlertemail(String name, SystemAlertemailArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemAlertemail
    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 SystemAlertemailArgs
    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 SystemAlertemailArgs
    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 SystemAlertemailArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemAlertemailArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemAlertemailArgs
    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 systemAlertemailResource = new Fortimanager.SystemAlertemail("systemAlertemailResource", new()
    {
        Authentication = "string",
        Fromaddress = "string",
        Fromname = "string",
        Smtppasswords = new[]
        {
            "string",
        },
        Smtpport = 0,
        Smtpserver = "string",
        Smtpuser = "string",
        SystemAlertemailId = "string",
    });
    
    example, err := fortimanager.NewSystemAlertemail(ctx, "systemAlertemailResource", &fortimanager.SystemAlertemailArgs{
    Authentication: pulumi.String("string"),
    Fromaddress: pulumi.String("string"),
    Fromname: pulumi.String("string"),
    Smtppasswords: pulumi.StringArray{
    pulumi.String("string"),
    },
    Smtpport: pulumi.Float64(0),
    Smtpserver: pulumi.String("string"),
    Smtpuser: pulumi.String("string"),
    SystemAlertemailId: pulumi.String("string"),
    })
    
    var systemAlertemailResource = new SystemAlertemail("systemAlertemailResource", SystemAlertemailArgs.builder()
        .authentication("string")
        .fromaddress("string")
        .fromname("string")
        .smtppasswords("string")
        .smtpport(0)
        .smtpserver("string")
        .smtpuser("string")
        .systemAlertemailId("string")
        .build());
    
    system_alertemail_resource = fortimanager.SystemAlertemail("systemAlertemailResource",
        authentication="string",
        fromaddress="string",
        fromname="string",
        smtppasswords=["string"],
        smtpport=0,
        smtpserver="string",
        smtpuser="string",
        system_alertemail_id="string")
    
    const systemAlertemailResource = new fortimanager.SystemAlertemail("systemAlertemailResource", {
        authentication: "string",
        fromaddress: "string",
        fromname: "string",
        smtppasswords: ["string"],
        smtpport: 0,
        smtpserver: "string",
        smtpuser: "string",
        systemAlertemailId: "string",
    });
    
    type: fortimanager:SystemAlertemail
    properties:
        authentication: string
        fromaddress: string
        fromname: string
        smtppasswords:
            - string
        smtpport: 0
        smtpserver: string
        smtpuser: string
        systemAlertemailId: string
    

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

    Authentication string
    Enable/disable authentication. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Fromaddress string
    SMTP from address.
    Fromname string
    SMTP from user.
    Smtppasswords List<string>
    SMTP server password.
    Smtpport double
    SMTP server port.
    Smtpserver string
    SMTP server address.
    Smtpuser string
    SMTP server user.
    SystemAlertemailId string
    an identifier for the resource.
    Authentication string
    Enable/disable authentication. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Fromaddress string
    SMTP from address.
    Fromname string
    SMTP from user.
    Smtppasswords []string
    SMTP server password.
    Smtpport float64
    SMTP server port.
    Smtpserver string
    SMTP server address.
    Smtpuser string
    SMTP server user.
    SystemAlertemailId string
    an identifier for the resource.
    authentication String
    Enable/disable authentication. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fromaddress String
    SMTP from address.
    fromname String
    SMTP from user.
    smtppasswords List<String>
    SMTP server password.
    smtpport Double
    SMTP server port.
    smtpserver String
    SMTP server address.
    smtpuser String
    SMTP server user.
    systemAlertemailId String
    an identifier for the resource.
    authentication string
    Enable/disable authentication. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fromaddress string
    SMTP from address.
    fromname string
    SMTP from user.
    smtppasswords string[]
    SMTP server password.
    smtpport number
    SMTP server port.
    smtpserver string
    SMTP server address.
    smtpuser string
    SMTP server user.
    systemAlertemailId string
    an identifier for the resource.
    authentication str
    Enable/disable authentication. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fromaddress str
    SMTP from address.
    fromname str
    SMTP from user.
    smtppasswords Sequence[str]
    SMTP server password.
    smtpport float
    SMTP server port.
    smtpserver str
    SMTP server address.
    smtpuser str
    SMTP server user.
    system_alertemail_id str
    an identifier for the resource.
    authentication String
    Enable/disable authentication. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fromaddress String
    SMTP from address.
    fromname String
    SMTP from user.
    smtppasswords List<String>
    SMTP server password.
    smtpport Number
    SMTP server port.
    smtpserver String
    SMTP server address.
    smtpuser String
    SMTP server user.
    systemAlertemailId String
    an identifier for the resource.

    Outputs

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

    Get an existing SystemAlertemail 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?: SystemAlertemailState, opts?: CustomResourceOptions): SystemAlertemail
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            authentication: Optional[str] = None,
            fromaddress: Optional[str] = None,
            fromname: Optional[str] = None,
            smtppasswords: Optional[Sequence[str]] = None,
            smtpport: Optional[float] = None,
            smtpserver: Optional[str] = None,
            smtpuser: Optional[str] = None,
            system_alertemail_id: Optional[str] = None) -> SystemAlertemail
    func GetSystemAlertemail(ctx *Context, name string, id IDInput, state *SystemAlertemailState, opts ...ResourceOption) (*SystemAlertemail, error)
    public static SystemAlertemail Get(string name, Input<string> id, SystemAlertemailState? state, CustomResourceOptions? opts = null)
    public static SystemAlertemail get(String name, Output<String> id, SystemAlertemailState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemAlertemail    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:
    Authentication string
    Enable/disable authentication. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Fromaddress string
    SMTP from address.
    Fromname string
    SMTP from user.
    Smtppasswords List<string>
    SMTP server password.
    Smtpport double
    SMTP server port.
    Smtpserver string
    SMTP server address.
    Smtpuser string
    SMTP server user.
    SystemAlertemailId string
    an identifier for the resource.
    Authentication string
    Enable/disable authentication. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Fromaddress string
    SMTP from address.
    Fromname string
    SMTP from user.
    Smtppasswords []string
    SMTP server password.
    Smtpport float64
    SMTP server port.
    Smtpserver string
    SMTP server address.
    Smtpuser string
    SMTP server user.
    SystemAlertemailId string
    an identifier for the resource.
    authentication String
    Enable/disable authentication. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fromaddress String
    SMTP from address.
    fromname String
    SMTP from user.
    smtppasswords List<String>
    SMTP server password.
    smtpport Double
    SMTP server port.
    smtpserver String
    SMTP server address.
    smtpuser String
    SMTP server user.
    systemAlertemailId String
    an identifier for the resource.
    authentication string
    Enable/disable authentication. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fromaddress string
    SMTP from address.
    fromname string
    SMTP from user.
    smtppasswords string[]
    SMTP server password.
    smtpport number
    SMTP server port.
    smtpserver string
    SMTP server address.
    smtpuser string
    SMTP server user.
    systemAlertemailId string
    an identifier for the resource.
    authentication str
    Enable/disable authentication. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fromaddress str
    SMTP from address.
    fromname str
    SMTP from user.
    smtppasswords Sequence[str]
    SMTP server password.
    smtpport float
    SMTP server port.
    smtpserver str
    SMTP server address.
    smtpuser str
    SMTP server user.
    system_alertemail_id str
    an identifier for the resource.
    authentication String
    Enable/disable authentication. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fromaddress String
    SMTP from address.
    fromname String
    SMTP from user.
    smtppasswords List<String>
    SMTP server password.
    smtpport Number
    SMTP server port.
    smtpserver String
    SMTP server address.
    smtpuser String
    SMTP server user.
    systemAlertemailId String
    an identifier for the resource.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemAlertemail:SystemAlertemail labelname SystemAlertemail
    

    $ 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