fortimanager.ObjectExtendercontrollerSimProfile
Explore with Pulumi AI
ObjectExtenderController SimProfile
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
auto_switch_profile
:fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfile
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectExtendercontrollerSimProfile("trname", {
defaultSim: "carrier",
description: "This is a Terraform example",
gps: "enable",
redundantMode: "disable",
sim1Pin: "disable",
sim1PinCodes: ["ENC"],
sim2Pin: "disable",
sim2PinCodes: ["ENC"],
status: "enable",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectExtendercontrollerSimProfile("trname",
default_sim="carrier",
description="This is a Terraform example",
gps="enable",
redundant_mode="disable",
sim1_pin="disable",
sim1_pin_codes=["ENC"],
sim2_pin="disable",
sim2_pin_codes=["ENC"],
status="enable")
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 {
_, err := fortimanager.NewObjectExtendercontrollerSimProfile(ctx, "trname", &fortimanager.ObjectExtendercontrollerSimProfileArgs{
DefaultSim: pulumi.String("carrier"),
Description: pulumi.String("This is a Terraform example"),
Gps: pulumi.String("enable"),
RedundantMode: pulumi.String("disable"),
Sim1Pin: pulumi.String("disable"),
Sim1PinCodes: pulumi.StringArray{
pulumi.String("ENC"),
},
Sim2Pin: pulumi.String("disable"),
Sim2PinCodes: pulumi.StringArray{
pulumi.String("ENC"),
},
Status: pulumi.String("enable"),
})
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 trname = new Fortimanager.ObjectExtendercontrollerSimProfile("trname", new()
{
DefaultSim = "carrier",
Description = "This is a Terraform example",
Gps = "enable",
RedundantMode = "disable",
Sim1Pin = "disable",
Sim1PinCodes = new[]
{
"ENC",
},
Sim2Pin = "disable",
Sim2PinCodes = new[]
{
"ENC",
},
Status = "enable",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectExtendercontrollerSimProfile;
import com.pulumi.fortimanager.ObjectExtendercontrollerSimProfileArgs;
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 trname = new ObjectExtendercontrollerSimProfile("trname", ObjectExtendercontrollerSimProfileArgs.builder()
.defaultSim("carrier")
.description("This is a Terraform example")
.gps("enable")
.redundantMode("disable")
.sim1Pin("disable")
.sim1PinCodes("ENC")
.sim2Pin("disable")
.sim2PinCodes("ENC")
.status("enable")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectExtendercontrollerSimProfile
properties:
defaultSim: carrier
description: This is a Terraform example
gps: enable
redundantMode: disable
sim1Pin: disable
sim1PinCodes:
- ENC
sim2Pin: disable
sim2PinCodes:
- ENC
status: enable
Create ObjectExtendercontrollerSimProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectExtendercontrollerSimProfile(name: string, args?: ObjectExtendercontrollerSimProfileArgs, opts?: CustomResourceOptions);
@overload
def ObjectExtendercontrollerSimProfile(resource_name: str,
args: Optional[ObjectExtendercontrollerSimProfileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectExtendercontrollerSimProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
auto_switch_profile: Optional[ObjectExtendercontrollerSimProfileAutoSwitchProfileArgs] = None,
conn_status: Optional[float] = None,
default_sim: Optional[str] = None,
description: Optional[str] = None,
gps: Optional[str] = None,
modem_id: Optional[float] = None,
name: Optional[str] = None,
object_extendercontroller_sim_profile_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,
status: Optional[str] = None)
func NewObjectExtendercontrollerSimProfile(ctx *Context, name string, args *ObjectExtendercontrollerSimProfileArgs, opts ...ResourceOption) (*ObjectExtendercontrollerSimProfile, error)
public ObjectExtendercontrollerSimProfile(string name, ObjectExtendercontrollerSimProfileArgs? args = null, CustomResourceOptions? opts = null)
public ObjectExtendercontrollerSimProfile(String name, ObjectExtendercontrollerSimProfileArgs args)
public ObjectExtendercontrollerSimProfile(String name, ObjectExtendercontrollerSimProfileArgs args, CustomResourceOptions options)
type: fortimanager:ObjectExtendercontrollerSimProfile
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 ObjectExtendercontrollerSimProfileArgs
- 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 ObjectExtendercontrollerSimProfileArgs
- 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 ObjectExtendercontrollerSimProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectExtendercontrollerSimProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectExtendercontrollerSimProfileArgs
- 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 objectExtendercontrollerSimProfileResource = new Fortimanager.ObjectExtendercontrollerSimProfile("objectExtendercontrollerSimProfileResource", new()
{
Adom = "string",
AutoSwitchProfile = new Fortimanager.Inputs.ObjectExtendercontrollerSimProfileAutoSwitchProfileArgs
{
Dataplan = "string",
Disconnect = "string",
DisconnectPeriod = 0,
DisconnectThreshold = 0,
Signal = "string",
Status = "string",
SwitchBackTime = "string",
SwitchBackTimer = 0,
SwitchBacks = new[]
{
"string",
},
},
ConnStatus = 0,
DefaultSim = "string",
Description = "string",
Gps = "string",
ModemId = 0,
Name = "string",
ObjectExtendercontrollerSimProfileId = "string",
PreferredCarrier = "string",
RedundantIntf = "string",
RedundantMode = "string",
Scopetype = "string",
Sim1Pin = "string",
Sim1PinCodes = new[]
{
"string",
},
Sim2Pin = "string",
Sim2PinCodes = new[]
{
"string",
},
Status = "string",
});
example, err := fortimanager.NewObjectExtendercontrollerSimProfile(ctx, "objectExtendercontrollerSimProfileResource", &fortimanager.ObjectExtendercontrollerSimProfileArgs{
Adom: pulumi.String("string"),
AutoSwitchProfile: &.ObjectExtendercontrollerSimProfileAutoSwitchProfileTypeArgs{
Dataplan: pulumi.String("string"),
Disconnect: pulumi.String("string"),
DisconnectPeriod: pulumi.Float64(0),
DisconnectThreshold: pulumi.Float64(0),
Signal: pulumi.String("string"),
Status: pulumi.String("string"),
SwitchBackTime: pulumi.String("string"),
SwitchBackTimer: pulumi.Float64(0),
SwitchBacks: pulumi.StringArray{
pulumi.String("string"),
},
},
ConnStatus: pulumi.Float64(0),
DefaultSim: pulumi.String("string"),
Description: pulumi.String("string"),
Gps: pulumi.String("string"),
ModemId: pulumi.Float64(0),
Name: pulumi.String("string"),
ObjectExtendercontrollerSimProfileId: pulumi.String("string"),
PreferredCarrier: pulumi.String("string"),
RedundantIntf: 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"),
},
Status: pulumi.String("string"),
})
var objectExtendercontrollerSimProfileResource = new ObjectExtendercontrollerSimProfile("objectExtendercontrollerSimProfileResource", ObjectExtendercontrollerSimProfileArgs.builder()
.adom("string")
.autoSwitchProfile(ObjectExtendercontrollerSimProfileAutoSwitchProfileArgs.builder()
.dataplan("string")
.disconnect("string")
.disconnectPeriod(0)
.disconnectThreshold(0)
.signal("string")
.status("string")
.switchBackTime("string")
.switchBackTimer(0)
.switchBacks("string")
.build())
.connStatus(0)
.defaultSim("string")
.description("string")
.gps("string")
.modemId(0)
.name("string")
.objectExtendercontrollerSimProfileId("string")
.preferredCarrier("string")
.redundantIntf("string")
.redundantMode("string")
.scopetype("string")
.sim1Pin("string")
.sim1PinCodes("string")
.sim2Pin("string")
.sim2PinCodes("string")
.status("string")
.build());
object_extendercontroller_sim_profile_resource = fortimanager.ObjectExtendercontrollerSimProfile("objectExtendercontrollerSimProfileResource",
adom="string",
auto_switch_profile={
"dataplan": "string",
"disconnect": "string",
"disconnect_period": 0,
"disconnect_threshold": 0,
"signal": "string",
"status": "string",
"switch_back_time": "string",
"switch_back_timer": 0,
"switch_backs": ["string"],
},
conn_status=0,
default_sim="string",
description="string",
gps="string",
modem_id=0,
name="string",
object_extendercontroller_sim_profile_id="string",
preferred_carrier="string",
redundant_intf="string",
redundant_mode="string",
scopetype="string",
sim1_pin="string",
sim1_pin_codes=["string"],
sim2_pin="string",
sim2_pin_codes=["string"],
status="string")
const objectExtendercontrollerSimProfileResource = new fortimanager.ObjectExtendercontrollerSimProfile("objectExtendercontrollerSimProfileResource", {
adom: "string",
autoSwitchProfile: {
dataplan: "string",
disconnect: "string",
disconnectPeriod: 0,
disconnectThreshold: 0,
signal: "string",
status: "string",
switchBackTime: "string",
switchBackTimer: 0,
switchBacks: ["string"],
},
connStatus: 0,
defaultSim: "string",
description: "string",
gps: "string",
modemId: 0,
name: "string",
objectExtendercontrollerSimProfileId: "string",
preferredCarrier: "string",
redundantIntf: "string",
redundantMode: "string",
scopetype: "string",
sim1Pin: "string",
sim1PinCodes: ["string"],
sim2Pin: "string",
sim2PinCodes: ["string"],
status: "string",
});
type: fortimanager:ObjectExtendercontrollerSimProfile
properties:
adom: string
autoSwitchProfile:
dataplan: string
disconnect: string
disconnectPeriod: 0
disconnectThreshold: 0
signal: string
status: string
switchBackTime: string
switchBackTimer: 0
switchBacks:
- string
connStatus: 0
defaultSim: string
description: string
gps: string
modemId: 0
name: string
objectExtendercontrollerSimProfileId: string
preferredCarrier: string
redundantIntf: string
redundantMode: string
scopetype: string
sim1Pin: string
sim1PinCodes:
- string
sim2Pin: string
sim2PinCodes:
- string
status: string
ObjectExtendercontrollerSimProfile 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 ObjectExtendercontrollerSimProfile resource accepts the following input properties:
- 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 ObjectProfile Extendercontroller Sim Profile Auto Switch Profile - Auto-Switch_Profile. The structure of
auto_switch_profile
block is documented below. - Conn
Status double - Conn-Status.
- Default
Sim string - Default-Sim. Valid values:
sim1
,sim2
,carrier
,cost
. - Description string
- Description.
- Gps string
- Gps. Valid values:
disable
,enable
. - Modem
Id double - Modem-Id.
- Name string
- Name.
- Object
Extendercontroller stringSim Profile Id - an identifier for the resource with format {{name}}.
- Preferred
Carrier string - Preferred-Carrier.
- Redundant
Intf string - Redundant-Intf.
- Redundant
Mode string - Redundant-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
- Sim1-Pin. Valid values:
disable
,enable
. - Sim1Pin
Codes List<string> - Sim1-Pin-Code.
- Sim2Pin string
- Sim2-Pin. Valid values:
disable
,enable
. - Sim2Pin
Codes List<string> - Sim2-Pin-Code.
- Status string
- Status. Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auto
Switch ObjectProfile Extendercontroller Sim Profile Auto Switch Profile Type Args - Auto-Switch_Profile. The structure of
auto_switch_profile
block is documented below. - Conn
Status float64 - Conn-Status.
- Default
Sim string - Default-Sim. Valid values:
sim1
,sim2
,carrier
,cost
. - Description string
- Description.
- Gps string
- Gps. Valid values:
disable
,enable
. - Modem
Id float64 - Modem-Id.
- Name string
- Name.
- Object
Extendercontroller stringSim Profile Id - an identifier for the resource with format {{name}}.
- Preferred
Carrier string - Preferred-Carrier.
- Redundant
Intf string - Redundant-Intf.
- Redundant
Mode string - Redundant-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
- Sim1-Pin. Valid values:
disable
,enable
. - Sim1Pin
Codes []string - Sim1-Pin-Code.
- Sim2Pin string
- Sim2-Pin. Valid values:
disable
,enable
. - Sim2Pin
Codes []string - Sim2-Pin-Code.
- Status string
- Status. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Switch ObjectProfile Extendercontroller Sim Profile Auto Switch Profile - Auto-Switch_Profile. The structure of
auto_switch_profile
block is documented below. - conn
Status Double - Conn-Status.
- default
Sim String - Default-Sim. Valid values:
sim1
,sim2
,carrier
,cost
. - description String
- Description.
- gps String
- Gps. Valid values:
disable
,enable
. - modem
Id Double - Modem-Id.
- name String
- Name.
- object
Extendercontroller StringSim Profile Id - an identifier for the resource with format {{name}}.
- preferred
Carrier String - Preferred-Carrier.
- redundant
Intf String - Redundant-Intf.
- redundant
Mode String - Redundant-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
- Sim1-Pin. Valid values:
disable
,enable
. - sim1Pin
Codes List<String> - Sim1-Pin-Code.
- sim2Pin String
- Sim2-Pin. Valid values:
disable
,enable
. - sim2Pin
Codes List<String> - Sim2-Pin-Code.
- status String
- Status. Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Switch ObjectProfile Extendercontroller Sim Profile Auto Switch Profile - Auto-Switch_Profile. The structure of
auto_switch_profile
block is documented below. - conn
Status number - Conn-Status.
- default
Sim string - Default-Sim. Valid values:
sim1
,sim2
,carrier
,cost
. - description string
- Description.
- gps string
- Gps. Valid values:
disable
,enable
. - modem
Id number - Modem-Id.
- name string
- Name.
- object
Extendercontroller stringSim Profile Id - an identifier for the resource with format {{name}}.
- preferred
Carrier string - Preferred-Carrier.
- redundant
Intf string - Redundant-Intf.
- redundant
Mode string - Redundant-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
- Sim1-Pin. Valid values:
disable
,enable
. - sim1Pin
Codes string[] - Sim1-Pin-Code.
- sim2Pin string
- Sim2-Pin. Valid values:
disable
,enable
. - sim2Pin
Codes string[] - Sim2-Pin-Code.
- status string
- Status. Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto_
switch_ Objectprofile Extendercontroller Sim Profile Auto Switch Profile Args - Auto-Switch_Profile. The structure of
auto_switch_profile
block is documented below. - conn_
status float - Conn-Status.
- default_
sim str - Default-Sim. Valid values:
sim1
,sim2
,carrier
,cost
. - description str
- Description.
- gps str
- Gps. Valid values:
disable
,enable
. - modem_
id float - Modem-Id.
- name str
- Name.
- object_
extendercontroller_ strsim_ profile_ id - an identifier for the resource with format {{name}}.
- preferred_
carrier str - Preferred-Carrier.
- redundant_
intf str - Redundant-Intf.
- redundant_
mode str - Redundant-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 - Sim1-Pin. Valid values:
disable
,enable
. - sim1_
pin_ Sequence[str]codes - Sim1-Pin-Code.
- sim2_
pin str - Sim2-Pin. Valid values:
disable
,enable
. - sim2_
pin_ Sequence[str]codes - Sim2-Pin-Code.
- status str
- Status. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Switch Property MapProfile - Auto-Switch_Profile. The structure of
auto_switch_profile
block is documented below. - conn
Status Number - Conn-Status.
- default
Sim String - Default-Sim. Valid values:
sim1
,sim2
,carrier
,cost
. - description String
- Description.
- gps String
- Gps. Valid values:
disable
,enable
. - modem
Id Number - Modem-Id.
- name String
- Name.
- object
Extendercontroller StringSim Profile Id - an identifier for the resource with format {{name}}.
- preferred
Carrier String - Preferred-Carrier.
- redundant
Intf String - Redundant-Intf.
- redundant
Mode String - Redundant-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
- Sim1-Pin. Valid values:
disable
,enable
. - sim1Pin
Codes List<String> - Sim1-Pin-Code.
- sim2Pin String
- Sim2-Pin. Valid values:
disable
,enable
. - sim2Pin
Codes List<String> - Sim2-Pin-Code.
- status String
- Status. Valid values:
disable
,enable
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectExtendercontrollerSimProfile 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 ObjectExtendercontrollerSimProfile Resource
Get an existing ObjectExtendercontrollerSimProfile 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?: ObjectExtendercontrollerSimProfileState, opts?: CustomResourceOptions): ObjectExtendercontrollerSimProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
auto_switch_profile: Optional[ObjectExtendercontrollerSimProfileAutoSwitchProfileArgs] = None,
conn_status: Optional[float] = None,
default_sim: Optional[str] = None,
description: Optional[str] = None,
gps: Optional[str] = None,
modem_id: Optional[float] = None,
name: Optional[str] = None,
object_extendercontroller_sim_profile_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,
status: Optional[str] = None) -> ObjectExtendercontrollerSimProfile
func GetObjectExtendercontrollerSimProfile(ctx *Context, name string, id IDInput, state *ObjectExtendercontrollerSimProfileState, opts ...ResourceOption) (*ObjectExtendercontrollerSimProfile, error)
public static ObjectExtendercontrollerSimProfile Get(string name, Input<string> id, ObjectExtendercontrollerSimProfileState? state, CustomResourceOptions? opts = null)
public static ObjectExtendercontrollerSimProfile get(String name, Output<String> id, ObjectExtendercontrollerSimProfileState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectExtendercontrollerSimProfile 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 ObjectProfile Extendercontroller Sim Profile Auto Switch Profile - Auto-Switch_Profile. The structure of
auto_switch_profile
block is documented below. - Conn
Status double - Conn-Status.
- Default
Sim string - Default-Sim. Valid values:
sim1
,sim2
,carrier
,cost
. - Description string
- Description.
- Gps string
- Gps. Valid values:
disable
,enable
. - Modem
Id double - Modem-Id.
- Name string
- Name.
- Object
Extendercontroller stringSim Profile Id - an identifier for the resource with format {{name}}.
- Preferred
Carrier string - Preferred-Carrier.
- Redundant
Intf string - Redundant-Intf.
- Redundant
Mode string - Redundant-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
- Sim1-Pin. Valid values:
disable
,enable
. - Sim1Pin
Codes List<string> - Sim1-Pin-Code.
- Sim2Pin string
- Sim2-Pin. Valid values:
disable
,enable
. - Sim2Pin
Codes List<string> - Sim2-Pin-Code.
- Status string
- Status. Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auto
Switch ObjectProfile Extendercontroller Sim Profile Auto Switch Profile Type Args - Auto-Switch_Profile. The structure of
auto_switch_profile
block is documented below. - Conn
Status float64 - Conn-Status.
- Default
Sim string - Default-Sim. Valid values:
sim1
,sim2
,carrier
,cost
. - Description string
- Description.
- Gps string
- Gps. Valid values:
disable
,enable
. - Modem
Id float64 - Modem-Id.
- Name string
- Name.
- Object
Extendercontroller stringSim Profile Id - an identifier for the resource with format {{name}}.
- Preferred
Carrier string - Preferred-Carrier.
- Redundant
Intf string - Redundant-Intf.
- Redundant
Mode string - Redundant-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
- Sim1-Pin. Valid values:
disable
,enable
. - Sim1Pin
Codes []string - Sim1-Pin-Code.
- Sim2Pin string
- Sim2-Pin. Valid values:
disable
,enable
. - Sim2Pin
Codes []string - Sim2-Pin-Code.
- Status string
- Status. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Switch ObjectProfile Extendercontroller Sim Profile Auto Switch Profile - Auto-Switch_Profile. The structure of
auto_switch_profile
block is documented below. - conn
Status Double - Conn-Status.
- default
Sim String - Default-Sim. Valid values:
sim1
,sim2
,carrier
,cost
. - description String
- Description.
- gps String
- Gps. Valid values:
disable
,enable
. - modem
Id Double - Modem-Id.
- name String
- Name.
- object
Extendercontroller StringSim Profile Id - an identifier for the resource with format {{name}}.
- preferred
Carrier String - Preferred-Carrier.
- redundant
Intf String - Redundant-Intf.
- redundant
Mode String - Redundant-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
- Sim1-Pin. Valid values:
disable
,enable
. - sim1Pin
Codes List<String> - Sim1-Pin-Code.
- sim2Pin String
- Sim2-Pin. Valid values:
disable
,enable
. - sim2Pin
Codes List<String> - Sim2-Pin-Code.
- status String
- Status. Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Switch ObjectProfile Extendercontroller Sim Profile Auto Switch Profile - Auto-Switch_Profile. The structure of
auto_switch_profile
block is documented below. - conn
Status number - Conn-Status.
- default
Sim string - Default-Sim. Valid values:
sim1
,sim2
,carrier
,cost
. - description string
- Description.
- gps string
- Gps. Valid values:
disable
,enable
. - modem
Id number - Modem-Id.
- name string
- Name.
- object
Extendercontroller stringSim Profile Id - an identifier for the resource with format {{name}}.
- preferred
Carrier string - Preferred-Carrier.
- redundant
Intf string - Redundant-Intf.
- redundant
Mode string - Redundant-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
- Sim1-Pin. Valid values:
disable
,enable
. - sim1Pin
Codes string[] - Sim1-Pin-Code.
- sim2Pin string
- Sim2-Pin. Valid values:
disable
,enable
. - sim2Pin
Codes string[] - Sim2-Pin-Code.
- status string
- Status. Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto_
switch_ Objectprofile Extendercontroller Sim Profile Auto Switch Profile Args - Auto-Switch_Profile. The structure of
auto_switch_profile
block is documented below. - conn_
status float - Conn-Status.
- default_
sim str - Default-Sim. Valid values:
sim1
,sim2
,carrier
,cost
. - description str
- Description.
- gps str
- Gps. Valid values:
disable
,enable
. - modem_
id float - Modem-Id.
- name str
- Name.
- object_
extendercontroller_ strsim_ profile_ id - an identifier for the resource with format {{name}}.
- preferred_
carrier str - Preferred-Carrier.
- redundant_
intf str - Redundant-Intf.
- redundant_
mode str - Redundant-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 - Sim1-Pin. Valid values:
disable
,enable
. - sim1_
pin_ Sequence[str]codes - Sim1-Pin-Code.
- sim2_
pin str - Sim2-Pin. Valid values:
disable
,enable
. - sim2_
pin_ Sequence[str]codes - Sim2-Pin-Code.
- status str
- Status. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Switch Property MapProfile - Auto-Switch_Profile. The structure of
auto_switch_profile
block is documented below. - conn
Status Number - Conn-Status.
- default
Sim String - Default-Sim. Valid values:
sim1
,sim2
,carrier
,cost
. - description String
- Description.
- gps String
- Gps. Valid values:
disable
,enable
. - modem
Id Number - Modem-Id.
- name String
- Name.
- object
Extendercontroller StringSim Profile Id - an identifier for the resource with format {{name}}.
- preferred
Carrier String - Preferred-Carrier.
- redundant
Intf String - Redundant-Intf.
- redundant
Mode String - Redundant-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
- Sim1-Pin. Valid values:
disable
,enable
. - sim1Pin
Codes List<String> - Sim1-Pin-Code.
- sim2Pin String
- Sim2-Pin. Valid values:
disable
,enable
. - sim2Pin
Codes List<String> - Sim2-Pin-Code.
- status String
- Status. Valid values:
disable
,enable
.
Supporting Types
ObjectExtendercontrollerSimProfileAutoSwitchProfile, ObjectExtendercontrollerSimProfileAutoSwitchProfileArgs
- Dataplan string
- Dataplan. Valid values:
disable
,enable
. - Disconnect string
- Disconnect. Valid values:
disable
,enable
. - Disconnect
Period double - Disconnect-Period.
- Disconnect
Threshold double - Disconnect-Threshold.
- Signal string
- Signal. Valid values:
disable
,enable
. - Status string
- Status. Valid values:
disable
,enable
. - Switch
Back stringTime - Switch-Back-Time.
- Switch
Back doubleTimer - Switch-Back-Timer.
- Switch
Backs List<string> - Switch-Back. Valid values:
time
,timer
.
- Dataplan string
- Dataplan. Valid values:
disable
,enable
. - Disconnect string
- Disconnect. Valid values:
disable
,enable
. - Disconnect
Period float64 - Disconnect-Period.
- Disconnect
Threshold float64 - Disconnect-Threshold.
- Signal string
- Signal. Valid values:
disable
,enable
. - Status string
- Status. Valid values:
disable
,enable
. - Switch
Back stringTime - Switch-Back-Time.
- Switch
Back float64Timer - Switch-Back-Timer.
- Switch
Backs []string - Switch-Back. Valid values:
time
,timer
.
- dataplan String
- Dataplan. Valid values:
disable
,enable
. - disconnect String
- Disconnect. Valid values:
disable
,enable
. - disconnect
Period Double - Disconnect-Period.
- disconnect
Threshold Double - Disconnect-Threshold.
- signal String
- Signal. Valid values:
disable
,enable
. - status String
- Status. Valid values:
disable
,enable
. - switch
Back StringTime - Switch-Back-Time.
- switch
Back DoubleTimer - Switch-Back-Timer.
- switch
Backs List<String> - Switch-Back. Valid values:
time
,timer
.
- dataplan string
- Dataplan. Valid values:
disable
,enable
. - disconnect string
- Disconnect. Valid values:
disable
,enable
. - disconnect
Period number - Disconnect-Period.
- disconnect
Threshold number - Disconnect-Threshold.
- signal string
- Signal. Valid values:
disable
,enable
. - status string
- Status. Valid values:
disable
,enable
. - switch
Back stringTime - Switch-Back-Time.
- switch
Back numberTimer - Switch-Back-Timer.
- switch
Backs string[] - Switch-Back. Valid values:
time
,timer
.
- dataplan str
- Dataplan. Valid values:
disable
,enable
. - disconnect str
- Disconnect. Valid values:
disable
,enable
. - disconnect_
period float - Disconnect-Period.
- disconnect_
threshold float - Disconnect-Threshold.
- signal str
- Signal. Valid values:
disable
,enable
. - status str
- Status. Valid values:
disable
,enable
. - switch_
back_ strtime - Switch-Back-Time.
- switch_
back_ floattimer - Switch-Back-Timer.
- switch_
backs Sequence[str] - Switch-Back. Valid values:
time
,timer
.
- dataplan String
- Dataplan. Valid values:
disable
,enable
. - disconnect String
- Disconnect. Valid values:
disable
,enable
. - disconnect
Period Number - Disconnect-Period.
- disconnect
Threshold Number - Disconnect-Threshold.
- signal String
- Signal. Valid values:
disable
,enable
. - status String
- Status. Valid values:
disable
,enable
. - switch
Back StringTime - Switch-Back-Time.
- switch
Back NumberTimer - Switch-Back-Timer.
- switch
Backs List<String> - Switch-Back. Valid values:
time
,timer
.
Import
ObjectExtenderController SimProfile can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectExtendercontrollerSimProfile:ObjectExtendercontrollerSimProfile labelname {{name}}
$ 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.