sdwan.TransportCellularControllerFeature
Explore with Pulumi AI
This resource can manage a Transport Cellular Controller Feature.
- Minimum SD-WAN Manager version:
20.12.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.TransportCellularControllerFeature("example", {
name: "Example",
description: "My Example",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
cellularId: "0/3/0",
primarySimSlot: 0,
simFailoverRetries: 5,
simFailoverTimeout: 3,
firmwareAutoSim: true,
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.TransportCellularControllerFeature("example",
name="Example",
description="My Example",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
cellular_id="0/3/0",
primary_sim_slot=0,
sim_failover_retries=5,
sim_failover_timeout=3,
firmware_auto_sim=True)
package main
import (
"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sdwan.NewTransportCellularControllerFeature(ctx, "example", &sdwan.TransportCellularControllerFeatureArgs{
Name: pulumi.String("Example"),
Description: pulumi.String("My Example"),
FeatureProfileId: pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
CellularId: pulumi.String("0/3/0"),
PrimarySimSlot: pulumi.Int(0),
SimFailoverRetries: pulumi.Int(5),
SimFailoverTimeout: pulumi.Int(3),
FirmwareAutoSim: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() =>
{
var example = new Sdwan.TransportCellularControllerFeature("example", new()
{
Name = "Example",
Description = "My Example",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
CellularId = "0/3/0",
PrimarySimSlot = 0,
SimFailoverRetries = 5,
SimFailoverTimeout = 3,
FirmwareAutoSim = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.TransportCellularControllerFeature;
import com.pulumi.sdwan.TransportCellularControllerFeatureArgs;
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 example = new TransportCellularControllerFeature("example", TransportCellularControllerFeatureArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.cellularId("0/3/0")
.primarySimSlot(0)
.simFailoverRetries(5)
.simFailoverTimeout(3)
.firmwareAutoSim(true)
.build());
}
}
resources:
example:
type: sdwan:TransportCellularControllerFeature
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
cellularId: 0/3/0
primarySimSlot: 0
simFailoverRetries: 5
simFailoverTimeout: 3
firmwareAutoSim: true
Create TransportCellularControllerFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TransportCellularControllerFeature(name: string, args: TransportCellularControllerFeatureArgs, opts?: CustomResourceOptions);
@overload
def TransportCellularControllerFeature(resource_name: str,
args: TransportCellularControllerFeatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TransportCellularControllerFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
cellular_id: Optional[str] = None,
name: Optional[str] = None,
description: Optional[str] = None,
firmware_auto_sim: Optional[bool] = None,
firmware_auto_sim_variable: Optional[str] = None,
cellular_id_variable: Optional[str] = None,
primary_sim_slot: Optional[int] = None,
primary_sim_slot_variable: Optional[str] = None,
sim_failover_retries: Optional[int] = None,
sim_failover_retries_variable: Optional[str] = None,
sim_failover_timeout: Optional[int] = None,
sim_failover_timeout_variable: Optional[str] = None)
func NewTransportCellularControllerFeature(ctx *Context, name string, args TransportCellularControllerFeatureArgs, opts ...ResourceOption) (*TransportCellularControllerFeature, error)
public TransportCellularControllerFeature(string name, TransportCellularControllerFeatureArgs args, CustomResourceOptions? opts = null)
public TransportCellularControllerFeature(String name, TransportCellularControllerFeatureArgs args)
public TransportCellularControllerFeature(String name, TransportCellularControllerFeatureArgs args, CustomResourceOptions options)
type: sdwan:TransportCellularControllerFeature
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 TransportCellularControllerFeatureArgs
- 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 TransportCellularControllerFeatureArgs
- 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 TransportCellularControllerFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TransportCellularControllerFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TransportCellularControllerFeatureArgs
- 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 transportCellularControllerFeatureResource = new Sdwan.TransportCellularControllerFeature("transportCellularControllerFeatureResource", new()
{
FeatureProfileId = "string",
CellularId = "string",
Name = "string",
Description = "string",
FirmwareAutoSim = false,
FirmwareAutoSimVariable = "string",
CellularIdVariable = "string",
PrimarySimSlot = 0,
PrimarySimSlotVariable = "string",
SimFailoverRetries = 0,
SimFailoverRetriesVariable = "string",
SimFailoverTimeout = 0,
SimFailoverTimeoutVariable = "string",
});
example, err := sdwan.NewTransportCellularControllerFeature(ctx, "transportCellularControllerFeatureResource", &sdwan.TransportCellularControllerFeatureArgs{
FeatureProfileId: pulumi.String("string"),
CellularId: pulumi.String("string"),
Name: pulumi.String("string"),
Description: pulumi.String("string"),
FirmwareAutoSim: pulumi.Bool(false),
FirmwareAutoSimVariable: pulumi.String("string"),
CellularIdVariable: pulumi.String("string"),
PrimarySimSlot: pulumi.Int(0),
PrimarySimSlotVariable: pulumi.String("string"),
SimFailoverRetries: pulumi.Int(0),
SimFailoverRetriesVariable: pulumi.String("string"),
SimFailoverTimeout: pulumi.Int(0),
SimFailoverTimeoutVariable: pulumi.String("string"),
})
var transportCellularControllerFeatureResource = new TransportCellularControllerFeature("transportCellularControllerFeatureResource", TransportCellularControllerFeatureArgs.builder()
.featureProfileId("string")
.cellularId("string")
.name("string")
.description("string")
.firmwareAutoSim(false)
.firmwareAutoSimVariable("string")
.cellularIdVariable("string")
.primarySimSlot(0)
.primarySimSlotVariable("string")
.simFailoverRetries(0)
.simFailoverRetriesVariable("string")
.simFailoverTimeout(0)
.simFailoverTimeoutVariable("string")
.build());
transport_cellular_controller_feature_resource = sdwan.TransportCellularControllerFeature("transportCellularControllerFeatureResource",
feature_profile_id="string",
cellular_id="string",
name="string",
description="string",
firmware_auto_sim=False,
firmware_auto_sim_variable="string",
cellular_id_variable="string",
primary_sim_slot=0,
primary_sim_slot_variable="string",
sim_failover_retries=0,
sim_failover_retries_variable="string",
sim_failover_timeout=0,
sim_failover_timeout_variable="string")
const transportCellularControllerFeatureResource = new sdwan.TransportCellularControllerFeature("transportCellularControllerFeatureResource", {
featureProfileId: "string",
cellularId: "string",
name: "string",
description: "string",
firmwareAutoSim: false,
firmwareAutoSimVariable: "string",
cellularIdVariable: "string",
primarySimSlot: 0,
primarySimSlotVariable: "string",
simFailoverRetries: 0,
simFailoverRetriesVariable: "string",
simFailoverTimeout: 0,
simFailoverTimeoutVariable: "string",
});
type: sdwan:TransportCellularControllerFeature
properties:
cellularId: string
cellularIdVariable: string
description: string
featureProfileId: string
firmwareAutoSim: false
firmwareAutoSimVariable: string
name: string
primarySimSlot: 0
primarySimSlotVariable: string
simFailoverRetries: 0
simFailoverRetriesVariable: string
simFailoverTimeout: 0
simFailoverTimeoutVariable: string
TransportCellularControllerFeature 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 TransportCellularControllerFeature resource accepts the following input properties:
- Cellular
Id string - Cellular ID
- Feature
Profile stringId - Feature Profile ID
- Cellular
Id stringVariable - Variable name
- Description string
- The description of the Feature
- Firmware
Auto boolSim - Enable/Disable Firmware Auto Sim - Default value:
true
- Firmware
Auto stringSim Variable - Variable name
- Name string
- The name of the Feature
- Primary
Sim intSlot - Set primary SIM slot - Range:
0
-1
- Primary
Sim stringSlot Variable - Variable name
- Sim
Failover intRetries - Set SIM failover retries - Range:
0
-65535
- Sim
Failover stringRetries Variable - Variable name
- Sim
Failover intTimeout - Set SIM failover timeout in minutes - Range:
3
-7
- Sim
Failover stringTimeout Variable - Variable name
- Cellular
Id string - Cellular ID
- Feature
Profile stringId - Feature Profile ID
- Cellular
Id stringVariable - Variable name
- Description string
- The description of the Feature
- Firmware
Auto boolSim - Enable/Disable Firmware Auto Sim - Default value:
true
- Firmware
Auto stringSim Variable - Variable name
- Name string
- The name of the Feature
- Primary
Sim intSlot - Set primary SIM slot - Range:
0
-1
- Primary
Sim stringSlot Variable - Variable name
- Sim
Failover intRetries - Set SIM failover retries - Range:
0
-65535
- Sim
Failover stringRetries Variable - Variable name
- Sim
Failover intTimeout - Set SIM failover timeout in minutes - Range:
3
-7
- Sim
Failover stringTimeout Variable - Variable name
- cellular
Id String - Cellular ID
- feature
Profile StringId - Feature Profile ID
- cellular
Id StringVariable - Variable name
- description String
- The description of the Feature
- firmware
Auto BooleanSim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware
Auto StringSim Variable - Variable name
- name String
- The name of the Feature
- primary
Sim IntegerSlot - Set primary SIM slot - Range:
0
-1
- primary
Sim StringSlot Variable - Variable name
- sim
Failover IntegerRetries - Set SIM failover retries - Range:
0
-65535
- sim
Failover StringRetries Variable - Variable name
- sim
Failover IntegerTimeout - Set SIM failover timeout in minutes - Range:
3
-7
- sim
Failover StringTimeout Variable - Variable name
- cellular
Id string - Cellular ID
- feature
Profile stringId - Feature Profile ID
- cellular
Id stringVariable - Variable name
- description string
- The description of the Feature
- firmware
Auto booleanSim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware
Auto stringSim Variable - Variable name
- name string
- The name of the Feature
- primary
Sim numberSlot - Set primary SIM slot - Range:
0
-1
- primary
Sim stringSlot Variable - Variable name
- sim
Failover numberRetries - Set SIM failover retries - Range:
0
-65535
- sim
Failover stringRetries Variable - Variable name
- sim
Failover numberTimeout - Set SIM failover timeout in minutes - Range:
3
-7
- sim
Failover stringTimeout Variable - Variable name
- cellular_
id str - Cellular ID
- feature_
profile_ strid - Feature Profile ID
- cellular_
id_ strvariable - Variable name
- description str
- The description of the Feature
- firmware_
auto_ boolsim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware_
auto_ strsim_ variable - Variable name
- name str
- The name of the Feature
- primary_
sim_ intslot - Set primary SIM slot - Range:
0
-1
- primary_
sim_ strslot_ variable - Variable name
- sim_
failover_ intretries - Set SIM failover retries - Range:
0
-65535
- sim_
failover_ strretries_ variable - Variable name
- sim_
failover_ inttimeout - Set SIM failover timeout in minutes - Range:
3
-7
- sim_
failover_ strtimeout_ variable - Variable name
- cellular
Id String - Cellular ID
- feature
Profile StringId - Feature Profile ID
- cellular
Id StringVariable - Variable name
- description String
- The description of the Feature
- firmware
Auto BooleanSim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware
Auto StringSim Variable - Variable name
- name String
- The name of the Feature
- primary
Sim NumberSlot - Set primary SIM slot - Range:
0
-1
- primary
Sim StringSlot Variable - Variable name
- sim
Failover NumberRetries - Set SIM failover retries - Range:
0
-65535
- sim
Failover StringRetries Variable - Variable name
- sim
Failover NumberTimeout - Set SIM failover timeout in minutes - Range:
3
-7
- sim
Failover StringTimeout Variable - Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the TransportCellularControllerFeature resource produces the following output properties:
Look up Existing TransportCellularControllerFeature Resource
Get an existing TransportCellularControllerFeature 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?: TransportCellularControllerFeatureState, opts?: CustomResourceOptions): TransportCellularControllerFeature
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cellular_id: Optional[str] = None,
cellular_id_variable: Optional[str] = None,
description: Optional[str] = None,
feature_profile_id: Optional[str] = None,
firmware_auto_sim: Optional[bool] = None,
firmware_auto_sim_variable: Optional[str] = None,
name: Optional[str] = None,
primary_sim_slot: Optional[int] = None,
primary_sim_slot_variable: Optional[str] = None,
sim_failover_retries: Optional[int] = None,
sim_failover_retries_variable: Optional[str] = None,
sim_failover_timeout: Optional[int] = None,
sim_failover_timeout_variable: Optional[str] = None,
version: Optional[int] = None) -> TransportCellularControllerFeature
func GetTransportCellularControllerFeature(ctx *Context, name string, id IDInput, state *TransportCellularControllerFeatureState, opts ...ResourceOption) (*TransportCellularControllerFeature, error)
public static TransportCellularControllerFeature Get(string name, Input<string> id, TransportCellularControllerFeatureState? state, CustomResourceOptions? opts = null)
public static TransportCellularControllerFeature get(String name, Output<String> id, TransportCellularControllerFeatureState state, CustomResourceOptions options)
resources: _: type: sdwan:TransportCellularControllerFeature 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.
- Cellular
Id string - Cellular ID
- Cellular
Id stringVariable - Variable name
- Description string
- The description of the Feature
- Feature
Profile stringId - Feature Profile ID
- Firmware
Auto boolSim - Enable/Disable Firmware Auto Sim - Default value:
true
- Firmware
Auto stringSim Variable - Variable name
- Name string
- The name of the Feature
- Primary
Sim intSlot - Set primary SIM slot - Range:
0
-1
- Primary
Sim stringSlot Variable - Variable name
- Sim
Failover intRetries - Set SIM failover retries - Range:
0
-65535
- Sim
Failover stringRetries Variable - Variable name
- Sim
Failover intTimeout - Set SIM failover timeout in minutes - Range:
3
-7
- Sim
Failover stringTimeout Variable - Variable name
- Version int
- The version of the Feature
- Cellular
Id string - Cellular ID
- Cellular
Id stringVariable - Variable name
- Description string
- The description of the Feature
- Feature
Profile stringId - Feature Profile ID
- Firmware
Auto boolSim - Enable/Disable Firmware Auto Sim - Default value:
true
- Firmware
Auto stringSim Variable - Variable name
- Name string
- The name of the Feature
- Primary
Sim intSlot - Set primary SIM slot - Range:
0
-1
- Primary
Sim stringSlot Variable - Variable name
- Sim
Failover intRetries - Set SIM failover retries - Range:
0
-65535
- Sim
Failover stringRetries Variable - Variable name
- Sim
Failover intTimeout - Set SIM failover timeout in minutes - Range:
3
-7
- Sim
Failover stringTimeout Variable - Variable name
- Version int
- The version of the Feature
- cellular
Id String - Cellular ID
- cellular
Id StringVariable - Variable name
- description String
- The description of the Feature
- feature
Profile StringId - Feature Profile ID
- firmware
Auto BooleanSim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware
Auto StringSim Variable - Variable name
- name String
- The name of the Feature
- primary
Sim IntegerSlot - Set primary SIM slot - Range:
0
-1
- primary
Sim StringSlot Variable - Variable name
- sim
Failover IntegerRetries - Set SIM failover retries - Range:
0
-65535
- sim
Failover StringRetries Variable - Variable name
- sim
Failover IntegerTimeout - Set SIM failover timeout in minutes - Range:
3
-7
- sim
Failover StringTimeout Variable - Variable name
- version Integer
- The version of the Feature
- cellular
Id string - Cellular ID
- cellular
Id stringVariable - Variable name
- description string
- The description of the Feature
- feature
Profile stringId - Feature Profile ID
- firmware
Auto booleanSim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware
Auto stringSim Variable - Variable name
- name string
- The name of the Feature
- primary
Sim numberSlot - Set primary SIM slot - Range:
0
-1
- primary
Sim stringSlot Variable - Variable name
- sim
Failover numberRetries - Set SIM failover retries - Range:
0
-65535
- sim
Failover stringRetries Variable - Variable name
- sim
Failover numberTimeout - Set SIM failover timeout in minutes - Range:
3
-7
- sim
Failover stringTimeout Variable - Variable name
- version number
- The version of the Feature
- cellular_
id str - Cellular ID
- cellular_
id_ strvariable - Variable name
- description str
- The description of the Feature
- feature_
profile_ strid - Feature Profile ID
- firmware_
auto_ boolsim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware_
auto_ strsim_ variable - Variable name
- name str
- The name of the Feature
- primary_
sim_ intslot - Set primary SIM slot - Range:
0
-1
- primary_
sim_ strslot_ variable - Variable name
- sim_
failover_ intretries - Set SIM failover retries - Range:
0
-65535
- sim_
failover_ strretries_ variable - Variable name
- sim_
failover_ inttimeout - Set SIM failover timeout in minutes - Range:
3
-7
- sim_
failover_ strtimeout_ variable - Variable name
- version int
- The version of the Feature
- cellular
Id String - Cellular ID
- cellular
Id StringVariable - Variable name
- description String
- The description of the Feature
- feature
Profile StringId - Feature Profile ID
- firmware
Auto BooleanSim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware
Auto StringSim Variable - Variable name
- name String
- The name of the Feature
- primary
Sim NumberSlot - Set primary SIM slot - Range:
0
-1
- primary
Sim StringSlot Variable - Variable name
- sim
Failover NumberRetries - Set SIM failover retries - Range:
0
-65535
- sim
Failover StringRetries Variable - Variable name
- sim
Failover NumberTimeout - Set SIM failover timeout in minutes - Range:
3
-7
- sim
Failover StringTimeout Variable - Variable name
- version Number
- The version of the Feature
Import
Expected import identifier with the format: “transport_cellular_controller_feature_id,feature_profile_id”
$ pulumi import sdwan:index/transportCellularControllerFeature:TransportCellularControllerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.