fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2
Explore with Pulumi AI
Configuration options for modem 2.
This resource is a sub resource for variable
modem2
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.
auto_switch
:fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2Autoswitch
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectExtendercontrollerExtenderprofile = new fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile", {});
const trnameObjectExtendercontrollerExtenderprofileCellularModem2 = new fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2("trnameObjectExtendercontrollerExtenderprofileCellularModem2", {
defaultSim: "cost",
redundantMode: "disable",
sim1Pin: "enable",
sim1PinCodes: ["psw"],
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 = fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2("trnameObjectExtendercontrollerExtenderprofileCellularModem2",
default_sim="cost",
redundant_mode="disable",
sim1_pin="enable",
sim1_pin_codes=["psw"],
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.NewObjectExtendercontrollerExtenderprofileCellularModem2(ctx, "trnameObjectExtendercontrollerExtenderprofileCellularModem2", &fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2Args{
DefaultSim: pulumi.String("cost"),
RedundantMode: pulumi.String("disable"),
Sim1Pin: pulumi.String("enable"),
Sim1PinCodes: pulumi.StringArray{
pulumi.String("psw"),
},
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 trnameObjectExtendercontrollerExtenderprofileCellularModem2 = new Fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2("trnameObjectExtendercontrollerExtenderprofileCellularModem2", new()
{
DefaultSim = "cost",
RedundantMode = "disable",
Sim1Pin = "enable",
Sim1PinCodes = new[]
{
"psw",
},
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.ObjectExtendercontrollerExtenderprofileCellularModem2;
import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2Args;
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 trnameObjectExtendercontrollerExtenderprofileCellularModem2 = new ObjectExtendercontrollerExtenderprofileCellularModem2("trnameObjectExtendercontrollerExtenderprofileCellularModem2", ObjectExtendercontrollerExtenderprofileCellularModem2Args.builder()
.defaultSim("cost")
.redundantMode("disable")
.sim1Pin("enable")
.sim1PinCodes("psw")
.extenderProfile(trnameObjectExtendercontrollerExtenderprofile.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectExtendercontrollerExtenderprofile)
.build());
}
}
resources:
trnameObjectExtendercontrollerExtenderprofileCellularModem2:
type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularModem2
properties:
defaultSim: cost
redundantMode: disable
sim1Pin: enable
sim1PinCodes:
- psw
extenderProfile: ${trnameObjectExtendercontrollerExtenderprofile.name}
options:
dependsOn:
- ${trnameObjectExtendercontrollerExtenderprofile}
trnameObjectExtendercontrollerExtenderprofile:
type: fortimanager:ObjectExtendercontrollerExtenderprofile
Create ObjectExtendercontrollerExtenderprofileCellularModem2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectExtendercontrollerExtenderprofileCellularModem2(name: string, args: ObjectExtendercontrollerExtenderprofileCellularModem2Args, opts?: CustomResourceOptions);
@overload
def ObjectExtendercontrollerExtenderprofileCellularModem2(resource_name: str,
args: ObjectExtendercontrollerExtenderprofileCellularModem2InitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectExtendercontrollerExtenderprofileCellularModem2(resource_name: str,
opts: Optional[ResourceOptions] = None,
extender_profile: Optional[str] = None,
preferred_carrier: Optional[str] = None,
redundant_intf: Optional[str] = None,
default_sim: Optional[str] = None,
auto_switch: Optional[ObjectExtendercontrollerExtenderprofileCellularModem2AutoSwitchArgs] = None,
gps: Optional[str] = None,
modem_id: Optional[float] = None,
conn_status: Optional[float] = None,
adom: Optional[str] = None,
object_extendercontroller_extenderprofile_cellular_modem2_id: Optional[str] = None,
redundant_mode: Optional[str] = None,
scopetype: Optional[str] = None,
sim1_pin: Optional[str] = None,
sim1_pin_codes: Optional[Sequence[str]] = None,
sim2_pin: Optional[str] = None,
sim2_pin_codes: Optional[Sequence[str]] = None)
func NewObjectExtendercontrollerExtenderprofileCellularModem2(ctx *Context, name string, args ObjectExtendercontrollerExtenderprofileCellularModem2Args, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofileCellularModem2, error)
public ObjectExtendercontrollerExtenderprofileCellularModem2(string name, ObjectExtendercontrollerExtenderprofileCellularModem2Args args, CustomResourceOptions? opts = null)
public ObjectExtendercontrollerExtenderprofileCellularModem2(String name, ObjectExtendercontrollerExtenderprofileCellularModem2Args args)
public ObjectExtendercontrollerExtenderprofileCellularModem2(String name, ObjectExtendercontrollerExtenderprofileCellularModem2Args args, CustomResourceOptions options)
type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularModem2
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 ObjectExtendercontrollerExtenderprofileCellularModem2Args
- 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 ObjectExtendercontrollerExtenderprofileCellularModem2InitArgs
- 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 ObjectExtendercontrollerExtenderprofileCellularModem2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectExtendercontrollerExtenderprofileCellularModem2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectExtendercontrollerExtenderprofileCellularModem2Args
- 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 objectExtendercontrollerExtenderprofileCellularModem2Resource = new Fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2("objectExtendercontrollerExtenderprofileCellularModem2Resource", new()
{
ExtenderProfile = "string",
PreferredCarrier = "string",
RedundantIntf = "string",
DefaultSim = "string",
AutoSwitch = new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularModem2AutoSwitchArgs
{
Dataplan = "string",
Disconnect = "string",
DisconnectPeriod = 0,
DisconnectThreshold = 0,
Signal = "string",
SwitchBackTime = "string",
SwitchBackTimer = 0,
SwitchBacks = new[]
{
"string",
},
},
Gps = "string",
ModemId = 0,
ConnStatus = 0,
Adom = "string",
ObjectExtendercontrollerExtenderprofileCellularModem2Id = "string",
RedundantMode = "string",
Scopetype = "string",
Sim1Pin = "string",
Sim1PinCodes = new[]
{
"string",
},
Sim2Pin = "string",
Sim2PinCodes = new[]
{
"string",
},
});
example, err := fortimanager.NewObjectExtendercontrollerExtenderprofileCellularModem2(ctx, "objectExtendercontrollerExtenderprofileCellularModem2Resource", &fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2Args{
ExtenderProfile: pulumi.String("string"),
PreferredCarrier: pulumi.String("string"),
RedundantIntf: pulumi.String("string"),
DefaultSim: pulumi.String("string"),
AutoSwitch: &.ObjectExtendercontrollerExtenderprofileCellularModem2AutoSwitchTypeArgs{
Dataplan: pulumi.String("string"),
Disconnect: pulumi.String("string"),
DisconnectPeriod: pulumi.Float64(0),
DisconnectThreshold: pulumi.Float64(0),
Signal: pulumi.String("string"),
SwitchBackTime: pulumi.String("string"),
SwitchBackTimer: pulumi.Float64(0),
SwitchBacks: pulumi.StringArray{
pulumi.String("string"),
},
},
Gps: pulumi.String("string"),
ModemId: pulumi.Float64(0),
ConnStatus: pulumi.Float64(0),
Adom: pulumi.String("string"),
ObjectExtendercontrollerExtenderprofileCellularModem2Id: pulumi.String("string"),
RedundantMode: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Sim1Pin: pulumi.String("string"),
Sim1PinCodes: pulumi.StringArray{
pulumi.String("string"),
},
Sim2Pin: pulumi.String("string"),
Sim2PinCodes: pulumi.StringArray{
pulumi.String("string"),
},
})
var objectExtendercontrollerExtenderprofileCellularModem2Resource = new ObjectExtendercontrollerExtenderprofileCellularModem2("objectExtendercontrollerExtenderprofileCellularModem2Resource", ObjectExtendercontrollerExtenderprofileCellularModem2Args.builder()
.extenderProfile("string")
.preferredCarrier("string")
.redundantIntf("string")
.defaultSim("string")
.autoSwitch(ObjectExtendercontrollerExtenderprofileCellularModem2AutoSwitchArgs.builder()
.dataplan("string")
.disconnect("string")
.disconnectPeriod(0)
.disconnectThreshold(0)
.signal("string")
.switchBackTime("string")
.switchBackTimer(0)
.switchBacks("string")
.build())
.gps("string")
.modemId(0)
.connStatus(0)
.adom("string")
.objectExtendercontrollerExtenderprofileCellularModem2Id("string")
.redundantMode("string")
.scopetype("string")
.sim1Pin("string")
.sim1PinCodes("string")
.sim2Pin("string")
.sim2PinCodes("string")
.build());
object_extendercontroller_extenderprofile_cellular_modem2_resource = fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2("objectExtendercontrollerExtenderprofileCellularModem2Resource",
extender_profile="string",
preferred_carrier="string",
redundant_intf="string",
default_sim="string",
auto_switch={
"dataplan": "string",
"disconnect": "string",
"disconnect_period": 0,
"disconnect_threshold": 0,
"signal": "string",
"switch_back_time": "string",
"switch_back_timer": 0,
"switch_backs": ["string"],
},
gps="string",
modem_id=0,
conn_status=0,
adom="string",
object_extendercontroller_extenderprofile_cellular_modem2_id="string",
redundant_mode="string",
scopetype="string",
sim1_pin="string",
sim1_pin_codes=["string"],
sim2_pin="string",
sim2_pin_codes=["string"])
const objectExtendercontrollerExtenderprofileCellularModem2Resource = new fortimanager.ObjectExtendercontrollerExtenderprofileCellularModem2("objectExtendercontrollerExtenderprofileCellularModem2Resource", {
extenderProfile: "string",
preferredCarrier: "string",
redundantIntf: "string",
defaultSim: "string",
autoSwitch: {
dataplan: "string",
disconnect: "string",
disconnectPeriod: 0,
disconnectThreshold: 0,
signal: "string",
switchBackTime: "string",
switchBackTimer: 0,
switchBacks: ["string"],
},
gps: "string",
modemId: 0,
connStatus: 0,
adom: "string",
objectExtendercontrollerExtenderprofileCellularModem2Id: "string",
redundantMode: "string",
scopetype: "string",
sim1Pin: "string",
sim1PinCodes: ["string"],
sim2Pin: "string",
sim2PinCodes: ["string"],
});
type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularModem2
properties:
adom: string
autoSwitch:
dataplan: string
disconnect: string
disconnectPeriod: 0
disconnectThreshold: 0
signal: string
switchBackTime: string
switchBackTimer: 0
switchBacks:
- string
connStatus: 0
defaultSim: string
extenderProfile: string
gps: string
modemId: 0
objectExtendercontrollerExtenderprofileCellularModem2Id: string
preferredCarrier: string
redundantIntf: string
redundantMode: string
scopetype: string
sim1Pin: string
sim1PinCodes:
- string
sim2Pin: string
sim2PinCodes:
- string
ObjectExtendercontrollerExtenderprofileCellularModem2 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 ObjectExtendercontrollerExtenderprofileCellularModem2 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. - Auto
Switch ObjectExtendercontroller Extenderprofile Cellular Modem2Auto Switch - Auto-Switch. The structure of
auto_switch
block is documented below. - Conn
Status double - Conn-Status.
- Default
Sim string - Default SIM selection. Valid values:
sim1
,sim2
,carrier
,cost
. - Gps string
- FortiExtender GPS enable/disable. Valid values:
disable
,enable
. - Modem
Id double - Modem ID.
- Object
Extendercontroller stringExtenderprofile Cellular Modem2Id - an identifier for the resource.
- Preferred
Carrier string - Preferred carrier.
- Redundant
Intf string - Redundant interface.
- Redundant
Mode string - FortiExtender mode. Valid values:
disable
,enable
. - 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
. - Sim1Pin string
- SIM #1 PIN status. Valid values:
disable
,enable
. - Sim1Pin
Codes List<string> - SIM #1 PIN password.
- Sim2Pin string
- SIM #2 PIN status. Valid values:
disable
,enable
. - Sim2Pin
Codes List<string> - SIM #2 PIN password.
- 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. - Auto
Switch ObjectExtendercontroller Extenderprofile Cellular Modem2Auto Switch Type Args - Auto-Switch. The structure of
auto_switch
block is documented below. - Conn
Status float64 - Conn-Status.
- Default
Sim string - Default SIM selection. Valid values:
sim1
,sim2
,carrier
,cost
. - Gps string
- FortiExtender GPS enable/disable. Valid values:
disable
,enable
. - Modem
Id float64 - Modem ID.
- Object
Extendercontroller stringExtenderprofile Cellular Modem2Id - an identifier for the resource.
- Preferred
Carrier string - Preferred carrier.
- Redundant
Intf string - Redundant interface.
- Redundant
Mode string - FortiExtender mode. Valid values:
disable
,enable
. - 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
. - Sim1Pin string
- SIM #1 PIN status. Valid values:
disable
,enable
. - Sim1Pin
Codes []string - SIM #1 PIN password.
- Sim2Pin string
- SIM #2 PIN status. Valid values:
disable
,enable
. - Sim2Pin
Codes []string - SIM #2 PIN password.
- 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. - auto
Switch ObjectExtendercontroller Extenderprofile Cellular Modem2Auto Switch - Auto-Switch. The structure of
auto_switch
block is documented below. - conn
Status Double - Conn-Status.
- default
Sim String - Default SIM selection. Valid values:
sim1
,sim2
,carrier
,cost
. - gps String
- FortiExtender GPS enable/disable. Valid values:
disable
,enable
. - modem
Id Double - Modem ID.
- object
Extendercontroller StringExtenderprofile Cellular Modem2Id - an identifier for the resource.
- preferred
Carrier String - Preferred carrier.
- redundant
Intf String - Redundant interface.
- redundant
Mode String - FortiExtender mode. Valid values:
disable
,enable
. - 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
. - sim1Pin String
- SIM #1 PIN status. Valid values:
disable
,enable
. - sim1Pin
Codes List<String> - SIM #1 PIN password.
- sim2Pin String
- SIM #2 PIN status. Valid values:
disable
,enable
. - sim2Pin
Codes List<String> - SIM #2 PIN password.
- 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. - auto
Switch ObjectExtendercontroller Extenderprofile Cellular Modem2Auto Switch - Auto-Switch. The structure of
auto_switch
block is documented below. - conn
Status number - Conn-Status.
- default
Sim string - Default SIM selection. Valid values:
sim1
,sim2
,carrier
,cost
. - gps string
- FortiExtender GPS enable/disable. Valid values:
disable
,enable
. - modem
Id number - Modem ID.
- object
Extendercontroller stringExtenderprofile Cellular Modem2Id - an identifier for the resource.
- preferred
Carrier string - Preferred carrier.
- redundant
Intf string - Redundant interface.
- redundant
Mode string - FortiExtender mode. Valid values:
disable
,enable
. - 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
. - sim1Pin string
- SIM #1 PIN status. Valid values:
disable
,enable
. - sim1Pin
Codes string[] - SIM #1 PIN password.
- sim2Pin string
- SIM #2 PIN status. Valid values:
disable
,enable
. - sim2Pin
Codes string[] - SIM #2 PIN password.
- 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. - auto_
switch ObjectExtendercontroller Extenderprofile Cellular Modem2Auto Switch Args - Auto-Switch. The structure of
auto_switch
block is documented below. - conn_
status float - Conn-Status.
- default_
sim str - Default SIM selection. Valid values:
sim1
,sim2
,carrier
,cost
. - gps str
- FortiExtender GPS enable/disable. Valid values:
disable
,enable
. - modem_
id float - Modem ID.
- object_
extendercontroller_ strextenderprofile_ cellular_ modem2_ id - an identifier for the resource.
- preferred_
carrier str - Preferred carrier.
- redundant_
intf str - Redundant interface.
- redundant_
mode str - FortiExtender mode. Valid values:
disable
,enable
. - 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
. - sim1_
pin str - SIM #1 PIN status. Valid values:
disable
,enable
. - sim1_
pin_ Sequence[str]codes - SIM #1 PIN password.
- sim2_
pin str - SIM #2 PIN status. Valid values:
disable
,enable
. - sim2_
pin_ Sequence[str]codes - SIM #2 PIN password.
- 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. - auto
Switch Property Map - Auto-Switch. The structure of
auto_switch
block is documented below. - conn
Status Number - Conn-Status.
- default
Sim String - Default SIM selection. Valid values:
sim1
,sim2
,carrier
,cost
. - gps String
- FortiExtender GPS enable/disable. Valid values:
disable
,enable
. - modem
Id Number - Modem ID.
- object
Extendercontroller StringExtenderprofile Cellular Modem2Id - an identifier for the resource.
- preferred
Carrier String - Preferred carrier.
- redundant
Intf String - Redundant interface.
- redundant
Mode String - FortiExtender mode. Valid values:
disable
,enable
. - 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
. - sim1Pin String
- SIM #1 PIN status. Valid values:
disable
,enable
. - sim1Pin
Codes List<String> - SIM #1 PIN password.
- sim2Pin String
- SIM #2 PIN status. Valid values:
disable
,enable
. - sim2Pin
Codes List<String> - SIM #2 PIN password.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectExtendercontrollerExtenderprofileCellularModem2 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 ObjectExtendercontrollerExtenderprofileCellularModem2 Resource
Get an existing ObjectExtendercontrollerExtenderprofileCellularModem2 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?: ObjectExtendercontrollerExtenderprofileCellularModem2State, opts?: CustomResourceOptions): ObjectExtendercontrollerExtenderprofileCellularModem2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
auto_switch: Optional[ObjectExtendercontrollerExtenderprofileCellularModem2AutoSwitchArgs] = None,
conn_status: Optional[float] = None,
default_sim: Optional[str] = None,
extender_profile: Optional[str] = None,
gps: Optional[str] = None,
modem_id: Optional[float] = None,
object_extendercontroller_extenderprofile_cellular_modem2_id: Optional[str] = None,
preferred_carrier: Optional[str] = None,
redundant_intf: Optional[str] = None,
redundant_mode: Optional[str] = None,
scopetype: Optional[str] = None,
sim1_pin: Optional[str] = None,
sim1_pin_codes: Optional[Sequence[str]] = None,
sim2_pin: Optional[str] = None,
sim2_pin_codes: Optional[Sequence[str]] = None) -> ObjectExtendercontrollerExtenderprofileCellularModem2
func GetObjectExtendercontrollerExtenderprofileCellularModem2(ctx *Context, name string, id IDInput, state *ObjectExtendercontrollerExtenderprofileCellularModem2State, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofileCellularModem2, error)
public static ObjectExtendercontrollerExtenderprofileCellularModem2 Get(string name, Input<string> id, ObjectExtendercontrollerExtenderprofileCellularModem2State? state, CustomResourceOptions? opts = null)
public static ObjectExtendercontrollerExtenderprofileCellularModem2 get(String name, Output<String> id, ObjectExtendercontrollerExtenderprofileCellularModem2State state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularModem2 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. - Auto
Switch ObjectExtendercontroller Extenderprofile Cellular Modem2Auto Switch - Auto-Switch. The structure of
auto_switch
block is documented below. - Conn
Status double - Conn-Status.
- Default
Sim string - Default SIM selection. Valid values:
sim1
,sim2
,carrier
,cost
. - Extender
Profile string - Extender Profile.
- Gps string
- FortiExtender GPS enable/disable. Valid values:
disable
,enable
. - Modem
Id double - Modem ID.
- Object
Extendercontroller stringExtenderprofile Cellular Modem2Id - an identifier for the resource.
- Preferred
Carrier string - Preferred carrier.
- Redundant
Intf string - Redundant interface.
- Redundant
Mode string - FortiExtender mode. Valid values:
disable
,enable
. - 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
. - Sim1Pin string
- SIM #1 PIN status. Valid values:
disable
,enable
. - Sim1Pin
Codes List<string> - SIM #1 PIN password.
- Sim2Pin string
- SIM #2 PIN status. Valid values:
disable
,enable
. - Sim2Pin
Codes List<string> - SIM #2 PIN password.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auto
Switch ObjectExtendercontroller Extenderprofile Cellular Modem2Auto Switch Type Args - Auto-Switch. The structure of
auto_switch
block is documented below. - Conn
Status float64 - Conn-Status.
- Default
Sim string - Default SIM selection. Valid values:
sim1
,sim2
,carrier
,cost
. - Extender
Profile string - Extender Profile.
- Gps string
- FortiExtender GPS enable/disable. Valid values:
disable
,enable
. - Modem
Id float64 - Modem ID.
- Object
Extendercontroller stringExtenderprofile Cellular Modem2Id - an identifier for the resource.
- Preferred
Carrier string - Preferred carrier.
- Redundant
Intf string - Redundant interface.
- Redundant
Mode string - FortiExtender mode. Valid values:
disable
,enable
. - 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
. - Sim1Pin string
- SIM #1 PIN status. Valid values:
disable
,enable
. - Sim1Pin
Codes []string - SIM #1 PIN password.
- Sim2Pin string
- SIM #2 PIN status. Valid values:
disable
,enable
. - Sim2Pin
Codes []string - SIM #2 PIN password.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Switch ObjectExtendercontroller Extenderprofile Cellular Modem2Auto Switch - Auto-Switch. The structure of
auto_switch
block is documented below. - conn
Status Double - Conn-Status.
- default
Sim String - Default SIM selection. Valid values:
sim1
,sim2
,carrier
,cost
. - extender
Profile String - Extender Profile.
- gps String
- FortiExtender GPS enable/disable. Valid values:
disable
,enable
. - modem
Id Double - Modem ID.
- object
Extendercontroller StringExtenderprofile Cellular Modem2Id - an identifier for the resource.
- preferred
Carrier String - Preferred carrier.
- redundant
Intf String - Redundant interface.
- redundant
Mode String - FortiExtender mode. Valid values:
disable
,enable
. - 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
. - sim1Pin String
- SIM #1 PIN status. Valid values:
disable
,enable
. - sim1Pin
Codes List<String> - SIM #1 PIN password.
- sim2Pin String
- SIM #2 PIN status. Valid values:
disable
,enable
. - sim2Pin
Codes List<String> - SIM #2 PIN password.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Switch ObjectExtendercontroller Extenderprofile Cellular Modem2Auto Switch - Auto-Switch. The structure of
auto_switch
block is documented below. - conn
Status number - Conn-Status.
- default
Sim string - Default SIM selection. Valid values:
sim1
,sim2
,carrier
,cost
. - extender
Profile string - Extender Profile.
- gps string
- FortiExtender GPS enable/disable. Valid values:
disable
,enable
. - modem
Id number - Modem ID.
- object
Extendercontroller stringExtenderprofile Cellular Modem2Id - an identifier for the resource.
- preferred
Carrier string - Preferred carrier.
- redundant
Intf string - Redundant interface.
- redundant
Mode string - FortiExtender mode. Valid values:
disable
,enable
. - 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
. - sim1Pin string
- SIM #1 PIN status. Valid values:
disable
,enable
. - sim1Pin
Codes string[] - SIM #1 PIN password.
- sim2Pin string
- SIM #2 PIN status. Valid values:
disable
,enable
. - sim2Pin
Codes string[] - SIM #2 PIN password.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto_
switch ObjectExtendercontroller Extenderprofile Cellular Modem2Auto Switch Args - Auto-Switch. The structure of
auto_switch
block is documented below. - conn_
status float - Conn-Status.
- default_
sim str - Default SIM selection. Valid values:
sim1
,sim2
,carrier
,cost
. - extender_
profile str - Extender Profile.
- gps str
- FortiExtender GPS enable/disable. Valid values:
disable
,enable
. - modem_
id float - Modem ID.
- object_
extendercontroller_ strextenderprofile_ cellular_ modem2_ id - an identifier for the resource.
- preferred_
carrier str - Preferred carrier.
- redundant_
intf str - Redundant interface.
- redundant_
mode str - FortiExtender mode. Valid values:
disable
,enable
. - 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
. - sim1_
pin str - SIM #1 PIN status. Valid values:
disable
,enable
. - sim1_
pin_ Sequence[str]codes - SIM #1 PIN password.
- sim2_
pin str - SIM #2 PIN status. Valid values:
disable
,enable
. - sim2_
pin_ Sequence[str]codes - SIM #2 PIN password.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Switch Property Map - Auto-Switch. The structure of
auto_switch
block is documented below. - conn
Status Number - Conn-Status.
- default
Sim String - Default SIM selection. Valid values:
sim1
,sim2
,carrier
,cost
. - extender
Profile String - Extender Profile.
- gps String
- FortiExtender GPS enable/disable. Valid values:
disable
,enable
. - modem
Id Number - Modem ID.
- object
Extendercontroller StringExtenderprofile Cellular Modem2Id - an identifier for the resource.
- preferred
Carrier String - Preferred carrier.
- redundant
Intf String - Redundant interface.
- redundant
Mode String - FortiExtender mode. Valid values:
disable
,enable
. - 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
. - sim1Pin String
- SIM #1 PIN status. Valid values:
disable
,enable
. - sim1Pin
Codes List<String> - SIM #1 PIN password.
- sim2Pin String
- SIM #2 PIN status. Valid values:
disable
,enable
. - sim2Pin
Codes List<String> - SIM #2 PIN password.
Supporting Types
ObjectExtendercontrollerExtenderprofileCellularModem2AutoSwitch, ObjectExtendercontrollerExtenderprofileCellularModem2AutoSwitchArgs
- 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.
- 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
.
- 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.
- 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
.
- 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.
- 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
.
- 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.
- 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
.
- 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.
- 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
.
- 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.
- 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 ExtenderProfileCellularModem2 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/objectExtendercontrollerExtenderprofileCellularModem2:ObjectExtendercontrollerExtenderprofileCellularModem2 labelname ObjectExtenderControllerExtenderProfileCellularModem2
$ 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.