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

fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotification

Explore with Pulumi AI

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

    FortiExtender cellular SMS notification configuration.

    This resource is a sub resource for variable sms_notification of resource fortimanager.ObjectExtendercontrollerExtenderprofileCellular. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • alert: fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert
    • receiver: fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiver

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectExtendercontrollerExtenderprofile = new fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile", {});
    const trnameObjectExtendercontrollerExtenderprofileCellularSmsnotification = new fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotification("trnameObjectExtendercontrollerExtenderprofileCellularSmsnotification", {
        status: "disable",
        receivers: [{
            alerts: ["data-exhausted"],
            name: "receiver-name",
            phoneNumber: "+16501234567",
        }],
        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 = fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotification("trnameObjectExtendercontrollerExtenderprofileCellularSmsnotification",
        status="disable",
        receivers=[{
            "alerts": ["data-exhausted"],
            "name": "receiver-name",
            "phone_number": "+16501234567",
        }],
        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.NewObjectExtendercontrollerExtenderprofileCellularSmsnotification(ctx, "trnameObjectExtendercontrollerExtenderprofileCellularSmsnotification", &fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs{
    			Status: pulumi.String("disable"),
    			Receivers: fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverTypeArray{
    				&fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverTypeArgs{
    					Alerts: pulumi.StringArray{
    						pulumi.String("data-exhausted"),
    					},
    					Name:        pulumi.String("receiver-name"),
    					PhoneNumber: pulumi.String("+16501234567"),
    				},
    			},
    			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 trnameObjectExtendercontrollerExtenderprofileCellularSmsnotification = new Fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotification("trnameObjectExtendercontrollerExtenderprofileCellularSmsnotification", new()
        {
            Status = "disable",
            Receivers = new[]
            {
                new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverArgs
                {
                    Alerts = new[]
                    {
                        "data-exhausted",
                    },
                    Name = "receiver-name",
                    PhoneNumber = "+16501234567",
                },
            },
            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.ObjectExtendercontrollerExtenderprofileCellularSmsnotification;
    import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs;
    import com.pulumi.fortimanager.inputs.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverArgs;
    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 trnameObjectExtendercontrollerExtenderprofileCellularSmsnotification = new ObjectExtendercontrollerExtenderprofileCellularSmsnotification("trnameObjectExtendercontrollerExtenderprofileCellularSmsnotification", ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs.builder()
                .status("disable")
                .receivers(ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverArgs.builder()
                    .alerts("data-exhausted")
                    .name("receiver-name")
                    .phoneNumber("+16501234567")
                    .build())
                .extenderProfile(trnameObjectExtendercontrollerExtenderprofile.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectExtendercontrollerExtenderprofile)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectExtendercontrollerExtenderprofileCellularSmsnotification:
        type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularSmsnotification
        properties:
          status: disable
          receivers:
            - alerts:
                - data-exhausted
              name: receiver-name
              phoneNumber: '+16501234567'
          extenderProfile: ${trnameObjectExtendercontrollerExtenderprofile.name}
        options:
          dependsOn:
            - ${trnameObjectExtendercontrollerExtenderprofile}
      trnameObjectExtendercontrollerExtenderprofile:
        type: fortimanager:ObjectExtendercontrollerExtenderprofile
    

    Create ObjectExtendercontrollerExtenderprofileCellularSmsnotification Resource

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

    Constructor syntax

    new ObjectExtendercontrollerExtenderprofileCellularSmsnotification(name: string, args: ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectExtendercontrollerExtenderprofileCellularSmsnotification(resource_name: str,
                                                                       args: ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs,
                                                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectExtendercontrollerExtenderprofileCellularSmsnotification(resource_name: str,
                                                                       opts: Optional[ResourceOptions] = None,
                                                                       extender_profile: Optional[str] = None,
                                                                       adom: Optional[str] = None,
                                                                       alert: Optional[ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs] = None,
                                                                       dynamic_sort_subtable: Optional[str] = None,
                                                                       object_extendercontroller_extenderprofile_cellular_smsnotification_id: Optional[str] = None,
                                                                       receivers: Optional[Sequence[ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverArgs]] = None,
                                                                       scopetype: Optional[str] = None,
                                                                       status: Optional[str] = None)
    func NewObjectExtendercontrollerExtenderprofileCellularSmsnotification(ctx *Context, name string, args ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofileCellularSmsnotification, error)
    public ObjectExtendercontrollerExtenderprofileCellularSmsnotification(string name, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs args, CustomResourceOptions? opts = null)
    public ObjectExtendercontrollerExtenderprofileCellularSmsnotification(String name, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs args)
    public ObjectExtendercontrollerExtenderprofileCellularSmsnotification(String name, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularSmsnotification
    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 ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs
    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 ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs
    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 ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs
    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 objectExtendercontrollerExtenderprofileCellularSmsnotificationResource = new Fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotification("objectExtendercontrollerExtenderprofileCellularSmsnotificationResource", new()
    {
        ExtenderProfile = "string",
        Adom = "string",
        Alert = new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs
        {
            DataExhausted = "string",
            FgtBackupModeSwitch = "string",
            LowSignalStrength = "string",
            ModeSwitch = "string",
            OsImageFallback = "string",
            SessionDisconnect = "string",
            SystemReboot = "string",
        },
        DynamicSortSubtable = "string",
        ObjectExtendercontrollerExtenderprofileCellularSmsnotificationId = "string",
        Receivers = new[]
        {
            new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverArgs
            {
                Alerts = new[]
                {
                    "string",
                },
                Name = "string",
                PhoneNumber = "string",
                Status = "string",
            },
        },
        Scopetype = "string",
        Status = "string",
    });
    
    example, err := fortimanager.NewObjectExtendercontrollerExtenderprofileCellularSmsnotification(ctx, "objectExtendercontrollerExtenderprofileCellularSmsnotificationResource", &fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs{
    ExtenderProfile: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Alert: &.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertTypeArgs{
    DataExhausted: pulumi.String("string"),
    FgtBackupModeSwitch: pulumi.String("string"),
    LowSignalStrength: pulumi.String("string"),
    ModeSwitch: pulumi.String("string"),
    OsImageFallback: pulumi.String("string"),
    SessionDisconnect: pulumi.String("string"),
    SystemReboot: pulumi.String("string"),
    },
    DynamicSortSubtable: pulumi.String("string"),
    ObjectExtendercontrollerExtenderprofileCellularSmsnotificationId: pulumi.String("string"),
    Receivers: .ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverTypeArray{
    &.ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverTypeArgs{
    Alerts: pulumi.StringArray{
    pulumi.String("string"),
    },
    Name: pulumi.String("string"),
    PhoneNumber: pulumi.String("string"),
    Status: pulumi.String("string"),
    },
    },
    Scopetype: pulumi.String("string"),
    Status: pulumi.String("string"),
    })
    
    var objectExtendercontrollerExtenderprofileCellularSmsnotificationResource = new ObjectExtendercontrollerExtenderprofileCellularSmsnotification("objectExtendercontrollerExtenderprofileCellularSmsnotificationResource", ObjectExtendercontrollerExtenderprofileCellularSmsnotificationArgs.builder()
        .extenderProfile("string")
        .adom("string")
        .alert(ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs.builder()
            .dataExhausted("string")
            .fgtBackupModeSwitch("string")
            .lowSignalStrength("string")
            .modeSwitch("string")
            .osImageFallback("string")
            .sessionDisconnect("string")
            .systemReboot("string")
            .build())
        .dynamicSortSubtable("string")
        .objectExtendercontrollerExtenderprofileCellularSmsnotificationId("string")
        .receivers(ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverArgs.builder()
            .alerts("string")
            .name("string")
            .phoneNumber("string")
            .status("string")
            .build())
        .scopetype("string")
        .status("string")
        .build());
    
    object_extendercontroller_extenderprofile_cellular_smsnotification_resource = fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotification("objectExtendercontrollerExtenderprofileCellularSmsnotificationResource",
        extender_profile="string",
        adom="string",
        alert={
            "data_exhausted": "string",
            "fgt_backup_mode_switch": "string",
            "low_signal_strength": "string",
            "mode_switch": "string",
            "os_image_fallback": "string",
            "session_disconnect": "string",
            "system_reboot": "string",
        },
        dynamic_sort_subtable="string",
        object_extendercontroller_extenderprofile_cellular_smsnotification_id="string",
        receivers=[{
            "alerts": ["string"],
            "name": "string",
            "phone_number": "string",
            "status": "string",
        }],
        scopetype="string",
        status="string")
    
    const objectExtendercontrollerExtenderprofileCellularSmsnotificationResource = new fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotification("objectExtendercontrollerExtenderprofileCellularSmsnotificationResource", {
        extenderProfile: "string",
        adom: "string",
        alert: {
            dataExhausted: "string",
            fgtBackupModeSwitch: "string",
            lowSignalStrength: "string",
            modeSwitch: "string",
            osImageFallback: "string",
            sessionDisconnect: "string",
            systemReboot: "string",
        },
        dynamicSortSubtable: "string",
        objectExtendercontrollerExtenderprofileCellularSmsnotificationId: "string",
        receivers: [{
            alerts: ["string"],
            name: "string",
            phoneNumber: "string",
            status: "string",
        }],
        scopetype: "string",
        status: "string",
    });
    
    type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularSmsnotification
    properties:
        adom: string
        alert:
            dataExhausted: string
            fgtBackupModeSwitch: string
            lowSignalStrength: string
            modeSwitch: string
            osImageFallback: string
            sessionDisconnect: string
            systemReboot: string
        dynamicSortSubtable: string
        extenderProfile: string
        objectExtendercontrollerExtenderprofileCellularSmsnotificationId: string
        receivers:
            - alerts:
                - string
              name: string
              phoneNumber: string
              status: string
        scopetype: string
        status: string
    

    ObjectExtendercontrollerExtenderprofileCellularSmsnotification 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 ObjectExtendercontrollerExtenderprofileCellularSmsnotification 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.
    Alert ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert
    Alert. The structure of alert block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ObjectExtendercontrollerExtenderprofileCellularSmsnotificationId string
    an identifier for the resource.
    Receivers List<ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiver>
    Receiver. The structure of receiver block is documented below.
    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.
    Status string
    FortiExtender SMS notification status. Valid values: disable, enable.
    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.
    Alert ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertTypeArgs
    Alert. The structure of alert block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ObjectExtendercontrollerExtenderprofileCellularSmsnotificationId string
    an identifier for the resource.
    Receivers []ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverTypeArgs
    Receiver. The structure of receiver block is documented below.
    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.
    Status string
    FortiExtender SMS notification status. Valid values: disable, enable.
    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.
    alert ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert
    Alert. The structure of alert block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    objectExtendercontrollerExtenderprofileCellularSmsnotificationId String
    an identifier for the resource.
    receivers List<ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiver>
    Receiver. The structure of receiver block is documented below.
    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.
    status String
    FortiExtender SMS notification status. Valid values: disable, enable.
    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.
    alert ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert
    Alert. The structure of alert block is documented below.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    objectExtendercontrollerExtenderprofileCellularSmsnotificationId string
    an identifier for the resource.
    receivers ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiver[]
    Receiver. The structure of receiver block is documented below.
    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.
    status string
    FortiExtender SMS notification status. Valid values: disable, enable.
    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.
    alert ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs
    Alert. The structure of alert block is documented below.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    object_extendercontroller_extenderprofile_cellular_smsnotification_id str
    an identifier for the resource.
    receivers Sequence[ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverArgs]
    Receiver. The structure of receiver block is documented below.
    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.
    status str
    FortiExtender SMS notification status. Valid values: disable, enable.
    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.
    alert Property Map
    Alert. The structure of alert block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    objectExtendercontrollerExtenderprofileCellularSmsnotificationId String
    an identifier for the resource.
    receivers List<Property Map>
    Receiver. The structure of receiver block is documented below.
    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.
    status String
    FortiExtender SMS notification status. Valid values: disable, enable.

    Outputs

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

    Get an existing ObjectExtendercontrollerExtenderprofileCellularSmsnotification 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?: ObjectExtendercontrollerExtenderprofileCellularSmsnotificationState, opts?: CustomResourceOptions): ObjectExtendercontrollerExtenderprofileCellularSmsnotification
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            alert: Optional[ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs] = None,
            dynamic_sort_subtable: Optional[str] = None,
            extender_profile: Optional[str] = None,
            object_extendercontroller_extenderprofile_cellular_smsnotification_id: Optional[str] = None,
            receivers: Optional[Sequence[ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverArgs]] = None,
            scopetype: Optional[str] = None,
            status: Optional[str] = None) -> ObjectExtendercontrollerExtenderprofileCellularSmsnotification
    func GetObjectExtendercontrollerExtenderprofileCellularSmsnotification(ctx *Context, name string, id IDInput, state *ObjectExtendercontrollerExtenderprofileCellularSmsnotificationState, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofileCellularSmsnotification, error)
    public static ObjectExtendercontrollerExtenderprofileCellularSmsnotification Get(string name, Input<string> id, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationState? state, CustomResourceOptions? opts = null)
    public static ObjectExtendercontrollerExtenderprofileCellularSmsnotification get(String name, Output<String> id, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularSmsnotification    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.
    Alert ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert
    Alert. The structure of alert block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ExtenderProfile string
    Extender Profile.
    ObjectExtendercontrollerExtenderprofileCellularSmsnotificationId string
    an identifier for the resource.
    Receivers List<ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiver>
    Receiver. The structure of receiver block is documented below.
    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.
    Status string
    FortiExtender SMS notification status. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Alert ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertTypeArgs
    Alert. The structure of alert block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ExtenderProfile string
    Extender Profile.
    ObjectExtendercontrollerExtenderprofileCellularSmsnotificationId string
    an identifier for the resource.
    Receivers []ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverTypeArgs
    Receiver. The structure of receiver block is documented below.
    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.
    Status string
    FortiExtender SMS notification status. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    alert ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert
    Alert. The structure of alert block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    extenderProfile String
    Extender Profile.
    objectExtendercontrollerExtenderprofileCellularSmsnotificationId String
    an identifier for the resource.
    receivers List<ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiver>
    Receiver. The structure of receiver block is documented below.
    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.
    status String
    FortiExtender SMS notification status. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    alert ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert
    Alert. The structure of alert block is documented below.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    extenderProfile string
    Extender Profile.
    objectExtendercontrollerExtenderprofileCellularSmsnotificationId string
    an identifier for the resource.
    receivers ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiver[]
    Receiver. The structure of receiver block is documented below.
    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.
    status string
    FortiExtender SMS notification status. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    alert ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs
    Alert. The structure of alert block is documented below.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    extender_profile str
    Extender Profile.
    object_extendercontroller_extenderprofile_cellular_smsnotification_id str
    an identifier for the resource.
    receivers Sequence[ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverArgs]
    Receiver. The structure of receiver block is documented below.
    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.
    status str
    FortiExtender SMS notification status. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    alert Property Map
    Alert. The structure of alert block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    extenderProfile String
    Extender Profile.
    objectExtendercontrollerExtenderprofileCellularSmsnotificationId String
    an identifier for the resource.
    receivers List<Property Map>
    Receiver. The structure of receiver block is documented below.
    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.
    status String
    FortiExtender SMS notification status. Valid values: disable, enable.

    Supporting Types

    ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs

    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.
    OsImageFallback string
    Display string when falling back to a previous OS image.
    SessionDisconnect string
    Display string when session disconnected.
    SystemReboot string
    Display string when system rebooted.
    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.
    OsImageFallback string
    Display string when falling back to a previous OS image.
    SessionDisconnect string
    Display string when session disconnected.
    SystemReboot string
    Display string when system rebooted.
    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.
    osImageFallback String
    Display string when falling back to a previous OS image.
    sessionDisconnect String
    Display string when session disconnected.
    systemReboot String
    Display string when system rebooted.
    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.
    osImageFallback string
    Display string when falling back to a previous OS image.
    sessionDisconnect string
    Display string when session disconnected.
    systemReboot string
    Display string when system rebooted.
    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.
    os_image_fallback str
    Display string when falling back to a previous OS image.
    session_disconnect str
    Display string when session disconnected.
    system_reboot str
    Display string when system rebooted.
    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.
    osImageFallback String
    Display string when falling back to a previous OS image.
    sessionDisconnect String
    Display string when session disconnected.
    systemReboot String
    Display string when system rebooted.

    ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiver, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationReceiverArgs

    Alerts List<string>
    Alert multi-options. Valid values: system-reboot, data-exhausted, session-disconnect, low-signal-strength, mode-switch, os-image-fallback, fgt-backup-mode-switch.
    Name string
    FortiExtender SMS notification receiver name.
    PhoneNumber string
    Receiver phone number. Format: [+][country code][area code][local phone number]. For example: +16501234567.
    Status string
    SMS notification receiver status. Valid values: disable, enable.
    Alerts []string
    Alert multi-options. Valid values: system-reboot, data-exhausted, session-disconnect, low-signal-strength, mode-switch, os-image-fallback, fgt-backup-mode-switch.
    Name string
    FortiExtender SMS notification receiver name.
    PhoneNumber string
    Receiver phone number. Format: [+][country code][area code][local phone number]. For example: +16501234567.
    Status string
    SMS notification receiver status. Valid values: disable, enable.
    alerts List<String>
    Alert multi-options. Valid values: system-reboot, data-exhausted, session-disconnect, low-signal-strength, mode-switch, os-image-fallback, fgt-backup-mode-switch.
    name String
    FortiExtender SMS notification receiver name.
    phoneNumber String
    Receiver phone number. Format: [+][country code][area code][local phone number]. For example: +16501234567.
    status String
    SMS notification receiver status. Valid values: disable, enable.
    alerts string[]
    Alert multi-options. Valid values: system-reboot, data-exhausted, session-disconnect, low-signal-strength, mode-switch, os-image-fallback, fgt-backup-mode-switch.
    name string
    FortiExtender SMS notification receiver name.
    phoneNumber string
    Receiver phone number. Format: [+][country code][area code][local phone number]. For example: +16501234567.
    status string
    SMS notification receiver status. Valid values: disable, enable.
    alerts Sequence[str]
    Alert multi-options. Valid values: system-reboot, data-exhausted, session-disconnect, low-signal-strength, mode-switch, os-image-fallback, fgt-backup-mode-switch.
    name str
    FortiExtender SMS notification receiver name.
    phone_number str
    Receiver phone number. Format: [+][country code][area code][local phone number]. For example: +16501234567.
    status str
    SMS notification receiver status. Valid values: disable, enable.
    alerts List<String>
    Alert multi-options. Valid values: system-reboot, data-exhausted, session-disconnect, low-signal-strength, mode-switch, os-image-fallback, fgt-backup-mode-switch.
    name String
    FortiExtender SMS notification receiver name.
    phoneNumber String
    Receiver phone number. Format: [+][country code][area code][local phone number]. For example: +16501234567.
    status String
    SMS notification receiver status. Valid values: disable, enable.

    Import

    ObjectExtenderController ExtenderProfileCellularSmsNotification 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/objectExtendercontrollerExtenderprofileCellularSmsnotification:ObjectExtendercontrollerExtenderprofileCellularSmsnotification labelname ObjectExtenderControllerExtenderProfileCellularSmsNotification
    

    $ 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