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

sdwan.CellularControllerFeatureTemplate

Explore with Pulumi AI

This resource can manage a Cellular Controller feature template.

  • Minimum SD-WAN Manager version: 15.0.0

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.CellularControllerFeatureTemplate;
import com.pulumi.sdwan.CellularControllerFeatureTemplateArgs;
import com.pulumi.sdwan.inputs.CellularControllerFeatureTemplateDataProfileArgs;
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 CellularControllerFeatureTemplate("example", CellularControllerFeatureTemplateArgs.builder()
            .name("Example")
            .description("My Example")
            .deviceTypes("vedge-C8000V")
            .cellularInterfaceId("1")
            .dataProfiles(CellularControllerFeatureTemplateDataProfileArgs.builder()
                .slot_number(1)
                .data_profile(8)
                .attach_profile(8)
                .build())
            .primarySimSlot(100)
            .simFailoverRetries(160)
            .simFailoverTimeout(3)
            .firmwareAutoSim(false)
            .build());

    }
}
Copy
resources:
  example:
    type: sdwan:CellularControllerFeatureTemplate
    properties:
      name: Example
      description: My Example
      deviceTypes:
        - vedge-C8000V
      cellularInterfaceId: '1'
      dataProfiles:
        - slot_number: 1
          data_profile: 8
          attach_profile: 8
      primarySimSlot: 100
      simFailoverRetries: 160
      simFailoverTimeout: 3
      firmwareAutoSim: false
Copy

Create CellularControllerFeatureTemplate Resource

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

Constructor syntax

new CellularControllerFeatureTemplate(name: string, args: CellularControllerFeatureTemplateArgs, opts?: CustomResourceOptions);
@overload
def CellularControllerFeatureTemplate(resource_name: str,
                                      args: CellularControllerFeatureTemplateArgs,
                                      opts: Optional[ResourceOptions] = None)

@overload
def CellularControllerFeatureTemplate(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      description: Optional[str] = None,
                                      device_types: Optional[Sequence[str]] = None,
                                      firmware_auto_sim_variable: Optional[str] = None,
                                      data_profiles: Optional[Sequence[CellularControllerFeatureTemplateDataProfileArgs]] = None,
                                      cellular_interface_id_variable: Optional[str] = None,
                                      firmware_auto_sim: Optional[bool] = None,
                                      cellular_interface_id: 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)
func NewCellularControllerFeatureTemplate(ctx *Context, name string, args CellularControllerFeatureTemplateArgs, opts ...ResourceOption) (*CellularControllerFeatureTemplate, error)
public CellularControllerFeatureTemplate(string name, CellularControllerFeatureTemplateArgs args, CustomResourceOptions? opts = null)
public CellularControllerFeatureTemplate(String name, CellularControllerFeatureTemplateArgs args)
public CellularControllerFeatureTemplate(String name, CellularControllerFeatureTemplateArgs args, CustomResourceOptions options)
type: sdwan:CellularControllerFeatureTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CellularControllerFeatureTemplateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CellularControllerFeatureTemplateArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CellularControllerFeatureTemplateArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CellularControllerFeatureTemplateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CellularControllerFeatureTemplateArgs
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 cellularControllerFeatureTemplateResource = new Sdwan.CellularControllerFeatureTemplate("cellularControllerFeatureTemplateResource", new()
{
    Description = "string",
    DeviceTypes = new[]
    {
        "string",
    },
    FirmwareAutoSimVariable = "string",
    DataProfiles = new[]
    {
        new Sdwan.Inputs.CellularControllerFeatureTemplateDataProfileArgs
        {
            AttachProfile = 0,
            AttachProfileVariable = "string",
            DataProfile = 0,
            DataProfileVariable = "string",
            Optional = false,
            SlotNumber = 0,
            SlotNumberVariable = "string",
        },
    },
    CellularInterfaceIdVariable = "string",
    FirmwareAutoSim = false,
    CellularInterfaceId = "string",
    Name = "string",
    PrimarySimSlot = 0,
    PrimarySimSlotVariable = "string",
    SimFailoverRetries = 0,
    SimFailoverRetriesVariable = "string",
    SimFailoverTimeout = 0,
    SimFailoverTimeoutVariable = "string",
});
Copy
example, err := sdwan.NewCellularControllerFeatureTemplate(ctx, "cellularControllerFeatureTemplateResource", &sdwan.CellularControllerFeatureTemplateArgs{
	Description: pulumi.String("string"),
	DeviceTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	FirmwareAutoSimVariable: pulumi.String("string"),
	DataProfiles: sdwan.CellularControllerFeatureTemplateDataProfileArray{
		&sdwan.CellularControllerFeatureTemplateDataProfileArgs{
			AttachProfile:         pulumi.Int(0),
			AttachProfileVariable: pulumi.String("string"),
			DataProfile:           pulumi.Int(0),
			DataProfileVariable:   pulumi.String("string"),
			Optional:              pulumi.Bool(false),
			SlotNumber:            pulumi.Int(0),
			SlotNumberVariable:    pulumi.String("string"),
		},
	},
	CellularInterfaceIdVariable: pulumi.String("string"),
	FirmwareAutoSim:             pulumi.Bool(false),
	CellularInterfaceId:         pulumi.String("string"),
	Name:                        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"),
})
Copy
var cellularControllerFeatureTemplateResource = new CellularControllerFeatureTemplate("cellularControllerFeatureTemplateResource", CellularControllerFeatureTemplateArgs.builder()
    .description("string")
    .deviceTypes("string")
    .firmwareAutoSimVariable("string")
    .dataProfiles(CellularControllerFeatureTemplateDataProfileArgs.builder()
        .attachProfile(0)
        .attachProfileVariable("string")
        .dataProfile(0)
        .dataProfileVariable("string")
        .optional(false)
        .slotNumber(0)
        .slotNumberVariable("string")
        .build())
    .cellularInterfaceIdVariable("string")
    .firmwareAutoSim(false)
    .cellularInterfaceId("string")
    .name("string")
    .primarySimSlot(0)
    .primarySimSlotVariable("string")
    .simFailoverRetries(0)
    .simFailoverRetriesVariable("string")
    .simFailoverTimeout(0)
    .simFailoverTimeoutVariable("string")
    .build());
Copy
cellular_controller_feature_template_resource = sdwan.CellularControllerFeatureTemplate("cellularControllerFeatureTemplateResource",
    description="string",
    device_types=["string"],
    firmware_auto_sim_variable="string",
    data_profiles=[{
        "attach_profile": 0,
        "attach_profile_variable": "string",
        "data_profile": 0,
        "data_profile_variable": "string",
        "optional": False,
        "slot_number": 0,
        "slot_number_variable": "string",
    }],
    cellular_interface_id_variable="string",
    firmware_auto_sim=False,
    cellular_interface_id="string",
    name="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")
Copy
const cellularControllerFeatureTemplateResource = new sdwan.CellularControllerFeatureTemplate("cellularControllerFeatureTemplateResource", {
    description: "string",
    deviceTypes: ["string"],
    firmwareAutoSimVariable: "string",
    dataProfiles: [{
        attachProfile: 0,
        attachProfileVariable: "string",
        dataProfile: 0,
        dataProfileVariable: "string",
        optional: false,
        slotNumber: 0,
        slotNumberVariable: "string",
    }],
    cellularInterfaceIdVariable: "string",
    firmwareAutoSim: false,
    cellularInterfaceId: "string",
    name: "string",
    primarySimSlot: 0,
    primarySimSlotVariable: "string",
    simFailoverRetries: 0,
    simFailoverRetriesVariable: "string",
    simFailoverTimeout: 0,
    simFailoverTimeoutVariable: "string",
});
Copy
type: sdwan:CellularControllerFeatureTemplate
properties:
    cellularInterfaceId: string
    cellularInterfaceIdVariable: string
    dataProfiles:
        - attachProfile: 0
          attachProfileVariable: string
          dataProfile: 0
          dataProfileVariable: string
          optional: false
          slotNumber: 0
          slotNumberVariable: string
    description: string
    deviceTypes:
        - string
    firmwareAutoSim: false
    firmwareAutoSimVariable: string
    name: string
    primarySimSlot: 0
    primarySimSlotVariable: string
    simFailoverRetries: 0
    simFailoverRetriesVariable: string
    simFailoverTimeout: 0
    simFailoverTimeoutVariable: string
Copy

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

Description This property is required. string
The description of the feature template
DeviceTypes This property is required. List<string>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
CellularInterfaceId string
Cellular interface name
CellularInterfaceIdVariable string
Variable name
DataProfiles List<CellularControllerFeatureTemplateDataProfile>
Data Profile List
FirmwareAutoSim bool
Enable/Disable Firmware Auto Sim - Default value: true
FirmwareAutoSimVariable string
Variable name
Name string
The name of the feature template
PrimarySimSlot int
Set primary SIM slot - Range: 0-255
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
Description This property is required. string
The description of the feature template
DeviceTypes This property is required. []string
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
CellularInterfaceId string
Cellular interface name
CellularInterfaceIdVariable string
Variable name
DataProfiles []CellularControllerFeatureTemplateDataProfileArgs
Data Profile List
FirmwareAutoSim bool
Enable/Disable Firmware Auto Sim - Default value: true
FirmwareAutoSimVariable string
Variable name
Name string
The name of the feature template
PrimarySimSlot int
Set primary SIM slot - Range: 0-255
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
description This property is required. String
The description of the feature template
deviceTypes This property is required. List<String>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
cellularInterfaceId String
Cellular interface name
cellularInterfaceIdVariable String
Variable name
dataProfiles List<CellularControllerFeatureTemplateDataProfile>
Data Profile List
firmwareAutoSim Boolean
Enable/Disable Firmware Auto Sim - Default value: true
firmwareAutoSimVariable String
Variable name
name String
The name of the feature template
primarySimSlot Integer
Set primary SIM slot - Range: 0-255
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
description This property is required. string
The description of the feature template
deviceTypes This property is required. string[]
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
cellularInterfaceId string
Cellular interface name
cellularInterfaceIdVariable string
Variable name
dataProfiles CellularControllerFeatureTemplateDataProfile[]
Data Profile List
firmwareAutoSim boolean
Enable/Disable Firmware Auto Sim - Default value: true
firmwareAutoSimVariable string
Variable name
name string
The name of the feature template
primarySimSlot number
Set primary SIM slot - Range: 0-255
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
description This property is required. str
The description of the feature template
device_types This property is required. Sequence[str]
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
cellular_interface_id str
Cellular interface name
cellular_interface_id_variable str
Variable name
data_profiles Sequence[CellularControllerFeatureTemplateDataProfileArgs]
Data Profile List
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 template
primary_sim_slot int
Set primary SIM slot - Range: 0-255
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
description This property is required. String
The description of the feature template
deviceTypes This property is required. List<String>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
cellularInterfaceId String
Cellular interface name
cellularInterfaceIdVariable String
Variable name
dataProfiles List<Property Map>
Data Profile List
firmwareAutoSim Boolean
Enable/Disable Firmware Auto Sim - Default value: true
firmwareAutoSimVariable String
Variable name
name String
The name of the feature template
primarySimSlot Number
Set primary SIM slot - Range: 0-255
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 CellularControllerFeatureTemplate resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
TemplateType string
The template type
Version int
The version of the feature template
Id string
The provider-assigned unique ID for this managed resource.
TemplateType string
The template type
Version int
The version of the feature template
id String
The provider-assigned unique ID for this managed resource.
templateType String
The template type
version Integer
The version of the feature template
id string
The provider-assigned unique ID for this managed resource.
templateType string
The template type
version number
The version of the feature template
id str
The provider-assigned unique ID for this managed resource.
template_type str
The template type
version int
The version of the feature template
id String
The provider-assigned unique ID for this managed resource.
templateType String
The template type
version Number
The version of the feature template

Look up Existing CellularControllerFeatureTemplate Resource

Get an existing CellularControllerFeatureTemplate 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?: CellularControllerFeatureTemplateState, opts?: CustomResourceOptions): CellularControllerFeatureTemplate
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cellular_interface_id: Optional[str] = None,
        cellular_interface_id_variable: Optional[str] = None,
        data_profiles: Optional[Sequence[CellularControllerFeatureTemplateDataProfileArgs]] = None,
        description: Optional[str] = None,
        device_types: Optional[Sequence[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,
        template_type: Optional[str] = None,
        version: Optional[int] = None) -> CellularControllerFeatureTemplate
func GetCellularControllerFeatureTemplate(ctx *Context, name string, id IDInput, state *CellularControllerFeatureTemplateState, opts ...ResourceOption) (*CellularControllerFeatureTemplate, error)
public static CellularControllerFeatureTemplate Get(string name, Input<string> id, CellularControllerFeatureTemplateState? state, CustomResourceOptions? opts = null)
public static CellularControllerFeatureTemplate get(String name, Output<String> id, CellularControllerFeatureTemplateState state, CustomResourceOptions options)
resources:  _:    type: sdwan:CellularControllerFeatureTemplate    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
CellularInterfaceId string
Cellular interface name
CellularInterfaceIdVariable string
Variable name
DataProfiles List<CellularControllerFeatureTemplateDataProfile>
Data Profile List
Description string
The description of the feature template
DeviceTypes List<string>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
FirmwareAutoSim bool
Enable/Disable Firmware Auto Sim - Default value: true
FirmwareAutoSimVariable string
Variable name
Name string
The name of the feature template
PrimarySimSlot int
Set primary SIM slot - Range: 0-255
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
TemplateType string
The template type
Version int
The version of the feature template
CellularInterfaceId string
Cellular interface name
CellularInterfaceIdVariable string
Variable name
DataProfiles []CellularControllerFeatureTemplateDataProfileArgs
Data Profile List
Description string
The description of the feature template
DeviceTypes []string
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
FirmwareAutoSim bool
Enable/Disable Firmware Auto Sim - Default value: true
FirmwareAutoSimVariable string
Variable name
Name string
The name of the feature template
PrimarySimSlot int
Set primary SIM slot - Range: 0-255
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
TemplateType string
The template type
Version int
The version of the feature template
cellularInterfaceId String
Cellular interface name
cellularInterfaceIdVariable String
Variable name
dataProfiles List<CellularControllerFeatureTemplateDataProfile>
Data Profile List
description String
The description of the feature template
deviceTypes List<String>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
firmwareAutoSim Boolean
Enable/Disable Firmware Auto Sim - Default value: true
firmwareAutoSimVariable String
Variable name
name String
The name of the feature template
primarySimSlot Integer
Set primary SIM slot - Range: 0-255
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
templateType String
The template type
version Integer
The version of the feature template
cellularInterfaceId string
Cellular interface name
cellularInterfaceIdVariable string
Variable name
dataProfiles CellularControllerFeatureTemplateDataProfile[]
Data Profile List
description string
The description of the feature template
deviceTypes string[]
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
firmwareAutoSim boolean
Enable/Disable Firmware Auto Sim - Default value: true
firmwareAutoSimVariable string
Variable name
name string
The name of the feature template
primarySimSlot number
Set primary SIM slot - Range: 0-255
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
templateType string
The template type
version number
The version of the feature template
cellular_interface_id str
Cellular interface name
cellular_interface_id_variable str
Variable name
data_profiles Sequence[CellularControllerFeatureTemplateDataProfileArgs]
Data Profile List
description str
The description of the feature template
device_types Sequence[str]
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
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 template
primary_sim_slot int
Set primary SIM slot - Range: 0-255
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
template_type str
The template type
version int
The version of the feature template
cellularInterfaceId String
Cellular interface name
cellularInterfaceIdVariable String
Variable name
dataProfiles List<Property Map>
Data Profile List
description String
The description of the feature template
deviceTypes List<String>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
firmwareAutoSim Boolean
Enable/Disable Firmware Auto Sim - Default value: true
firmwareAutoSimVariable String
Variable name
name String
The name of the feature template
primarySimSlot Number
Set primary SIM slot - Range: 0-255
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
templateType String
The template type
version Number
The version of the feature template

Supporting Types

CellularControllerFeatureTemplateDataProfile
, CellularControllerFeatureTemplateDataProfileArgs

AttachProfile int
Set attach profile

  • Range: 1-16
AttachProfileVariable string
Variable name
DataProfile int
Set data profile

  • Range: 1-16
DataProfileVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
SlotNumber int
Set slot number

  • Range: 0-1
SlotNumberVariable string
Variable name
AttachProfile int
Set attach profile

  • Range: 1-16
AttachProfileVariable string
Variable name
DataProfile int
Set data profile

  • Range: 1-16
DataProfileVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
SlotNumber int
Set slot number

  • Range: 0-1
SlotNumberVariable string
Variable name
attachProfile Integer
Set attach profile

  • Range: 1-16
attachProfileVariable String
Variable name
dataProfile Integer
Set data profile

  • Range: 1-16
dataProfileVariable String
Variable name
optional Boolean
Indicates if list item is considered optional.
slotNumber Integer
Set slot number

  • Range: 0-1
slotNumberVariable String
Variable name
attachProfile number
Set attach profile

  • Range: 1-16
attachProfileVariable string
Variable name
dataProfile number
Set data profile

  • Range: 1-16
dataProfileVariable string
Variable name
optional boolean
Indicates if list item is considered optional.
slotNumber number
Set slot number

  • Range: 0-1
slotNumberVariable string
Variable name
attach_profile int
Set attach profile

  • Range: 1-16
attach_profile_variable str
Variable name
data_profile int
Set data profile

  • Range: 1-16
data_profile_variable str
Variable name
optional bool
Indicates if list item is considered optional.
slot_number int
Set slot number

  • Range: 0-1
slot_number_variable str
Variable name
attachProfile Number
Set attach profile

  • Range: 1-16
attachProfileVariable String
Variable name
dataProfile Number
Set data profile

  • Range: 1-16
dataProfileVariable String
Variable name
optional Boolean
Indicates if list item is considered optional.
slotNumber Number
Set slot number

  • Range: 0-1
slotNumberVariable String
Variable name

Import

$ pulumi import sdwan:index/cellularControllerFeatureTemplate:CellularControllerFeatureTemplate example "f6b2c44c-693c-4763-b010-895aa3d236bd"
Copy

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.