fortimanager.ObjectExtendercontrollerExtenderprofileCellularSmsnotification
Explore with Pulumi AI
FortiExtender cellular SMS notification configuration.
This resource is a sub resource for variable
sms_notification
of resourcefortimanager.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:
- Extender
Profile string - Extender Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Alert
Object
Extendercontroller Extenderprofile Cellular Smsnotification Alert - Alert. The structure of
alert
block is documented below. - Dynamic
Sort stringSubtable - 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 stringExtenderprofile Cellular Smsnotification Id - an identifier for the resource.
- Receivers
List<Object
Extendercontroller Extenderprofile Cellular Smsnotification Receiver> - Receiver. The structure of
receiver
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- FortiExtender SMS notification status. Valid values:
disable
,enable
.
- Extender
Profile string - Extender Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Alert
Object
Extendercontroller Extenderprofile Cellular Smsnotification Alert Type Args - Alert. The structure of
alert
block is documented below. - Dynamic
Sort stringSubtable - 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 stringExtenderprofile Cellular Smsnotification Id - an identifier for the resource.
- Receivers
[]Object
Extendercontroller Extenderprofile Cellular Smsnotification Receiver Type Args - Receiver. The structure of
receiver
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- FortiExtender SMS notification status. Valid values:
disable
,enable
.
- extender
Profile String - Extender Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alert
Object
Extendercontroller Extenderprofile Cellular Smsnotification Alert - Alert. The structure of
alert
block is documented below. - dynamic
Sort StringSubtable - 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 StringExtenderprofile Cellular Smsnotification Id - an identifier for the resource.
- receivers
List<Object
Extendercontroller Extenderprofile Cellular Smsnotification Receiver> - Receiver. The structure of
receiver
block is documented below. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- FortiExtender SMS notification status. Valid values:
disable
,enable
.
- extender
Profile string - Extender Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alert
Object
Extendercontroller Extenderprofile Cellular Smsnotification Alert - Alert. The structure of
alert
block is documented below. - dynamic
Sort stringSubtable - 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 stringExtenderprofile Cellular Smsnotification Id - an identifier for the resource.
- receivers
Object
Extendercontroller Extenderprofile Cellular Smsnotification Receiver[] - Receiver. The structure of
receiver
block is documented below. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - alert
Object
Extendercontroller Extenderprofile Cellular Smsnotification Alert Args - Alert. The structure of
alert
block is documented below. - dynamic_
sort_ strsubtable - 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_ strextenderprofile_ cellular_ smsnotification_ id - an identifier for the resource.
- receivers
Sequence[Object
Extendercontroller Extenderprofile Cellular Smsnotification Receiver Args] - Receiver. The structure of
receiver
block is documented below. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status str
- FortiExtender SMS notification status. Valid values:
disable
,enable
.
- extender
Profile String - Extender Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alert Property Map
- Alert. The structure of
alert
block is documented below. - dynamic
Sort StringSubtable - 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 StringExtenderprofile Cellular Smsnotification Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Alert
Object
Extendercontroller Extenderprofile Cellular Smsnotification Alert - Alert. The structure of
alert
block is documented below. - Dynamic
Sort stringSubtable - 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 string - Extender Profile.
- Object
Extendercontroller stringExtenderprofile Cellular Smsnotification Id - an identifier for the resource.
- Receivers
List<Object
Extendercontroller Extenderprofile Cellular Smsnotification Receiver> - Receiver. The structure of
receiver
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- FortiExtender SMS notification status. Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Alert
Object
Extendercontroller Extenderprofile Cellular Smsnotification Alert Type Args - Alert. The structure of
alert
block is documented below. - Dynamic
Sort stringSubtable - 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 string - Extender Profile.
- Object
Extendercontroller stringExtenderprofile Cellular Smsnotification Id - an identifier for the resource.
- Receivers
[]Object
Extendercontroller Extenderprofile Cellular Smsnotification Receiver Type Args - Receiver. The structure of
receiver
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- FortiExtender SMS notification status. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alert
Object
Extendercontroller Extenderprofile Cellular Smsnotification Alert - Alert. The structure of
alert
block is documented below. - dynamic
Sort StringSubtable - 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 String - Extender Profile.
- object
Extendercontroller StringExtenderprofile Cellular Smsnotification Id - an identifier for the resource.
- receivers
List<Object
Extendercontroller Extenderprofile Cellular Smsnotification Receiver> - Receiver. The structure of
receiver
block is documented below. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- FortiExtender SMS notification status. Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alert
Object
Extendercontroller Extenderprofile Cellular Smsnotification Alert - Alert. The structure of
alert
block is documented below. - dynamic
Sort stringSubtable - 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 string - Extender Profile.
- object
Extendercontroller stringExtenderprofile Cellular Smsnotification Id - an identifier for the resource.
- receivers
Object
Extendercontroller Extenderprofile Cellular Smsnotification Receiver[] - Receiver. The structure of
receiver
block is documented below. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status string
- FortiExtender SMS notification status. Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alert
Object
Extendercontroller Extenderprofile Cellular Smsnotification Alert Args - Alert. The structure of
alert
block is documented below. - dynamic_
sort_ strsubtable - 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_ strextenderprofile_ cellular_ smsnotification_ id - an identifier for the resource.
- receivers
Sequence[Object
Extendercontroller Extenderprofile Cellular Smsnotification Receiver Args] - Receiver. The structure of
receiver
block is documented below. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status str
- FortiExtender SMS notification status. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alert Property Map
- Alert. The structure of
alert
block is documented below. - dynamic
Sort StringSubtable - 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 String - Extender Profile.
- object
Extendercontroller StringExtenderprofile Cellular Smsnotification Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- FortiExtender SMS notification status. Valid values:
disable
,enable
.
Supporting Types
ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlert, ObjectExtendercontrollerExtenderprofileCellularSmsnotificationAlertArgs
- Data
Exhausted string - Display string when data exhausted.
- Fgt
Backup stringMode Switch - Display string when FortiGate backup mode switched.
- Low
Signal stringStrength - Display string when signal strength is low.
- Mode
Switch string - Display string when mode is switched.
- Os
Image stringFallback - Display string when falling back to a previous OS image.
- Session
Disconnect string - Display string when session disconnected.
- System
Reboot string - Display string when system rebooted.
- Data
Exhausted string - Display string when data exhausted.
- Fgt
Backup stringMode Switch - Display string when FortiGate backup mode switched.
- Low
Signal stringStrength - Display string when signal strength is low.
- Mode
Switch string - Display string when mode is switched.
- Os
Image stringFallback - Display string when falling back to a previous OS image.
- Session
Disconnect string - Display string when session disconnected.
- System
Reboot string - Display string when system rebooted.
- data
Exhausted String - Display string when data exhausted.
- fgt
Backup StringMode Switch - Display string when FortiGate backup mode switched.
- low
Signal StringStrength - Display string when signal strength is low.
- mode
Switch String - Display string when mode is switched.
- os
Image StringFallback - Display string when falling back to a previous OS image.
- session
Disconnect String - Display string when session disconnected.
- system
Reboot String - Display string when system rebooted.
- data
Exhausted string - Display string when data exhausted.
- fgt
Backup stringMode Switch - Display string when FortiGate backup mode switched.
- low
Signal stringStrength - Display string when signal strength is low.
- mode
Switch string - Display string when mode is switched.
- os
Image stringFallback - Display string when falling back to a previous OS image.
- session
Disconnect string - Display string when session disconnected.
- system
Reboot string - Display string when system rebooted.
- data_
exhausted str - Display string when data exhausted.
- fgt_
backup_ strmode_ switch - Display string when FortiGate backup mode switched.
- low_
signal_ strstrength - Display string when signal strength is low.
- mode_
switch str - Display string when mode is switched.
- os_
image_ strfallback - 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.
- data
Exhausted String - Display string when data exhausted.
- fgt
Backup StringMode Switch - Display string when FortiGate backup mode switched.
- low
Signal StringStrength - Display string when signal strength is low.
- mode
Switch String - Display string when mode is switched.
- os
Image StringFallback - Display string when falling back to a previous OS image.
- session
Disconnect String - Display string when session disconnected.
- system
Reboot 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.
- Phone
Number 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.
- Phone
Number 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.
- phone
Number 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.
- phone
Number 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.
- phone
Number 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.