1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectExtendercontrollerSimProfile
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectExtendercontrollerSimProfile

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    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 is adom, otherwise the value of adom in the provider will be inherited.
    AutoSwitchProfile ObjectExtendercontrollerSimProfileAutoSwitchProfile
    Auto-Switch_Profile. The structure of auto_switch_profile block is documented below.
    ConnStatus double
    Conn-Status.
    DefaultSim string
    Default-Sim. Valid values: sim1, sim2, carrier, cost.
    Description string
    Description.
    Gps string
    Gps. Valid values: disable, enable.
    ModemId double
    Modem-Id.
    Name string
    Name.
    ObjectExtendercontrollerSimProfileId string
    an identifier for the resource with format {{name}}.
    PreferredCarrier string
    Preferred-Carrier.
    RedundantIntf string
    Redundant-Intf.
    RedundantMode string
    Redundant-Mode. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Sim1Pin string
    Sim1-Pin. Valid values: disable, enable.
    Sim1PinCodes List<string>
    Sim1-Pin-Code.
    Sim2Pin string
    Sim2-Pin. Valid values: disable, enable.
    Sim2PinCodes List<string>
    Sim2-Pin-Code.
    Status string
    Status. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AutoSwitchProfile ObjectExtendercontrollerSimProfileAutoSwitchProfileTypeArgs
    Auto-Switch_Profile. The structure of auto_switch_profile block is documented below.
    ConnStatus float64
    Conn-Status.
    DefaultSim string
    Default-Sim. Valid values: sim1, sim2, carrier, cost.
    Description string
    Description.
    Gps string
    Gps. Valid values: disable, enable.
    ModemId float64
    Modem-Id.
    Name string
    Name.
    ObjectExtendercontrollerSimProfileId string
    an identifier for the resource with format {{name}}.
    PreferredCarrier string
    Preferred-Carrier.
    RedundantIntf string
    Redundant-Intf.
    RedundantMode string
    Redundant-Mode. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Sim1Pin string
    Sim1-Pin. Valid values: disable, enable.
    Sim1PinCodes []string
    Sim1-Pin-Code.
    Sim2Pin string
    Sim2-Pin. Valid values: disable, enable.
    Sim2PinCodes []string
    Sim2-Pin-Code.
    Status string
    Status. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoSwitchProfile ObjectExtendercontrollerSimProfileAutoSwitchProfile
    Auto-Switch_Profile. The structure of auto_switch_profile block is documented below.
    connStatus Double
    Conn-Status.
    defaultSim String
    Default-Sim. Valid values: sim1, sim2, carrier, cost.
    description String
    Description.
    gps String
    Gps. Valid values: disable, enable.
    modemId Double
    Modem-Id.
    name String
    Name.
    objectExtendercontrollerSimProfileId String
    an identifier for the resource with format {{name}}.
    preferredCarrier String
    Preferred-Carrier.
    redundantIntf String
    Redundant-Intf.
    redundantMode String
    Redundant-Mode. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sim1Pin String
    Sim1-Pin. Valid values: disable, enable.
    sim1PinCodes List<String>
    Sim1-Pin-Code.
    sim2Pin String
    Sim2-Pin. Valid values: disable, enable.
    sim2PinCodes List<String>
    Sim2-Pin-Code.
    status String
    Status. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoSwitchProfile ObjectExtendercontrollerSimProfileAutoSwitchProfile
    Auto-Switch_Profile. The structure of auto_switch_profile block is documented below.
    connStatus number
    Conn-Status.
    defaultSim string
    Default-Sim. Valid values: sim1, sim2, carrier, cost.
    description string
    Description.
    gps string
    Gps. Valid values: disable, enable.
    modemId number
    Modem-Id.
    name string
    Name.
    objectExtendercontrollerSimProfileId string
    an identifier for the resource with format {{name}}.
    preferredCarrier string
    Preferred-Carrier.
    redundantIntf string
    Redundant-Intf.
    redundantMode string
    Redundant-Mode. Valid values: disable, enable.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sim1Pin string
    Sim1-Pin. Valid values: disable, enable.
    sim1PinCodes string[]
    Sim1-Pin-Code.
    sim2Pin string
    Sim2-Pin. Valid values: disable, enable.
    sim2PinCodes string[]
    Sim2-Pin-Code.
    status string
    Status. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    auto_switch_profile ObjectExtendercontrollerSimProfileAutoSwitchProfileArgs
    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_sim_profile_id str
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sim1_pin str
    Sim1-Pin. Valid values: disable, enable.
    sim1_pin_codes Sequence[str]
    Sim1-Pin-Code.
    sim2_pin str
    Sim2-Pin. Valid values: disable, enable.
    sim2_pin_codes Sequence[str]
    Sim2-Pin-Code.
    status str
    Status. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoSwitchProfile Property Map
    Auto-Switch_Profile. The structure of auto_switch_profile block is documented below.
    connStatus Number
    Conn-Status.
    defaultSim String
    Default-Sim. Valid values: sim1, sim2, carrier, cost.
    description String
    Description.
    gps String
    Gps. Valid values: disable, enable.
    modemId Number
    Modem-Id.
    name String
    Name.
    objectExtendercontrollerSimProfileId String
    an identifier for the resource with format {{name}}.
    preferredCarrier String
    Preferred-Carrier.
    redundantIntf String
    Redundant-Intf.
    redundantMode String
    Redundant-Mode. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sim1Pin String
    Sim1-Pin. Valid values: disable, enable.
    sim1PinCodes List<String>
    Sim1-Pin-Code.
    sim2Pin String
    Sim2-Pin. Valid values: disable, enable.
    sim2PinCodes 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.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AutoSwitchProfile ObjectExtendercontrollerSimProfileAutoSwitchProfile
    Auto-Switch_Profile. The structure of auto_switch_profile block is documented below.
    ConnStatus double
    Conn-Status.
    DefaultSim string
    Default-Sim. Valid values: sim1, sim2, carrier, cost.
    Description string
    Description.
    Gps string
    Gps. Valid values: disable, enable.
    ModemId double
    Modem-Id.
    Name string
    Name.
    ObjectExtendercontrollerSimProfileId string
    an identifier for the resource with format {{name}}.
    PreferredCarrier string
    Preferred-Carrier.
    RedundantIntf string
    Redundant-Intf.
    RedundantMode string
    Redundant-Mode. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Sim1Pin string
    Sim1-Pin. Valid values: disable, enable.
    Sim1PinCodes List<string>
    Sim1-Pin-Code.
    Sim2Pin string
    Sim2-Pin. Valid values: disable, enable.
    Sim2PinCodes List<string>
    Sim2-Pin-Code.
    Status string
    Status. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AutoSwitchProfile ObjectExtendercontrollerSimProfileAutoSwitchProfileTypeArgs
    Auto-Switch_Profile. The structure of auto_switch_profile block is documented below.
    ConnStatus float64
    Conn-Status.
    DefaultSim string
    Default-Sim. Valid values: sim1, sim2, carrier, cost.
    Description string
    Description.
    Gps string
    Gps. Valid values: disable, enable.
    ModemId float64
    Modem-Id.
    Name string
    Name.
    ObjectExtendercontrollerSimProfileId string
    an identifier for the resource with format {{name}}.
    PreferredCarrier string
    Preferred-Carrier.
    RedundantIntf string
    Redundant-Intf.
    RedundantMode string
    Redundant-Mode. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Sim1Pin string
    Sim1-Pin. Valid values: disable, enable.
    Sim1PinCodes []string
    Sim1-Pin-Code.
    Sim2Pin string
    Sim2-Pin. Valid values: disable, enable.
    Sim2PinCodes []string
    Sim2-Pin-Code.
    Status string
    Status. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoSwitchProfile ObjectExtendercontrollerSimProfileAutoSwitchProfile
    Auto-Switch_Profile. The structure of auto_switch_profile block is documented below.
    connStatus Double
    Conn-Status.
    defaultSim String
    Default-Sim. Valid values: sim1, sim2, carrier, cost.
    description String
    Description.
    gps String
    Gps. Valid values: disable, enable.
    modemId Double
    Modem-Id.
    name String
    Name.
    objectExtendercontrollerSimProfileId String
    an identifier for the resource with format {{name}}.
    preferredCarrier String
    Preferred-Carrier.
    redundantIntf String
    Redundant-Intf.
    redundantMode String
    Redundant-Mode. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sim1Pin String
    Sim1-Pin. Valid values: disable, enable.
    sim1PinCodes List<String>
    Sim1-Pin-Code.
    sim2Pin String
    Sim2-Pin. Valid values: disable, enable.
    sim2PinCodes List<String>
    Sim2-Pin-Code.
    status String
    Status. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoSwitchProfile ObjectExtendercontrollerSimProfileAutoSwitchProfile
    Auto-Switch_Profile. The structure of auto_switch_profile block is documented below.
    connStatus number
    Conn-Status.
    defaultSim string
    Default-Sim. Valid values: sim1, sim2, carrier, cost.
    description string
    Description.
    gps string
    Gps. Valid values: disable, enable.
    modemId number
    Modem-Id.
    name string
    Name.
    objectExtendercontrollerSimProfileId string
    an identifier for the resource with format {{name}}.
    preferredCarrier string
    Preferred-Carrier.
    redundantIntf string
    Redundant-Intf.
    redundantMode string
    Redundant-Mode. Valid values: disable, enable.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sim1Pin string
    Sim1-Pin. Valid values: disable, enable.
    sim1PinCodes string[]
    Sim1-Pin-Code.
    sim2Pin string
    Sim2-Pin. Valid values: disable, enable.
    sim2PinCodes string[]
    Sim2-Pin-Code.
    status string
    Status. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    auto_switch_profile ObjectExtendercontrollerSimProfileAutoSwitchProfileArgs
    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_sim_profile_id str
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sim1_pin str
    Sim1-Pin. Valid values: disable, enable.
    sim1_pin_codes Sequence[str]
    Sim1-Pin-Code.
    sim2_pin str
    Sim2-Pin. Valid values: disable, enable.
    sim2_pin_codes Sequence[str]
    Sim2-Pin-Code.
    status str
    Status. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoSwitchProfile Property Map
    Auto-Switch_Profile. The structure of auto_switch_profile block is documented below.
    connStatus Number
    Conn-Status.
    defaultSim String
    Default-Sim. Valid values: sim1, sim2, carrier, cost.
    description String
    Description.
    gps String
    Gps. Valid values: disable, enable.
    modemId Number
    Modem-Id.
    name String
    Name.
    objectExtendercontrollerSimProfileId String
    an identifier for the resource with format {{name}}.
    preferredCarrier String
    Preferred-Carrier.
    redundantIntf String
    Redundant-Intf.
    redundantMode String
    Redundant-Mode. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sim1Pin String
    Sim1-Pin. Valid values: disable, enable.
    sim1PinCodes List<String>
    Sim1-Pin-Code.
    sim2Pin String
    Sim2-Pin. Valid values: disable, enable.
    sim2PinCodes 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.
    DisconnectPeriod double
    Disconnect-Period.
    DisconnectThreshold double
    Disconnect-Threshold.
    Signal string
    Signal. Valid values: disable, enable.
    Status string
    Status. Valid values: disable, enable.
    SwitchBackTime string
    Switch-Back-Time.
    SwitchBackTimer double
    Switch-Back-Timer.
    SwitchBacks List<string>
    Switch-Back. Valid values: time, timer.
    Dataplan string
    Dataplan. Valid values: disable, enable.
    Disconnect string
    Disconnect. Valid values: disable, enable.
    DisconnectPeriod float64
    Disconnect-Period.
    DisconnectThreshold float64
    Disconnect-Threshold.
    Signal string
    Signal. Valid values: disable, enable.
    Status string
    Status. Valid values: disable, enable.
    SwitchBackTime string
    Switch-Back-Time.
    SwitchBackTimer float64
    Switch-Back-Timer.
    SwitchBacks []string
    Switch-Back. Valid values: time, timer.
    dataplan String
    Dataplan. Valid values: disable, enable.
    disconnect String
    Disconnect. Valid values: disable, enable.
    disconnectPeriod Double
    Disconnect-Period.
    disconnectThreshold Double
    Disconnect-Threshold.
    signal String
    Signal. Valid values: disable, enable.
    status String
    Status. Valid values: disable, enable.
    switchBackTime String
    Switch-Back-Time.
    switchBackTimer Double
    Switch-Back-Timer.
    switchBacks List<String>
    Switch-Back. Valid values: time, timer.
    dataplan string
    Dataplan. Valid values: disable, enable.
    disconnect string
    Disconnect. Valid values: disable, enable.
    disconnectPeriod number
    Disconnect-Period.
    disconnectThreshold number
    Disconnect-Threshold.
    signal string
    Signal. Valid values: disable, enable.
    status string
    Status. Valid values: disable, enable.
    switchBackTime string
    Switch-Back-Time.
    switchBackTimer number
    Switch-Back-Timer.
    switchBacks 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_time str
    Switch-Back-Time.
    switch_back_timer float
    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.
    disconnectPeriod Number
    Disconnect-Period.
    disconnectThreshold Number
    Disconnect-Threshold.
    signal String
    Signal. Valid values: disable, enable.
    status String
    Status. Valid values: disable, enable.
    switchBackTime String
    Switch-Back-Time.
    switchBackTimer Number
    Switch-Back-Timer.
    switchBacks 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev