UNPKG

@pulumi/sdwan

Version:

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

157 lines (156 loc) 3.68 kB
import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Transport IPv6 Tracker Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTransportIpv6TrackerFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getTransportIpv6TrackerFeature(args: GetTransportIpv6TrackerFeatureArgs, opts?: pulumi.InvokeOptions): Promise<GetTransportIpv6TrackerFeatureResult>; /** * A collection of arguments for invoking getTransportIpv6TrackerFeature. */ export interface GetTransportIpv6TrackerFeatureArgs { /** * Feature Profile ID */ featureProfileId: string; /** * The id of the Feature */ id: string; } /** * A collection of values returned by getTransportIpv6TrackerFeature. */ export interface GetTransportIpv6TrackerFeatureResult { /** * The description of the Feature */ readonly description: string; /** * API url of endpoint */ readonly endpointApiUrl: string; /** * Variable name */ readonly endpointApiUrlVariable: string; /** * Endpoint DNS Name */ readonly endpointDnsName: string; /** * Variable name */ readonly endpointDnsNameVariable: string; /** * Endpoint IP */ readonly endpointIp: string; /** * Variable name */ readonly endpointIpVariable: string; /** * Endpoint Tracker Type */ readonly endpointTrackerType: string; /** * Variable name */ readonly endpointTrackerTypeVariable: string; /** * Feature Profile ID */ readonly featureProfileId: string; /** * The id of the Feature */ readonly id: string; /** * Interval */ readonly interval: number; /** * Variable name */ readonly intervalVariable: string; /** * Multiplier */ readonly multiplier: number; /** * Variable name */ readonly multiplierVariable: string; /** * The name of the Feature */ readonly name: string; /** * Threshold */ readonly threshold: number; /** * Variable name */ readonly thresholdVariable: string; /** * Tracker Name */ readonly trackerName: string; /** * Variable name */ readonly trackerNameVariable: string; /** * Tracker Type */ readonly trackerType: string; /** * Variable name */ readonly trackerTypeVariable: string; /** * The version of the Feature */ readonly version: number; } /** * This data source can read the Transport IPv6 Tracker Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTransportIpv6TrackerFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getTransportIpv6TrackerFeatureOutput(args: GetTransportIpv6TrackerFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTransportIpv6TrackerFeatureResult>; /** * A collection of arguments for invoking getTransportIpv6TrackerFeature. */ export interface GetTransportIpv6TrackerFeatureOutputArgs { /** * Feature Profile ID */ featureProfileId: pulumi.Input<string>; /** * The id of the Feature */ id: pulumi.Input<string>; }