fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch
Explore with Pulumi AI
FortiExtender auto switch configuration.
This resource is a sub resource for variable
auto_switch
of resourcefortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2
. Conflict and overwrite may occur if use both of them.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectExtendercontrollerExtenderprofile = new fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile", {});
const trnameObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch = new fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch("trnameObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch", {
dataplan: "enable",
disconnect: "enable",
disconnectPeriod: 700,
disconnectThreshold: 80,
extenderProfile: trnameObjectExtendercontrollerExtenderprofile.name,
}, {
dependsOn: [trnameObjectExtendercontrollerExtenderprofile],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_extendercontroller_extenderprofile = fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile")
trname_object_extendercontroller_extenderprofile_cellular_modem2_autoswitch = fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch("trnameObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch",
dataplan="enable",
disconnect="enable",
disconnect_period=700,
disconnect_threshold=80,
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.NewObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch(ctx, "trnameObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch", &fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs{
Dataplan: pulumi.String("enable"),
Disconnect: pulumi.String("enable"),
DisconnectPeriod: pulumi.Float64(700),
DisconnectThreshold: pulumi.Float64(80),
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 trnameObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch = new Fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch("trnameObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch", new()
{
Dataplan = "enable",
Disconnect = "enable",
DisconnectPeriod = 700,
DisconnectThreshold = 80,
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.ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch;
import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs;
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 trnameObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch = new ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch("trnameObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch", ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs.builder()
.dataplan("enable")
.disconnect("enable")
.disconnectPeriod(700)
.disconnectThreshold(80)
.extenderProfile(trnameObjectExtendercontrollerExtenderprofile.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectExtendercontrollerExtenderprofile)
.build());
}
}
resources:
trnameObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch:
type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch
properties:
dataplan: enable
disconnect: enable
disconnectPeriod: 700
disconnectThreshold: 80
extenderProfile: ${trnameObjectExtendercontrollerExtenderprofile.name}
options:
dependsOn:
- ${trnameObjectExtendercontrollerExtenderprofile}
trnameObjectExtendercontrollerExtenderprofile:
type: fortimanager:ObjectExtendercontrollerExtenderprofile
Create ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch(name: string, args: ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs, opts?: CustomResourceOptions);
@overload
def ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch(resource_name: str,
args: ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch(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_extendercontroller_extenderprofile_cellular_modem2_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 NewObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch(ctx *Context, name string, args ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch, error)
public ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch(string name, ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs args, CustomResourceOptions? opts = null)
public ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch(String name, ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs args)
public ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch(String name, ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs args, CustomResourceOptions options)
type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch
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 ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs
- 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 ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs
- 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 ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs
- 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 objectExtendercontrollerExtenderprofileCellularModem2AutoswitchResource = new Fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch("objectExtendercontrollerExtenderprofileCellularModem2AutoswitchResource", new()
{
ExtenderProfile = "string",
Adom = "string",
Dataplan = "string",
Disconnect = "string",
DisconnectPeriod = 0,
DisconnectThreshold = 0,
ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchId = "string",
Scopetype = "string",
Signal = "string",
SwitchBackTime = "string",
SwitchBackTimer = 0,
SwitchBacks = new[]
{
"string",
},
});
example, err := fortimanager.NewObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch(ctx, "objectExtendercontrollerExtenderprofileCellularModem2AutoswitchResource", &fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs{
ExtenderProfile: pulumi.String("string"),
Adom: pulumi.String("string"),
Dataplan: pulumi.String("string"),
Disconnect: pulumi.String("string"),
DisconnectPeriod: pulumi.Float64(0),
DisconnectThreshold: pulumi.Float64(0),
ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchId: 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"),
},
})
var objectExtendercontrollerExtenderprofileCellularModem2AutoswitchResource = new ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch("objectExtendercontrollerExtenderprofileCellularModem2AutoswitchResource", ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchArgs.builder()
.extenderProfile("string")
.adom("string")
.dataplan("string")
.disconnect("string")
.disconnectPeriod(0)
.disconnectThreshold(0)
.objectExtendercontrollerExtenderprofileCellularModem2AutoswitchId("string")
.scopetype("string")
.signal("string")
.switchBackTime("string")
.switchBackTimer(0)
.switchBacks("string")
.build());
object_extendercontroller_extenderprofile_cellular_modem2_autoswitch_resource = fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch("objectExtendercontrollerExtenderprofileCellularModem2AutoswitchResource",
extender_profile="string",
adom="string",
dataplan="string",
disconnect="string",
disconnect_period=0,
disconnect_threshold=0,
object_extendercontroller_extenderprofile_cellular_modem2_autoswitch_id="string",
scopetype="string",
signal="string",
switch_back_time="string",
switch_back_timer=0,
switch_backs=["string"])
const objectExtendercontrollerExtenderprofileCellularModem2AutoswitchResource = new fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch("objectExtendercontrollerExtenderprofileCellularModem2AutoswitchResource", {
extenderProfile: "string",
adom: "string",
dataplan: "string",
disconnect: "string",
disconnectPeriod: 0,
disconnectThreshold: 0,
objectExtendercontrollerExtenderprofileCellularModem2AutoswitchId: "string",
scopetype: "string",
signal: "string",
switchBackTime: "string",
switchBackTimer: 0,
switchBacks: ["string"],
});
type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch
properties:
adom: string
dataplan: string
disconnect: string
disconnectPeriod: 0
disconnectThreshold: 0
extenderProfile: string
objectExtendercontrollerExtenderprofileCellularModem2AutoswitchId: string
scopetype: string
signal: string
switchBackTime: string
switchBackTimer: 0
switchBacks:
- string
ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch 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 ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch 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. - Dataplan string
- Automatically switch based on data usage. Valid values:
disable
,enable
. - Disconnect string
- Auto switch by disconnect. Valid values:
disable
,enable
. - Disconnect
Period double - Automatically switch based on disconnect period.
- Disconnect
Threshold double - Automatically switch based on disconnect threshold.
- Object
Extendercontroller stringExtenderprofile Cellular Modem2Autoswitch Id - an identifier for the resource.
- 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
. - Signal string
- Automatically switch based on signal strength. Valid values:
disable
,enable
. - Switch
Back stringTime - Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
- Switch
Back doubleTimer - Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
- Switch
Backs List<string> - Auto switch with switch back multi-options. Valid values:
time
,timer
.
- 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. - Dataplan string
- Automatically switch based on data usage. Valid values:
disable
,enable
. - Disconnect string
- Auto switch by disconnect. Valid values:
disable
,enable
. - Disconnect
Period float64 - Automatically switch based on disconnect period.
- Disconnect
Threshold float64 - Automatically switch based on disconnect threshold.
- Object
Extendercontroller stringExtenderprofile Cellular Modem2Autoswitch Id - an identifier for the resource.
- 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
. - Signal string
- Automatically switch based on signal strength. Valid values:
disable
,enable
. - Switch
Back stringTime - Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
- Switch
Back float64Timer - Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
- Switch
Backs []string - Auto switch with switch back multi-options. Valid values:
time
,timer
.
- 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. - dataplan String
- Automatically switch based on data usage. Valid values:
disable
,enable
. - disconnect String
- Auto switch by disconnect. Valid values:
disable
,enable
. - disconnect
Period Double - Automatically switch based on disconnect period.
- disconnect
Threshold Double - Automatically switch based on disconnect threshold.
- object
Extendercontroller StringExtenderprofile Cellular Modem2Autoswitch Id - an identifier for the resource.
- 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
. - signal String
- Automatically switch based on signal strength. Valid values:
disable
,enable
. - switch
Back StringTime - Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
- switch
Back DoubleTimer - Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
- switch
Backs List<String> - Auto switch with switch back multi-options. Valid values:
time
,timer
.
- 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. - dataplan string
- Automatically switch based on data usage. Valid values:
disable
,enable
. - disconnect string
- Auto switch by disconnect. Valid values:
disable
,enable
. - disconnect
Period number - Automatically switch based on disconnect period.
- disconnect
Threshold number - Automatically switch based on disconnect threshold.
- object
Extendercontroller stringExtenderprofile Cellular Modem2Autoswitch Id - an identifier for the resource.
- 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
. - signal string
- Automatically switch based on signal strength. Valid values:
disable
,enable
. - switch
Back stringTime - Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
- switch
Back numberTimer - Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
- switch
Backs string[] - Auto switch with switch back multi-options. Valid values:
time
,timer
.
- 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. - 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_
extendercontroller_ strextenderprofile_ cellular_ modem2_ autoswitch_ id - an identifier for the resource.
- 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
. - signal str
- Automatically switch based on signal strength. Valid values:
disable
,enable
. - switch_
back_ strtime - Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
- switch_
back_ floattimer - 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
.
- 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. - dataplan String
- Automatically switch based on data usage. Valid values:
disable
,enable
. - disconnect String
- Auto switch by disconnect. Valid values:
disable
,enable
. - disconnect
Period Number - Automatically switch based on disconnect period.
- disconnect
Threshold Number - Automatically switch based on disconnect threshold.
- object
Extendercontroller StringExtenderprofile Cellular Modem2Autoswitch Id - an identifier for the resource.
- 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
. - signal String
- Automatically switch based on signal strength. Valid values:
disable
,enable
. - switch
Back StringTime - Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
- switch
Back NumberTimer - Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
- switch
Backs 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 ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch 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 ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch Resource
Get an existing ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch 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?: ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchState, opts?: CustomResourceOptions): ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch
@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_extendercontroller_extenderprofile_cellular_modem2_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) -> ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch
func GetObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch(ctx *Context, name string, id IDInput, state *ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchState, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch, error)
public static ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch Get(string name, Input<string> id, ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchState? state, CustomResourceOptions? opts = null)
public static ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch get(String name, Output<String> id, ObjectExtendercontrollerExtenderprofileCellularModem2AutoswitchState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch 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. - Dataplan string
- Automatically switch based on data usage. Valid values:
disable
,enable
. - Disconnect string
- Auto switch by disconnect. Valid values:
disable
,enable
. - Disconnect
Period double - Automatically switch based on disconnect period.
- Disconnect
Threshold double - Automatically switch based on disconnect threshold.
- Extender
Profile string - Extender Profile.
- Object
Extendercontroller stringExtenderprofile Cellular Modem2Autoswitch Id - an identifier for the resource.
- 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
. - Signal string
- Automatically switch based on signal strength. Valid values:
disable
,enable
. - Switch
Back stringTime - Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
- Switch
Back doubleTimer - Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
- Switch
Backs List<string> - Auto switch with switch back multi-options. Valid values:
time
,timer
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - Disconnect
Period float64 - Automatically switch based on disconnect period.
- Disconnect
Threshold float64 - Automatically switch based on disconnect threshold.
- Extender
Profile string - Extender Profile.
- Object
Extendercontroller stringExtenderprofile Cellular Modem2Autoswitch Id - an identifier for the resource.
- 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
. - Signal string
- Automatically switch based on signal strength. Valid values:
disable
,enable
. - Switch
Back stringTime - Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
- Switch
Back float64Timer - Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
- Switch
Backs []string - Auto switch with switch back multi-options. Valid values:
time
,timer
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - disconnect
Period Double - Automatically switch based on disconnect period.
- disconnect
Threshold Double - Automatically switch based on disconnect threshold.
- extender
Profile String - Extender Profile.
- object
Extendercontroller StringExtenderprofile Cellular Modem2Autoswitch Id - an identifier for the resource.
- 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
. - signal String
- Automatically switch based on signal strength. Valid values:
disable
,enable
. - switch
Back StringTime - Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
- switch
Back DoubleTimer - Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
- switch
Backs List<String> - Auto switch with switch back multi-options. Valid values:
time
,timer
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - disconnect
Period number - Automatically switch based on disconnect period.
- disconnect
Threshold number - Automatically switch based on disconnect threshold.
- extender
Profile string - Extender Profile.
- object
Extendercontroller stringExtenderprofile Cellular Modem2Autoswitch Id - an identifier for the resource.
- 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
. - signal string
- Automatically switch based on signal strength. Valid values:
disable
,enable
. - switch
Back stringTime - Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
- switch
Back numberTimer - Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
- switch
Backs string[] - Auto switch with switch back multi-options. Valid values:
time
,timer
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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_
extendercontroller_ strextenderprofile_ cellular_ modem2_ autoswitch_ id - an identifier for the resource.
- 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
. - signal str
- Automatically switch based on signal strength. Valid values:
disable
,enable
. - switch_
back_ strtime - Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
- switch_
back_ floattimer - 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
isadom
, 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
. - disconnect
Period Number - Automatically switch based on disconnect period.
- disconnect
Threshold Number - Automatically switch based on disconnect threshold.
- extender
Profile String - Extender Profile.
- object
Extendercontroller StringExtenderprofile Cellular Modem2Autoswitch Id - an identifier for the resource.
- 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
. - signal String
- Automatically switch based on signal strength. Valid values:
disable
,enable
. - switch
Back StringTime - Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
- switch
Back NumberTimer - Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
- switch
Backs List<String> - Auto switch with switch back multi-options. Valid values:
time
,timer
.
Import
ObjectExtenderController ExtenderProfileCellularModem2AutoSwitch 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/objectExtendercontrollerExtenderprofileCellularModem2Autoswitch:ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch labelname ObjectExtenderControllerExtenderProfileCellularModem2AutoSwitch
$ 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.