1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. CellularProfileFeatureTemplate
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

sdwan.CellularProfileFeatureTemplate

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

    This resource can manage a Cellular Profile feature template.

    • Minimum SD-WAN Manager version: 15.0.0

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = new sdwan.CellularProfileFeatureTemplate("example", {
        name: "Example",
        description: "My Example",
        deviceTypes: ["vedge-C8000V"],
        ifName: "Ethernet1",
        profileId: 1,
        accessPointName: "APN1",
        authenticationType: "CHAP",
        ipAddress: "1.2.3.4",
        profileName: "PROFILE1",
        packetDataNetworkType: "ipv4",
        profileUsername: "MyUsername",
        profilePassword: "MyPassword",
        primaryDnsAddress: "1.2.3.4",
        secondaryDnsAddress: "1.2.3.5",
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.CellularProfileFeatureTemplate("example",
        name="Example",
        description="My Example",
        device_types=["vedge-C8000V"],
        if_name="Ethernet1",
        profile_id=1,
        access_point_name="APN1",
        authentication_type="CHAP",
        ip_address="1.2.3.4",
        profile_name="PROFILE1",
        packet_data_network_type="ipv4",
        profile_username="MyUsername",
        profile_password="MyPassword",
        primary_dns_address="1.2.3.4",
        secondary_dns_address="1.2.3.5")
    
    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.NewCellularProfileFeatureTemplate(ctx, "example", &sdwan.CellularProfileFeatureTemplateArgs{
    			Name:        pulumi.String("Example"),
    			Description: pulumi.String("My Example"),
    			DeviceTypes: pulumi.StringArray{
    				pulumi.String("vedge-C8000V"),
    			},
    			IfName:                pulumi.String("Ethernet1"),
    			ProfileId:             pulumi.Int(1),
    			AccessPointName:       pulumi.String("APN1"),
    			AuthenticationType:    pulumi.String("CHAP"),
    			IpAddress:             pulumi.String("1.2.3.4"),
    			ProfileName:           pulumi.String("PROFILE1"),
    			PacketDataNetworkType: pulumi.String("ipv4"),
    			ProfileUsername:       pulumi.String("MyUsername"),
    			ProfilePassword:       pulumi.String("MyPassword"),
    			PrimaryDnsAddress:     pulumi.String("1.2.3.4"),
    			SecondaryDnsAddress:   pulumi.String("1.2.3.5"),
    		})
    		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.CellularProfileFeatureTemplate("example", new()
        {
            Name = "Example",
            Description = "My Example",
            DeviceTypes = new[]
            {
                "vedge-C8000V",
            },
            IfName = "Ethernet1",
            ProfileId = 1,
            AccessPointName = "APN1",
            AuthenticationType = "CHAP",
            IpAddress = "1.2.3.4",
            ProfileName = "PROFILE1",
            PacketDataNetworkType = "ipv4",
            ProfileUsername = "MyUsername",
            ProfilePassword = "MyPassword",
            PrimaryDnsAddress = "1.2.3.4",
            SecondaryDnsAddress = "1.2.3.5",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.CellularProfileFeatureTemplate;
    import com.pulumi.sdwan.CellularProfileFeatureTemplateArgs;
    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 CellularProfileFeatureTemplate("example", CellularProfileFeatureTemplateArgs.builder()        
                .name("Example")
                .description("My Example")
                .deviceTypes("vedge-C8000V")
                .ifName("Ethernet1")
                .profileId(1)
                .accessPointName("APN1")
                .authenticationType("CHAP")
                .ipAddress("1.2.3.4")
                .profileName("PROFILE1")
                .packetDataNetworkType("ipv4")
                .profileUsername("MyUsername")
                .profilePassword("MyPassword")
                .primaryDnsAddress("1.2.3.4")
                .secondaryDnsAddress("1.2.3.5")
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:CellularProfileFeatureTemplate
        properties:
          name: Example
          description: My Example
          deviceTypes:
            - vedge-C8000V
          ifName: Ethernet1
          profileId: 1
          accessPointName: APN1
          authenticationType: CHAP
          ipAddress: 1.2.3.4
          profileName: PROFILE1
          packetDataNetworkType: ipv4
          profileUsername: MyUsername
          profilePassword: MyPassword
          primaryDnsAddress: 1.2.3.4
          secondaryDnsAddress: 1.2.3.5
    

    Create CellularProfileFeatureTemplate Resource

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

    Constructor syntax

    new CellularProfileFeatureTemplate(name: string, args: CellularProfileFeatureTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def CellularProfileFeatureTemplate(resource_name: str,
                                       args: CellularProfileFeatureTemplateArgs,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def CellularProfileFeatureTemplate(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       description: Optional[str] = None,
                                       device_types: Optional[Sequence[str]] = None,
                                       packet_data_network_type_variable: Optional[str] = None,
                                       secondary_dns_address_variable: Optional[str] = None,
                                       access_point_name: Optional[str] = None,
                                       access_point_name_variable: Optional[str] = None,
                                       if_name: Optional[str] = None,
                                       if_name_variable: Optional[str] = None,
                                       ip_address: Optional[str] = None,
                                       ip_address_variable: Optional[str] = None,
                                       name: Optional[str] = None,
                                       primary_dns_address_variable: Optional[str] = None,
                                       authentication_type: Optional[str] = None,
                                       authentication_type_variable: Optional[str] = None,
                                       packet_data_network_type: Optional[str] = None,
                                       profile_id: Optional[int] = None,
                                       profile_id_variable: Optional[str] = None,
                                       profile_name: Optional[str] = None,
                                       profile_name_variable: Optional[str] = None,
                                       profile_password: Optional[str] = None,
                                       profile_password_variable: Optional[str] = None,
                                       profile_username: Optional[str] = None,
                                       profile_username_variable: Optional[str] = None,
                                       secondary_dns_address: Optional[str] = None,
                                       primary_dns_address: Optional[str] = None)
    func NewCellularProfileFeatureTemplate(ctx *Context, name string, args CellularProfileFeatureTemplateArgs, opts ...ResourceOption) (*CellularProfileFeatureTemplate, error)
    public CellularProfileFeatureTemplate(string name, CellularProfileFeatureTemplateArgs args, CustomResourceOptions? opts = null)
    public CellularProfileFeatureTemplate(String name, CellularProfileFeatureTemplateArgs args)
    public CellularProfileFeatureTemplate(String name, CellularProfileFeatureTemplateArgs args, CustomResourceOptions options)
    
    type: sdwan:CellularProfileFeatureTemplate
    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 CellularProfileFeatureTemplateArgs
    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 CellularProfileFeatureTemplateArgs
    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 CellularProfileFeatureTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CellularProfileFeatureTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CellularProfileFeatureTemplateArgs
    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 cellularProfileFeatureTemplateResource = new Sdwan.CellularProfileFeatureTemplate("cellularProfileFeatureTemplateResource", new()
    {
        Description = "string",
        DeviceTypes = new[]
        {
            "string",
        },
        PacketDataNetworkTypeVariable = "string",
        SecondaryDnsAddressVariable = "string",
        AccessPointName = "string",
        AccessPointNameVariable = "string",
        IfName = "string",
        IfNameVariable = "string",
        IpAddress = "string",
        IpAddressVariable = "string",
        Name = "string",
        PrimaryDnsAddressVariable = "string",
        AuthenticationType = "string",
        AuthenticationTypeVariable = "string",
        PacketDataNetworkType = "string",
        ProfileId = 0,
        ProfileIdVariable = "string",
        ProfileName = "string",
        ProfileNameVariable = "string",
        ProfilePassword = "string",
        ProfilePasswordVariable = "string",
        ProfileUsername = "string",
        ProfileUsernameVariable = "string",
        SecondaryDnsAddress = "string",
        PrimaryDnsAddress = "string",
    });
    
    example, err := sdwan.NewCellularProfileFeatureTemplate(ctx, "cellularProfileFeatureTemplateResource", &sdwan.CellularProfileFeatureTemplateArgs{
    	Description: pulumi.String("string"),
    	DeviceTypes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	PacketDataNetworkTypeVariable: pulumi.String("string"),
    	SecondaryDnsAddressVariable:   pulumi.String("string"),
    	AccessPointName:               pulumi.String("string"),
    	AccessPointNameVariable:       pulumi.String("string"),
    	IfName:                        pulumi.String("string"),
    	IfNameVariable:                pulumi.String("string"),
    	IpAddress:                     pulumi.String("string"),
    	IpAddressVariable:             pulumi.String("string"),
    	Name:                          pulumi.String("string"),
    	PrimaryDnsAddressVariable:     pulumi.String("string"),
    	AuthenticationType:            pulumi.String("string"),
    	AuthenticationTypeVariable:    pulumi.String("string"),
    	PacketDataNetworkType:         pulumi.String("string"),
    	ProfileId:                     pulumi.Int(0),
    	ProfileIdVariable:             pulumi.String("string"),
    	ProfileName:                   pulumi.String("string"),
    	ProfileNameVariable:           pulumi.String("string"),
    	ProfilePassword:               pulumi.String("string"),
    	ProfilePasswordVariable:       pulumi.String("string"),
    	ProfileUsername:               pulumi.String("string"),
    	ProfileUsernameVariable:       pulumi.String("string"),
    	SecondaryDnsAddress:           pulumi.String("string"),
    	PrimaryDnsAddress:             pulumi.String("string"),
    })
    
    var cellularProfileFeatureTemplateResource = new CellularProfileFeatureTemplate("cellularProfileFeatureTemplateResource", CellularProfileFeatureTemplateArgs.builder()
        .description("string")
        .deviceTypes("string")
        .packetDataNetworkTypeVariable("string")
        .secondaryDnsAddressVariable("string")
        .accessPointName("string")
        .accessPointNameVariable("string")
        .ifName("string")
        .ifNameVariable("string")
        .ipAddress("string")
        .ipAddressVariable("string")
        .name("string")
        .primaryDnsAddressVariable("string")
        .authenticationType("string")
        .authenticationTypeVariable("string")
        .packetDataNetworkType("string")
        .profileId(0)
        .profileIdVariable("string")
        .profileName("string")
        .profileNameVariable("string")
        .profilePassword("string")
        .profilePasswordVariable("string")
        .profileUsername("string")
        .profileUsernameVariable("string")
        .secondaryDnsAddress("string")
        .primaryDnsAddress("string")
        .build());
    
    cellular_profile_feature_template_resource = sdwan.CellularProfileFeatureTemplate("cellularProfileFeatureTemplateResource",
        description="string",
        device_types=["string"],
        packet_data_network_type_variable="string",
        secondary_dns_address_variable="string",
        access_point_name="string",
        access_point_name_variable="string",
        if_name="string",
        if_name_variable="string",
        ip_address="string",
        ip_address_variable="string",
        name="string",
        primary_dns_address_variable="string",
        authentication_type="string",
        authentication_type_variable="string",
        packet_data_network_type="string",
        profile_id=0,
        profile_id_variable="string",
        profile_name="string",
        profile_name_variable="string",
        profile_password="string",
        profile_password_variable="string",
        profile_username="string",
        profile_username_variable="string",
        secondary_dns_address="string",
        primary_dns_address="string")
    
    const cellularProfileFeatureTemplateResource = new sdwan.CellularProfileFeatureTemplate("cellularProfileFeatureTemplateResource", {
        description: "string",
        deviceTypes: ["string"],
        packetDataNetworkTypeVariable: "string",
        secondaryDnsAddressVariable: "string",
        accessPointName: "string",
        accessPointNameVariable: "string",
        ifName: "string",
        ifNameVariable: "string",
        ipAddress: "string",
        ipAddressVariable: "string",
        name: "string",
        primaryDnsAddressVariable: "string",
        authenticationType: "string",
        authenticationTypeVariable: "string",
        packetDataNetworkType: "string",
        profileId: 0,
        profileIdVariable: "string",
        profileName: "string",
        profileNameVariable: "string",
        profilePassword: "string",
        profilePasswordVariable: "string",
        profileUsername: "string",
        profileUsernameVariable: "string",
        secondaryDnsAddress: "string",
        primaryDnsAddress: "string",
    });
    
    type: sdwan:CellularProfileFeatureTemplate
    properties:
        accessPointName: string
        accessPointNameVariable: string
        authenticationType: string
        authenticationTypeVariable: string
        description: string
        deviceTypes:
            - string
        ifName: string
        ifNameVariable: string
        ipAddress: string
        ipAddressVariable: string
        name: string
        packetDataNetworkType: string
        packetDataNetworkTypeVariable: string
        primaryDnsAddress: string
        primaryDnsAddressVariable: string
        profileId: 0
        profileIdVariable: string
        profileName: string
        profileNameVariable: string
        profilePassword: string
        profilePasswordVariable: string
        profileUsername: string
        profileUsernameVariable: string
        secondaryDnsAddress: string
        secondaryDnsAddressVariable: string
    

    CellularProfileFeatureTemplate Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The CellularProfileFeatureTemplate resource accepts the following input properties:

    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
    AccessPointName string
    Set access point name
    AccessPointNameVariable string
    Variable name
    AuthenticationType string
    Set authentication type - Choices: None, PAP, CHAP, PAP/CHAP - Default value: None
    AuthenticationTypeVariable string
    Variable name
    IfName string
    Set interface name
    IfNameVariable string
    Variable name
    IpAddress string
    Set IP address
    IpAddressVariable string
    Variable name
    Name string
    The name of the feature template
    PacketDataNetworkType string
    Set packet data network type - Choices: ipv4, ipv6, ipv46
    PacketDataNetworkTypeVariable string
    Variable name
    PrimaryDnsAddress string
    Set the address of the primary DNS server
    PrimaryDnsAddressVariable string
    Variable name
    ProfileId int
    Set Profile ID - Range: 1-16
    ProfileIdVariable string
    Variable name
    ProfileName string
    Set profile name
    ProfileNameVariable string
    Variable name
    ProfilePassword string
    Set the profile password
    ProfilePasswordVariable string
    Variable name
    ProfileUsername string
    Set the profile username
    ProfileUsernameVariable string
    Variable name
    SecondaryDnsAddress string
    Set the address of the secondary DNS server
    SecondaryDnsAddressVariable string
    Variable name
    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
    AccessPointName string
    Set access point name
    AccessPointNameVariable string
    Variable name
    AuthenticationType string
    Set authentication type - Choices: None, PAP, CHAP, PAP/CHAP - Default value: None
    AuthenticationTypeVariable string
    Variable name
    IfName string
    Set interface name
    IfNameVariable string
    Variable name
    IpAddress string
    Set IP address
    IpAddressVariable string
    Variable name
    Name string
    The name of the feature template
    PacketDataNetworkType string
    Set packet data network type - Choices: ipv4, ipv6, ipv46
    PacketDataNetworkTypeVariable string
    Variable name
    PrimaryDnsAddress string
    Set the address of the primary DNS server
    PrimaryDnsAddressVariable string
    Variable name
    ProfileId int
    Set Profile ID - Range: 1-16
    ProfileIdVariable string
    Variable name
    ProfileName string
    Set profile name
    ProfileNameVariable string
    Variable name
    ProfilePassword string
    Set the profile password
    ProfilePasswordVariable string
    Variable name
    ProfileUsername string
    Set the profile username
    ProfileUsernameVariable string
    Variable name
    SecondaryDnsAddress string
    Set the address of the secondary DNS server
    SecondaryDnsAddressVariable string
    Variable name
    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
    accessPointName String
    Set access point name
    accessPointNameVariable String
    Variable name
    authenticationType String
    Set authentication type - Choices: None, PAP, CHAP, PAP/CHAP - Default value: None
    authenticationTypeVariable String
    Variable name
    ifName String
    Set interface name
    ifNameVariable String
    Variable name
    ipAddress String
    Set IP address
    ipAddressVariable String
    Variable name
    name String
    The name of the feature template
    packetDataNetworkType String
    Set packet data network type - Choices: ipv4, ipv6, ipv46
    packetDataNetworkTypeVariable String
    Variable name
    primaryDnsAddress String
    Set the address of the primary DNS server
    primaryDnsAddressVariable String
    Variable name
    profileId Integer
    Set Profile ID - Range: 1-16
    profileIdVariable String
    Variable name
    profileName String
    Set profile name
    profileNameVariable String
    Variable name
    profilePassword String
    Set the profile password
    profilePasswordVariable String
    Variable name
    profileUsername String
    Set the profile username
    profileUsernameVariable String
    Variable name
    secondaryDnsAddress String
    Set the address of the secondary DNS server
    secondaryDnsAddressVariable String
    Variable name
    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
    accessPointName string
    Set access point name
    accessPointNameVariable string
    Variable name
    authenticationType string
    Set authentication type - Choices: None, PAP, CHAP, PAP/CHAP - Default value: None
    authenticationTypeVariable string
    Variable name
    ifName string
    Set interface name
    ifNameVariable string
    Variable name
    ipAddress string
    Set IP address
    ipAddressVariable string
    Variable name
    name string
    The name of the feature template
    packetDataNetworkType string
    Set packet data network type - Choices: ipv4, ipv6, ipv46
    packetDataNetworkTypeVariable string
    Variable name
    primaryDnsAddress string
    Set the address of the primary DNS server
    primaryDnsAddressVariable string
    Variable name
    profileId number
    Set Profile ID - Range: 1-16
    profileIdVariable string
    Variable name
    profileName string
    Set profile name
    profileNameVariable string
    Variable name
    profilePassword string
    Set the profile password
    profilePasswordVariable string
    Variable name
    profileUsername string
    Set the profile username
    profileUsernameVariable string
    Variable name
    secondaryDnsAddress string
    Set the address of the secondary DNS server
    secondaryDnsAddressVariable string
    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
    access_point_name str
    Set access point name
    access_point_name_variable str
    Variable name
    authentication_type str
    Set authentication type - Choices: None, PAP, CHAP, PAP/CHAP - Default value: None
    authentication_type_variable str
    Variable name
    if_name str
    Set interface name
    if_name_variable str
    Variable name
    ip_address str
    Set IP address
    ip_address_variable str
    Variable name
    name str
    The name of the feature template
    packet_data_network_type str
    Set packet data network type - Choices: ipv4, ipv6, ipv46
    packet_data_network_type_variable str
    Variable name
    primary_dns_address str
    Set the address of the primary DNS server
    primary_dns_address_variable str
    Variable name
    profile_id int
    Set Profile ID - Range: 1-16
    profile_id_variable str
    Variable name
    profile_name str
    Set profile name
    profile_name_variable str
    Variable name
    profile_password str
    Set the profile password
    profile_password_variable str
    Variable name
    profile_username str
    Set the profile username
    profile_username_variable str
    Variable name
    secondary_dns_address str
    Set the address of the secondary DNS server
    secondary_dns_address_variable str
    Variable name
    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
    accessPointName String
    Set access point name
    accessPointNameVariable String
    Variable name
    authenticationType String
    Set authentication type - Choices: None, PAP, CHAP, PAP/CHAP - Default value: None
    authenticationTypeVariable String
    Variable name
    ifName String
    Set interface name
    ifNameVariable String
    Variable name
    ipAddress String
    Set IP address
    ipAddressVariable String
    Variable name
    name String
    The name of the feature template
    packetDataNetworkType String
    Set packet data network type - Choices: ipv4, ipv6, ipv46
    packetDataNetworkTypeVariable String
    Variable name
    primaryDnsAddress String
    Set the address of the primary DNS server
    primaryDnsAddressVariable String
    Variable name
    profileId Number
    Set Profile ID - Range: 1-16
    profileIdVariable String
    Variable name
    profileName String
    Set profile name
    profileNameVariable String
    Variable name
    profilePassword String
    Set the profile password
    profilePasswordVariable String
    Variable name
    profileUsername String
    Set the profile username
    profileUsernameVariable String
    Variable name
    secondaryDnsAddress String
    Set the address of the secondary DNS server
    secondaryDnsAddressVariable String
    Variable name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CellularProfileFeatureTemplate 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 CellularProfileFeatureTemplate Resource

    Get an existing CellularProfileFeatureTemplate 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?: CellularProfileFeatureTemplateState, opts?: CustomResourceOptions): CellularProfileFeatureTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_point_name: Optional[str] = None,
            access_point_name_variable: Optional[str] = None,
            authentication_type: Optional[str] = None,
            authentication_type_variable: Optional[str] = None,
            description: Optional[str] = None,
            device_types: Optional[Sequence[str]] = None,
            if_name: Optional[str] = None,
            if_name_variable: Optional[str] = None,
            ip_address: Optional[str] = None,
            ip_address_variable: Optional[str] = None,
            name: Optional[str] = None,
            packet_data_network_type: Optional[str] = None,
            packet_data_network_type_variable: Optional[str] = None,
            primary_dns_address: Optional[str] = None,
            primary_dns_address_variable: Optional[str] = None,
            profile_id: Optional[int] = None,
            profile_id_variable: Optional[str] = None,
            profile_name: Optional[str] = None,
            profile_name_variable: Optional[str] = None,
            profile_password: Optional[str] = None,
            profile_password_variable: Optional[str] = None,
            profile_username: Optional[str] = None,
            profile_username_variable: Optional[str] = None,
            secondary_dns_address: Optional[str] = None,
            secondary_dns_address_variable: Optional[str] = None,
            template_type: Optional[str] = None,
            version: Optional[int] = None) -> CellularProfileFeatureTemplate
    func GetCellularProfileFeatureTemplate(ctx *Context, name string, id IDInput, state *CellularProfileFeatureTemplateState, opts ...ResourceOption) (*CellularProfileFeatureTemplate, error)
    public static CellularProfileFeatureTemplate Get(string name, Input<string> id, CellularProfileFeatureTemplateState? state, CustomResourceOptions? opts = null)
    public static CellularProfileFeatureTemplate get(String name, Output<String> id, CellularProfileFeatureTemplateState 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.
    The following state arguments are supported:
    AccessPointName string
    Set access point name
    AccessPointNameVariable string
    Variable name
    AuthenticationType string
    Set authentication type - Choices: None, PAP, CHAP, PAP/CHAP - Default value: None
    AuthenticationTypeVariable string
    Variable name
    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
    IfName string
    Set interface name
    IfNameVariable string
    Variable name
    IpAddress string
    Set IP address
    IpAddressVariable string
    Variable name
    Name string
    The name of the feature template
    PacketDataNetworkType string
    Set packet data network type - Choices: ipv4, ipv6, ipv46
    PacketDataNetworkTypeVariable string
    Variable name
    PrimaryDnsAddress string
    Set the address of the primary DNS server
    PrimaryDnsAddressVariable string
    Variable name
    ProfileId int
    Set Profile ID - Range: 1-16
    ProfileIdVariable string
    Variable name
    ProfileName string
    Set profile name
    ProfileNameVariable string
    Variable name
    ProfilePassword string
    Set the profile password
    ProfilePasswordVariable string
    Variable name
    ProfileUsername string
    Set the profile username
    ProfileUsernameVariable string
    Variable name
    SecondaryDnsAddress string
    Set the address of the secondary DNS server
    SecondaryDnsAddressVariable string
    Variable name
    TemplateType string
    The template type
    Version int
    The version of the feature template
    AccessPointName string
    Set access point name
    AccessPointNameVariable string
    Variable name
    AuthenticationType string
    Set authentication type - Choices: None, PAP, CHAP, PAP/CHAP - Default value: None
    AuthenticationTypeVariable string
    Variable name
    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
    IfName string
    Set interface name
    IfNameVariable string
    Variable name
    IpAddress string
    Set IP address
    IpAddressVariable string
    Variable name
    Name string
    The name of the feature template
    PacketDataNetworkType string
    Set packet data network type - Choices: ipv4, ipv6, ipv46
    PacketDataNetworkTypeVariable string
    Variable name
    PrimaryDnsAddress string
    Set the address of the primary DNS server
    PrimaryDnsAddressVariable string
    Variable name
    ProfileId int
    Set Profile ID - Range: 1-16
    ProfileIdVariable string
    Variable name
    ProfileName string
    Set profile name
    ProfileNameVariable string
    Variable name
    ProfilePassword string
    Set the profile password
    ProfilePasswordVariable string
    Variable name
    ProfileUsername string
    Set the profile username
    ProfileUsernameVariable string
    Variable name
    SecondaryDnsAddress string
    Set the address of the secondary DNS server
    SecondaryDnsAddressVariable string
    Variable name
    TemplateType string
    The template type
    Version int
    The version of the feature template
    accessPointName String
    Set access point name
    accessPointNameVariable String
    Variable name
    authenticationType String
    Set authentication type - Choices: None, PAP, CHAP, PAP/CHAP - Default value: None
    authenticationTypeVariable String
    Variable name
    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
    ifName String
    Set interface name
    ifNameVariable String
    Variable name
    ipAddress String
    Set IP address
    ipAddressVariable String
    Variable name
    name String
    The name of the feature template
    packetDataNetworkType String
    Set packet data network type - Choices: ipv4, ipv6, ipv46
    packetDataNetworkTypeVariable String
    Variable name
    primaryDnsAddress String
    Set the address of the primary DNS server
    primaryDnsAddressVariable String
    Variable name
    profileId Integer
    Set Profile ID - Range: 1-16
    profileIdVariable String
    Variable name
    profileName String
    Set profile name
    profileNameVariable String
    Variable name
    profilePassword String
    Set the profile password
    profilePasswordVariable String
    Variable name
    profileUsername String
    Set the profile username
    profileUsernameVariable String
    Variable name
    secondaryDnsAddress String
    Set the address of the secondary DNS server
    secondaryDnsAddressVariable String
    Variable name
    templateType String
    The template type
    version Integer
    The version of the feature template
    accessPointName string
    Set access point name
    accessPointNameVariable string
    Variable name
    authenticationType string
    Set authentication type - Choices: None, PAP, CHAP, PAP/CHAP - Default value: None
    authenticationTypeVariable string
    Variable name
    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
    ifName string
    Set interface name
    ifNameVariable string
    Variable name
    ipAddress string
    Set IP address
    ipAddressVariable string
    Variable name
    name string
    The name of the feature template
    packetDataNetworkType string
    Set packet data network type - Choices: ipv4, ipv6, ipv46
    packetDataNetworkTypeVariable string
    Variable name
    primaryDnsAddress string
    Set the address of the primary DNS server
    primaryDnsAddressVariable string
    Variable name
    profileId number
    Set Profile ID - Range: 1-16
    profileIdVariable string
    Variable name
    profileName string
    Set profile name
    profileNameVariable string
    Variable name
    profilePassword string
    Set the profile password
    profilePasswordVariable string
    Variable name
    profileUsername string
    Set the profile username
    profileUsernameVariable string
    Variable name
    secondaryDnsAddress string
    Set the address of the secondary DNS server
    secondaryDnsAddressVariable string
    Variable name
    templateType string
    The template type
    version number
    The version of the feature template
    access_point_name str
    Set access point name
    access_point_name_variable str
    Variable name
    authentication_type str
    Set authentication type - Choices: None, PAP, CHAP, PAP/CHAP - Default value: None
    authentication_type_variable str
    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
    if_name str
    Set interface name
    if_name_variable str
    Variable name
    ip_address str
    Set IP address
    ip_address_variable str
    Variable name
    name str
    The name of the feature template
    packet_data_network_type str
    Set packet data network type - Choices: ipv4, ipv6, ipv46
    packet_data_network_type_variable str
    Variable name
    primary_dns_address str
    Set the address of the primary DNS server
    primary_dns_address_variable str
    Variable name
    profile_id int
    Set Profile ID - Range: 1-16
    profile_id_variable str
    Variable name
    profile_name str
    Set profile name
    profile_name_variable str
    Variable name
    profile_password str
    Set the profile password
    profile_password_variable str
    Variable name
    profile_username str
    Set the profile username
    profile_username_variable str
    Variable name
    secondary_dns_address str
    Set the address of the secondary DNS server
    secondary_dns_address_variable str
    Variable name
    template_type str
    The template type
    version int
    The version of the feature template
    accessPointName String
    Set access point name
    accessPointNameVariable String
    Variable name
    authenticationType String
    Set authentication type - Choices: None, PAP, CHAP, PAP/CHAP - Default value: None
    authenticationTypeVariable String
    Variable name
    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
    ifName String
    Set interface name
    ifNameVariable String
    Variable name
    ipAddress String
    Set IP address
    ipAddressVariable String
    Variable name
    name String
    The name of the feature template
    packetDataNetworkType String
    Set packet data network type - Choices: ipv4, ipv6, ipv46
    packetDataNetworkTypeVariable String
    Variable name
    primaryDnsAddress String
    Set the address of the primary DNS server
    primaryDnsAddressVariable String
    Variable name
    profileId Number
    Set Profile ID - Range: 1-16
    profileIdVariable String
    Variable name
    profileName String
    Set profile name
    profileNameVariable String
    Variable name
    profilePassword String
    Set the profile password
    profilePasswordVariable String
    Variable name
    profileUsername String
    Set the profile username
    profileUsernameVariable String
    Variable name
    secondaryDnsAddress String
    Set the address of the secondary DNS server
    secondaryDnsAddressVariable String
    Variable name
    templateType String
    The template type
    version Number
    The version of the feature template

    Import

    $ pulumi import sdwan:index/cellularProfileFeatureTemplate:CellularProfileFeatureTemplate 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.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi