sdwan.ServiceTrackerFeature
Explore with Pulumi AI
This resource can manage a Service 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.ServiceTrackerFeature("example", {
    name: "Example",
    description: "My Example",
    featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    trackerName: "TRACKER_2",
    endpointApiUrl: "google.com",
    endpointDnsName: "google.com",
    endpointIp: "1.2.3.4",
    protocol: "tcp",
    port: 123,
    interval: 30,
    multiplier: 3,
    threshold: 300,
    endpointTrackerType: "static-route",
    trackerType: "endpoint",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.ServiceTrackerFeature("example",
    name="Example",
    description="My Example",
    feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    tracker_name="TRACKER_2",
    endpoint_api_url="google.com",
    endpoint_dns_name="google.com",
    endpoint_ip="1.2.3.4",
    protocol="tcp",
    port=123,
    interval=30,
    multiplier=3,
    threshold=300,
    endpoint_tracker_type="static-route",
    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.NewServiceTrackerFeature(ctx, "example", &sdwan.ServiceTrackerFeatureArgs{
			Name:                pulumi.String("Example"),
			Description:         pulumi.String("My Example"),
			FeatureProfileId:    pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
			TrackerName:         pulumi.String("TRACKER_2"),
			EndpointApiUrl:      pulumi.String("google.com"),
			EndpointDnsName:     pulumi.String("google.com"),
			EndpointIp:          pulumi.String("1.2.3.4"),
			Protocol:            pulumi.String("tcp"),
			Port:                pulumi.Int(123),
			Interval:            pulumi.Int(30),
			Multiplier:          pulumi.Int(3),
			Threshold:           pulumi.Int(300),
			EndpointTrackerType: pulumi.String("static-route"),
			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.ServiceTrackerFeature("example", new()
    {
        Name = "Example",
        Description = "My Example",
        FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        TrackerName = "TRACKER_2",
        EndpointApiUrl = "google.com",
        EndpointDnsName = "google.com",
        EndpointIp = "1.2.3.4",
        Protocol = "tcp",
        Port = 123,
        Interval = 30,
        Multiplier = 3,
        Threshold = 300,
        EndpointTrackerType = "static-route",
        TrackerType = "endpoint",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.ServiceTrackerFeature;
import com.pulumi.sdwan.ServiceTrackerFeatureArgs;
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 ServiceTrackerFeature("example", ServiceTrackerFeatureArgs.builder()
            .name("Example")
            .description("My Example")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .trackerName("TRACKER_2")
            .endpointApiUrl("google.com")
            .endpointDnsName("google.com")
            .endpointIp("1.2.3.4")
            .protocol("tcp")
            .port(123)
            .interval(30)
            .multiplier(3)
            .threshold(300)
            .endpointTrackerType("static-route")
            .trackerType("endpoint")
            .build());
    }
}
resources:
  example:
    type: sdwan:ServiceTrackerFeature
    properties:
      name: Example
      description: My Example
      featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      trackerName: TRACKER_2
      endpointApiUrl: google.com
      endpointDnsName: google.com
      endpointIp: 1.2.3.4
      protocol: tcp
      port: 123
      interval: 30
      multiplier: 3
      threshold: 300
      endpointTrackerType: static-route
      trackerType: endpoint
Create ServiceTrackerFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceTrackerFeature(name: string, args: ServiceTrackerFeatureArgs, opts?: CustomResourceOptions);@overload
def ServiceTrackerFeature(resource_name: str,
                          args: ServiceTrackerFeatureArgs,
                          opts: Optional[ResourceOptions] = None)
@overload
def ServiceTrackerFeature(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          feature_profile_id: Optional[str] = None,
                          multiplier: 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,
                          endpoint_tracker_type_variable: Optional[str] = None,
                          endpoint_api_url: Optional[str] = None,
                          interval: Optional[int] = None,
                          tracker_type_variable: Optional[str] = None,
                          endpoint_api_url_variable: Optional[str] = None,
                          port: Optional[int] = None,
                          name: Optional[str] = None,
                          multiplier_variable: Optional[str] = None,
                          port_variable: Optional[str] = None,
                          protocol: Optional[str] = None,
                          protocol_variable: 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,
                          interval_variable: Optional[str] = None)func NewServiceTrackerFeature(ctx *Context, name string, args ServiceTrackerFeatureArgs, opts ...ResourceOption) (*ServiceTrackerFeature, error)public ServiceTrackerFeature(string name, ServiceTrackerFeatureArgs args, CustomResourceOptions? opts = null)
public ServiceTrackerFeature(String name, ServiceTrackerFeatureArgs args)
public ServiceTrackerFeature(String name, ServiceTrackerFeatureArgs args, CustomResourceOptions options)
type: sdwan:ServiceTrackerFeature
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 ServiceTrackerFeatureArgs
- 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 ServiceTrackerFeatureArgs
- 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 ServiceTrackerFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceTrackerFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceTrackerFeatureArgs
- 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 serviceTrackerFeatureResource = new Sdwan.ServiceTrackerFeature("serviceTrackerFeatureResource", new()
{
    FeatureProfileId = "string",
    Multiplier = 0,
    TrackerNameVariable = "string",
    EndpointDnsName = "string",
    EndpointDnsNameVariable = "string",
    EndpointIp = "string",
    EndpointIpVariable = "string",
    EndpointTrackerType = "string",
    EndpointTrackerTypeVariable = "string",
    EndpointApiUrl = "string",
    Interval = 0,
    TrackerTypeVariable = "string",
    EndpointApiUrlVariable = "string",
    Port = 0,
    Name = "string",
    MultiplierVariable = "string",
    PortVariable = "string",
    Protocol = "string",
    ProtocolVariable = "string",
    Threshold = 0,
    ThresholdVariable = "string",
    TrackerName = "string",
    Description = "string",
    TrackerType = "string",
    IntervalVariable = "string",
});
example, err := sdwan.NewServiceTrackerFeature(ctx, "serviceTrackerFeatureResource", &sdwan.ServiceTrackerFeatureArgs{
	FeatureProfileId:            pulumi.String("string"),
	Multiplier:                  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"),
	EndpointTrackerTypeVariable: pulumi.String("string"),
	EndpointApiUrl:              pulumi.String("string"),
	Interval:                    pulumi.Int(0),
	TrackerTypeVariable:         pulumi.String("string"),
	EndpointApiUrlVariable:      pulumi.String("string"),
	Port:                        pulumi.Int(0),
	Name:                        pulumi.String("string"),
	MultiplierVariable:          pulumi.String("string"),
	PortVariable:                pulumi.String("string"),
	Protocol:                    pulumi.String("string"),
	ProtocolVariable:            pulumi.String("string"),
	Threshold:                   pulumi.Int(0),
	ThresholdVariable:           pulumi.String("string"),
	TrackerName:                 pulumi.String("string"),
	Description:                 pulumi.String("string"),
	TrackerType:                 pulumi.String("string"),
	IntervalVariable:            pulumi.String("string"),
})
var serviceTrackerFeatureResource = new ServiceTrackerFeature("serviceTrackerFeatureResource", ServiceTrackerFeatureArgs.builder()
    .featureProfileId("string")
    .multiplier(0)
    .trackerNameVariable("string")
    .endpointDnsName("string")
    .endpointDnsNameVariable("string")
    .endpointIp("string")
    .endpointIpVariable("string")
    .endpointTrackerType("string")
    .endpointTrackerTypeVariable("string")
    .endpointApiUrl("string")
    .interval(0)
    .trackerTypeVariable("string")
    .endpointApiUrlVariable("string")
    .port(0)
    .name("string")
    .multiplierVariable("string")
    .portVariable("string")
    .protocol("string")
    .protocolVariable("string")
    .threshold(0)
    .thresholdVariable("string")
    .trackerName("string")
    .description("string")
    .trackerType("string")
    .intervalVariable("string")
    .build());
service_tracker_feature_resource = sdwan.ServiceTrackerFeature("serviceTrackerFeatureResource",
    feature_profile_id="string",
    multiplier=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",
    endpoint_tracker_type_variable="string",
    endpoint_api_url="string",
    interval=0,
    tracker_type_variable="string",
    endpoint_api_url_variable="string",
    port=0,
    name="string",
    multiplier_variable="string",
    port_variable="string",
    protocol="string",
    protocol_variable="string",
    threshold=0,
    threshold_variable="string",
    tracker_name="string",
    description="string",
    tracker_type="string",
    interval_variable="string")
const serviceTrackerFeatureResource = new sdwan.ServiceTrackerFeature("serviceTrackerFeatureResource", {
    featureProfileId: "string",
    multiplier: 0,
    trackerNameVariable: "string",
    endpointDnsName: "string",
    endpointDnsNameVariable: "string",
    endpointIp: "string",
    endpointIpVariable: "string",
    endpointTrackerType: "string",
    endpointTrackerTypeVariable: "string",
    endpointApiUrl: "string",
    interval: 0,
    trackerTypeVariable: "string",
    endpointApiUrlVariable: "string",
    port: 0,
    name: "string",
    multiplierVariable: "string",
    portVariable: "string",
    protocol: "string",
    protocolVariable: "string",
    threshold: 0,
    thresholdVariable: "string",
    trackerName: "string",
    description: "string",
    trackerType: "string",
    intervalVariable: "string",
});
type: sdwan:ServiceTrackerFeature
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
    port: 0
    portVariable: string
    protocol: string
    protocolVariable: string
    threshold: 0
    thresholdVariable: string
    trackerName: string
    trackerNameVariable: string
    trackerType: string
    trackerTypeVariable: string
ServiceTrackerFeature 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 ServiceTrackerFeature resource accepts the following input properties:
- FeatureProfile stringId 
- Feature Profile ID
- Description string
- The description of the Feature
- EndpointApi stringUrl 
- API url of endpoint
- EndpointApi stringUrl Variable 
- Variable name
- EndpointDns stringName 
- Endpoint DNS Name
- EndpointDns stringName Variable 
- Variable name
- EndpointIp string
- Endpoint IP
- EndpointIp stringVariable 
- Variable name
- EndpointTracker stringType 
- Endpoint Tracker Type - Choices: static-route- Default value:static-route
- EndpointTracker stringType Variable 
- 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
- Port int
- Range: 1-65535
 
- Range: 
- PortVariable string
- Variable name
- Protocol string
- Choices: tcp,udp
 
- Choices: 
- ProtocolVariable string
- Variable name
- Threshold int
- Threshold - Range: 100-1000- Default value:300
- ThresholdVariable string
- Variable name
- TrackerName string
- Tracker Name
- TrackerName stringVariable 
- Variable name
- TrackerType string
- Tracker Type - Choices: endpoint- Default value:endpoint
- TrackerType stringVariable 
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- Description string
- The description of the Feature
- EndpointApi stringUrl 
- API url of endpoint
- EndpointApi stringUrl Variable 
- Variable name
- EndpointDns stringName 
- Endpoint DNS Name
- EndpointDns stringName Variable 
- Variable name
- EndpointIp string
- Endpoint IP
- EndpointIp stringVariable 
- Variable name
- EndpointTracker stringType 
- Endpoint Tracker Type - Choices: static-route- Default value:static-route
- EndpointTracker stringType Variable 
- 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
- Port int
- Range: 1-65535
 
- Range: 
- PortVariable string
- Variable name
- Protocol string
- Choices: tcp,udp
 
- Choices: 
- ProtocolVariable string
- Variable name
- Threshold int
- Threshold - Range: 100-1000- Default value:300
- ThresholdVariable string
- Variable name
- TrackerName string
- Tracker Name
- TrackerName stringVariable 
- Variable name
- TrackerType string
- Tracker Type - Choices: endpoint- Default value:endpoint
- TrackerType stringVariable 
- Variable name
- featureProfile StringId 
- Feature Profile ID
- description String
- The description of the Feature
- endpointApi StringUrl 
- API url of endpoint
- endpointApi StringUrl Variable 
- Variable name
- endpointDns StringName 
- Endpoint DNS Name
- endpointDns StringName Variable 
- Variable name
- endpointIp String
- Endpoint IP
- endpointIp StringVariable 
- Variable name
- endpointTracker StringType 
- Endpoint Tracker Type - Choices: static-route- Default value:static-route
- endpointTracker StringType Variable 
- 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
- port Integer
- Range: 1-65535
 
- Range: 
- portVariable String
- Variable name
- protocol String
- Choices: tcp,udp
 
- Choices: 
- protocolVariable String
- Variable name
- threshold Integer
- Threshold - Range: 100-1000- Default value:300
- thresholdVariable String
- Variable name
- trackerName String
- Tracker Name
- trackerName StringVariable 
- Variable name
- trackerType String
- Tracker Type - Choices: endpoint- Default value:endpoint
- trackerType StringVariable 
- Variable name
- featureProfile stringId 
- Feature Profile ID
- description string
- The description of the Feature
- endpointApi stringUrl 
- API url of endpoint
- endpointApi stringUrl Variable 
- Variable name
- endpointDns stringName 
- Endpoint DNS Name
- endpointDns stringName Variable 
- Variable name
- endpointIp string
- Endpoint IP
- endpointIp stringVariable 
- Variable name
- endpointTracker stringType 
- Endpoint Tracker Type - Choices: static-route- Default value:static-route
- endpointTracker stringType Variable 
- 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
- port number
- Range: 1-65535
 
- Range: 
- portVariable string
- Variable name
- protocol string
- Choices: tcp,udp
 
- Choices: 
- protocolVariable string
- Variable name
- threshold number
- Threshold - Range: 100-1000- Default value:300
- thresholdVariable string
- Variable name
- trackerName string
- Tracker Name
- trackerName stringVariable 
- Variable name
- trackerType string
- Tracker Type - Choices: endpoint- Default value:endpoint
- trackerType stringVariable 
- Variable name
- feature_profile_ strid 
- Feature Profile ID
- description str
- The description of the Feature
- endpoint_api_ strurl 
- API url of endpoint
- endpoint_api_ strurl_ variable 
- Variable name
- endpoint_dns_ strname 
- Endpoint DNS Name
- endpoint_dns_ strname_ variable 
- Variable name
- endpoint_ip str
- Endpoint IP
- endpoint_ip_ strvariable 
- Variable name
- endpoint_tracker_ strtype 
- Endpoint Tracker Type - Choices: static-route- Default value:static-route
- endpoint_tracker_ strtype_ variable 
- 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
- port int
- Range: 1-65535
 
- Range: 
- port_variable str
- Variable name
- protocol str
- Choices: tcp,udp
 
- Choices: 
- protocol_variable str
- Variable name
- threshold int
- Threshold - Range: 100-1000- Default value:300
- threshold_variable str
- Variable name
- tracker_name str
- Tracker Name
- tracker_name_ strvariable 
- Variable name
- tracker_type str
- Tracker Type - Choices: endpoint- Default value:endpoint
- tracker_type_ strvariable 
- Variable name
- featureProfile StringId 
- Feature Profile ID
- description String
- The description of the Feature
- endpointApi StringUrl 
- API url of endpoint
- endpointApi StringUrl Variable 
- Variable name
- endpointDns StringName 
- Endpoint DNS Name
- endpointDns StringName Variable 
- Variable name
- endpointIp String
- Endpoint IP
- endpointIp StringVariable 
- Variable name
- endpointTracker StringType 
- Endpoint Tracker Type - Choices: static-route- Default value:static-route
- endpointTracker StringType Variable 
- 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
- port Number
- Range: 1-65535
 
- Range: 
- portVariable String
- Variable name
- protocol String
- Choices: tcp,udp
 
- Choices: 
- protocolVariable String
- Variable name
- threshold Number
- Threshold - Range: 100-1000- Default value:300
- thresholdVariable String
- Variable name
- trackerName String
- Tracker Name
- trackerName StringVariable 
- Variable name
- trackerType String
- Tracker Type - Choices: endpoint- Default value:endpoint
- trackerType StringVariable 
- Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceTrackerFeature resource produces the following output properties:
Look up Existing ServiceTrackerFeature Resource
Get an existing ServiceTrackerFeature 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?: ServiceTrackerFeatureState, opts?: CustomResourceOptions): ServiceTrackerFeature@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,
        port: Optional[int] = None,
        port_variable: Optional[str] = None,
        protocol: Optional[str] = None,
        protocol_variable: 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) -> ServiceTrackerFeaturefunc GetServiceTrackerFeature(ctx *Context, name string, id IDInput, state *ServiceTrackerFeatureState, opts ...ResourceOption) (*ServiceTrackerFeature, error)public static ServiceTrackerFeature Get(string name, Input<string> id, ServiceTrackerFeatureState? state, CustomResourceOptions? opts = null)public static ServiceTrackerFeature get(String name, Output<String> id, ServiceTrackerFeatureState state, CustomResourceOptions options)resources:  _:    type: sdwan:ServiceTrackerFeature    get:      id: ${id}- 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.
- Description string
- The description of the Feature
- EndpointApi stringUrl 
- API url of endpoint
- EndpointApi stringUrl Variable 
- Variable name
- EndpointDns stringName 
- Endpoint DNS Name
- EndpointDns stringName Variable 
- Variable name
- EndpointIp string
- Endpoint IP
- EndpointIp stringVariable 
- Variable name
- EndpointTracker stringType 
- Endpoint Tracker Type - Choices: static-route- Default value:static-route
- EndpointTracker stringType Variable 
- Variable name
- FeatureProfile stringId 
- 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
- Port int
- Range: 1-65535
 
- Range: 
- PortVariable string
- Variable name
- Protocol string
- Choices: tcp,udp
 
- Choices: 
- ProtocolVariable string
- Variable name
- Threshold int
- Threshold - Range: 100-1000- Default value:300
- ThresholdVariable string
- Variable name
- TrackerName string
- Tracker Name
- TrackerName stringVariable 
- Variable name
- TrackerType string
- Tracker Type - Choices: endpoint- Default value:endpoint
- TrackerType stringVariable 
- Variable name
- Version int
- The version of the Feature
- Description string
- The description of the Feature
- EndpointApi stringUrl 
- API url of endpoint
- EndpointApi stringUrl Variable 
- Variable name
- EndpointDns stringName 
- Endpoint DNS Name
- EndpointDns stringName Variable 
- Variable name
- EndpointIp string
- Endpoint IP
- EndpointIp stringVariable 
- Variable name
- EndpointTracker stringType 
- Endpoint Tracker Type - Choices: static-route- Default value:static-route
- EndpointTracker stringType Variable 
- Variable name
- FeatureProfile stringId 
- 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
- Port int
- Range: 1-65535
 
- Range: 
- PortVariable string
- Variable name
- Protocol string
- Choices: tcp,udp
 
- Choices: 
- ProtocolVariable string
- Variable name
- Threshold int
- Threshold - Range: 100-1000- Default value:300
- ThresholdVariable string
- Variable name
- TrackerName string
- Tracker Name
- TrackerName stringVariable 
- Variable name
- TrackerType string
- Tracker Type - Choices: endpoint- Default value:endpoint
- TrackerType stringVariable 
- Variable name
- Version int
- The version of the Feature
- description String
- The description of the Feature
- endpointApi StringUrl 
- API url of endpoint
- endpointApi StringUrl Variable 
- Variable name
- endpointDns StringName 
- Endpoint DNS Name
- endpointDns StringName Variable 
- Variable name
- endpointIp String
- Endpoint IP
- endpointIp StringVariable 
- Variable name
- endpointTracker StringType 
- Endpoint Tracker Type - Choices: static-route- Default value:static-route
- endpointTracker StringType Variable 
- Variable name
- featureProfile StringId 
- 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
- port Integer
- Range: 1-65535
 
- Range: 
- portVariable String
- Variable name
- protocol String
- Choices: tcp,udp
 
- Choices: 
- protocolVariable String
- Variable name
- threshold Integer
- Threshold - Range: 100-1000- Default value:300
- thresholdVariable String
- Variable name
- trackerName String
- Tracker Name
- trackerName StringVariable 
- Variable name
- trackerType String
- Tracker Type - Choices: endpoint- Default value:endpoint
- trackerType StringVariable 
- Variable name
- version Integer
- The version of the Feature
- description string
- The description of the Feature
- endpointApi stringUrl 
- API url of endpoint
- endpointApi stringUrl Variable 
- Variable name
- endpointDns stringName 
- Endpoint DNS Name
- endpointDns stringName Variable 
- Variable name
- endpointIp string
- Endpoint IP
- endpointIp stringVariable 
- Variable name
- endpointTracker stringType 
- Endpoint Tracker Type - Choices: static-route- Default value:static-route
- endpointTracker stringType Variable 
- Variable name
- featureProfile stringId 
- 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
- port number
- Range: 1-65535
 
- Range: 
- portVariable string
- Variable name
- protocol string
- Choices: tcp,udp
 
- Choices: 
- protocolVariable string
- Variable name
- threshold number
- Threshold - Range: 100-1000- Default value:300
- thresholdVariable string
- Variable name
- trackerName string
- Tracker Name
- trackerName stringVariable 
- Variable name
- trackerType string
- Tracker Type - Choices: endpoint- Default value:endpoint
- trackerType stringVariable 
- Variable name
- version number
- The version of the Feature
- description str
- The description of the Feature
- endpoint_api_ strurl 
- API url of endpoint
- endpoint_api_ strurl_ variable 
- Variable name
- endpoint_dns_ strname 
- Endpoint DNS Name
- endpoint_dns_ strname_ variable 
- Variable name
- endpoint_ip str
- Endpoint IP
- endpoint_ip_ strvariable 
- Variable name
- endpoint_tracker_ strtype 
- Endpoint Tracker Type - Choices: static-route- Default value:static-route
- endpoint_tracker_ strtype_ variable 
- Variable name
- feature_profile_ strid 
- 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
- port int
- Range: 1-65535
 
- Range: 
- port_variable str
- Variable name
- protocol str
- Choices: tcp,udp
 
- Choices: 
- protocol_variable str
- Variable name
- threshold int
- Threshold - Range: 100-1000- Default value:300
- threshold_variable str
- Variable name
- tracker_name str
- Tracker Name
- tracker_name_ strvariable 
- Variable name
- tracker_type str
- Tracker Type - Choices: endpoint- Default value:endpoint
- tracker_type_ strvariable 
- Variable name
- version int
- The version of the Feature
- description String
- The description of the Feature
- endpointApi StringUrl 
- API url of endpoint
- endpointApi StringUrl Variable 
- Variable name
- endpointDns StringName 
- Endpoint DNS Name
- endpointDns StringName Variable 
- Variable name
- endpointIp String
- Endpoint IP
- endpointIp StringVariable 
- Variable name
- endpointTracker StringType 
- Endpoint Tracker Type - Choices: static-route- Default value:static-route
- endpointTracker StringType Variable 
- Variable name
- featureProfile StringId 
- 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
- port Number
- Range: 1-65535
 
- Range: 
- portVariable String
- Variable name
- protocol String
- Choices: tcp,udp
 
- Choices: 
- protocolVariable String
- Variable name
- threshold Number
- Threshold - Range: 100-1000- Default value:300
- thresholdVariable String
- Variable name
- trackerName String
- Tracker Name
- trackerName StringVariable 
- Variable name
- trackerType String
- Tracker Type - Choices: endpoint- Default value:endpoint
- trackerType StringVariable 
- Variable name
- version Number
- The version of the Feature
Import
Expected import identifier with the format: “service_tracker_feature_id,feature_profile_id”
$ pulumi import sdwan:index/serviceTrackerFeature:ServiceTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
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 sdwanTerraform Provider.
