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());
}
}
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
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 string
- The unique name of the resource.
- args CellularControllerFeatureTemplateArgs
- 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 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 string
- The unique name of the resource.
- args CellularControllerFeatureTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CellularControllerFeatureTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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 string
- The description of the feature template
- Device
Types 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
- Cellular
Interface stringId - Cellular interface name
- Cellular
Interface stringId Variable - Variable name
- Data
Profiles List<CellularController Feature Template Data Profile> - Data Profile List
- Firmware
Auto boolSim - Enable/Disable Firmware Auto Sim - Default value:
true
- Firmware
Auto stringSim Variable - Variable name
- Name string
- The name of the feature template
- Primary
Sim intSlot - Set primary SIM slot - Range:
0
-255
- 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
- Description string
- The description of the feature template
- Device
Types []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
- Cellular
Interface stringId - Cellular interface name
- Cellular
Interface stringId Variable - Variable name
- Data
Profiles []CellularController Feature Template Data Profile Args - Data Profile List
- Firmware
Auto boolSim - Enable/Disable Firmware Auto Sim - Default value:
true
- Firmware
Auto stringSim Variable - Variable name
- Name string
- The name of the feature template
- Primary
Sim intSlot - Set primary SIM slot - Range:
0
-255
- 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
- description String
- The description of the feature template
- device
Types 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
- cellular
Interface StringId - Cellular interface name
- cellular
Interface StringId Variable - Variable name
- data
Profiles List<CellularController Feature Template Data Profile> - Data Profile List
- firmware
Auto BooleanSim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware
Auto StringSim Variable - Variable name
- name String
- The name of the feature template
- primary
Sim IntegerSlot - Set primary SIM slot - Range:
0
-255
- 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
- description string
- The description of the feature template
- device
Types 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
- cellular
Interface stringId - Cellular interface name
- cellular
Interface stringId Variable - Variable name
- data
Profiles CellularController Feature Template Data Profile[] - Data Profile List
- firmware
Auto booleanSim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware
Auto stringSim Variable - Variable name
- name string
- The name of the feature template
- primary
Sim numberSlot - Set primary SIM slot - Range:
0
-255
- 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
- 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
- cellular_
interface_ strid - Cellular interface name
- cellular_
interface_ strid_ variable - Variable name
- data_
profiles Sequence[CellularController Feature Template Data Profile Args] - Data Profile List
- firmware_
auto_ boolsim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware_
auto_ strsim_ variable - Variable name
- name str
- The name of the feature template
- primary_
sim_ intslot - Set primary SIM slot - Range:
0
-255
- 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
- description String
- The description of the feature template
- device
Types 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
- cellular
Interface StringId - Cellular interface name
- cellular
Interface StringId Variable - Variable name
- data
Profiles List<Property Map> - Data Profile List
- firmware
Auto BooleanSim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware
Auto StringSim Variable - Variable name
- name String
- The name of the feature template
- primary
Sim NumberSlot - Set primary SIM slot - Range:
0
-255
- 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 CellularControllerFeatureTemplate resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Template
Type string - The template type
- Version int
- The version of the feature template
- Id string
- The provider-assigned unique ID for this managed resource.
- Template
Type string - The template type
- Version int
- The version of the feature template
- id String
- The provider-assigned unique ID for this managed resource.
- template
Type String - The template type
- version Integer
- The version of the feature template
- id string
- The provider-assigned unique ID for this managed resource.
- template
Type 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.
- template
Type 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)
Resource lookup is not supported in YAML
- 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
Interface stringId - Cellular interface name
- Cellular
Interface stringId Variable - Variable name
- Data
Profiles List<CellularController Feature Template Data Profile> - Data Profile List
- Description string
- The description of the feature template
- Device
Types 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
- Firmware
Auto boolSim - Enable/Disable Firmware Auto Sim - Default value:
true
- Firmware
Auto stringSim Variable - Variable name
- Name string
- The name of the feature template
- Primary
Sim intSlot - Set primary SIM slot - Range:
0
-255
- 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
- Template
Type string - The template type
- Version int
- The version of the feature template
- Cellular
Interface stringId - Cellular interface name
- Cellular
Interface stringId Variable - Variable name
- Data
Profiles []CellularController Feature Template Data Profile Args - Data Profile List
- Description string
- The description of the feature template
- Device
Types []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
- Firmware
Auto boolSim - Enable/Disable Firmware Auto Sim - Default value:
true
- Firmware
Auto stringSim Variable - Variable name
- Name string
- The name of the feature template
- Primary
Sim intSlot - Set primary SIM slot - Range:
0
-255
- 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
- Template
Type string - The template type
- Version int
- The version of the feature template
- cellular
Interface StringId - Cellular interface name
- cellular
Interface StringId Variable - Variable name
- data
Profiles List<CellularController Feature Template Data Profile> - Data Profile List
- description String
- The description of the feature template
- device
Types 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
- firmware
Auto BooleanSim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware
Auto StringSim Variable - Variable name
- name String
- The name of the feature template
- primary
Sim IntegerSlot - Set primary SIM slot - Range:
0
-255
- 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
- template
Type String - The template type
- version Integer
- The version of the feature template
- cellular
Interface stringId - Cellular interface name
- cellular
Interface stringId Variable - Variable name
- data
Profiles CellularController Feature Template Data Profile[] - Data Profile List
- description string
- The description of the feature template
- device
Types 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
- firmware
Auto booleanSim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware
Auto stringSim Variable - Variable name
- name string
- The name of the feature template
- primary
Sim numberSlot - Set primary SIM slot - Range:
0
-255
- 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
- template
Type string - The template type
- version number
- The version of the feature template
- cellular_
interface_ strid - Cellular interface name
- cellular_
interface_ strid_ variable - Variable name
- data_
profiles Sequence[CellularController Feature Template Data Profile Args] - 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_ boolsim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware_
auto_ strsim_ variable - Variable name
- name str
- The name of the feature template
- primary_
sim_ intslot - Set primary SIM slot - Range:
0
-255
- 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
- template_
type str - The template type
- version int
- The version of the feature template
- cellular
Interface StringId - Cellular interface name
- cellular
Interface StringId Variable - Variable name
- data
Profiles List<Property Map> - Data Profile List
- description String
- The description of the feature template
- device
Types 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
- firmware
Auto BooleanSim - Enable/Disable Firmware Auto Sim - Default value:
true
- firmware
Auto StringSim Variable - Variable name
- name String
- The name of the feature template
- primary
Sim NumberSlot - Set primary SIM slot - Range:
0
-255
- 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
- template
Type String - The template type
- version Number
- The version of the feature template
Supporting Types
CellularControllerFeatureTemplateDataProfile, CellularControllerFeatureTemplateDataProfileArgs
- Attach
Profile int - Set attach profile
- Range:
1
-16
- Range:
- Attach
Profile stringVariable - Variable name
- Data
Profile int - Set data profile
- Range:
1
-16
- Range:
- Data
Profile stringVariable - Variable name
- Optional bool
- Indicates if list item is considered optional.
- Slot
Number int - Set slot number
- Range:
0
-1
- Range:
- Slot
Number stringVariable - Variable name
- Attach
Profile int - Set attach profile
- Range:
1
-16
- Range:
- Attach
Profile stringVariable - Variable name
- Data
Profile int - Set data profile
- Range:
1
-16
- Range:
- Data
Profile stringVariable - Variable name
- Optional bool
- Indicates if list item is considered optional.
- Slot
Number int - Set slot number
- Range:
0
-1
- Range:
- Slot
Number stringVariable - Variable name
- attach
Profile Integer - Set attach profile
- Range:
1
-16
- Range:
- attach
Profile StringVariable - Variable name
- data
Profile Integer - Set data profile
- Range:
1
-16
- Range:
- data
Profile StringVariable - Variable name
- optional Boolean
- Indicates if list item is considered optional.
- slot
Number Integer - Set slot number
- Range:
0
-1
- Range:
- slot
Number StringVariable - Variable name
- attach
Profile number - Set attach profile
- Range:
1
-16
- Range:
- attach
Profile stringVariable - Variable name
- data
Profile number - Set data profile
- Range:
1
-16
- Range:
- data
Profile stringVariable - Variable name
- optional boolean
- Indicates if list item is considered optional.
- slot
Number number - Set slot number
- Range:
0
-1
- Range:
- slot
Number stringVariable - Variable name
- attach_
profile int - Set attach profile
- Range:
1
-16
- Range:
- attach_
profile_ strvariable - Variable name
- data_
profile int - Set data profile
- Range:
1
-16
- Range:
- data_
profile_ strvariable - Variable name
- optional bool
- Indicates if list item is considered optional.
- slot_
number int - Set slot number
- Range:
0
-1
- Range:
- slot_
number_ strvariable - Variable name
- attach
Profile Number - Set attach profile
- Range:
1
-16
- Range:
- attach
Profile StringVariable - Variable name
- data
Profile Number - Set data profile
- Range:
1
-16
- Range:
- data
Profile StringVariable - Variable name
- optional Boolean
- Indicates if list item is considered optional.
- slot
Number Number - Set slot number
- Range:
0
-1
- Range:
- slot
Number StringVariable - Variable name
Import
$ pulumi import sdwan:index/cellularControllerFeatureTemplate:CellularControllerFeatureTemplate example "f6b2c44c-693c-4763-b010-895aa3d236bd"
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.