published on Tuesday, Apr 7, 2026 by Pulumi
published on Tuesday, Apr 7, 2026 by Pulumi
This resource can manage a Transport IPv6 Tracker Feature.
- Minimum SD-WAN Manager version:
20.15.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.TransportIpv6TrackerFeature("example", {
name: "Example",
description: "My Example",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
trackerName: "TRACKER_1",
endpointApiUrl: "google.com",
endpointDnsName: "google.com",
endpointIp: "2001:0:0:1::0",
interval: 30,
multiplier: 3,
threshold: 300,
endpointTrackerType: "ipv6-interface",
trackerType: "endpoint",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.TransportIpv6TrackerFeature("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="2001:0:0:1::0",
interval=30,
multiplier=3,
threshold=300,
endpoint_tracker_type="ipv6-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.NewTransportIpv6TrackerFeature(ctx, "example", &sdwan.TransportIpv6TrackerFeatureArgs{
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("2001:0:0:1::0"),
Interval: pulumi.Int(30),
Multiplier: pulumi.Int(3),
Threshold: pulumi.Int(300),
EndpointTrackerType: pulumi.String("ipv6-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.TransportIpv6TrackerFeature("example", new()
{
Name = "Example",
Description = "My Example",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
TrackerName = "TRACKER_1",
EndpointApiUrl = "google.com",
EndpointDnsName = "google.com",
EndpointIp = "2001:0:0:1::0",
Interval = 30,
Multiplier = 3,
Threshold = 300,
EndpointTrackerType = "ipv6-interface",
TrackerType = "endpoint",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.TransportIpv6TrackerFeature;
import com.pulumi.sdwan.TransportIpv6TrackerFeatureArgs;
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 TransportIpv6TrackerFeature("example", TransportIpv6TrackerFeatureArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.trackerName("TRACKER_1")
.endpointApiUrl("google.com")
.endpointDnsName("google.com")
.endpointIp("2001:0:0:1::0")
.interval(30)
.multiplier(3)
.threshold(300)
.endpointTrackerType("ipv6-interface")
.trackerType("endpoint")
.build());
}
}
resources:
example:
type: sdwan:TransportIpv6TrackerFeature
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
trackerName: TRACKER_1
endpointApiUrl: google.com
endpointDnsName: google.com
endpointIp: 2001:0:0:1::0
interval: 30
multiplier: 3
threshold: 300
endpointTrackerType: ipv6-interface
trackerType: endpoint
Example coming soon!
Create TransportIpv6TrackerFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TransportIpv6TrackerFeature(name: string, args: TransportIpv6TrackerFeatureArgs, opts?: CustomResourceOptions);@overload
def TransportIpv6TrackerFeature(resource_name: str,
args: TransportIpv6TrackerFeatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TransportIpv6TrackerFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
icmp_interval_variable: Optional[str] = None,
interval_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_api_url: Optional[str] = None,
icmp_interval: Optional[int] = None,
description: Optional[str] = None,
endpoint_api_url_variable: Optional[str] = None,
multiplier: Optional[int] = None,
interval: 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)func NewTransportIpv6TrackerFeature(ctx *Context, name string, args TransportIpv6TrackerFeatureArgs, opts ...ResourceOption) (*TransportIpv6TrackerFeature, error)public TransportIpv6TrackerFeature(string name, TransportIpv6TrackerFeatureArgs args, CustomResourceOptions? opts = null)
public TransportIpv6TrackerFeature(String name, TransportIpv6TrackerFeatureArgs args)
public TransportIpv6TrackerFeature(String name, TransportIpv6TrackerFeatureArgs args, CustomResourceOptions options)
type: sdwan:TransportIpv6TrackerFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "sdwan_transportipv6trackerfeature" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args TransportIpv6TrackerFeatureArgs
- 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 TransportIpv6TrackerFeatureArgs
- 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 TransportIpv6TrackerFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TransportIpv6TrackerFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TransportIpv6TrackerFeatureArgs
- 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 transportIpv6TrackerFeatureResource = new Sdwan.TransportIpv6TrackerFeature("transportIpv6TrackerFeatureResource", new()
{
FeatureProfileId = "string",
IcmpIntervalVariable = "string",
IntervalVariable = "string",
EndpointDnsName = "string",
EndpointDnsNameVariable = "string",
EndpointIp = "string",
EndpointIpVariable = "string",
EndpointTrackerType = "string",
EndpointApiUrl = "string",
IcmpInterval = 0,
Description = "string",
EndpointApiUrlVariable = "string",
Multiplier = 0,
Interval = 0,
MultiplierVariable = "string",
Name = "string",
Threshold = 0,
ThresholdVariable = "string",
TrackerName = "string",
TrackerNameVariable = "string",
TrackerType = "string",
TrackerTypeVariable = "string",
});
example, err := sdwan.NewTransportIpv6TrackerFeature(ctx, "transportIpv6TrackerFeatureResource", &sdwan.TransportIpv6TrackerFeatureArgs{
FeatureProfileId: pulumi.String("string"),
IcmpIntervalVariable: pulumi.String("string"),
IntervalVariable: pulumi.String("string"),
EndpointDnsName: pulumi.String("string"),
EndpointDnsNameVariable: pulumi.String("string"),
EndpointIp: pulumi.String("string"),
EndpointIpVariable: pulumi.String("string"),
EndpointTrackerType: pulumi.String("string"),
EndpointApiUrl: pulumi.String("string"),
IcmpInterval: pulumi.Int(0),
Description: pulumi.String("string"),
EndpointApiUrlVariable: pulumi.String("string"),
Multiplier: pulumi.Int(0),
Interval: pulumi.Int(0),
MultiplierVariable: pulumi.String("string"),
Name: pulumi.String("string"),
Threshold: pulumi.Int(0),
ThresholdVariable: pulumi.String("string"),
TrackerName: pulumi.String("string"),
TrackerNameVariable: pulumi.String("string"),
TrackerType: pulumi.String("string"),
TrackerTypeVariable: pulumi.String("string"),
})
resource "sdwan_transportipv6trackerfeature" "transportIpv6TrackerFeatureResource" {
feature_profile_id = "string"
icmp_interval_variable = "string"
interval_variable = "string"
endpoint_dns_name = "string"
endpoint_dns_name_variable = "string"
endpoint_ip = "string"
endpoint_ip_variable = "string"
endpoint_tracker_type = "string"
endpoint_api_url = "string"
icmp_interval = 0
description = "string"
endpoint_api_url_variable = "string"
multiplier = 0
interval = 0
multiplier_variable = "string"
name = "string"
threshold = 0
threshold_variable = "string"
tracker_name = "string"
tracker_name_variable = "string"
tracker_type = "string"
tracker_type_variable = "string"
}
var transportIpv6TrackerFeatureResource = new TransportIpv6TrackerFeature("transportIpv6TrackerFeatureResource", TransportIpv6TrackerFeatureArgs.builder()
.featureProfileId("string")
.icmpIntervalVariable("string")
.intervalVariable("string")
.endpointDnsName("string")
.endpointDnsNameVariable("string")
.endpointIp("string")
.endpointIpVariable("string")
.endpointTrackerType("string")
.endpointApiUrl("string")
.icmpInterval(0)
.description("string")
.endpointApiUrlVariable("string")
.multiplier(0)
.interval(0)
.multiplierVariable("string")
.name("string")
.threshold(0)
.thresholdVariable("string")
.trackerName("string")
.trackerNameVariable("string")
.trackerType("string")
.trackerTypeVariable("string")
.build());
transport_ipv6_tracker_feature_resource = sdwan.TransportIpv6TrackerFeature("transportIpv6TrackerFeatureResource",
feature_profile_id="string",
icmp_interval_variable="string",
interval_variable="string",
endpoint_dns_name="string",
endpoint_dns_name_variable="string",
endpoint_ip="string",
endpoint_ip_variable="string",
endpoint_tracker_type="string",
endpoint_api_url="string",
icmp_interval=0,
description="string",
endpoint_api_url_variable="string",
multiplier=0,
interval=0,
multiplier_variable="string",
name="string",
threshold=0,
threshold_variable="string",
tracker_name="string",
tracker_name_variable="string",
tracker_type="string",
tracker_type_variable="string")
const transportIpv6TrackerFeatureResource = new sdwan.TransportIpv6TrackerFeature("transportIpv6TrackerFeatureResource", {
featureProfileId: "string",
icmpIntervalVariable: "string",
intervalVariable: "string",
endpointDnsName: "string",
endpointDnsNameVariable: "string",
endpointIp: "string",
endpointIpVariable: "string",
endpointTrackerType: "string",
endpointApiUrl: "string",
icmpInterval: 0,
description: "string",
endpointApiUrlVariable: "string",
multiplier: 0,
interval: 0,
multiplierVariable: "string",
name: "string",
threshold: 0,
thresholdVariable: "string",
trackerName: "string",
trackerNameVariable: "string",
trackerType: "string",
trackerTypeVariable: "string",
});
type: sdwan:TransportIpv6TrackerFeature
properties:
description: string
endpointApiUrl: string
endpointApiUrlVariable: string
endpointDnsName: string
endpointDnsNameVariable: string
endpointIp: string
endpointIpVariable: string
endpointTrackerType: string
featureProfileId: string
icmpInterval: 0
icmpIntervalVariable: string
interval: 0
intervalVariable: string
multiplier: 0
multiplierVariable: string
name: string
threshold: 0
thresholdVariable: string
trackerName: string
trackerNameVariable: string
trackerType: string
trackerTypeVariable: string
TransportIpv6TrackerFeature 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 TransportIpv6TrackerFeature resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- Description string
- The description of the Feature
- Endpoint
Api stringUrl - API url of endpoint
- Endpoint
Api stringUrl Variable - Variable name
- Endpoint
Dns stringName - DNS Name
- Endpoint
Dns stringName Variable - Variable name
- Endpoint
Ip string - IP
- Endpoint
Ip stringVariable - Variable name
- Endpoint
Tracker stringType - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- Icmp
Interval int - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- Icmp
Interval stringVariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - Interval int
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- Interval
Variable string - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - Multiplier int
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- Multiplier
Variable string - Variable name
- Name string
- The name of the Feature
- Threshold int
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- Threshold
Variable string - Variable name
- Tracker
Name string - Tracker Name
- Tracker
Name stringVariable - Variable name
- Tracker
Type string - Tracker Type
- Choices:
endpoint - Default value:
endpoint
- Choices:
- Tracker
Type stringVariable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Description string
- The description of the Feature
- Endpoint
Api stringUrl - API url of endpoint
- Endpoint
Api stringUrl Variable - Variable name
- Endpoint
Dns stringName - DNS Name
- Endpoint
Dns stringName Variable - Variable name
- Endpoint
Ip string - IP
- Endpoint
Ip stringVariable - Variable name
- Endpoint
Tracker stringType - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- Icmp
Interval int - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- Icmp
Interval stringVariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - Interval int
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- Interval
Variable string - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - Multiplier int
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- Multiplier
Variable string - Variable name
- Name string
- The name of the Feature
- Threshold int
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- Threshold
Variable string - Variable name
- Tracker
Name string - Tracker Name
- Tracker
Name stringVariable - Variable name
- Tracker
Type string - Tracker Type
- Choices:
endpoint - Default value:
endpoint
- Choices:
- Tracker
Type stringVariable - Variable name
- feature_
profile_ stringid - Feature Profile ID
- description string
- The description of the Feature
- endpoint_
api_ stringurl - API url of endpoint
- endpoint_
api_ stringurl_ variable - Variable name
- endpoint_
dns_ stringname - DNS Name
- endpoint_
dns_ stringname_ variable - Variable name
- endpoint_
ip string - IP
- endpoint_
ip_ stringvariable - Variable name
- endpoint_
tracker_ stringtype - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- icmp_
interval number - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- icmp_
interval_ stringvariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - interval number
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- interval_
variable string - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - multiplier number
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- multiplier_
variable string - Variable name
- name string
- The name of the Feature
- threshold number
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- threshold_
variable string - Variable name
- tracker_
name string - Tracker Name
- tracker_
name_ stringvariable - Variable name
- tracker_
type string - Tracker Type
- Choices:
endpoint - Default value:
endpoint
- Choices:
- tracker_
type_ stringvariable - Variable name
- feature
Profile StringId - Feature Profile ID
- description String
- The description of the Feature
- endpoint
Api StringUrl - API url of endpoint
- endpoint
Api StringUrl Variable - Variable name
- endpoint
Dns StringName - DNS Name
- endpoint
Dns StringName Variable - Variable name
- endpoint
Ip String - IP
- endpoint
Ip StringVariable - Variable name
- endpoint
Tracker StringType - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- icmp
Interval Integer - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- icmp
Interval StringVariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - interval Integer
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- interval
Variable String - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - multiplier Integer
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- multiplier
Variable String - Variable name
- name String
- The name of the Feature
- threshold Integer
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- threshold
Variable String - Variable name
- tracker
Name String - Tracker Name
- tracker
Name StringVariable - Variable name
- tracker
Type String - Tracker Type
- Choices:
endpoint - Default value:
endpoint
- Choices:
- tracker
Type StringVariable - Variable name
- feature
Profile stringId - Feature Profile ID
- description string
- The description of the Feature
- endpoint
Api stringUrl - API url of endpoint
- endpoint
Api stringUrl Variable - Variable name
- endpoint
Dns stringName - DNS Name
- endpoint
Dns stringName Variable - Variable name
- endpoint
Ip string - IP
- endpoint
Ip stringVariable - Variable name
- endpoint
Tracker stringType - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- icmp
Interval number - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- icmp
Interval stringVariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - interval number
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- interval
Variable string - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - multiplier number
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- multiplier
Variable string - Variable name
- name string
- The name of the Feature
- threshold number
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- threshold
Variable string - Variable name
- tracker
Name string - Tracker Name
- tracker
Name stringVariable - Variable name
- tracker
Type string - Tracker Type
- Choices:
endpoint - Default value:
endpoint
- Choices:
- tracker
Type 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 - DNS Name
- endpoint_
dns_ strname_ variable - Variable name
- endpoint_
ip str - IP
- endpoint_
ip_ strvariable - Variable name
- endpoint_
tracker_ strtype - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- icmp_
interval int - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- icmp_
interval_ strvariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - interval int
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- interval_
variable str - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - multiplier int
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- multiplier_
variable str - Variable name
- name str
- The name of the Feature
- threshold int
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- 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
- Choices:
- tracker_
type_ strvariable - Variable name
- feature
Profile StringId - Feature Profile ID
- description String
- The description of the Feature
- endpoint
Api StringUrl - API url of endpoint
- endpoint
Api StringUrl Variable - Variable name
- endpoint
Dns StringName - DNS Name
- endpoint
Dns StringName Variable - Variable name
- endpoint
Ip String - IP
- endpoint
Ip StringVariable - Variable name
- endpoint
Tracker StringType - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- icmp
Interval Number - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- icmp
Interval StringVariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - interval Number
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- interval
Variable String - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - multiplier Number
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- multiplier
Variable String - Variable name
- name String
- The name of the Feature
- threshold Number
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- threshold
Variable String - Variable name
- tracker
Name String - Tracker Name
- tracker
Name StringVariable - Variable name
- tracker
Type String - Tracker Type
- Choices:
endpoint - Default value:
endpoint
- Choices:
- tracker
Type StringVariable - Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the TransportIpv6TrackerFeature resource produces the following output properties:
Look up Existing TransportIpv6TrackerFeature Resource
Get an existing TransportIpv6TrackerFeature 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?: TransportIpv6TrackerFeatureState, opts?: CustomResourceOptions): TransportIpv6TrackerFeature@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,
feature_profile_id: Optional[str] = None,
icmp_interval: Optional[int] = None,
icmp_interval_variable: 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) -> TransportIpv6TrackerFeaturefunc GetTransportIpv6TrackerFeature(ctx *Context, name string, id IDInput, state *TransportIpv6TrackerFeatureState, opts ...ResourceOption) (*TransportIpv6TrackerFeature, error)public static TransportIpv6TrackerFeature Get(string name, Input<string> id, TransportIpv6TrackerFeatureState? state, CustomResourceOptions? opts = null)public static TransportIpv6TrackerFeature get(String name, Output<String> id, TransportIpv6TrackerFeatureState state, CustomResourceOptions options)resources: _: type: sdwan:TransportIpv6TrackerFeature get: id: ${id}import {
to = sdwan_transportipv6trackerfeature.example
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
- Endpoint
Api stringUrl - API url of endpoint
- Endpoint
Api stringUrl Variable - Variable name
- Endpoint
Dns stringName - DNS Name
- Endpoint
Dns stringName Variable - Variable name
- Endpoint
Ip string - IP
- Endpoint
Ip stringVariable - Variable name
- Endpoint
Tracker stringType - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- Feature
Profile stringId - Feature Profile ID
- Icmp
Interval int - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- Icmp
Interval stringVariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - Interval int
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- Interval
Variable string - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - Multiplier int
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- Multiplier
Variable string - Variable name
- Name string
- The name of the Feature
- Threshold int
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- Threshold
Variable string - Variable name
- Tracker
Name string - Tracker Name
- Tracker
Name stringVariable - Variable name
- Tracker
Type string - Tracker Type
- Choices:
endpoint - Default value:
endpoint
- Choices:
- Tracker
Type stringVariable - Variable name
- Version int
- The version of the Feature
- Description string
- The description of the Feature
- Endpoint
Api stringUrl - API url of endpoint
- Endpoint
Api stringUrl Variable - Variable name
- Endpoint
Dns stringName - DNS Name
- Endpoint
Dns stringName Variable - Variable name
- Endpoint
Ip string - IP
- Endpoint
Ip stringVariable - Variable name
- Endpoint
Tracker stringType - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- Feature
Profile stringId - Feature Profile ID
- Icmp
Interval int - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- Icmp
Interval stringVariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - Interval int
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- Interval
Variable string - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - Multiplier int
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- Multiplier
Variable string - Variable name
- Name string
- The name of the Feature
- Threshold int
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- Threshold
Variable string - Variable name
- Tracker
Name string - Tracker Name
- Tracker
Name stringVariable - Variable name
- Tracker
Type string - Tracker Type
- Choices:
endpoint - Default value:
endpoint
- Choices:
- Tracker
Type stringVariable - Variable name
- Version int
- The version of the Feature
- description string
- The description of the Feature
- endpoint_
api_ stringurl - API url of endpoint
- endpoint_
api_ stringurl_ variable - Variable name
- endpoint_
dns_ stringname - DNS Name
- endpoint_
dns_ stringname_ variable - Variable name
- endpoint_
ip string - IP
- endpoint_
ip_ stringvariable - Variable name
- endpoint_
tracker_ stringtype - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- feature_
profile_ stringid - Feature Profile ID
- icmp_
interval number - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- icmp_
interval_ stringvariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - interval number
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- interval_
variable string - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - multiplier number
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- multiplier_
variable string - Variable name
- name string
- The name of the Feature
- threshold number
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- threshold_
variable string - Variable name
- tracker_
name string - Tracker Name
- tracker_
name_ stringvariable - Variable name
- tracker_
type string - Tracker Type
- Choices:
endpoint - Default value:
endpoint
- Choices:
- tracker_
type_ stringvariable - Variable name
- version number
- The version of the Feature
- description String
- The description of the Feature
- endpoint
Api StringUrl - API url of endpoint
- endpoint
Api StringUrl Variable - Variable name
- endpoint
Dns StringName - DNS Name
- endpoint
Dns StringName Variable - Variable name
- endpoint
Ip String - IP
- endpoint
Ip StringVariable - Variable name
- endpoint
Tracker StringType - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- feature
Profile StringId - Feature Profile ID
- icmp
Interval Integer - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- icmp
Interval StringVariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - interval Integer
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- interval
Variable String - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - multiplier Integer
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- multiplier
Variable String - Variable name
- name String
- The name of the Feature
- threshold Integer
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- threshold
Variable String - Variable name
- tracker
Name String - Tracker Name
- tracker
Name StringVariable - Variable name
- tracker
Type String - Tracker Type
- Choices:
endpoint - Default value:
endpoint
- Choices:
- tracker
Type StringVariable - Variable name
- version Integer
- The version of the Feature
- description string
- The description of the Feature
- endpoint
Api stringUrl - API url of endpoint
- endpoint
Api stringUrl Variable - Variable name
- endpoint
Dns stringName - DNS Name
- endpoint
Dns stringName Variable - Variable name
- endpoint
Ip string - IP
- endpoint
Ip stringVariable - Variable name
- endpoint
Tracker stringType - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- feature
Profile stringId - Feature Profile ID
- icmp
Interval number - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- icmp
Interval stringVariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - interval number
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- interval
Variable string - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - multiplier number
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- multiplier
Variable string - Variable name
- name string
- The name of the Feature
- threshold number
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- threshold
Variable string - Variable name
- tracker
Name string - Tracker Name
- tracker
Name stringVariable - Variable name
- tracker
Type string - Tracker Type
- Choices:
endpoint - Default value:
endpoint
- Choices:
- tracker
Type 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 - DNS Name
- endpoint_
dns_ strname_ variable - Variable name
- endpoint_
ip str - IP
- endpoint_
ip_ strvariable - Variable name
- endpoint_
tracker_ strtype - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- feature_
profile_ strid - Feature Profile ID
- icmp_
interval int - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- icmp_
interval_ strvariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - interval int
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- interval_
variable str - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - multiplier int
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- multiplier_
variable str - Variable name
- name str
- The name of the Feature
- threshold int
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- 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
- Choices:
- tracker_
type_ strvariable - Variable name
- version int
- The version of the Feature
- description String
- The description of the Feature
- endpoint
Api StringUrl - API url of endpoint
- endpoint
Api StringUrl Variable - Variable name
- endpoint
Dns StringName - DNS Name
- endpoint
Dns StringName Variable - Variable name
- endpoint
Ip String - IP
- endpoint
Ip StringVariable - Variable name
- endpoint
Tracker StringType - Endpoint Tracker Type
- Choices:
ipv6-interface,ipv6-interface-icmp - Default value:
ipv6-interface
- Choices:
- feature
Profile StringId - Feature Profile ID
- icmp
Interval Number - Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp- Range:
2-1000 - Default value:
2
- Range:
- icmp
Interval StringVariable - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface-icmp - interval Number
- Probe Interval, Attribute conditional on
endpointTrackerTypeequal toipv6-interface- Range:
20-600 - Default value:
60
- Range:
- interval
Variable String - Variable name, Attribute conditional on
endpointTrackerTypeequal toipv6-interface - multiplier Number
- Multiplier
- Range:
1-10 - Default value:
3
- Range:
- multiplier
Variable String - Variable name
- name String
- The name of the Feature
- threshold Number
- Threshold
- Range:
100-1000 - Default value:
300
- Range:
- threshold
Variable String - Variable name
- tracker
Name String - Tracker Name
- tracker
Name StringVariable - Variable name
- tracker
Type String - Tracker Type
- Choices:
endpoint - Default value:
endpoint
- Choices:
- tracker
Type StringVariable - Variable name
- version Number
- The version of the Feature
Import
The pulumi import command can be used, for example:
Expected import identifier with the format: “transport_ipv6_tracker_feature_id,feature_profile_id”
$ pulumi import sdwan:index/transportIpv6TrackerFeature:TransportIpv6TrackerFeature 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.
published on Tuesday, Apr 7, 2026 by Pulumi
