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

sdwan.ServiceObjectTrackerFeature

Explore with Pulumi AI

This resource can manage a Service Object 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.ServiceObjectTrackerFeature("example", {
    name: "Example",
    description: "My Example",
    featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    objectTrackerId: 10,
    objectTrackerType: "Interface",
    "interface": "GigabitEthernet1",
});
Copy
import pulumi
import pulumi_sdwan as sdwan

example = sdwan.ServiceObjectTrackerFeature("example",
    name="Example",
    description="My Example",
    feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    object_tracker_id=10,
    object_tracker_type="Interface",
    interface="GigabitEthernet1")
Copy
package main

import (
	"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sdwan.NewServiceObjectTrackerFeature(ctx, "example", &sdwan.ServiceObjectTrackerFeatureArgs{
			Name:              pulumi.String("Example"),
			Description:       pulumi.String("My Example"),
			FeatureProfileId:  pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
			ObjectTrackerId:   pulumi.Int(10),
			ObjectTrackerType: pulumi.String("Interface"),
			Interface:         pulumi.String("GigabitEthernet1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;

return await Deployment.RunAsync(() => 
{
    var example = new Sdwan.ServiceObjectTrackerFeature("example", new()
    {
        Name = "Example",
        Description = "My Example",
        FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        ObjectTrackerId = 10,
        ObjectTrackerType = "Interface",
        Interface = "GigabitEthernet1",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.ServiceObjectTrackerFeature;
import com.pulumi.sdwan.ServiceObjectTrackerFeatureArgs;
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 ServiceObjectTrackerFeature("example", ServiceObjectTrackerFeatureArgs.builder()
            .name("Example")
            .description("My Example")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .objectTrackerId(10)
            .objectTrackerType("Interface")
            .interface_("GigabitEthernet1")
            .build());

    }
}
Copy
resources:
  example:
    type: sdwan:ServiceObjectTrackerFeature
    properties:
      name: Example
      description: My Example
      featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      objectTrackerId: 10
      objectTrackerType: Interface
      interface: GigabitEthernet1
Copy

Create ServiceObjectTrackerFeature Resource

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

Constructor syntax

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

@overload
def ServiceObjectTrackerFeature(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                object_tracker_type: Optional[str] = None,
                                feature_profile_id: Optional[str] = None,
                                object_tracker_id_variable: Optional[str] = None,
                                interface_variable: Optional[str] = None,
                                name: Optional[str] = None,
                                object_tracker_id: Optional[int] = None,
                                description: Optional[str] = None,
                                interface: Optional[str] = None,
                                route_ip: Optional[str] = None,
                                route_ip_variable: Optional[str] = None,
                                route_mask: Optional[str] = None,
                                route_mask_variable: Optional[str] = None,
                                vpn: Optional[int] = None,
                                vpn_variable: Optional[str] = None)
func NewServiceObjectTrackerFeature(ctx *Context, name string, args ServiceObjectTrackerFeatureArgs, opts ...ResourceOption) (*ServiceObjectTrackerFeature, error)
public ServiceObjectTrackerFeature(string name, ServiceObjectTrackerFeatureArgs args, CustomResourceOptions? opts = null)
public ServiceObjectTrackerFeature(String name, ServiceObjectTrackerFeatureArgs args)
public ServiceObjectTrackerFeature(String name, ServiceObjectTrackerFeatureArgs args, CustomResourceOptions options)
type: sdwan:ServiceObjectTrackerFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ServiceObjectTrackerFeatureArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ServiceObjectTrackerFeatureArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ServiceObjectTrackerFeatureArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ServiceObjectTrackerFeatureArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ServiceObjectTrackerFeatureArgs
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 serviceObjectTrackerFeatureResource = new Sdwan.ServiceObjectTrackerFeature("serviceObjectTrackerFeatureResource", new()
{
    ObjectTrackerType = "string",
    FeatureProfileId = "string",
    ObjectTrackerIdVariable = "string",
    InterfaceVariable = "string",
    Name = "string",
    ObjectTrackerId = 0,
    Description = "string",
    Interface = "string",
    RouteIp = "string",
    RouteIpVariable = "string",
    RouteMask = "string",
    RouteMaskVariable = "string",
    Vpn = 0,
    VpnVariable = "string",
});
Copy
example, err := sdwan.NewServiceObjectTrackerFeature(ctx, "serviceObjectTrackerFeatureResource", &sdwan.ServiceObjectTrackerFeatureArgs{
	ObjectTrackerType:       pulumi.String("string"),
	FeatureProfileId:        pulumi.String("string"),
	ObjectTrackerIdVariable: pulumi.String("string"),
	InterfaceVariable:       pulumi.String("string"),
	Name:                    pulumi.String("string"),
	ObjectTrackerId:         pulumi.Int(0),
	Description:             pulumi.String("string"),
	Interface:               pulumi.String("string"),
	RouteIp:                 pulumi.String("string"),
	RouteIpVariable:         pulumi.String("string"),
	RouteMask:               pulumi.String("string"),
	RouteMaskVariable:       pulumi.String("string"),
	Vpn:                     pulumi.Int(0),
	VpnVariable:             pulumi.String("string"),
})
Copy
var serviceObjectTrackerFeatureResource = new ServiceObjectTrackerFeature("serviceObjectTrackerFeatureResource", ServiceObjectTrackerFeatureArgs.builder()
    .objectTrackerType("string")
    .featureProfileId("string")
    .objectTrackerIdVariable("string")
    .interfaceVariable("string")
    .name("string")
    .objectTrackerId(0)
    .description("string")
    .interface_("string")
    .routeIp("string")
    .routeIpVariable("string")
    .routeMask("string")
    .routeMaskVariable("string")
    .vpn(0)
    .vpnVariable("string")
    .build());
Copy
service_object_tracker_feature_resource = sdwan.ServiceObjectTrackerFeature("serviceObjectTrackerFeatureResource",
    object_tracker_type="string",
    feature_profile_id="string",
    object_tracker_id_variable="string",
    interface_variable="string",
    name="string",
    object_tracker_id=0,
    description="string",
    interface="string",
    route_ip="string",
    route_ip_variable="string",
    route_mask="string",
    route_mask_variable="string",
    vpn=0,
    vpn_variable="string")
Copy
const serviceObjectTrackerFeatureResource = new sdwan.ServiceObjectTrackerFeature("serviceObjectTrackerFeatureResource", {
    objectTrackerType: "string",
    featureProfileId: "string",
    objectTrackerIdVariable: "string",
    interfaceVariable: "string",
    name: "string",
    objectTrackerId: 0,
    description: "string",
    "interface": "string",
    routeIp: "string",
    routeIpVariable: "string",
    routeMask: "string",
    routeMaskVariable: "string",
    vpn: 0,
    vpnVariable: "string",
});
Copy
type: sdwan:ServiceObjectTrackerFeature
properties:
    description: string
    featureProfileId: string
    interface: string
    interfaceVariable: string
    name: string
    objectTrackerId: 0
    objectTrackerIdVariable: string
    objectTrackerType: string
    routeIp: string
    routeIpVariable: string
    routeMask: string
    routeMaskVariable: string
    vpn: 0
    vpnVariable: string
Copy

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

FeatureProfileId This property is required. string
Feature Profile ID
ObjectTrackerType This property is required. string
objectTrackerType:Interface SIG Route - Choices: Interface, SIG, Route
Description string
The description of the Feature
Interface string
interface name
InterfaceVariable string
Variable name
Name string
The name of the Feature
ObjectTrackerId int
Object tracker ID - Range: 1-1000
ObjectTrackerIdVariable string
Variable name
RouteIp string
IP address
RouteIpVariable string
Variable name
RouteMask string
IP mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0 - Default value: 0.0.0.0
RouteMaskVariable string
Variable name
Vpn int
VPN - Range: 0-65530
VpnVariable string
Variable name
FeatureProfileId This property is required. string
Feature Profile ID
ObjectTrackerType This property is required. string
objectTrackerType:Interface SIG Route - Choices: Interface, SIG, Route
Description string
The description of the Feature
Interface string
interface name
InterfaceVariable string
Variable name
Name string
The name of the Feature
ObjectTrackerId int
Object tracker ID - Range: 1-1000
ObjectTrackerIdVariable string
Variable name
RouteIp string
IP address
RouteIpVariable string
Variable name
RouteMask string
IP mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0 - Default value: 0.0.0.0
RouteMaskVariable string
Variable name
Vpn int
VPN - Range: 0-65530
VpnVariable string
Variable name
featureProfileId This property is required. String
Feature Profile ID
objectTrackerType This property is required. String
objectTrackerType:Interface SIG Route - Choices: Interface, SIG, Route
description String
The description of the Feature
interfaceVariable String
Variable name
interface_ String
interface name
name String
The name of the Feature
objectTrackerId Integer
Object tracker ID - Range: 1-1000
objectTrackerIdVariable String
Variable name
routeIp String
IP address
routeIpVariable String
Variable name
routeMask String
IP mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0 - Default value: 0.0.0.0
routeMaskVariable String
Variable name
vpn Integer
VPN - Range: 0-65530
vpnVariable String
Variable name
featureProfileId This property is required. string
Feature Profile ID
objectTrackerType This property is required. string
objectTrackerType:Interface SIG Route - Choices: Interface, SIG, Route
description string
The description of the Feature
interface string
interface name
interfaceVariable string
Variable name
name string
The name of the Feature
objectTrackerId number
Object tracker ID - Range: 1-1000
objectTrackerIdVariable string
Variable name
routeIp string
IP address
routeIpVariable string
Variable name
routeMask string
IP mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0 - Default value: 0.0.0.0
routeMaskVariable string
Variable name
vpn number
VPN - Range: 0-65530
vpnVariable string
Variable name
feature_profile_id This property is required. str
Feature Profile ID
object_tracker_type This property is required. str
objectTrackerType:Interface SIG Route - Choices: Interface, SIG, Route
description str
The description of the Feature
interface str
interface name
interface_variable str
Variable name
name str
The name of the Feature
object_tracker_id int
Object tracker ID - Range: 1-1000
object_tracker_id_variable str
Variable name
route_ip str
IP address
route_ip_variable str
Variable name
route_mask str
IP mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0 - Default value: 0.0.0.0
route_mask_variable str
Variable name
vpn int
VPN - Range: 0-65530
vpn_variable str
Variable name
featureProfileId This property is required. String
Feature Profile ID
objectTrackerType This property is required. String
objectTrackerType:Interface SIG Route - Choices: Interface, SIG, Route
description String
The description of the Feature
interface String
interface name
interfaceVariable String
Variable name
name String
The name of the Feature
objectTrackerId Number
Object tracker ID - Range: 1-1000
objectTrackerIdVariable String
Variable name
routeIp String
IP address
routeIpVariable String
Variable name
routeMask String
IP mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0 - Default value: 0.0.0.0
routeMaskVariable String
Variable name
vpn Number
VPN - Range: 0-65530
vpnVariable String
Variable name

Outputs

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

Get an existing ServiceObjectTrackerFeature 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?: ServiceObjectTrackerFeatureState, opts?: CustomResourceOptions): ServiceObjectTrackerFeature
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        feature_profile_id: Optional[str] = None,
        interface: Optional[str] = None,
        interface_variable: Optional[str] = None,
        name: Optional[str] = None,
        object_tracker_id: Optional[int] = None,
        object_tracker_id_variable: Optional[str] = None,
        object_tracker_type: Optional[str] = None,
        route_ip: Optional[str] = None,
        route_ip_variable: Optional[str] = None,
        route_mask: Optional[str] = None,
        route_mask_variable: Optional[str] = None,
        version: Optional[int] = None,
        vpn: Optional[int] = None,
        vpn_variable: Optional[str] = None) -> ServiceObjectTrackerFeature
func GetServiceObjectTrackerFeature(ctx *Context, name string, id IDInput, state *ServiceObjectTrackerFeatureState, opts ...ResourceOption) (*ServiceObjectTrackerFeature, error)
public static ServiceObjectTrackerFeature Get(string name, Input<string> id, ServiceObjectTrackerFeatureState? state, CustomResourceOptions? opts = null)
public static ServiceObjectTrackerFeature get(String name, Output<String> id, ServiceObjectTrackerFeatureState state, CustomResourceOptions options)
resources:  _:    type: sdwan:ServiceObjectTrackerFeature    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Description string
The description of the Feature
FeatureProfileId string
Feature Profile ID
Interface string
interface name
InterfaceVariable string
Variable name
Name string
The name of the Feature
ObjectTrackerId int
Object tracker ID - Range: 1-1000
ObjectTrackerIdVariable string
Variable name
ObjectTrackerType string
objectTrackerType:Interface SIG Route - Choices: Interface, SIG, Route
RouteIp string
IP address
RouteIpVariable string
Variable name
RouteMask string
IP mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0 - Default value: 0.0.0.0
RouteMaskVariable string
Variable name
Version int
The version of the Feature
Vpn int
VPN - Range: 0-65530
VpnVariable string
Variable name
Description string
The description of the Feature
FeatureProfileId string
Feature Profile ID
Interface string
interface name
InterfaceVariable string
Variable name
Name string
The name of the Feature
ObjectTrackerId int
Object tracker ID - Range: 1-1000
ObjectTrackerIdVariable string
Variable name
ObjectTrackerType string
objectTrackerType:Interface SIG Route - Choices: Interface, SIG, Route
RouteIp string
IP address
RouteIpVariable string
Variable name
RouteMask string
IP mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0 - Default value: 0.0.0.0
RouteMaskVariable string
Variable name
Version int
The version of the Feature
Vpn int
VPN - Range: 0-65530
VpnVariable string
Variable name
description String
The description of the Feature
featureProfileId String
Feature Profile ID
interfaceVariable String
Variable name
interface_ String
interface name
name String
The name of the Feature
objectTrackerId Integer
Object tracker ID - Range: 1-1000
objectTrackerIdVariable String
Variable name
objectTrackerType String
objectTrackerType:Interface SIG Route - Choices: Interface, SIG, Route
routeIp String
IP address
routeIpVariable String
Variable name
routeMask String
IP mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0 - Default value: 0.0.0.0
routeMaskVariable String
Variable name
version Integer
The version of the Feature
vpn Integer
VPN - Range: 0-65530
vpnVariable String
Variable name
description string
The description of the Feature
featureProfileId string
Feature Profile ID
interface string
interface name
interfaceVariable string
Variable name
name string
The name of the Feature
objectTrackerId number
Object tracker ID - Range: 1-1000
objectTrackerIdVariable string
Variable name
objectTrackerType string
objectTrackerType:Interface SIG Route - Choices: Interface, SIG, Route
routeIp string
IP address
routeIpVariable string
Variable name
routeMask string
IP mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0 - Default value: 0.0.0.0
routeMaskVariable string
Variable name
version number
The version of the Feature
vpn number
VPN - Range: 0-65530
vpnVariable string
Variable name
description str
The description of the Feature
feature_profile_id str
Feature Profile ID
interface str
interface name
interface_variable str
Variable name
name str
The name of the Feature
object_tracker_id int
Object tracker ID - Range: 1-1000
object_tracker_id_variable str
Variable name
object_tracker_type str
objectTrackerType:Interface SIG Route - Choices: Interface, SIG, Route
route_ip str
IP address
route_ip_variable str
Variable name
route_mask str
IP mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0 - Default value: 0.0.0.0
route_mask_variable str
Variable name
version int
The version of the Feature
vpn int
VPN - Range: 0-65530
vpn_variable str
Variable name
description String
The description of the Feature
featureProfileId String
Feature Profile ID
interface String
interface name
interfaceVariable String
Variable name
name String
The name of the Feature
objectTrackerId Number
Object tracker ID - Range: 1-1000
objectTrackerIdVariable String
Variable name
objectTrackerType String
objectTrackerType:Interface SIG Route - Choices: Interface, SIG, Route
routeIp String
IP address
routeIpVariable String
Variable name
routeMask String
IP mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0 - Default value: 0.0.0.0
routeMaskVariable String
Variable name
version Number
The version of the Feature
vpn Number
VPN - Range: 0-65530
vpnVariable String
Variable name

Import

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

$ pulumi import sdwan:index/serviceObjectTrackerFeature:ServiceObjectTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
sdwan pulumi/pulumi-sdwan
License
Apache-2.0
Notes
This Pulumi package is based on the sdwan Terraform Provider.