@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.61 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the Transport Tracker Feature.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getTransportTrackerFeature({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
* });
* ```
*/
export declare function getTransportTrackerFeature(args: GetTransportTrackerFeatureArgs, opts?: pulumi.InvokeOptions): Promise<GetTransportTrackerFeatureResult>;
/**
* A collection of arguments for invoking getTransportTrackerFeature.
*/
export interface GetTransportTrackerFeatureArgs {
/**
* Feature Profile ID
*/
featureProfileId: string;
/**
* The id of the Feature
*/
id: string;
}
/**
* A collection of values returned by getTransportTrackerFeature.
*/
export interface GetTransportTrackerFeatureResult {
/**
* 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 Tracker Feature.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getTransportTrackerFeature({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
* });
* ```
*/
export declare function getTransportTrackerFeatureOutput(args: GetTransportTrackerFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTransportTrackerFeatureResult>;
/**
* A collection of arguments for invoking getTransportTrackerFeature.
*/
export interface GetTransportTrackerFeatureOutputArgs {
/**
* Feature Profile ID
*/
featureProfileId: pulumi.Input<string>;
/**
* The id of the Feature
*/
id: pulumi.Input<string>;
}