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

fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfile

Explore with Pulumi AI

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

    ObjectExtenderController SimProfileAutoSwitchProfile

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectExtendercontrollerSimProfile = new fortimanager.ObjectExtendercontrollerSimProfile("trnameObjectExtendercontrollerSimProfile", {autoSwitchProfile: {
        dataplan: "disable",
    }});
    const trnameObjectExtendercontrollerSimProfileAutoswitchProfile = new fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfile("trnameObjectExtendercontrollerSimProfileAutoswitchProfile", {
        simProfile: trnameObjectExtendercontrollerSimProfile.name,
        dataplan: "disable",
        disconnect: "enable",
    }, {
        dependsOn: [trnameObjectExtendercontrollerSimProfile],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_extendercontroller_sim_profile = fortimanager.ObjectExtendercontrollerSimProfile("trnameObjectExtendercontrollerSimProfile", auto_switch_profile={
        "dataplan": "disable",
    })
    trname_object_extendercontroller_sim_profile_autoswitch_profile = fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfile("trnameObjectExtendercontrollerSimProfileAutoswitchProfile",
        sim_profile=trname_object_extendercontroller_sim_profile.name,
        dataplan="disable",
        disconnect="enable",
        opts = pulumi.ResourceOptions(depends_on=[trname_object_extendercontroller_sim_profile]))
    
    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 {
    		trnameObjectExtendercontrollerSimProfile, err := fortimanager.NewObjectExtendercontrollerSimProfile(ctx, "trnameObjectExtendercontrollerSimProfile", &fortimanager.ObjectExtendercontrollerSimProfileArgs{
    			AutoSwitchProfile: &fortimanager.ObjectExtendercontrollerSimProfileAutoSwitchProfileTypeArgs{
    				Dataplan: pulumi.String("disable"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectExtendercontrollerSimProfileAutoswitchProfile(ctx, "trnameObjectExtendercontrollerSimProfileAutoswitchProfile", &fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfileArgs{
    			SimProfile: trnameObjectExtendercontrollerSimProfile.Name,
    			Dataplan:   pulumi.String("disable"),
    			Disconnect: pulumi.String("enable"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectExtendercontrollerSimProfile,
    		}))
    		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 trnameObjectExtendercontrollerSimProfile = new Fortimanager.ObjectExtendercontrollerSimProfile("trnameObjectExtendercontrollerSimProfile", new()
        {
            AutoSwitchProfile = new Fortimanager.Inputs.ObjectExtendercontrollerSimProfileAutoSwitchProfileArgs
            {
                Dataplan = "disable",
            },
        });
    
        var trnameObjectExtendercontrollerSimProfileAutoswitchProfile = new Fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfile("trnameObjectExtendercontrollerSimProfileAutoswitchProfile", new()
        {
            SimProfile = trnameObjectExtendercontrollerSimProfile.Name,
            Dataplan = "disable",
            Disconnect = "enable",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectExtendercontrollerSimProfile,
            },
        });
    
    });
    
    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 com.pulumi.fortimanager.inputs.ObjectExtendercontrollerSimProfileAutoSwitchProfileArgs;
    import com.pulumi.fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfile;
    import com.pulumi.fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfileArgs;
    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 trnameObjectExtendercontrollerSimProfile = new ObjectExtendercontrollerSimProfile("trnameObjectExtendercontrollerSimProfile", ObjectExtendercontrollerSimProfileArgs.builder()
                .autoSwitchProfile(ObjectExtendercontrollerSimProfileAutoSwitchProfileArgs.builder()
                    .dataplan("disable")
                    .build())
                .build());
    
            var trnameObjectExtendercontrollerSimProfileAutoswitchProfile = new ObjectExtendercontrollerSimProfileAutoswitchProfile("trnameObjectExtendercontrollerSimProfileAutoswitchProfile", ObjectExtendercontrollerSimProfileAutoswitchProfileArgs.builder()
                .simProfile(trnameObjectExtendercontrollerSimProfile.name())
                .dataplan("disable")
                .disconnect("enable")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectExtendercontrollerSimProfile)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectExtendercontrollerSimProfileAutoswitchProfile:
        type: fortimanager:ObjectExtendercontrollerSimProfileAutoswitchProfile
        properties:
          simProfile: ${trnameObjectExtendercontrollerSimProfile.name}
          dataplan: disable
          disconnect: enable
        options:
          dependsOn:
            - ${trnameObjectExtendercontrollerSimProfile}
      trnameObjectExtendercontrollerSimProfile:
        type: fortimanager:ObjectExtendercontrollerSimProfile
        properties:
          autoSwitchProfile:
            dataplan: disable
    

    Create ObjectExtendercontrollerSimProfileAutoswitchProfile Resource

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

    Constructor syntax

    new ObjectExtendercontrollerSimProfileAutoswitchProfile(name: string, args: ObjectExtendercontrollerSimProfileAutoswitchProfileArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectExtendercontrollerSimProfileAutoswitchProfile(resource_name: str,
                                                            args: ObjectExtendercontrollerSimProfileAutoswitchProfileArgs,
                                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectExtendercontrollerSimProfileAutoswitchProfile(resource_name: str,
                                                            opts: Optional[ResourceOptions] = None,
                                                            sim_profile: Optional[str] = None,
                                                            scopetype: Optional[str] = None,
                                                            disconnect: Optional[str] = None,
                                                            disconnect_period: Optional[float] = None,
                                                            disconnect_threshold: Optional[float] = None,
                                                            object_extendercontroller_sim_profile_autoswitch_profile_id: Optional[str] = None,
                                                            adom: Optional[str] = None,
                                                            signal: Optional[str] = None,
                                                            dataplan: Optional[str] = None,
                                                            status: Optional[str] = None,
                                                            switch_back_time: Optional[str] = None,
                                                            switch_back_timer: Optional[float] = None,
                                                            switch_backs: Optional[Sequence[str]] = None)
    func NewObjectExtendercontrollerSimProfileAutoswitchProfile(ctx *Context, name string, args ObjectExtendercontrollerSimProfileAutoswitchProfileArgs, opts ...ResourceOption) (*ObjectExtendercontrollerSimProfileAutoswitchProfile, error)
    public ObjectExtendercontrollerSimProfileAutoswitchProfile(string name, ObjectExtendercontrollerSimProfileAutoswitchProfileArgs args, CustomResourceOptions? opts = null)
    public ObjectExtendercontrollerSimProfileAutoswitchProfile(String name, ObjectExtendercontrollerSimProfileAutoswitchProfileArgs args)
    public ObjectExtendercontrollerSimProfileAutoswitchProfile(String name, ObjectExtendercontrollerSimProfileAutoswitchProfileArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectExtendercontrollerSimProfileAutoswitchProfile
    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 ObjectExtendercontrollerSimProfileAutoswitchProfileArgs
    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 ObjectExtendercontrollerSimProfileAutoswitchProfileArgs
    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 ObjectExtendercontrollerSimProfileAutoswitchProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectExtendercontrollerSimProfileAutoswitchProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectExtendercontrollerSimProfileAutoswitchProfileArgs
    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 objectExtendercontrollerSimProfileAutoswitchProfileResource = new Fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfile("objectExtendercontrollerSimProfileAutoswitchProfileResource", new()
    {
        SimProfile = "string",
        Scopetype = "string",
        Disconnect = "string",
        DisconnectPeriod = 0,
        DisconnectThreshold = 0,
        ObjectExtendercontrollerSimProfileAutoswitchProfileId = "string",
        Adom = "string",
        Signal = "string",
        Dataplan = "string",
        Status = "string",
        SwitchBackTime = "string",
        SwitchBackTimer = 0,
        SwitchBacks = new[]
        {
            "string",
        },
    });
    
    example, err := fortimanager.NewObjectExtendercontrollerSimProfileAutoswitchProfile(ctx, "objectExtendercontrollerSimProfileAutoswitchProfileResource", &fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfileArgs{
    SimProfile: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Disconnect: pulumi.String("string"),
    DisconnectPeriod: pulumi.Float64(0),
    DisconnectThreshold: pulumi.Float64(0),
    ObjectExtendercontrollerSimProfileAutoswitchProfileId: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Signal: pulumi.String("string"),
    Dataplan: pulumi.String("string"),
    Status: pulumi.String("string"),
    SwitchBackTime: pulumi.String("string"),
    SwitchBackTimer: pulumi.Float64(0),
    SwitchBacks: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var objectExtendercontrollerSimProfileAutoswitchProfileResource = new ObjectExtendercontrollerSimProfileAutoswitchProfile("objectExtendercontrollerSimProfileAutoswitchProfileResource", ObjectExtendercontrollerSimProfileAutoswitchProfileArgs.builder()
        .simProfile("string")
        .scopetype("string")
        .disconnect("string")
        .disconnectPeriod(0)
        .disconnectThreshold(0)
        .objectExtendercontrollerSimProfileAutoswitchProfileId("string")
        .adom("string")
        .signal("string")
        .dataplan("string")
        .status("string")
        .switchBackTime("string")
        .switchBackTimer(0)
        .switchBacks("string")
        .build());
    
    object_extendercontroller_sim_profile_autoswitch_profile_resource = fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfile("objectExtendercontrollerSimProfileAutoswitchProfileResource",
        sim_profile="string",
        scopetype="string",
        disconnect="string",
        disconnect_period=0,
        disconnect_threshold=0,
        object_extendercontroller_sim_profile_autoswitch_profile_id="string",
        adom="string",
        signal="string",
        dataplan="string",
        status="string",
        switch_back_time="string",
        switch_back_timer=0,
        switch_backs=["string"])
    
    const objectExtendercontrollerSimProfileAutoswitchProfileResource = new fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfile("objectExtendercontrollerSimProfileAutoswitchProfileResource", {
        simProfile: "string",
        scopetype: "string",
        disconnect: "string",
        disconnectPeriod: 0,
        disconnectThreshold: 0,
        objectExtendercontrollerSimProfileAutoswitchProfileId: "string",
        adom: "string",
        signal: "string",
        dataplan: "string",
        status: "string",
        switchBackTime: "string",
        switchBackTimer: 0,
        switchBacks: ["string"],
    });
    
    type: fortimanager:ObjectExtendercontrollerSimProfileAutoswitchProfile
    properties:
        adom: string
        dataplan: string
        disconnect: string
        disconnectPeriod: 0
        disconnectThreshold: 0
        objectExtendercontrollerSimProfileAutoswitchProfileId: string
        scopetype: string
        signal: string
        simProfile: string
        status: string
        switchBackTime: string
        switchBackTimer: 0
        switchBacks:
            - string
    

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

    SimProfile string
    Sim Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Dataplan string
    Dataplan. Valid values: disable, enable.
    Disconnect string
    Disconnect. Valid values: disable, enable.
    DisconnectPeriod double
    Disconnect-Period.
    DisconnectThreshold double
    Disconnect-Threshold.
    ObjectExtendercontrollerSimProfileAutoswitchProfileId string
    an identifier for the resource.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Signal string
    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.
    SimProfile string
    Sim Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Dataplan string
    Dataplan. Valid values: disable, enable.
    Disconnect string
    Disconnect. Valid values: disable, enable.
    DisconnectPeriod float64
    Disconnect-Period.
    DisconnectThreshold float64
    Disconnect-Threshold.
    ObjectExtendercontrollerSimProfileAutoswitchProfileId string
    an identifier for the resource.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Signal string
    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.
    simProfile String
    Sim Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan String
    Dataplan. Valid values: disable, enable.
    disconnect String
    Disconnect. Valid values: disable, enable.
    disconnectPeriod Double
    Disconnect-Period.
    disconnectThreshold Double
    Disconnect-Threshold.
    objectExtendercontrollerSimProfileAutoswitchProfileId String
    an identifier for the resource.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signal String
    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.
    simProfile string
    Sim Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan string
    Dataplan. Valid values: disable, enable.
    disconnect string
    Disconnect. Valid values: disable, enable.
    disconnectPeriod number
    Disconnect-Period.
    disconnectThreshold number
    Disconnect-Threshold.
    objectExtendercontrollerSimProfileAutoswitchProfileId string
    an identifier for the resource.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signal string
    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.
    sim_profile str
    Sim Profile.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan str
    Dataplan. Valid values: disable, enable.
    disconnect str
    Disconnect. Valid values: disable, enable.
    disconnect_period float
    Disconnect-Period.
    disconnect_threshold float
    Disconnect-Threshold.
    object_extendercontroller_sim_profile_autoswitch_profile_id str
    an identifier for the resource.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signal str
    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.
    simProfile String
    Sim Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan String
    Dataplan. Valid values: disable, enable.
    disconnect String
    Disconnect. Valid values: disable, enable.
    disconnectPeriod Number
    Disconnect-Period.
    disconnectThreshold Number
    Disconnect-Threshold.
    objectExtendercontrollerSimProfileAutoswitchProfileId String
    an identifier for the resource.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signal String
    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.

    Outputs

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

    Get an existing ObjectExtendercontrollerSimProfileAutoswitchProfile 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?: ObjectExtendercontrollerSimProfileAutoswitchProfileState, opts?: CustomResourceOptions): ObjectExtendercontrollerSimProfileAutoswitchProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            dataplan: Optional[str] = None,
            disconnect: Optional[str] = None,
            disconnect_period: Optional[float] = None,
            disconnect_threshold: Optional[float] = None,
            object_extendercontroller_sim_profile_autoswitch_profile_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            signal: Optional[str] = None,
            sim_profile: Optional[str] = None,
            status: Optional[str] = None,
            switch_back_time: Optional[str] = None,
            switch_back_timer: Optional[float] = None,
            switch_backs: Optional[Sequence[str]] = None) -> ObjectExtendercontrollerSimProfileAutoswitchProfile
    func GetObjectExtendercontrollerSimProfileAutoswitchProfile(ctx *Context, name string, id IDInput, state *ObjectExtendercontrollerSimProfileAutoswitchProfileState, opts ...ResourceOption) (*ObjectExtendercontrollerSimProfileAutoswitchProfile, error)
    public static ObjectExtendercontrollerSimProfileAutoswitchProfile Get(string name, Input<string> id, ObjectExtendercontrollerSimProfileAutoswitchProfileState? state, CustomResourceOptions? opts = null)
    public static ObjectExtendercontrollerSimProfileAutoswitchProfile get(String name, Output<String> id, ObjectExtendercontrollerSimProfileAutoswitchProfileState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectExtendercontrollerSimProfileAutoswitchProfile    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.
    Dataplan string
    Dataplan. Valid values: disable, enable.
    Disconnect string
    Disconnect. Valid values: disable, enable.
    DisconnectPeriod double
    Disconnect-Period.
    DisconnectThreshold double
    Disconnect-Threshold.
    ObjectExtendercontrollerSimProfileAutoswitchProfileId string
    an identifier for the resource.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Signal string
    Signal. Valid values: disable, enable.
    SimProfile string
    Sim Profile.
    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.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Dataplan string
    Dataplan. Valid values: disable, enable.
    Disconnect string
    Disconnect. Valid values: disable, enable.
    DisconnectPeriod float64
    Disconnect-Period.
    DisconnectThreshold float64
    Disconnect-Threshold.
    ObjectExtendercontrollerSimProfileAutoswitchProfileId string
    an identifier for the resource.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Signal string
    Signal. Valid values: disable, enable.
    SimProfile string
    Sim Profile.
    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.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan String
    Dataplan. Valid values: disable, enable.
    disconnect String
    Disconnect. Valid values: disable, enable.
    disconnectPeriod Double
    Disconnect-Period.
    disconnectThreshold Double
    Disconnect-Threshold.
    objectExtendercontrollerSimProfileAutoswitchProfileId String
    an identifier for the resource.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signal String
    Signal. Valid values: disable, enable.
    simProfile String
    Sim Profile.
    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.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan string
    Dataplan. Valid values: disable, enable.
    disconnect string
    Disconnect. Valid values: disable, enable.
    disconnectPeriod number
    Disconnect-Period.
    disconnectThreshold number
    Disconnect-Threshold.
    objectExtendercontrollerSimProfileAutoswitchProfileId string
    an identifier for the resource.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signal string
    Signal. Valid values: disable, enable.
    simProfile string
    Sim Profile.
    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.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan str
    Dataplan. Valid values: disable, enable.
    disconnect str
    Disconnect. Valid values: disable, enable.
    disconnect_period float
    Disconnect-Period.
    disconnect_threshold float
    Disconnect-Threshold.
    object_extendercontroller_sim_profile_autoswitch_profile_id str
    an identifier for the resource.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signal str
    Signal. Valid values: disable, enable.
    sim_profile str
    Sim Profile.
    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.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan String
    Dataplan. Valid values: disable, enable.
    disconnect String
    Disconnect. Valid values: disable, enable.
    disconnectPeriod Number
    Disconnect-Period.
    disconnectThreshold Number
    Disconnect-Threshold.
    objectExtendercontrollerSimProfileAutoswitchProfileId String
    an identifier for the resource.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signal String
    Signal. Valid values: disable, enable.
    simProfile String
    Sim Profile.
    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 SimProfileAutoSwitchProfile can be imported using any of these accepted formats:

    Set import_options = [“sim_profile=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectExtendercontrollerSimProfileAutoswitchProfile:ObjectExtendercontrollerSimProfileAutoswitchProfile labelname ObjectExtenderControllerSimProfileAutoSwitchProfile
    

    $ 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