@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
167 lines (166 loc) • 3.79 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the Service Tracker Feature.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getServiceTrackerFeature({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
* });
* ```
*/
export declare function getServiceTrackerFeature(args: GetServiceTrackerFeatureArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceTrackerFeatureResult>;
/**
* A collection of arguments for invoking getServiceTrackerFeature.
*/
export interface GetServiceTrackerFeatureArgs {
/**
* Feature Profile ID
*/
featureProfileId: string;
/**
* The id of the Feature
*/
id: string;
}
/**
* A collection of values returned by getServiceTrackerFeature.
*/
export interface GetServiceTrackerFeatureResult {
/**
* 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;
readonly port: number;
/**
* Variable name
*/
readonly portVariable: string;
readonly protocol: string;
/**
* Variable name
*/
readonly protocolVariable: 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 Service Tracker Feature.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getServiceTrackerFeature({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
* });
* ```
*/
export declare function getServiceTrackerFeatureOutput(args: GetServiceTrackerFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceTrackerFeatureResult>;
/**
* A collection of arguments for invoking getServiceTrackerFeature.
*/
export interface GetServiceTrackerFeatureOutputArgs {
/**
* Feature Profile ID
*/
featureProfileId: pulumi.Input<string>;
/**
* The id of the Feature
*/
id: pulumi.Input<string>;
}