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

sdwan.ServiceObjectTrackerFeature

Explore with Pulumi AI

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

    This resource can manage a 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",
    });
    
    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")
    
    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
    	})
    }
    
    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",
        });
    
    });
    
    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());
    
        }
    }
    
    resources:
      example:
        type: sdwan:ServiceObjectTrackerFeature
        properties:
          name: Example
          description: My Example
          featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
          objectTrackerId: 10
          objectTrackerType: Interface
          interface: GigabitEthernet1
    

    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 string
    The unique name of the resource.
    args ServiceObjectTrackerFeatureArgs
    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 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 string
    The unique name of the resource.
    args ServiceObjectTrackerFeatureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceObjectTrackerFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args 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",
    });
    
    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"),
    })
    
    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());
    
    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")
    
    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",
    });
    
    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
    

    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

    The ServiceObjectTrackerFeature resource accepts the following input properties:

    FeatureProfileId string
    Feature Profile ID
    ObjectTrackerType 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 string
    Feature Profile ID
    ObjectTrackerType 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 String
    Feature Profile ID
    objectTrackerType 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 string
    Feature Profile ID
    objectTrackerType 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 str
    Feature Profile ID
    object_tracker_type 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 String
    Feature Profile ID
    objectTrackerType 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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Description string
    The description of the Feature
    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

    $ pulumi import sdwan:index/serviceObjectTrackerFeature:ServiceObjectTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
    

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

    Package Details

    Repository
    sdwan pulumi/pulumi-sdwan
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdwan Terraform Provider.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi