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

sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature

Explore with Pulumi AI

This resource can manage a Transport WAN VPN Interface Cellular Feature Associate Tracker 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.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature("example", {
    featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
    transportWanVpnInterfaceCellularFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
    transportTrackerFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
});
Copy
import pulumi
import pulumi_sdwan as sdwan

example = sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature("example",
    feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
    transport_wan_vpn_interface_cellular_feature_id="140331f6-5418-4755-a059-13c77eb96037",
    transport_tracker_feature_id="140331f6-5418-4755-a059-13c77eb96037")
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.NewTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(ctx, "example", &sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs{
			FeatureProfileId:                          pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
			TransportWanVpnFeatureId:                  pulumi.String("140331f6-5418-4755-a059-13c77eb96037"),
			TransportWanVpnInterfaceCellularFeatureId: pulumi.String("140331f6-5418-4755-a059-13c77eb96037"),
			TransportTrackerFeatureId:                 pulumi.String("140331f6-5418-4755-a059-13c77eb96037"),
		})
		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.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature("example", new()
    {
        FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        TransportWanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
        TransportWanVpnInterfaceCellularFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
        TransportTrackerFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature;
import com.pulumi.sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs;
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 TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature("example", TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs.builder()
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .transportWanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
            .transportWanVpnInterfaceCellularFeatureId("140331f6-5418-4755-a059-13c77eb96037")
            .transportTrackerFeatureId("140331f6-5418-4755-a059-13c77eb96037")
            .build());

    }
}
Copy
resources:
  example:
    type: sdwan:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature
    properties:
      featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      transportWanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
      transportWanVpnInterfaceCellularFeatureId: 140331f6-5418-4755-a059-13c77eb96037
      transportTrackerFeatureId: 140331f6-5418-4755-a059-13c77eb96037
Copy

Create TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature Resource

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

Constructor syntax

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

@overload
def TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(resource_name: str,
                                                                   opts: Optional[ResourceOptions] = None,
                                                                   feature_profile_id: Optional[str] = None,
                                                                   transport_tracker_feature_id: Optional[str] = None,
                                                                   transport_wan_vpn_feature_id: Optional[str] = None,
                                                                   transport_wan_vpn_interface_cellular_feature_id: Optional[str] = None)
func NewTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(ctx *Context, name string, args TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs, opts ...ResourceOption) (*TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature, error)
public TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(string name, TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs args, CustomResourceOptions? opts = null)
public TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(String name, TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs args)
public TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(String name, TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs args, CustomResourceOptions options)
type: sdwan:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature
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. TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs
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. TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs
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. TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs
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. TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs
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. TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs
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 transportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureResource = new Sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature("transportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureResource", new()
{
    FeatureProfileId = "string",
    TransportTrackerFeatureId = "string",
    TransportWanVpnFeatureId = "string",
    TransportWanVpnInterfaceCellularFeatureId = "string",
});
Copy
example, err := sdwan.NewTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(ctx, "transportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureResource", &sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs{
	FeatureProfileId:                          pulumi.String("string"),
	TransportTrackerFeatureId:                 pulumi.String("string"),
	TransportWanVpnFeatureId:                  pulumi.String("string"),
	TransportWanVpnInterfaceCellularFeatureId: pulumi.String("string"),
})
Copy
var transportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureResource = new TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature("transportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureResource", TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs.builder()
    .featureProfileId("string")
    .transportTrackerFeatureId("string")
    .transportWanVpnFeatureId("string")
    .transportWanVpnInterfaceCellularFeatureId("string")
    .build());
Copy
transport_wan_vpn_interface_cellular_feature_associate_tracker_feature_resource = sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature("transportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureResource",
    feature_profile_id="string",
    transport_tracker_feature_id="string",
    transport_wan_vpn_feature_id="string",
    transport_wan_vpn_interface_cellular_feature_id="string")
Copy
const transportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureResource = new sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature("transportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureResource", {
    featureProfileId: "string",
    transportTrackerFeatureId: "string",
    transportWanVpnFeatureId: "string",
    transportWanVpnInterfaceCellularFeatureId: "string",
});
Copy
type: sdwan:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature
properties:
    featureProfileId: string
    transportTrackerFeatureId: string
    transportWanVpnFeatureId: string
    transportWanVpnInterfaceCellularFeatureId: string
Copy

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

FeatureProfileId This property is required. string
Feature Profile ID
TransportTrackerFeatureId This property is required. string
Transport Tracker Feature ID
TransportWanVpnFeatureId This property is required. string
Transport WAN VPN Feature ID
TransportWanVpnInterfaceCellularFeatureId This property is required. string
Transport WAN VPN Interface Cellular Feature ID
FeatureProfileId This property is required. string
Feature Profile ID
TransportTrackerFeatureId This property is required. string
Transport Tracker Feature ID
TransportWanVpnFeatureId This property is required. string
Transport WAN VPN Feature ID
TransportWanVpnInterfaceCellularFeatureId This property is required. string
Transport WAN VPN Interface Cellular Feature ID
featureProfileId This property is required. String
Feature Profile ID
transportTrackerFeatureId This property is required. String
Transport Tracker Feature ID
transportWanVpnFeatureId This property is required. String
Transport WAN VPN Feature ID
transportWanVpnInterfaceCellularFeatureId This property is required. String
Transport WAN VPN Interface Cellular Feature ID
featureProfileId This property is required. string
Feature Profile ID
transportTrackerFeatureId This property is required. string
Transport Tracker Feature ID
transportWanVpnFeatureId This property is required. string
Transport WAN VPN Feature ID
transportWanVpnInterfaceCellularFeatureId This property is required. string
Transport WAN VPN Interface Cellular Feature ID
feature_profile_id This property is required. str
Feature Profile ID
transport_tracker_feature_id This property is required. str
Transport Tracker Feature ID
transport_wan_vpn_feature_id This property is required. str
Transport WAN VPN Feature ID
transport_wan_vpn_interface_cellular_feature_id This property is required. str
Transport WAN VPN Interface Cellular Feature ID
featureProfileId This property is required. String
Feature Profile ID
transportTrackerFeatureId This property is required. String
Transport Tracker Feature ID
transportWanVpnFeatureId This property is required. String
Transport WAN VPN Feature ID
transportWanVpnInterfaceCellularFeatureId This property is required. String
Transport WAN VPN Interface Cellular Feature ID

Outputs

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

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

Look up Existing TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature Resource

Get an existing TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature 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?: TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState, opts?: CustomResourceOptions): TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        feature_profile_id: Optional[str] = None,
        transport_tracker_feature_id: Optional[str] = None,
        transport_wan_vpn_feature_id: Optional[str] = None,
        transport_wan_vpn_interface_cellular_feature_id: Optional[str] = None,
        version: Optional[int] = None) -> TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature
func GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(ctx *Context, name string, id IDInput, state *TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState, opts ...ResourceOption) (*TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature, error)
public static TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature Get(string name, Input<string> id, TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState? state, CustomResourceOptions? opts = null)
public static TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature get(String name, Output<String> id, TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState state, CustomResourceOptions options)
resources:  _:    type: sdwan:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature    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:
FeatureProfileId string
Feature Profile ID
TransportTrackerFeatureId string
Transport Tracker Feature ID
TransportWanVpnFeatureId string
Transport WAN VPN Feature ID
TransportWanVpnInterfaceCellularFeatureId string
Transport WAN VPN Interface Cellular Feature ID
Version int
The version of the object
FeatureProfileId string
Feature Profile ID
TransportTrackerFeatureId string
Transport Tracker Feature ID
TransportWanVpnFeatureId string
Transport WAN VPN Feature ID
TransportWanVpnInterfaceCellularFeatureId string
Transport WAN VPN Interface Cellular Feature ID
Version int
The version of the object
featureProfileId String
Feature Profile ID
transportTrackerFeatureId String
Transport Tracker Feature ID
transportWanVpnFeatureId String
Transport WAN VPN Feature ID
transportWanVpnInterfaceCellularFeatureId String
Transport WAN VPN Interface Cellular Feature ID
version Integer
The version of the object
featureProfileId string
Feature Profile ID
transportTrackerFeatureId string
Transport Tracker Feature ID
transportWanVpnFeatureId string
Transport WAN VPN Feature ID
transportWanVpnInterfaceCellularFeatureId string
Transport WAN VPN Interface Cellular Feature ID
version number
The version of the object
feature_profile_id str
Feature Profile ID
transport_tracker_feature_id str
Transport Tracker Feature ID
transport_wan_vpn_feature_id str
Transport WAN VPN Feature ID
transport_wan_vpn_interface_cellular_feature_id str
Transport WAN VPN Interface Cellular Feature ID
version int
The version of the object
featureProfileId String
Feature Profile ID
transportTrackerFeatureId String
Transport Tracker Feature ID
transportWanVpnFeatureId String
Transport WAN VPN Feature ID
transportWanVpnInterfaceCellularFeatureId String
Transport WAN VPN Interface Cellular Feature ID
version Number
The version of the object

Import

Expected import identifier with the format: “transport_wan_vpn_interface_cellular_feature_associate_tracker_feature_id,feature_profile_id,transport_wan_vpn_feature_id,transport_wan_vpn_interface_cellular_feature_id”

$ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037,140331f6-5418-4755-a059-13c77eb96037"
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.