UNPKG

@pulumi/sdwan

Version:

A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1

255 lines (254 loc) 8.54 kB
import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage a Service Object Tracker Feature. * - Minimum SD-WAN Manager version: `20.12.0` * * ## Example Usage * * ```typescript * 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 * * The `pulumi import` command can be used, for example: * * Expected import identifier with the format: "service_object_tracker_feature_id,feature_profile_id" * * ```sh * $ pulumi import sdwan:index/serviceObjectTrackerFeature:ServiceObjectTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac" * ``` */ export declare class ServiceObjectTrackerFeature extends pulumi.CustomResource { /** * Get an existing ServiceObjectTrackerFeature resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ServiceObjectTrackerFeatureState, opts?: pulumi.CustomResourceOptions): ServiceObjectTrackerFeature; /** * Returns true if the given object is an instance of ServiceObjectTrackerFeature. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ServiceObjectTrackerFeature; /** * The description of the Feature */ readonly description: pulumi.Output<string | undefined>; /** * Feature Profile ID */ readonly featureProfileId: pulumi.Output<string>; /** * interface name */ readonly interface: pulumi.Output<string | undefined>; /** * Variable name */ readonly interfaceVariable: pulumi.Output<string | undefined>; /** * The name of the Feature */ readonly name: pulumi.Output<string>; /** * Object tracker ID - Range: `1`-`1000` */ readonly objectTrackerId: pulumi.Output<number | undefined>; /** * Variable name */ readonly objectTrackerIdVariable: pulumi.Output<string | undefined>; /** * objectTrackerType:Interface SIG Route - Choices: `Interface`, `SIG`, `Route` */ readonly objectTrackerType: pulumi.Output<string>; /** * IP address */ readonly routeIp: pulumi.Output<string | undefined>; /** * Variable name */ readonly routeIpVariable: pulumi.Output<string | undefined>; /** * 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` */ readonly routeMask: pulumi.Output<string | undefined>; /** * Variable name */ readonly routeMaskVariable: pulumi.Output<string | undefined>; /** * The version of the Feature */ readonly version: pulumi.Output<number>; /** * VPN - Range: `0`-`65530` */ readonly vpn: pulumi.Output<number | undefined>; /** * Variable name */ readonly vpnVariable: pulumi.Output<string | undefined>; /** * Create a ServiceObjectTrackerFeature resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ServiceObjectTrackerFeatureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ServiceObjectTrackerFeature resources. */ export interface ServiceObjectTrackerFeatureState { /** * The description of the Feature */ description?: pulumi.Input<string>; /** * Feature Profile ID */ featureProfileId?: pulumi.Input<string>; /** * interface name */ interface?: pulumi.Input<string>; /** * Variable name */ interfaceVariable?: pulumi.Input<string>; /** * The name of the Feature */ name?: pulumi.Input<string>; /** * Object tracker ID - Range: `1`-`1000` */ objectTrackerId?: pulumi.Input<number>; /** * Variable name */ objectTrackerIdVariable?: pulumi.Input<string>; /** * objectTrackerType:Interface SIG Route - Choices: `Interface`, `SIG`, `Route` */ objectTrackerType?: pulumi.Input<string>; /** * IP address */ routeIp?: pulumi.Input<string>; /** * Variable name */ routeIpVariable?: pulumi.Input<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` */ routeMask?: pulumi.Input<string>; /** * Variable name */ routeMaskVariable?: pulumi.Input<string>; /** * The version of the Feature */ version?: pulumi.Input<number>; /** * VPN - Range: `0`-`65530` */ vpn?: pulumi.Input<number>; /** * Variable name */ vpnVariable?: pulumi.Input<string>; } /** * The set of arguments for constructing a ServiceObjectTrackerFeature resource. */ export interface ServiceObjectTrackerFeatureArgs { /** * The description of the Feature */ description?: pulumi.Input<string>; /** * Feature Profile ID */ featureProfileId: pulumi.Input<string>; /** * interface name */ interface?: pulumi.Input<string>; /** * Variable name */ interfaceVariable?: pulumi.Input<string>; /** * The name of the Feature */ name?: pulumi.Input<string>; /** * Object tracker ID - Range: `1`-`1000` */ objectTrackerId?: pulumi.Input<number>; /** * Variable name */ objectTrackerIdVariable?: pulumi.Input<string>; /** * objectTrackerType:Interface SIG Route - Choices: `Interface`, `SIG`, `Route` */ objectTrackerType: pulumi.Input<string>; /** * IP address */ routeIp?: pulumi.Input<string>; /** * Variable name */ routeIpVariable?: pulumi.Input<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` */ routeMask?: pulumi.Input<string>; /** * Variable name */ routeMaskVariable?: pulumi.Input<string>; /** * VPN - Range: `0`-`65530` */ vpn?: pulumi.Input<number>; /** * Variable name */ vpnVariable?: pulumi.Input<string>; }