1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. TransportCellularControllerFeature
Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi

sdwan.TransportCellularControllerFeature

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi

    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:

    CellularId string
    Cellular ID
    FeatureProfileId string
    Feature Profile ID
    CellularIdVariable string
    Variable name
    Description string
    The description of the Feature
    FirmwareAutoSim bool
    Enable/Disable Firmware Auto Sim - Default value: true
    FirmwareAutoSimVariable string
    Variable name
    Name string
    The name of the Feature
    PrimarySimSlot int
    Set primary SIM slot - Range: 0-1
    PrimarySimSlotVariable string
    Variable name
    SimFailoverRetries int
    Set SIM failover retries - Range: 0-65535
    SimFailoverRetriesVariable string
    Variable name
    SimFailoverTimeout int
    Set SIM failover timeout in minutes - Range: 3-7
    SimFailoverTimeoutVariable string
    Variable name
    CellularId string
    Cellular ID
    FeatureProfileId string
    Feature Profile ID
    CellularIdVariable string
    Variable name
    Description string
    The description of the Feature
    FirmwareAutoSim bool
    Enable/Disable Firmware Auto Sim - Default value: true
    FirmwareAutoSimVariable string
    Variable name
    Name string
    The name of the Feature
    PrimarySimSlot int
    Set primary SIM slot - Range: 0-1
    PrimarySimSlotVariable string
    Variable name
    SimFailoverRetries int
    Set SIM failover retries - Range: 0-65535
    SimFailoverRetriesVariable string
    Variable name
    SimFailoverTimeout int
    Set SIM failover timeout in minutes - Range: 3-7
    SimFailoverTimeoutVariable string
    Variable name
    cellularId String
    Cellular ID
    featureProfileId String
    Feature Profile ID
    cellularIdVariable String
    Variable name
    description String
    The description of the Feature
    firmwareAutoSim Boolean
    Enable/Disable Firmware Auto Sim - Default value: true
    firmwareAutoSimVariable String
    Variable name
    name String
    The name of the Feature
    primarySimSlot Integer
    Set primary SIM slot - Range: 0-1
    primarySimSlotVariable String
    Variable name
    simFailoverRetries Integer
    Set SIM failover retries - Range: 0-65535
    simFailoverRetriesVariable String
    Variable name
    simFailoverTimeout Integer
    Set SIM failover timeout in minutes - Range: 3-7
    simFailoverTimeoutVariable String
    Variable name
    cellularId string
    Cellular ID
    featureProfileId string
    Feature Profile ID
    cellularIdVariable string
    Variable name
    description string
    The description of the Feature
    firmwareAutoSim boolean
    Enable/Disable Firmware Auto Sim - Default value: true
    firmwareAutoSimVariable string
    Variable name
    name string
    The name of the Feature
    primarySimSlot number
    Set primary SIM slot - Range: 0-1
    primarySimSlotVariable string
    Variable name
    simFailoverRetries number
    Set SIM failover retries - Range: 0-65535
    simFailoverRetriesVariable string
    Variable name
    simFailoverTimeout number
    Set SIM failover timeout in minutes - Range: 3-7
    simFailoverTimeoutVariable string
    Variable name
    cellular_id str
    Cellular ID
    feature_profile_id str
    Feature Profile ID
    cellular_id_variable str
    Variable name
    description str
    The description of the Feature
    firmware_auto_sim bool
    Enable/Disable Firmware Auto Sim - Default value: true
    firmware_auto_sim_variable str
    Variable name
    name str
    The name of the Feature
    primary_sim_slot int
    Set primary SIM slot - Range: 0-1
    primary_sim_slot_variable str
    Variable name
    sim_failover_retries int
    Set SIM failover retries - Range: 0-65535
    sim_failover_retries_variable str
    Variable name
    sim_failover_timeout int
    Set SIM failover timeout in minutes - Range: 3-7
    sim_failover_timeout_variable str
    Variable name
    cellularId String
    Cellular ID
    featureProfileId String
    Feature Profile ID
    cellularIdVariable String
    Variable name
    description String
    The description of the Feature
    firmwareAutoSim Boolean
    Enable/Disable Firmware Auto Sim - Default value: true
    firmwareAutoSimVariable String
    Variable name
    name String
    The name of the Feature
    primarySimSlot Number
    Set primary SIM slot - Range: 0-1
    primarySimSlotVariable String
    Variable name
    simFailoverRetries Number
    Set SIM failover retries - Range: 0-65535
    simFailoverRetriesVariable String
    Variable name
    simFailoverTimeout Number
    Set SIM failover timeout in minutes - Range: 3-7
    simFailoverTimeoutVariable String
    Variable name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TransportCellularControllerFeature resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Integer
    The version of the Feature
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    The version of the Feature
    id str
    The provider-assigned unique ID for this managed resource.
    version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Number
    The version of the Feature

    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.
    The following state arguments are supported:
    CellularId string
    Cellular ID
    CellularIdVariable string
    Variable name
    Description string
    The description of the Feature
    FeatureProfileId string
    Feature Profile ID
    FirmwareAutoSim bool
    Enable/Disable Firmware Auto Sim - Default value: true
    FirmwareAutoSimVariable string
    Variable name
    Name string
    The name of the Feature
    PrimarySimSlot int
    Set primary SIM slot - Range: 0-1
    PrimarySimSlotVariable string
    Variable name
    SimFailoverRetries int
    Set SIM failover retries - Range: 0-65535
    SimFailoverRetriesVariable string
    Variable name
    SimFailoverTimeout int
    Set SIM failover timeout in minutes - Range: 3-7
    SimFailoverTimeoutVariable string
    Variable name
    Version int
    The version of the Feature
    CellularId string
    Cellular ID
    CellularIdVariable string
    Variable name
    Description string
    The description of the Feature
    FeatureProfileId string
    Feature Profile ID
    FirmwareAutoSim bool
    Enable/Disable Firmware Auto Sim - Default value: true
    FirmwareAutoSimVariable string
    Variable name
    Name string
    The name of the Feature
    PrimarySimSlot int
    Set primary SIM slot - Range: 0-1
    PrimarySimSlotVariable string
    Variable name
    SimFailoverRetries int
    Set SIM failover retries - Range: 0-65535
    SimFailoverRetriesVariable string
    Variable name
    SimFailoverTimeout int
    Set SIM failover timeout in minutes - Range: 3-7
    SimFailoverTimeoutVariable string
    Variable name
    Version int
    The version of the Feature
    cellularId String
    Cellular ID
    cellularIdVariable String
    Variable name
    description String
    The description of the Feature
    featureProfileId String
    Feature Profile ID
    firmwareAutoSim Boolean
    Enable/Disable Firmware Auto Sim - Default value: true
    firmwareAutoSimVariable String
    Variable name
    name String
    The name of the Feature
    primarySimSlot Integer
    Set primary SIM slot - Range: 0-1
    primarySimSlotVariable String
    Variable name
    simFailoverRetries Integer
    Set SIM failover retries - Range: 0-65535
    simFailoverRetriesVariable String
    Variable name
    simFailoverTimeout Integer
    Set SIM failover timeout in minutes - Range: 3-7
    simFailoverTimeoutVariable String
    Variable name
    version Integer
    The version of the Feature
    cellularId string
    Cellular ID
    cellularIdVariable string
    Variable name
    description string
    The description of the Feature
    featureProfileId string
    Feature Profile ID
    firmwareAutoSim boolean
    Enable/Disable Firmware Auto Sim - Default value: true
    firmwareAutoSimVariable string
    Variable name
    name string
    The name of the Feature
    primarySimSlot number
    Set primary SIM slot - Range: 0-1
    primarySimSlotVariable string
    Variable name
    simFailoverRetries number
    Set SIM failover retries - Range: 0-65535
    simFailoverRetriesVariable string
    Variable name
    simFailoverTimeout number
    Set SIM failover timeout in minutes - Range: 3-7
    simFailoverTimeoutVariable string
    Variable name
    version number
    The version of the Feature
    cellular_id str
    Cellular ID
    cellular_id_variable str
    Variable name
    description str
    The description of the Feature
    feature_profile_id str
    Feature Profile ID
    firmware_auto_sim bool
    Enable/Disable Firmware Auto Sim - Default value: true
    firmware_auto_sim_variable str
    Variable name
    name str
    The name of the Feature
    primary_sim_slot int
    Set primary SIM slot - Range: 0-1
    primary_sim_slot_variable str
    Variable name
    sim_failover_retries int
    Set SIM failover retries - Range: 0-65535
    sim_failover_retries_variable str
    Variable name
    sim_failover_timeout int
    Set SIM failover timeout in minutes - Range: 3-7
    sim_failover_timeout_variable str
    Variable name
    version int
    The version of the Feature
    cellularId String
    Cellular ID
    cellularIdVariable String
    Variable name
    description String
    The description of the Feature
    featureProfileId String
    Feature Profile ID
    firmwareAutoSim Boolean
    Enable/Disable Firmware Auto Sim - Default value: true
    firmwareAutoSimVariable String
    Variable name
    name String
    The name of the Feature
    primarySimSlot Number
    Set primary SIM slot - Range: 0-1
    primarySimSlotVariable String
    Variable name
    simFailoverRetries Number
    Set SIM failover retries - Range: 0-65535
    simFailoverRetriesVariable String
    Variable name
    simFailoverTimeout Number
    Set SIM failover timeout in minutes - Range: 3-7
    simFailoverTimeoutVariable String
    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.
    sdwan logo
    Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi