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

fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert

Explore with Pulumi AI

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

    SMS alert list.

    This resource is a sub resource for variable alert of resource fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotification. 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 trnameObjectExtendercontrollerExtenderprofile = new fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile", {});
    const trnameObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert = new fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert("trnameObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert", {
        osImageFallback: "os_image_fallback",
        sessionDisconnect: "session_disconnect",
        systemReboot: "reboot",
        extenderProfile: trnameObjectExtendercontrollerExtenderprofile.name,
    }, {
        dependsOn: [trnameObjectExtendercontrollerExtenderprofile],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_extendercontroller_extenderprofile = fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile")
    trname_object_extendercontroller_extenderprofile_cellular_smsnotification_alert = fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert("trnameObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert",
        os_image_fallback="os_image_fallback",
        session_disconnect="session_disconnect",
        system_reboot="reboot",
        extender_profile=trname_object_extendercontroller_extenderprofile.name,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_extendercontroller_extenderprofile]))
    
    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 {
    		trnameObjectExtendercontrollerExtenderprofile, err := fortimanager.NewObjectExtendercontrollerExtenderprofile(ctx, "trnameObjectExtendercontrollerExtenderprofile", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert(ctx, "trnameObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert", &fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs{
    			OsImageFallback:   pulumi.String("os_image_fallback"),
    			SessionDisconnect: pulumi.String("session_disconnect"),
    			SystemReboot:      pulumi.String("reboot"),
    			ExtenderProfile:   trnameObjectExtendercontrollerExtenderprofile.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectExtendercontrollerExtenderprofile,
    		}))
    		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 trnameObjectExtendercontrollerExtenderprofile = new Fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile");
    
        var trnameObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert = new Fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert("trnameObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert", new()
        {
            OsImageFallback = "os_image_fallback",
            SessionDisconnect = "session_disconnect",
            SystemReboot = "reboot",
            ExtenderProfile = trnameObjectExtendercontrollerExtenderprofile.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectExtendercontrollerExtenderprofile,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofile;
    import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert;
    import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameObjectExtendercontrollerExtenderprofile = new ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile");
    
            var trnameObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert = new ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert("trnameObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert", ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs.builder()
                .osImageFallback("os_image_fallback")
                .sessionDisconnect("session_disconnect")
                .systemReboot("reboot")
                .extenderProfile(trnameObjectExtendercontrollerExtenderprofile.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectExtendercontrollerExtenderprofile)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert:
        type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert
        properties:
          osImageFallback: os_image_fallback
          sessionDisconnect: session_disconnect
          systemReboot: reboot
          extenderProfile: ${trnameObjectExtendercontrollerExtenderprofile.name}
        options:
          dependsOn:
            - ${trnameObjectExtendercontrollerExtenderprofile}
      trnameObjectExtendercontrollerExtenderprofile:
        type: fortimanager:ObjectExtendercontrollerExtenderprofile
    

    Create ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert Resource

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

    Constructor syntax

    new ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert(name: string, args: ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert(resource_name: str,
                                                                            args: ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertInitArgs,
                                                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert(resource_name: str,
                                                                            opts: Optional[ResourceOptions] = None,
                                                                            extender_profile: Optional[str] = None,
                                                                            adom: Optional[str] = None,
                                                                            data_exhausted: Optional[str] = None,
                                                                            fgt_backup_mode_switch: Optional[str] = None,
                                                                            low_signal_strength: Optional[str] = None,
                                                                            mode_switch: Optional[str] = None,
                                                                            object_extendercontroller_extenderprofile_cellular_smsnotification_alert_id: Optional[str] = None,
                                                                            os_image_fallback: Optional[str] = None,
                                                                            scopetype: Optional[str] = None,
                                                                            session_disconnect: Optional[str] = None,
                                                                            system_reboot: Optional[str] = None)
    func NewObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert(ctx *Context, name string, args ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert, error)
    public ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert(string name, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs args, CustomResourceOptions? opts = null)
    public ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert(String name, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs args)
    public ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert(String name, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert
    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 ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs
    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 ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertInitArgs
    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 ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs
    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 objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertResource = new Fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert("objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertResource", new()
    {
        ExtenderProfile = "string",
        Adom = "string",
        DataExhausted = "string",
        FgtBackupModeSwitch = "string",
        LowSignalStrength = "string",
        ModeSwitch = "string",
        ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId = "string",
        OsImageFallback = "string",
        Scopetype = "string",
        SessionDisconnect = "string",
        SystemReboot = "string",
    });
    
    example, err := fortimanager.NewObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert(ctx, "objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertResource", &fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs{
    ExtenderProfile: pulumi.String("string"),
    Adom: pulumi.String("string"),
    DataExhausted: pulumi.String("string"),
    FgtBackupModeSwitch: pulumi.String("string"),
    LowSignalStrength: pulumi.String("string"),
    ModeSwitch: pulumi.String("string"),
    ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId: pulumi.String("string"),
    OsImageFallback: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    SessionDisconnect: pulumi.String("string"),
    SystemReboot: pulumi.String("string"),
    })
    
    var objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertResource = new ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert("objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertResource", ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs.builder()
        .extenderProfile("string")
        .adom("string")
        .dataExhausted("string")
        .fgtBackupModeSwitch("string")
        .lowSignalStrength("string")
        .modeSwitch("string")
        .objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId("string")
        .osImageFallback("string")
        .scopetype("string")
        .sessionDisconnect("string")
        .systemReboot("string")
        .build());
    
    object_extendercontroller_extenderprofile_cellular_smsnotification_alert_resource = fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert("objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertResource",
        extender_profile="string",
        adom="string",
        data_exhausted="string",
        fgt_backup_mode_switch="string",
        low_signal_strength="string",
        mode_switch="string",
        object_extendercontroller_extenderprofile_cellular_smsnotification_alert_id="string",
        os_image_fallback="string",
        scopetype="string",
        session_disconnect="string",
        system_reboot="string")
    
    const objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertResource = new fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert("objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertResource", {
        extenderProfile: "string",
        adom: "string",
        dataExhausted: "string",
        fgtBackupModeSwitch: "string",
        lowSignalStrength: "string",
        modeSwitch: "string",
        objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId: "string",
        osImageFallback: "string",
        scopetype: "string",
        sessionDisconnect: "string",
        systemReboot: "string",
    });
    
    type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert
    properties:
        adom: string
        dataExhausted: string
        extenderProfile: string
        fgtBackupModeSwitch: string
        lowSignalStrength: string
        modeSwitch: string
        objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId: string
        osImageFallback: string
        scopetype: string
        sessionDisconnect: string
        systemReboot: string
    

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

    ExtenderProfile string
    Extender Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DataExhausted string
    Display string when data exhausted.
    FgtBackupModeSwitch string
    Display string when FortiGate backup mode switched.
    LowSignalStrength string
    Display string when signal strength is low.
    ModeSwitch string
    Display string when mode is switched.
    ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId string
    an identifier for the resource.
    OsImageFallback string
    Display string when falling back to a previous OS image.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SessionDisconnect string
    Display string when session disconnected.
    SystemReboot string
    Display string when system rebooted.
    ExtenderProfile string
    Extender Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DataExhausted string
    Display string when data exhausted.
    FgtBackupModeSwitch string
    Display string when FortiGate backup mode switched.
    LowSignalStrength string
    Display string when signal strength is low.
    ModeSwitch string
    Display string when mode is switched.
    ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId string
    an identifier for the resource.
    OsImageFallback string
    Display string when falling back to a previous OS image.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SessionDisconnect string
    Display string when session disconnected.
    SystemReboot string
    Display string when system rebooted.
    extenderProfile String
    Extender Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataExhausted String
    Display string when data exhausted.
    fgtBackupModeSwitch String
    Display string when FortiGate backup mode switched.
    lowSignalStrength String
    Display string when signal strength is low.
    modeSwitch String
    Display string when mode is switched.
    objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId String
    an identifier for the resource.
    osImageFallback String
    Display string when falling back to a previous OS image.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sessionDisconnect String
    Display string when session disconnected.
    systemReboot String
    Display string when system rebooted.
    extenderProfile string
    Extender Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataExhausted string
    Display string when data exhausted.
    fgtBackupModeSwitch string
    Display string when FortiGate backup mode switched.
    lowSignalStrength string
    Display string when signal strength is low.
    modeSwitch string
    Display string when mode is switched.
    objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId string
    an identifier for the resource.
    osImageFallback string
    Display string when falling back to a previous OS image.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sessionDisconnect string
    Display string when session disconnected.
    systemReboot string
    Display string when system rebooted.
    extender_profile str
    Extender Profile.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    data_exhausted str
    Display string when data exhausted.
    fgt_backup_mode_switch str
    Display string when FortiGate backup mode switched.
    low_signal_strength str
    Display string when signal strength is low.
    mode_switch str
    Display string when mode is switched.
    object_extendercontroller_extenderprofile_cellular_smsnotification_alert_id str
    an identifier for the resource.
    os_image_fallback str
    Display string when falling back to a previous OS image.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    session_disconnect str
    Display string when session disconnected.
    system_reboot str
    Display string when system rebooted.
    extenderProfile String
    Extender Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataExhausted String
    Display string when data exhausted.
    fgtBackupModeSwitch String
    Display string when FortiGate backup mode switched.
    lowSignalStrength String
    Display string when signal strength is low.
    modeSwitch String
    Display string when mode is switched.
    objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId String
    an identifier for the resource.
    osImageFallback String
    Display string when falling back to a previous OS image.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sessionDisconnect String
    Display string when session disconnected.
    systemReboot String
    Display string when system rebooted.

    Outputs

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

    Get an existing ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert 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?: ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertState, opts?: CustomResourceOptions): ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            data_exhausted: Optional[str] = None,
            extender_profile: Optional[str] = None,
            fgt_backup_mode_switch: Optional[str] = None,
            low_signal_strength: Optional[str] = None,
            mode_switch: Optional[str] = None,
            object_extendercontroller_extenderprofile_cellular_smsnotification_alert_id: Optional[str] = None,
            os_image_fallback: Optional[str] = None,
            scopetype: Optional[str] = None,
            session_disconnect: Optional[str] = None,
            system_reboot: Optional[str] = None) -> ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert
    func GetObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert(ctx *Context, name string, id IDInput, state *ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertState, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert, error)
    public static ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert Get(string name, Input<string> id, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertState? state, CustomResourceOptions? opts = null)
    public static ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert get(String name, Output<String> id, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DataExhausted string
    Display string when data exhausted.
    ExtenderProfile string
    Extender Profile.
    FgtBackupModeSwitch string
    Display string when FortiGate backup mode switched.
    LowSignalStrength string
    Display string when signal strength is low.
    ModeSwitch string
    Display string when mode is switched.
    ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId string
    an identifier for the resource.
    OsImageFallback string
    Display string when falling back to a previous OS image.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SessionDisconnect string
    Display string when session disconnected.
    SystemReboot string
    Display string when system rebooted.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DataExhausted string
    Display string when data exhausted.
    ExtenderProfile string
    Extender Profile.
    FgtBackupModeSwitch string
    Display string when FortiGate backup mode switched.
    LowSignalStrength string
    Display string when signal strength is low.
    ModeSwitch string
    Display string when mode is switched.
    ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId string
    an identifier for the resource.
    OsImageFallback string
    Display string when falling back to a previous OS image.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SessionDisconnect string
    Display string when session disconnected.
    SystemReboot string
    Display string when system rebooted.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataExhausted String
    Display string when data exhausted.
    extenderProfile String
    Extender Profile.
    fgtBackupModeSwitch String
    Display string when FortiGate backup mode switched.
    lowSignalStrength String
    Display string when signal strength is low.
    modeSwitch String
    Display string when mode is switched.
    objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId String
    an identifier for the resource.
    osImageFallback String
    Display string when falling back to a previous OS image.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sessionDisconnect String
    Display string when session disconnected.
    systemReboot String
    Display string when system rebooted.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataExhausted string
    Display string when data exhausted.
    extenderProfile string
    Extender Profile.
    fgtBackupModeSwitch string
    Display string when FortiGate backup mode switched.
    lowSignalStrength string
    Display string when signal strength is low.
    modeSwitch string
    Display string when mode is switched.
    objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId string
    an identifier for the resource.
    osImageFallback string
    Display string when falling back to a previous OS image.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sessionDisconnect string
    Display string when session disconnected.
    systemReboot string
    Display string when system rebooted.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    data_exhausted str
    Display string when data exhausted.
    extender_profile str
    Extender Profile.
    fgt_backup_mode_switch str
    Display string when FortiGate backup mode switched.
    low_signal_strength str
    Display string when signal strength is low.
    mode_switch str
    Display string when mode is switched.
    object_extendercontroller_extenderprofile_cellular_smsnotification_alert_id str
    an identifier for the resource.
    os_image_fallback str
    Display string when falling back to a previous OS image.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    session_disconnect str
    Display string when session disconnected.
    system_reboot str
    Display string when system rebooted.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataExhausted String
    Display string when data exhausted.
    extenderProfile String
    Extender Profile.
    fgtBackupModeSwitch String
    Display string when FortiGate backup mode switched.
    lowSignalStrength String
    Display string when signal strength is low.
    modeSwitch String
    Display string when mode is switched.
    objectExtendercontrollerExtenderprofileCellularSmsnotificationAlertId String
    an identifier for the resource.
    osImageFallback String
    Display string when falling back to a previous OS image.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sessionDisconnect String
    Display string when session disconnected.
    systemReboot String
    Display string when system rebooted.

    Import

    ObjectExtenderController ExtenderProfileCellularSmsNotificationAlert can be imported using any of these accepted formats:

    Set import_options = [“extender_profile=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectExtendercontrollerExtenderprofileCellularSmsnotificationAlert:ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert labelname ObjectExtenderControllerExtenderProfileCellularSmsNotificationAlert
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    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