1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. TransportTrackerFeature
Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi

sdwan.TransportTrackerFeature

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi

    This resource can manage a Transport 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.TransportTrackerFeature("example", {
        name: "Example",
        description: "My Example",
        featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        trackerName: "TRACKER_1",
        endpointApiUrl: "google.com",
        endpointDnsName: "google.com",
        endpointIp: "1.2.3.4",
        interval: 30,
        multiplier: 3,
        threshold: 300,
        endpointTrackerType: "interface",
        trackerType: "endpoint",
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.TransportTrackerFeature("example",
        name="Example",
        description="My Example",
        feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        tracker_name="TRACKER_1",
        endpoint_api_url="google.com",
        endpoint_dns_name="google.com",
        endpoint_ip="1.2.3.4",
        interval=30,
        multiplier=3,
        threshold=300,
        endpoint_tracker_type="interface",
        tracker_type="endpoint")
    
    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.NewTransportTrackerFeature(ctx, "example", &sdwan.TransportTrackerFeatureArgs{
    			Name:                pulumi.String("Example"),
    			Description:         pulumi.String("My Example"),
    			FeatureProfileId:    pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
    			TrackerName:         pulumi.String("TRACKER_1"),
    			EndpointApiUrl:      pulumi.String("google.com"),
    			EndpointDnsName:     pulumi.String("google.com"),
    			EndpointIp:          pulumi.String("1.2.3.4"),
    			Interval:            pulumi.Int(30),
    			Multiplier:          pulumi.Int(3),
    			Threshold:           pulumi.Int(300),
    			EndpointTrackerType: pulumi.String("interface"),
    			TrackerType:         pulumi.String("endpoint"),
    		})
    		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.TransportTrackerFeature("example", new()
        {
            Name = "Example",
            Description = "My Example",
            FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
            TrackerName = "TRACKER_1",
            EndpointApiUrl = "google.com",
            EndpointDnsName = "google.com",
            EndpointIp = "1.2.3.4",
            Interval = 30,
            Multiplier = 3,
            Threshold = 300,
            EndpointTrackerType = "interface",
            TrackerType = "endpoint",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.TransportTrackerFeature;
    import com.pulumi.sdwan.TransportTrackerFeatureArgs;
    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 TransportTrackerFeature("example", TransportTrackerFeatureArgs.builder()
                .name("Example")
                .description("My Example")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .trackerName("TRACKER_1")
                .endpointApiUrl("google.com")
                .endpointDnsName("google.com")
                .endpointIp("1.2.3.4")
                .interval(30)
                .multiplier(3)
                .threshold(300)
                .endpointTrackerType("interface")
                .trackerType("endpoint")
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:TransportTrackerFeature
        properties:
          name: Example
          description: My Example
          featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
          trackerName: TRACKER_1
          endpointApiUrl: google.com
          endpointDnsName: google.com
          endpointIp: 1.2.3.4
          interval: 30
          multiplier: 3
          threshold: 300
          endpointTrackerType: interface
          trackerType: endpoint
    

    Create TransportTrackerFeature Resource

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

    Constructor syntax

    new TransportTrackerFeature(name: string, args: TransportTrackerFeatureArgs, opts?: CustomResourceOptions);
    @overload
    def TransportTrackerFeature(resource_name: str,
                                args: TransportTrackerFeatureArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def TransportTrackerFeature(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                feature_profile_id: Optional[str] = None,
                                interval: Optional[int] = None,
                                tracker_name_variable: Optional[str] = None,
                                endpoint_dns_name: Optional[str] = None,
                                endpoint_dns_name_variable: Optional[str] = None,
                                endpoint_ip: Optional[str] = None,
                                endpoint_ip_variable: Optional[str] = None,
                                endpoint_tracker_type: Optional[str] = None,
                                interval_variable: Optional[str] = None,
                                tracker_type_variable: Optional[str] = None,
                                endpoint_api_url_variable: Optional[str] = None,
                                endpoint_tracker_type_variable: Optional[str] = None,
                                multiplier: Optional[int] = None,
                                multiplier_variable: Optional[str] = None,
                                name: Optional[str] = None,
                                threshold: Optional[int] = None,
                                threshold_variable: Optional[str] = None,
                                tracker_name: Optional[str] = None,
                                description: Optional[str] = None,
                                tracker_type: Optional[str] = None,
                                endpoint_api_url: Optional[str] = None)
    func NewTransportTrackerFeature(ctx *Context, name string, args TransportTrackerFeatureArgs, opts ...ResourceOption) (*TransportTrackerFeature, error)
    public TransportTrackerFeature(string name, TransportTrackerFeatureArgs args, CustomResourceOptions? opts = null)
    public TransportTrackerFeature(String name, TransportTrackerFeatureArgs args)
    public TransportTrackerFeature(String name, TransportTrackerFeatureArgs args, CustomResourceOptions options)
    
    type: sdwan:TransportTrackerFeature
    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 TransportTrackerFeatureArgs
    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 TransportTrackerFeatureArgs
    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 TransportTrackerFeatureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TransportTrackerFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TransportTrackerFeatureArgs
    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 transportTrackerFeatureResource = new Sdwan.TransportTrackerFeature("transportTrackerFeatureResource", new()
    {
        FeatureProfileId = "string",
        Interval = 0,
        TrackerNameVariable = "string",
        EndpointDnsName = "string",
        EndpointDnsNameVariable = "string",
        EndpointIp = "string",
        EndpointIpVariable = "string",
        EndpointTrackerType = "string",
        IntervalVariable = "string",
        TrackerTypeVariable = "string",
        EndpointApiUrlVariable = "string",
        EndpointTrackerTypeVariable = "string",
        Multiplier = 0,
        MultiplierVariable = "string",
        Name = "string",
        Threshold = 0,
        ThresholdVariable = "string",
        TrackerName = "string",
        Description = "string",
        TrackerType = "string",
        EndpointApiUrl = "string",
    });
    
    example, err := sdwan.NewTransportTrackerFeature(ctx, "transportTrackerFeatureResource", &sdwan.TransportTrackerFeatureArgs{
    	FeatureProfileId:            pulumi.String("string"),
    	Interval:                    pulumi.Int(0),
    	TrackerNameVariable:         pulumi.String("string"),
    	EndpointDnsName:             pulumi.String("string"),
    	EndpointDnsNameVariable:     pulumi.String("string"),
    	EndpointIp:                  pulumi.String("string"),
    	EndpointIpVariable:          pulumi.String("string"),
    	EndpointTrackerType:         pulumi.String("string"),
    	IntervalVariable:            pulumi.String("string"),
    	TrackerTypeVariable:         pulumi.String("string"),
    	EndpointApiUrlVariable:      pulumi.String("string"),
    	EndpointTrackerTypeVariable: pulumi.String("string"),
    	Multiplier:                  pulumi.Int(0),
    	MultiplierVariable:          pulumi.String("string"),
    	Name:                        pulumi.String("string"),
    	Threshold:                   pulumi.Int(0),
    	ThresholdVariable:           pulumi.String("string"),
    	TrackerName:                 pulumi.String("string"),
    	Description:                 pulumi.String("string"),
    	TrackerType:                 pulumi.String("string"),
    	EndpointApiUrl:              pulumi.String("string"),
    })
    
    var transportTrackerFeatureResource = new TransportTrackerFeature("transportTrackerFeatureResource", TransportTrackerFeatureArgs.builder()
        .featureProfileId("string")
        .interval(0)
        .trackerNameVariable("string")
        .endpointDnsName("string")
        .endpointDnsNameVariable("string")
        .endpointIp("string")
        .endpointIpVariable("string")
        .endpointTrackerType("string")
        .intervalVariable("string")
        .trackerTypeVariable("string")
        .endpointApiUrlVariable("string")
        .endpointTrackerTypeVariable("string")
        .multiplier(0)
        .multiplierVariable("string")
        .name("string")
        .threshold(0)
        .thresholdVariable("string")
        .trackerName("string")
        .description("string")
        .trackerType("string")
        .endpointApiUrl("string")
        .build());
    
    transport_tracker_feature_resource = sdwan.TransportTrackerFeature("transportTrackerFeatureResource",
        feature_profile_id="string",
        interval=0,
        tracker_name_variable="string",
        endpoint_dns_name="string",
        endpoint_dns_name_variable="string",
        endpoint_ip="string",
        endpoint_ip_variable="string",
        endpoint_tracker_type="string",
        interval_variable="string",
        tracker_type_variable="string",
        endpoint_api_url_variable="string",
        endpoint_tracker_type_variable="string",
        multiplier=0,
        multiplier_variable="string",
        name="string",
        threshold=0,
        threshold_variable="string",
        tracker_name="string",
        description="string",
        tracker_type="string",
        endpoint_api_url="string")
    
    const transportTrackerFeatureResource = new sdwan.TransportTrackerFeature("transportTrackerFeatureResource", {
        featureProfileId: "string",
        interval: 0,
        trackerNameVariable: "string",
        endpointDnsName: "string",
        endpointDnsNameVariable: "string",
        endpointIp: "string",
        endpointIpVariable: "string",
        endpointTrackerType: "string",
        intervalVariable: "string",
        trackerTypeVariable: "string",
        endpointApiUrlVariable: "string",
        endpointTrackerTypeVariable: "string",
        multiplier: 0,
        multiplierVariable: "string",
        name: "string",
        threshold: 0,
        thresholdVariable: "string",
        trackerName: "string",
        description: "string",
        trackerType: "string",
        endpointApiUrl: "string",
    });
    
    type: sdwan:TransportTrackerFeature
    properties:
        description: string
        endpointApiUrl: string
        endpointApiUrlVariable: string
        endpointDnsName: string
        endpointDnsNameVariable: string
        endpointIp: string
        endpointIpVariable: string
        endpointTrackerType: string
        endpointTrackerTypeVariable: string
        featureProfileId: string
        interval: 0
        intervalVariable: string
        multiplier: 0
        multiplierVariable: string
        name: string
        threshold: 0
        thresholdVariable: string
        trackerName: string
        trackerNameVariable: string
        trackerType: string
        trackerTypeVariable: string
    

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

    FeatureProfileId string
    Feature Profile ID
    Description string
    The description of the Feature
    EndpointApiUrl string
    API url of endpoint
    EndpointApiUrlVariable string
    Variable name
    EndpointDnsName string
    Endpoint DNS Name
    EndpointDnsNameVariable string
    Variable name
    EndpointIp string
    Endpoint IP
    EndpointIpVariable string
    Variable name
    EndpointTrackerType string
    Endpoint Tracker Type - Choices: interface - Default value: interface
    EndpointTrackerTypeVariable string
    Variable name
    Interval int
    Interval - Range: 20-600 - Default value: 60
    IntervalVariable string
    Variable name
    Multiplier int
    Multiplier - Range: 1-10 - Default value: 3
    MultiplierVariable string
    Variable name
    Name string
    The name of the Feature
    Threshold int
    Threshold - Range: 100-1000 - Default value: 300
    ThresholdVariable string
    Variable name
    TrackerName string
    Tracker Name
    TrackerNameVariable string
    Variable name
    TrackerType string
    Tracker Type - Choices: endpoint, object - Default value: endpoint
    TrackerTypeVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Description string
    The description of the Feature
    EndpointApiUrl string
    API url of endpoint
    EndpointApiUrlVariable string
    Variable name
    EndpointDnsName string
    Endpoint DNS Name
    EndpointDnsNameVariable string
    Variable name
    EndpointIp string
    Endpoint IP
    EndpointIpVariable string
    Variable name
    EndpointTrackerType string
    Endpoint Tracker Type - Choices: interface - Default value: interface
    EndpointTrackerTypeVariable string
    Variable name
    Interval int
    Interval - Range: 20-600 - Default value: 60
    IntervalVariable string
    Variable name
    Multiplier int
    Multiplier - Range: 1-10 - Default value: 3
    MultiplierVariable string
    Variable name
    Name string
    The name of the Feature
    Threshold int
    Threshold - Range: 100-1000 - Default value: 300
    ThresholdVariable string
    Variable name
    TrackerName string
    Tracker Name
    TrackerNameVariable string
    Variable name
    TrackerType string
    Tracker Type - Choices: endpoint, object - Default value: endpoint
    TrackerTypeVariable string
    Variable name
    featureProfileId String
    Feature Profile ID
    description String
    The description of the Feature
    endpointApiUrl String
    API url of endpoint
    endpointApiUrlVariable String
    Variable name
    endpointDnsName String
    Endpoint DNS Name
    endpointDnsNameVariable String
    Variable name
    endpointIp String
    Endpoint IP
    endpointIpVariable String
    Variable name
    endpointTrackerType String
    Endpoint Tracker Type - Choices: interface - Default value: interface
    endpointTrackerTypeVariable String
    Variable name
    interval Integer
    Interval - Range: 20-600 - Default value: 60
    intervalVariable String
    Variable name
    multiplier Integer
    Multiplier - Range: 1-10 - Default value: 3
    multiplierVariable String
    Variable name
    name String
    The name of the Feature
    threshold Integer
    Threshold - Range: 100-1000 - Default value: 300
    thresholdVariable String
    Variable name
    trackerName String
    Tracker Name
    trackerNameVariable String
    Variable name
    trackerType String
    Tracker Type - Choices: endpoint, object - Default value: endpoint
    trackerTypeVariable String
    Variable name
    featureProfileId string
    Feature Profile ID
    description string
    The description of the Feature
    endpointApiUrl string
    API url of endpoint
    endpointApiUrlVariable string
    Variable name
    endpointDnsName string
    Endpoint DNS Name
    endpointDnsNameVariable string
    Variable name
    endpointIp string
    Endpoint IP
    endpointIpVariable string
    Variable name
    endpointTrackerType string
    Endpoint Tracker Type - Choices: interface - Default value: interface
    endpointTrackerTypeVariable string
    Variable name
    interval number
    Interval - Range: 20-600 - Default value: 60
    intervalVariable string
    Variable name
    multiplier number
    Multiplier - Range: 1-10 - Default value: 3
    multiplierVariable string
    Variable name
    name string
    The name of the Feature
    threshold number
    Threshold - Range: 100-1000 - Default value: 300
    thresholdVariable string
    Variable name
    trackerName string
    Tracker Name
    trackerNameVariable string
    Variable name
    trackerType string
    Tracker Type - Choices: endpoint, object - Default value: endpoint
    trackerTypeVariable string
    Variable name
    feature_profile_id str
    Feature Profile ID
    description str
    The description of the Feature
    endpoint_api_url str
    API url of endpoint
    endpoint_api_url_variable str
    Variable name
    endpoint_dns_name str
    Endpoint DNS Name
    endpoint_dns_name_variable str
    Variable name
    endpoint_ip str
    Endpoint IP
    endpoint_ip_variable str
    Variable name
    endpoint_tracker_type str
    Endpoint Tracker Type - Choices: interface - Default value: interface
    endpoint_tracker_type_variable str
    Variable name
    interval int
    Interval - Range: 20-600 - Default value: 60
    interval_variable str
    Variable name
    multiplier int
    Multiplier - Range: 1-10 - Default value: 3
    multiplier_variable str
    Variable name
    name str
    The name of the Feature
    threshold int
    Threshold - Range: 100-1000 - Default value: 300
    threshold_variable str
    Variable name
    tracker_name str
    Tracker Name
    tracker_name_variable str
    Variable name
    tracker_type str
    Tracker Type - Choices: endpoint, object - Default value: endpoint
    tracker_type_variable str
    Variable name
    featureProfileId String
    Feature Profile ID
    description String
    The description of the Feature
    endpointApiUrl String
    API url of endpoint
    endpointApiUrlVariable String
    Variable name
    endpointDnsName String
    Endpoint DNS Name
    endpointDnsNameVariable String
    Variable name
    endpointIp String
    Endpoint IP
    endpointIpVariable String
    Variable name
    endpointTrackerType String
    Endpoint Tracker Type - Choices: interface - Default value: interface
    endpointTrackerTypeVariable String
    Variable name
    interval Number
    Interval - Range: 20-600 - Default value: 60
    intervalVariable String
    Variable name
    multiplier Number
    Multiplier - Range: 1-10 - Default value: 3
    multiplierVariable String
    Variable name
    name String
    The name of the Feature
    threshold Number
    Threshold - Range: 100-1000 - Default value: 300
    thresholdVariable String
    Variable name
    trackerName String
    Tracker Name
    trackerNameVariable String
    Variable name
    trackerType String
    Tracker Type - Choices: endpoint, object - Default value: endpoint
    trackerTypeVariable String
    Variable name

    Outputs

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

    Get an existing TransportTrackerFeature 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?: TransportTrackerFeatureState, opts?: CustomResourceOptions): TransportTrackerFeature
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            endpoint_api_url: Optional[str] = None,
            endpoint_api_url_variable: Optional[str] = None,
            endpoint_dns_name: Optional[str] = None,
            endpoint_dns_name_variable: Optional[str] = None,
            endpoint_ip: Optional[str] = None,
            endpoint_ip_variable: Optional[str] = None,
            endpoint_tracker_type: Optional[str] = None,
            endpoint_tracker_type_variable: Optional[str] = None,
            feature_profile_id: Optional[str] = None,
            interval: Optional[int] = None,
            interval_variable: Optional[str] = None,
            multiplier: Optional[int] = None,
            multiplier_variable: Optional[str] = None,
            name: Optional[str] = None,
            threshold: Optional[int] = None,
            threshold_variable: Optional[str] = None,
            tracker_name: Optional[str] = None,
            tracker_name_variable: Optional[str] = None,
            tracker_type: Optional[str] = None,
            tracker_type_variable: Optional[str] = None,
            version: Optional[int] = None) -> TransportTrackerFeature
    func GetTransportTrackerFeature(ctx *Context, name string, id IDInput, state *TransportTrackerFeatureState, opts ...ResourceOption) (*TransportTrackerFeature, error)
    public static TransportTrackerFeature Get(string name, Input<string> id, TransportTrackerFeatureState? state, CustomResourceOptions? opts = null)
    public static TransportTrackerFeature get(String name, Output<String> id, TransportTrackerFeatureState 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:
    Description string
    The description of the Feature
    EndpointApiUrl string
    API url of endpoint
    EndpointApiUrlVariable string
    Variable name
    EndpointDnsName string
    Endpoint DNS Name
    EndpointDnsNameVariable string
    Variable name
    EndpointIp string
    Endpoint IP
    EndpointIpVariable string
    Variable name
    EndpointTrackerType string
    Endpoint Tracker Type - Choices: interface - Default value: interface
    EndpointTrackerTypeVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Interval int
    Interval - Range: 20-600 - Default value: 60
    IntervalVariable string
    Variable name
    Multiplier int
    Multiplier - Range: 1-10 - Default value: 3
    MultiplierVariable string
    Variable name
    Name string
    The name of the Feature
    Threshold int
    Threshold - Range: 100-1000 - Default value: 300
    ThresholdVariable string
    Variable name
    TrackerName string
    Tracker Name
    TrackerNameVariable string
    Variable name
    TrackerType string
    Tracker Type - Choices: endpoint, object - Default value: endpoint
    TrackerTypeVariable string
    Variable name
    Version int
    The version of the Feature
    Description string
    The description of the Feature
    EndpointApiUrl string
    API url of endpoint
    EndpointApiUrlVariable string
    Variable name
    EndpointDnsName string
    Endpoint DNS Name
    EndpointDnsNameVariable string
    Variable name
    EndpointIp string
    Endpoint IP
    EndpointIpVariable string
    Variable name
    EndpointTrackerType string
    Endpoint Tracker Type - Choices: interface - Default value: interface
    EndpointTrackerTypeVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Interval int
    Interval - Range: 20-600 - Default value: 60
    IntervalVariable string
    Variable name
    Multiplier int
    Multiplier - Range: 1-10 - Default value: 3
    MultiplierVariable string
    Variable name
    Name string
    The name of the Feature
    Threshold int
    Threshold - Range: 100-1000 - Default value: 300
    ThresholdVariable string
    Variable name
    TrackerName string
    Tracker Name
    TrackerNameVariable string
    Variable name
    TrackerType string
    Tracker Type - Choices: endpoint, object - Default value: endpoint
    TrackerTypeVariable string
    Variable name
    Version int
    The version of the Feature
    description String
    The description of the Feature
    endpointApiUrl String
    API url of endpoint
    endpointApiUrlVariable String
    Variable name
    endpointDnsName String
    Endpoint DNS Name
    endpointDnsNameVariable String
    Variable name
    endpointIp String
    Endpoint IP
    endpointIpVariable String
    Variable name
    endpointTrackerType String
    Endpoint Tracker Type - Choices: interface - Default value: interface
    endpointTrackerTypeVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    interval Integer
    Interval - Range: 20-600 - Default value: 60
    intervalVariable String
    Variable name
    multiplier Integer
    Multiplier - Range: 1-10 - Default value: 3
    multiplierVariable String
    Variable name
    name String
    The name of the Feature
    threshold Integer
    Threshold - Range: 100-1000 - Default value: 300
    thresholdVariable String
    Variable name
    trackerName String
    Tracker Name
    trackerNameVariable String
    Variable name
    trackerType String
    Tracker Type - Choices: endpoint, object - Default value: endpoint
    trackerTypeVariable String
    Variable name
    version Integer
    The version of the Feature
    description string
    The description of the Feature
    endpointApiUrl string
    API url of endpoint
    endpointApiUrlVariable string
    Variable name
    endpointDnsName string
    Endpoint DNS Name
    endpointDnsNameVariable string
    Variable name
    endpointIp string
    Endpoint IP
    endpointIpVariable string
    Variable name
    endpointTrackerType string
    Endpoint Tracker Type - Choices: interface - Default value: interface
    endpointTrackerTypeVariable string
    Variable name
    featureProfileId string
    Feature Profile ID
    interval number
    Interval - Range: 20-600 - Default value: 60
    intervalVariable string
    Variable name
    multiplier number
    Multiplier - Range: 1-10 - Default value: 3
    multiplierVariable string
    Variable name
    name string
    The name of the Feature
    threshold number
    Threshold - Range: 100-1000 - Default value: 300
    thresholdVariable string
    Variable name
    trackerName string
    Tracker Name
    trackerNameVariable string
    Variable name
    trackerType string
    Tracker Type - Choices: endpoint, object - Default value: endpoint
    trackerTypeVariable string
    Variable name
    version number
    The version of the Feature
    description str
    The description of the Feature
    endpoint_api_url str
    API url of endpoint
    endpoint_api_url_variable str
    Variable name
    endpoint_dns_name str
    Endpoint DNS Name
    endpoint_dns_name_variable str
    Variable name
    endpoint_ip str
    Endpoint IP
    endpoint_ip_variable str
    Variable name
    endpoint_tracker_type str
    Endpoint Tracker Type - Choices: interface - Default value: interface
    endpoint_tracker_type_variable str
    Variable name
    feature_profile_id str
    Feature Profile ID
    interval int
    Interval - Range: 20-600 - Default value: 60
    interval_variable str
    Variable name
    multiplier int
    Multiplier - Range: 1-10 - Default value: 3
    multiplier_variable str
    Variable name
    name str
    The name of the Feature
    threshold int
    Threshold - Range: 100-1000 - Default value: 300
    threshold_variable str
    Variable name
    tracker_name str
    Tracker Name
    tracker_name_variable str
    Variable name
    tracker_type str
    Tracker Type - Choices: endpoint, object - Default value: endpoint
    tracker_type_variable str
    Variable name
    version int
    The version of the Feature
    description String
    The description of the Feature
    endpointApiUrl String
    API url of endpoint
    endpointApiUrlVariable String
    Variable name
    endpointDnsName String
    Endpoint DNS Name
    endpointDnsNameVariable String
    Variable name
    endpointIp String
    Endpoint IP
    endpointIpVariable String
    Variable name
    endpointTrackerType String
    Endpoint Tracker Type - Choices: interface - Default value: interface
    endpointTrackerTypeVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    interval Number
    Interval - Range: 20-600 - Default value: 60
    intervalVariable String
    Variable name
    multiplier Number
    Multiplier - Range: 1-10 - Default value: 3
    multiplierVariable String
    Variable name
    name String
    The name of the Feature
    threshold Number
    Threshold - Range: 100-1000 - Default value: 300
    thresholdVariable String
    Variable name
    trackerName String
    Tracker Name
    trackerNameVariable String
    Variable name
    trackerType String
    Tracker Type - Choices: endpoint, object - Default value: endpoint
    trackerTypeVariable String
    Variable name
    version Number
    The version of the Feature

    Import

    $ pulumi import sdwan:index/transportTrackerFeature:TransportTrackerFeature 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.3 published on Tuesday, Sep 24, 2024 by Pulumi