fortimanager.ObjectExtendercontrollerSimProfileAutoswitchProfile
Explore with Pulumi AI
ObjectExtenderController SimProfileAutoSwitchProfile
This resource is a sub resource for variable
auto_switch_profile
of resourcefortimanager.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:
- Sim
Profile string - Sim Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dataplan string
- Dataplan. Valid values:
disable
,enable
. - Disconnect string
- Disconnect. Valid values:
disable
,enable
. - Disconnect
Period double - Disconnect-Period.
- Disconnect
Threshold double - Disconnect-Threshold.
- Object
Extendercontroller stringSim Profile Autoswitch Profile Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Signal string
- 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
.
- Sim
Profile string - Sim Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dataplan string
- Dataplan. Valid values:
disable
,enable
. - Disconnect string
- Disconnect. Valid values:
disable
,enable
. - Disconnect
Period float64 - Disconnect-Period.
- Disconnect
Threshold float64 - Disconnect-Threshold.
- Object
Extendercontroller stringSim Profile Autoswitch Profile Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Signal string
- 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
.
- sim
Profile String - Sim Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dataplan String
- Dataplan. Valid values:
disable
,enable
. - disconnect String
- Disconnect. Valid values:
disable
,enable
. - disconnect
Period Double - Disconnect-Period.
- disconnect
Threshold Double - Disconnect-Threshold.
- object
Extendercontroller StringSim Profile Autoswitch Profile Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal String
- 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
.
- sim
Profile string - Sim Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dataplan string
- Dataplan. Valid values:
disable
,enable
. - disconnect string
- Disconnect. Valid values:
disable
,enable
. - disconnect
Period number - Disconnect-Period.
- disconnect
Threshold number - Disconnect-Threshold.
- object
Extendercontroller stringSim Profile Autoswitch Profile Id - an identifier for the resource.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal string
- 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
.
- sim_
profile str - Sim Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dataplan str
- Dataplan. Valid values:
disable
,enable
. - disconnect str
- Disconnect. Valid values:
disable
,enable
. - disconnect_
period float - Disconnect-Period.
- disconnect_
threshold float - Disconnect-Threshold.
- object_
extendercontroller_ strsim_ profile_ autoswitch_ profile_ id - an identifier for the resource.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal str
- 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
.
- sim
Profile String - Sim Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dataplan String
- Dataplan. Valid values:
disable
,enable
. - disconnect String
- Disconnect. Valid values:
disable
,enable
. - disconnect
Period Number - Disconnect-Period.
- disconnect
Threshold Number - Disconnect-Threshold.
- object
Extendercontroller StringSim Profile Autoswitch Profile Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal String
- 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
.
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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dataplan string
- Dataplan. Valid values:
disable
,enable
. - Disconnect string
- Disconnect. Valid values:
disable
,enable
. - Disconnect
Period double - Disconnect-Period.
- Disconnect
Threshold double - Disconnect-Threshold.
- Object
Extendercontroller stringSim Profile Autoswitch Profile Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Signal string
- Signal. Valid values:
disable
,enable
. - Sim
Profile string - Sim Profile.
- 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
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dataplan string
- Dataplan. Valid values:
disable
,enable
. - Disconnect string
- Disconnect. Valid values:
disable
,enable
. - Disconnect
Period float64 - Disconnect-Period.
- Disconnect
Threshold float64 - Disconnect-Threshold.
- Object
Extendercontroller stringSim Profile Autoswitch Profile Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Signal string
- Signal. Valid values:
disable
,enable
. - Sim
Profile string - Sim Profile.
- 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dataplan String
- Dataplan. Valid values:
disable
,enable
. - disconnect String
- Disconnect. Valid values:
disable
,enable
. - disconnect
Period Double - Disconnect-Period.
- disconnect
Threshold Double - Disconnect-Threshold.
- object
Extendercontroller StringSim Profile Autoswitch Profile Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal String
- Signal. Valid values:
disable
,enable
. - sim
Profile String - Sim Profile.
- 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
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dataplan string
- Dataplan. Valid values:
disable
,enable
. - disconnect string
- Disconnect. Valid values:
disable
,enable
. - disconnect
Period number - Disconnect-Period.
- disconnect
Threshold number - Disconnect-Threshold.
- object
Extendercontroller stringSim Profile Autoswitch Profile Id - an identifier for the resource.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal string
- Signal. Valid values:
disable
,enable
. - sim
Profile string - Sim Profile.
- 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
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dataplan str
- Dataplan. Valid values:
disable
,enable
. - disconnect str
- Disconnect. Valid values:
disable
,enable
. - disconnect_
period float - Disconnect-Period.
- disconnect_
threshold float - Disconnect-Threshold.
- object_
extendercontroller_ strsim_ profile_ autoswitch_ profile_ id - an identifier for the resource.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal str
- Signal. Valid values:
disable
,enable
. - sim_
profile str - Sim Profile.
- 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dataplan String
- Dataplan. Valid values:
disable
,enable
. - disconnect String
- Disconnect. Valid values:
disable
,enable
. - disconnect
Period Number - Disconnect-Period.
- disconnect
Threshold Number - Disconnect-Threshold.
- object
Extendercontroller StringSim Profile Autoswitch Profile Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal String
- Signal. Valid values:
disable
,enable
. - sim
Profile String - Sim Profile.
- 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 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.