1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. TransportCellularProfileFeature
Cisco Catalyst SD-WAN v0.2.5 published on Saturday, Mar 15, 2025 by Pulumi

sdwan.TransportCellularProfileFeature

Explore with Pulumi AI

This resource can manage a Transport Cellular Profile Feature.

  • Minimum SD-WAN Manager version: 20.12.0

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";

const example = new sdwan.TransportCellularProfileFeature("example", {
    name: "Example",
    description: "My Example",
    featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    profileId: 1,
    accessPointName: "apn1",
    authenticationType: "pap",
    profileUsername: "example",
    profilePassword: "example123!",
    packetDataNetworkType: "ipv4",
    noOverwrite: false,
});
Copy
import pulumi
import pulumi_sdwan as sdwan

example = sdwan.TransportCellularProfileFeature("example",
    name="Example",
    description="My Example",
    feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    profile_id=1,
    access_point_name="apn1",
    authentication_type="pap",
    profile_username="example",
    profile_password="example123!",
    packet_data_network_type="ipv4",
    no_overwrite=False)
Copy
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.NewTransportCellularProfileFeature(ctx, "example", &sdwan.TransportCellularProfileFeatureArgs{
			Name:                  pulumi.String("Example"),
			Description:           pulumi.String("My Example"),
			FeatureProfileId:      pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
			ProfileId:             pulumi.Int(1),
			AccessPointName:       pulumi.String("apn1"),
			AuthenticationType:    pulumi.String("pap"),
			ProfileUsername:       pulumi.String("example"),
			ProfilePassword:       pulumi.String("example123!"),
			PacketDataNetworkType: pulumi.String("ipv4"),
			NoOverwrite:           pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;

return await Deployment.RunAsync(() => 
{
    var example = new Sdwan.TransportCellularProfileFeature("example", new()
    {
        Name = "Example",
        Description = "My Example",
        FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        ProfileId = 1,
        AccessPointName = "apn1",
        AuthenticationType = "pap",
        ProfileUsername = "example",
        ProfilePassword = "example123!",
        PacketDataNetworkType = "ipv4",
        NoOverwrite = false,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.TransportCellularProfileFeature;
import com.pulumi.sdwan.TransportCellularProfileFeatureArgs;
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 TransportCellularProfileFeature("example", TransportCellularProfileFeatureArgs.builder()
            .name("Example")
            .description("My Example")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .profileId(1)
            .accessPointName("apn1")
            .authenticationType("pap")
            .profileUsername("example")
            .profilePassword("example123!")
            .packetDataNetworkType("ipv4")
            .noOverwrite(false)
            .build());

    }
}
Copy
resources:
  example:
    type: sdwan:TransportCellularProfileFeature
    properties:
      name: Example
      description: My Example
      featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      profileId: 1
      accessPointName: apn1
      authenticationType: pap
      profileUsername: example
      profilePassword: example123!
      packetDataNetworkType: ipv4
      noOverwrite: false
Copy

Create TransportCellularProfileFeature Resource

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

Constructor syntax

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

@overload
def TransportCellularProfileFeature(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    access_point_name: Optional[str] = None,
                                    profile_id: Optional[int] = None,
                                    feature_profile_id: Optional[str] = None,
                                    description: Optional[str] = None,
                                    packet_data_network_type: Optional[str] = None,
                                    authentication_type: Optional[str] = None,
                                    name: Optional[str] = None,
                                    no_authentication: Optional[str] = None,
                                    no_overwrite: Optional[bool] = None,
                                    no_overwrite_variable: Optional[str] = None,
                                    authentication_type_variable: Optional[str] = None,
                                    packet_data_network_type_variable: Optional[str] = None,
                                    access_point_name_variable: Optional[str] = None,
                                    profile_id_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)
func NewTransportCellularProfileFeature(ctx *Context, name string, args TransportCellularProfileFeatureArgs, opts ...ResourceOption) (*TransportCellularProfileFeature, error)
public TransportCellularProfileFeature(string name, TransportCellularProfileFeatureArgs args, CustomResourceOptions? opts = null)
public TransportCellularProfileFeature(String name, TransportCellularProfileFeatureArgs args)
public TransportCellularProfileFeature(String name, TransportCellularProfileFeatureArgs args, CustomResourceOptions options)
type: sdwan:TransportCellularProfileFeature
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. TransportCellularProfileFeatureArgs
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. TransportCellularProfileFeatureArgs
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. TransportCellularProfileFeatureArgs
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. TransportCellularProfileFeatureArgs
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. TransportCellularProfileFeatureArgs
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 transportCellularProfileFeatureResource = new Sdwan.TransportCellularProfileFeature("transportCellularProfileFeatureResource", new()
{
    AccessPointName = "string",
    ProfileId = 0,
    FeatureProfileId = "string",
    Description = "string",
    PacketDataNetworkType = "string",
    AuthenticationType = "string",
    Name = "string",
    NoAuthentication = "string",
    NoOverwrite = false,
    NoOverwriteVariable = "string",
    AuthenticationTypeVariable = "string",
    PacketDataNetworkTypeVariable = "string",
    AccessPointNameVariable = "string",
    ProfileIdVariable = "string",
    ProfilePassword = "string",
    ProfilePasswordVariable = "string",
    ProfileUsername = "string",
    ProfileUsernameVariable = "string",
});
Copy
example, err := sdwan.NewTransportCellularProfileFeature(ctx, "transportCellularProfileFeatureResource", &sdwan.TransportCellularProfileFeatureArgs{
	AccessPointName:               pulumi.String("string"),
	ProfileId:                     pulumi.Int(0),
	FeatureProfileId:              pulumi.String("string"),
	Description:                   pulumi.String("string"),
	PacketDataNetworkType:         pulumi.String("string"),
	AuthenticationType:            pulumi.String("string"),
	Name:                          pulumi.String("string"),
	NoAuthentication:              pulumi.String("string"),
	NoOverwrite:                   pulumi.Bool(false),
	NoOverwriteVariable:           pulumi.String("string"),
	AuthenticationTypeVariable:    pulumi.String("string"),
	PacketDataNetworkTypeVariable: pulumi.String("string"),
	AccessPointNameVariable:       pulumi.String("string"),
	ProfileIdVariable:             pulumi.String("string"),
	ProfilePassword:               pulumi.String("string"),
	ProfilePasswordVariable:       pulumi.String("string"),
	ProfileUsername:               pulumi.String("string"),
	ProfileUsernameVariable:       pulumi.String("string"),
})
Copy
var transportCellularProfileFeatureResource = new TransportCellularProfileFeature("transportCellularProfileFeatureResource", TransportCellularProfileFeatureArgs.builder()
    .accessPointName("string")
    .profileId(0)
    .featureProfileId("string")
    .description("string")
    .packetDataNetworkType("string")
    .authenticationType("string")
    .name("string")
    .noAuthentication("string")
    .noOverwrite(false)
    .noOverwriteVariable("string")
    .authenticationTypeVariable("string")
    .packetDataNetworkTypeVariable("string")
    .accessPointNameVariable("string")
    .profileIdVariable("string")
    .profilePassword("string")
    .profilePasswordVariable("string")
    .profileUsername("string")
    .profileUsernameVariable("string")
    .build());
Copy
transport_cellular_profile_feature_resource = sdwan.TransportCellularProfileFeature("transportCellularProfileFeatureResource",
    access_point_name="string",
    profile_id=0,
    feature_profile_id="string",
    description="string",
    packet_data_network_type="string",
    authentication_type="string",
    name="string",
    no_authentication="string",
    no_overwrite=False,
    no_overwrite_variable="string",
    authentication_type_variable="string",
    packet_data_network_type_variable="string",
    access_point_name_variable="string",
    profile_id_variable="string",
    profile_password="string",
    profile_password_variable="string",
    profile_username="string",
    profile_username_variable="string")
Copy
const transportCellularProfileFeatureResource = new sdwan.TransportCellularProfileFeature("transportCellularProfileFeatureResource", {
    accessPointName: "string",
    profileId: 0,
    featureProfileId: "string",
    description: "string",
    packetDataNetworkType: "string",
    authenticationType: "string",
    name: "string",
    noAuthentication: "string",
    noOverwrite: false,
    noOverwriteVariable: "string",
    authenticationTypeVariable: "string",
    packetDataNetworkTypeVariable: "string",
    accessPointNameVariable: "string",
    profileIdVariable: "string",
    profilePassword: "string",
    profilePasswordVariable: "string",
    profileUsername: "string",
    profileUsernameVariable: "string",
});
Copy
type: sdwan:TransportCellularProfileFeature
properties:
    accessPointName: string
    accessPointNameVariable: string
    authenticationType: string
    authenticationTypeVariable: string
    description: string
    featureProfileId: string
    name: string
    noAuthentication: string
    noOverwrite: false
    noOverwriteVariable: string
    packetDataNetworkType: string
    packetDataNetworkTypeVariable: string
    profileId: 0
    profileIdVariable: string
    profilePassword: string
    profilePasswordVariable: string
    profileUsername: string
    profileUsernameVariable: string
Copy

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

AccessPointName This property is required. string
Set access point name
FeatureProfileId This property is required. string
Feature Profile ID
ProfileId This property is required. int
Set Profile ID - Range: 1-16
AccessPointNameVariable string
Variable name
AuthenticationType string
Set authentication type - Choices: pap, chap, pap_chap
AuthenticationTypeVariable string
Variable name
Description string
The description of the Feature
Name string
The name of the Feature
NoAuthentication string
No Authentication
NoOverwrite bool
No Overwrite
NoOverwriteVariable string
Variable name
PacketDataNetworkType string
Set packet data network type - Choices: ipv4, ipv4v6, ipv6 - Default value: ipv4
PacketDataNetworkTypeVariable string
Variable name
ProfileIdVariable string
Variable name
ProfilePassword string
Set the profile password
ProfilePasswordVariable string
Variable name
ProfileUsername string
Set the profile username
ProfileUsernameVariable string
Variable name
AccessPointName This property is required. string
Set access point name
FeatureProfileId This property is required. string
Feature Profile ID
ProfileId This property is required. int
Set Profile ID - Range: 1-16
AccessPointNameVariable string
Variable name
AuthenticationType string
Set authentication type - Choices: pap, chap, pap_chap
AuthenticationTypeVariable string
Variable name
Description string
The description of the Feature
Name string
The name of the Feature
NoAuthentication string
No Authentication
NoOverwrite bool
No Overwrite
NoOverwriteVariable string
Variable name
PacketDataNetworkType string
Set packet data network type - Choices: ipv4, ipv4v6, ipv6 - Default value: ipv4
PacketDataNetworkTypeVariable string
Variable name
ProfileIdVariable string
Variable name
ProfilePassword string
Set the profile password
ProfilePasswordVariable string
Variable name
ProfileUsername string
Set the profile username
ProfileUsernameVariable string
Variable name
accessPointName This property is required. String
Set access point name
featureProfileId This property is required. String
Feature Profile ID
profileId This property is required. Integer
Set Profile ID - Range: 1-16
accessPointNameVariable String
Variable name
authenticationType String
Set authentication type - Choices: pap, chap, pap_chap
authenticationTypeVariable String
Variable name
description String
The description of the Feature
name String
The name of the Feature
noAuthentication String
No Authentication
noOverwrite Boolean
No Overwrite
noOverwriteVariable String
Variable name
packetDataNetworkType String
Set packet data network type - Choices: ipv4, ipv4v6, ipv6 - Default value: ipv4
packetDataNetworkTypeVariable String
Variable name
profileIdVariable String
Variable name
profilePassword String
Set the profile password
profilePasswordVariable String
Variable name
profileUsername String
Set the profile username
profileUsernameVariable String
Variable name
accessPointName This property is required. string
Set access point name
featureProfileId This property is required. string
Feature Profile ID
profileId This property is required. number
Set Profile ID - Range: 1-16
accessPointNameVariable string
Variable name
authenticationType string
Set authentication type - Choices: pap, chap, pap_chap
authenticationTypeVariable string
Variable name
description string
The description of the Feature
name string
The name of the Feature
noAuthentication string
No Authentication
noOverwrite boolean
No Overwrite
noOverwriteVariable string
Variable name
packetDataNetworkType string
Set packet data network type - Choices: ipv4, ipv4v6, ipv6 - Default value: ipv4
packetDataNetworkTypeVariable string
Variable name
profileIdVariable string
Variable name
profilePassword string
Set the profile password
profilePasswordVariable string
Variable name
profileUsername string
Set the profile username
profileUsernameVariable string
Variable name
access_point_name This property is required. str
Set access point name
feature_profile_id This property is required. str
Feature Profile ID
profile_id This property is required. int
Set Profile ID - Range: 1-16
access_point_name_variable str
Variable name
authentication_type str
Set authentication type - Choices: pap, chap, pap_chap
authentication_type_variable str
Variable name
description str
The description of the Feature
name str
The name of the Feature
no_authentication str
No Authentication
no_overwrite bool
No Overwrite
no_overwrite_variable str
Variable name
packet_data_network_type str
Set packet data network type - Choices: ipv4, ipv4v6, ipv6 - Default value: ipv4
packet_data_network_type_variable str
Variable name
profile_id_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
accessPointName This property is required. String
Set access point name
featureProfileId This property is required. String
Feature Profile ID
profileId This property is required. Number
Set Profile ID - Range: 1-16
accessPointNameVariable String
Variable name
authenticationType String
Set authentication type - Choices: pap, chap, pap_chap
authenticationTypeVariable String
Variable name
description String
The description of the Feature
name String
The name of the Feature
noAuthentication String
No Authentication
noOverwrite Boolean
No Overwrite
noOverwriteVariable String
Variable name
packetDataNetworkType String
Set packet data network type - Choices: ipv4, ipv4v6, ipv6 - Default value: ipv4
packetDataNetworkTypeVariable String
Variable name
profileIdVariable String
Variable name
profilePassword String
Set the profile password
profilePasswordVariable String
Variable name
profileUsername String
Set the profile username
profileUsernameVariable String
Variable name

Outputs

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

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

Look up Existing TransportCellularProfileFeature Resource

Get an existing TransportCellularProfileFeature 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?: TransportCellularProfileFeatureState, opts?: CustomResourceOptions): TransportCellularProfileFeature
@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,
        feature_profile_id: Optional[str] = None,
        name: Optional[str] = None,
        no_authentication: Optional[str] = None,
        no_overwrite: Optional[bool] = None,
        no_overwrite_variable: Optional[str] = None,
        packet_data_network_type: Optional[str] = None,
        packet_data_network_type_variable: Optional[str] = None,
        profile_id: Optional[int] = None,
        profile_id_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,
        version: Optional[int] = None) -> TransportCellularProfileFeature
func GetTransportCellularProfileFeature(ctx *Context, name string, id IDInput, state *TransportCellularProfileFeatureState, opts ...ResourceOption) (*TransportCellularProfileFeature, error)
public static TransportCellularProfileFeature Get(string name, Input<string> id, TransportCellularProfileFeatureState? state, CustomResourceOptions? opts = null)
public static TransportCellularProfileFeature get(String name, Output<String> id, TransportCellularProfileFeatureState state, CustomResourceOptions options)
resources:  _:    type: sdwan:TransportCellularProfileFeature    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:
AccessPointName string
Set access point name
AccessPointNameVariable string
Variable name
AuthenticationType string
Set authentication type - Choices: pap, chap, pap_chap
AuthenticationTypeVariable string
Variable name
Description string
The description of the Feature
FeatureProfileId string
Feature Profile ID
Name string
The name of the Feature
NoAuthentication string
No Authentication
NoOverwrite bool
No Overwrite
NoOverwriteVariable string
Variable name
PacketDataNetworkType string
Set packet data network type - Choices: ipv4, ipv4v6, ipv6 - Default value: ipv4
PacketDataNetworkTypeVariable string
Variable name
ProfileId int
Set Profile ID - Range: 1-16
ProfileIdVariable string
Variable name
ProfilePassword string
Set the profile password
ProfilePasswordVariable string
Variable name
ProfileUsername string
Set the profile username
ProfileUsernameVariable string
Variable name
Version int
The version of the Feature
AccessPointName string
Set access point name
AccessPointNameVariable string
Variable name
AuthenticationType string
Set authentication type - Choices: pap, chap, pap_chap
AuthenticationTypeVariable string
Variable name
Description string
The description of the Feature
FeatureProfileId string
Feature Profile ID
Name string
The name of the Feature
NoAuthentication string
No Authentication
NoOverwrite bool
No Overwrite
NoOverwriteVariable string
Variable name
PacketDataNetworkType string
Set packet data network type - Choices: ipv4, ipv4v6, ipv6 - Default value: ipv4
PacketDataNetworkTypeVariable string
Variable name
ProfileId int
Set Profile ID - Range: 1-16
ProfileIdVariable string
Variable name
ProfilePassword string
Set the profile password
ProfilePasswordVariable string
Variable name
ProfileUsername string
Set the profile username
ProfileUsernameVariable string
Variable name
Version int
The version of the Feature
accessPointName String
Set access point name
accessPointNameVariable String
Variable name
authenticationType String
Set authentication type - Choices: pap, chap, pap_chap
authenticationTypeVariable String
Variable name
description String
The description of the Feature
featureProfileId String
Feature Profile ID
name String
The name of the Feature
noAuthentication String
No Authentication
noOverwrite Boolean
No Overwrite
noOverwriteVariable String
Variable name
packetDataNetworkType String
Set packet data network type - Choices: ipv4, ipv4v6, ipv6 - Default value: ipv4
packetDataNetworkTypeVariable String
Variable name
profileId Integer
Set Profile ID - Range: 1-16
profileIdVariable String
Variable name
profilePassword String
Set the profile password
profilePasswordVariable String
Variable name
profileUsername String
Set the profile username
profileUsernameVariable String
Variable name
version Integer
The version of the Feature
accessPointName string
Set access point name
accessPointNameVariable string
Variable name
authenticationType string
Set authentication type - Choices: pap, chap, pap_chap
authenticationTypeVariable string
Variable name
description string
The description of the Feature
featureProfileId string
Feature Profile ID
name string
The name of the Feature
noAuthentication string
No Authentication
noOverwrite boolean
No Overwrite
noOverwriteVariable string
Variable name
packetDataNetworkType string
Set packet data network type - Choices: ipv4, ipv4v6, ipv6 - Default value: ipv4
packetDataNetworkTypeVariable string
Variable name
profileId number
Set Profile ID - Range: 1-16
profileIdVariable string
Variable name
profilePassword string
Set the profile password
profilePasswordVariable string
Variable name
profileUsername string
Set the profile username
profileUsernameVariable string
Variable name
version number
The version of the Feature
access_point_name str
Set access point name
access_point_name_variable str
Variable name
authentication_type str
Set authentication type - Choices: pap, chap, pap_chap
authentication_type_variable str
Variable name
description str
The description of the Feature
feature_profile_id str
Feature Profile ID
name str
The name of the Feature
no_authentication str
No Authentication
no_overwrite bool
No Overwrite
no_overwrite_variable str
Variable name
packet_data_network_type str
Set packet data network type - Choices: ipv4, ipv4v6, ipv6 - Default value: ipv4
packet_data_network_type_variable str
Variable name
profile_id int
Set Profile ID - Range: 1-16
profile_id_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
version int
The version of the Feature
accessPointName String
Set access point name
accessPointNameVariable String
Variable name
authenticationType String
Set authentication type - Choices: pap, chap, pap_chap
authenticationTypeVariable String
Variable name
description String
The description of the Feature
featureProfileId String
Feature Profile ID
name String
The name of the Feature
noAuthentication String
No Authentication
noOverwrite Boolean
No Overwrite
noOverwriteVariable String
Variable name
packetDataNetworkType String
Set packet data network type - Choices: ipv4, ipv4v6, ipv6 - Default value: ipv4
packetDataNetworkTypeVariable String
Variable name
profileId Number
Set Profile ID - Range: 1-16
profileIdVariable String
Variable name
profilePassword String
Set the profile password
profilePasswordVariable String
Variable name
profileUsername String
Set the profile username
profileUsernameVariable String
Variable name
version Number
The version of the Feature

Import

Expected import identifier with the format: “transport_cellular_profile_feature_id,feature_profile_id”

$ pulumi import sdwan:index/transportCellularProfileFeature:TransportCellularProfileFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
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.