1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch

Explore with Pulumi AI

FortiExtender auto switch configuration.

This resource is a sub resource for variable auto_switch of resource fortimanager.ObjectExtensioncontrollerExtenderprofileCellularModem1. Conflict and overwrite may occur if use both of them.

Create ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch Resource

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

Constructor syntax

new ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch(name: string, args: ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs, opts?: CustomResourceOptions);
@overload
def ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch(resource_name: str,
                                                                     args: ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs,
                                                                     opts: Optional[ResourceOptions] = None)

@overload
def ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch(resource_name: str,
                                                                     opts: Optional[ResourceOptions] = None,
                                                                     extender_profile: Optional[str] = None,
                                                                     adom: Optional[str] = None,
                                                                     dataplan: Optional[str] = None,
                                                                     disconnect: Optional[str] = None,
                                                                     disconnect_period: Optional[float] = None,
                                                                     disconnect_threshold: Optional[float] = None,
                                                                     object_extensioncontroller_extenderprofile_cellular_modem1_autoswitch_id: Optional[str] = None,
                                                                     scopetype: Optional[str] = None,
                                                                     signal: Optional[str] = None,
                                                                     switch_back_time: Optional[str] = None,
                                                                     switch_back_timer: Optional[float] = None,
                                                                     switch_backs: Optional[Sequence[str]] = None)
func NewObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch(ctx *Context, name string, args ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs, opts ...ResourceOption) (*ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch, error)
public ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch(string name, ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs args, CustomResourceOptions? opts = null)
public ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch(String name, ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs args)
public ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch(String name, ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs args, CustomResourceOptions options)
type: fortimanager:ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs
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 objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchResource = new Fortimanager.ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch("objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchResource", new()
{
    ExtenderProfile = "string",
    Adom = "string",
    Dataplan = "string",
    Disconnect = "string",
    DisconnectPeriod = 0,
    DisconnectThreshold = 0,
    ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId = "string",
    Scopetype = "string",
    Signal = "string",
    SwitchBackTime = "string",
    SwitchBackTimer = 0,
    SwitchBacks = new[]
    {
        "string",
    },
});
Copy
example, err := fortimanager.NewObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch(ctx, "objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchResource", &fortimanager.ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs{
	ExtenderProfile:     pulumi.String("string"),
	Adom:                pulumi.String("string"),
	Dataplan:            pulumi.String("string"),
	Disconnect:          pulumi.String("string"),
	DisconnectPeriod:    pulumi.Float64(0),
	DisconnectThreshold: pulumi.Float64(0),
	ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId: pulumi.String("string"),
	Scopetype:       pulumi.String("string"),
	Signal:          pulumi.String("string"),
	SwitchBackTime:  pulumi.String("string"),
	SwitchBackTimer: pulumi.Float64(0),
	SwitchBacks: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchResource = new ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch("objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchResource", ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchArgs.builder()
    .extenderProfile("string")
    .adom("string")
    .dataplan("string")
    .disconnect("string")
    .disconnectPeriod(0)
    .disconnectThreshold(0)
    .objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId("string")
    .scopetype("string")
    .signal("string")
    .switchBackTime("string")
    .switchBackTimer(0)
    .switchBacks("string")
    .build());
Copy
object_extensioncontroller_extenderprofile_cellular_modem1_autoswitch_resource = fortimanager.ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch("objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchResource",
    extender_profile="string",
    adom="string",
    dataplan="string",
    disconnect="string",
    disconnect_period=0,
    disconnect_threshold=0,
    object_extensioncontroller_extenderprofile_cellular_modem1_autoswitch_id="string",
    scopetype="string",
    signal="string",
    switch_back_time="string",
    switch_back_timer=0,
    switch_backs=["string"])
Copy
const objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchResource = new fortimanager.ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch("objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchResource", {
    extenderProfile: "string",
    adom: "string",
    dataplan: "string",
    disconnect: "string",
    disconnectPeriod: 0,
    disconnectThreshold: 0,
    objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId: "string",
    scopetype: "string",
    signal: "string",
    switchBackTime: "string",
    switchBackTimer: 0,
    switchBacks: ["string"],
});
Copy
type: fortimanager:ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch
properties:
    adom: string
    dataplan: string
    disconnect: string
    disconnectPeriod: 0
    disconnectThreshold: 0
    extenderProfile: string
    objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId: string
    scopetype: string
    signal: string
    switchBackTime: string
    switchBackTimer: 0
    switchBacks:
        - string
Copy

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

ExtenderProfile This property is required. 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.
Dataplan string
Automatically switch based on data usage. Valid values: disable, enable.
Disconnect string
Auto switch by disconnect. Valid values: disable, enable.
DisconnectPeriod double
Automatically switch based on disconnect period.
DisconnectThreshold double
Automatically switch based on disconnect threshold.
ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId string
an identifier for the resource.
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.
Signal string
Automatically switch based on signal strength. Valid values: disable, enable.
SwitchBackTime string
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
SwitchBackTimer double
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
SwitchBacks List<string>
Auto switch with switch back multi-options. Valid values: time, timer.
ExtenderProfile This property is required. 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.
Dataplan string
Automatically switch based on data usage. Valid values: disable, enable.
Disconnect string
Auto switch by disconnect. Valid values: disable, enable.
DisconnectPeriod float64
Automatically switch based on disconnect period.
DisconnectThreshold float64
Automatically switch based on disconnect threshold.
ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId string
an identifier for the resource.
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.
Signal string
Automatically switch based on signal strength. Valid values: disable, enable.
SwitchBackTime string
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
SwitchBackTimer float64
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
SwitchBacks []string
Auto switch with switch back multi-options. Valid values: time, timer.
extenderProfile This property is required. 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.
dataplan String
Automatically switch based on data usage. Valid values: disable, enable.
disconnect String
Auto switch by disconnect. Valid values: disable, enable.
disconnectPeriod Double
Automatically switch based on disconnect period.
disconnectThreshold Double
Automatically switch based on disconnect threshold.
objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId String
an identifier for the resource.
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.
signal String
Automatically switch based on signal strength. Valid values: disable, enable.
switchBackTime String
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switchBackTimer Double
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switchBacks List<String>
Auto switch with switch back multi-options. Valid values: time, timer.
extenderProfile This property is required. 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.
dataplan string
Automatically switch based on data usage. Valid values: disable, enable.
disconnect string
Auto switch by disconnect. Valid values: disable, enable.
disconnectPeriod number
Automatically switch based on disconnect period.
disconnectThreshold number
Automatically switch based on disconnect threshold.
objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId string
an identifier for the resource.
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.
signal string
Automatically switch based on signal strength. Valid values: disable, enable.
switchBackTime string
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switchBackTimer number
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switchBacks string[]
Auto switch with switch back multi-options. Valid values: time, timer.
extender_profile This property is required. 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.
dataplan str
Automatically switch based on data usage. Valid values: disable, enable.
disconnect str
Auto switch by disconnect. Valid values: disable, enable.
disconnect_period float
Automatically switch based on disconnect period.
disconnect_threshold float
Automatically switch based on disconnect threshold.
object_extensioncontroller_extenderprofile_cellular_modem1_autoswitch_id str
an identifier for the resource.
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.
signal str
Automatically switch based on signal strength. Valid values: disable, enable.
switch_back_time str
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switch_back_timer float
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switch_backs Sequence[str]
Auto switch with switch back multi-options. Valid values: time, timer.
extenderProfile This property is required. 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.
dataplan String
Automatically switch based on data usage. Valid values: disable, enable.
disconnect String
Auto switch by disconnect. Valid values: disable, enable.
disconnectPeriod Number
Automatically switch based on disconnect period.
disconnectThreshold Number
Automatically switch based on disconnect threshold.
objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId String
an identifier for the resource.
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.
signal String
Automatically switch based on signal strength. Valid values: disable, enable.
switchBackTime String
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switchBackTimer Number
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switchBacks List<String>
Auto switch with switch back multi-options. Valid values: time, timer.

Outputs

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

Get an existing ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch 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?: ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchState, opts?: CustomResourceOptions): ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        dataplan: Optional[str] = None,
        disconnect: Optional[str] = None,
        disconnect_period: Optional[float] = None,
        disconnect_threshold: Optional[float] = None,
        extender_profile: Optional[str] = None,
        object_extensioncontroller_extenderprofile_cellular_modem1_autoswitch_id: Optional[str] = None,
        scopetype: Optional[str] = None,
        signal: Optional[str] = None,
        switch_back_time: Optional[str] = None,
        switch_back_timer: Optional[float] = None,
        switch_backs: Optional[Sequence[str]] = None) -> ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch
func GetObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch(ctx *Context, name string, id IDInput, state *ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchState, opts ...ResourceOption) (*ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch, error)
public static ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch Get(string name, Input<string> id, ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchState? state, CustomResourceOptions? opts = null)
public static ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch get(String name, Output<String> id, ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
Dataplan string
Automatically switch based on data usage. Valid values: disable, enable.
Disconnect string
Auto switch by disconnect. Valid values: disable, enable.
DisconnectPeriod double
Automatically switch based on disconnect period.
DisconnectThreshold double
Automatically switch based on disconnect threshold.
ExtenderProfile string
Extender Profile.
ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId string
an identifier for the resource.
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.
Signal string
Automatically switch based on signal strength. Valid values: disable, enable.
SwitchBackTime string
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
SwitchBackTimer double
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
SwitchBacks List<string>
Auto switch with switch back multi-options. Valid values: time, timer.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Dataplan string
Automatically switch based on data usage. Valid values: disable, enable.
Disconnect string
Auto switch by disconnect. Valid values: disable, enable.
DisconnectPeriod float64
Automatically switch based on disconnect period.
DisconnectThreshold float64
Automatically switch based on disconnect threshold.
ExtenderProfile string
Extender Profile.
ObjectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId string
an identifier for the resource.
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.
Signal string
Automatically switch based on signal strength. Valid values: disable, enable.
SwitchBackTime string
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
SwitchBackTimer float64
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
SwitchBacks []string
Auto switch with switch back multi-options. Valid values: time, timer.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
dataplan String
Automatically switch based on data usage. Valid values: disable, enable.
disconnect String
Auto switch by disconnect. Valid values: disable, enable.
disconnectPeriod Double
Automatically switch based on disconnect period.
disconnectThreshold Double
Automatically switch based on disconnect threshold.
extenderProfile String
Extender Profile.
objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId String
an identifier for the resource.
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.
signal String
Automatically switch based on signal strength. Valid values: disable, enable.
switchBackTime String
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switchBackTimer Double
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switchBacks List<String>
Auto switch with switch back multi-options. Valid values: time, timer.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
dataplan string
Automatically switch based on data usage. Valid values: disable, enable.
disconnect string
Auto switch by disconnect. Valid values: disable, enable.
disconnectPeriod number
Automatically switch based on disconnect period.
disconnectThreshold number
Automatically switch based on disconnect threshold.
extenderProfile string
Extender Profile.
objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId string
an identifier for the resource.
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.
signal string
Automatically switch based on signal strength. Valid values: disable, enable.
switchBackTime string
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switchBackTimer number
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switchBacks string[]
Auto switch with switch back multi-options. Valid values: time, timer.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
dataplan str
Automatically switch based on data usage. Valid values: disable, enable.
disconnect str
Auto switch by disconnect. Valid values: disable, enable.
disconnect_period float
Automatically switch based on disconnect period.
disconnect_threshold float
Automatically switch based on disconnect threshold.
extender_profile str
Extender Profile.
object_extensioncontroller_extenderprofile_cellular_modem1_autoswitch_id str
an identifier for the resource.
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.
signal str
Automatically switch based on signal strength. Valid values: disable, enable.
switch_back_time str
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switch_back_timer float
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switch_backs Sequence[str]
Auto switch with switch back multi-options. Valid values: time, timer.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
dataplan String
Automatically switch based on data usage. Valid values: disable, enable.
disconnect String
Auto switch by disconnect. Valid values: disable, enable.
disconnectPeriod Number
Automatically switch based on disconnect period.
disconnectThreshold Number
Automatically switch based on disconnect threshold.
extenderProfile String
Extender Profile.
objectExtensioncontrollerExtenderprofileCellularModem1AutoswitchId String
an identifier for the resource.
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.
signal String
Automatically switch based on signal strength. Valid values: disable, enable.
switchBackTime String
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switchBackTimer Number
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switchBacks List<String>
Auto switch with switch back multi-options. Valid values: time, timer.

Import

ObjectExtensionController ExtenderProfileCellularModem1AutoSwitch 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/objectExtensioncontrollerExtenderprofileCellularModem1Autoswitch:ObjectExtensioncontrollerExtenderprofileCellularModem1Autoswitch labelname ObjectExtensionControllerExtenderProfileCellularModem1AutoSwitch
Copy

$ 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.