@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
116 lines (115 loc) • 3.04 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* This data source can read the Cisco BFD feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getCiscoBfdFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getCiscoBfdFeatureTemplate(args?: GetCiscoBfdFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCiscoBfdFeatureTemplateResult>;
/**
* A collection of arguments for invoking getCiscoBfdFeatureTemplate.
*/
export interface GetCiscoBfdFeatureTemplateArgs {
/**
* The id of the feature template
*/
id?: string;
/**
* The name of the feature template
*/
name?: string;
}
/**
* A collection of values returned by getCiscoBfdFeatureTemplate.
*/
export interface GetCiscoBfdFeatureTemplateResult {
/**
* Set color that identifies the WAN transport tunnel
*/
readonly colors: outputs.GetCiscoBfdFeatureTemplateColor[];
/**
* Set default DSCP value for BFD packets
*/
readonly defaultDscp: number;
/**
* Variable name
*/
readonly defaultDscpVariable: string;
/**
* The description of the feature template
*/
readonly description: string;
/**
* List of supported device types
*/
readonly deviceTypes: string[];
/**
* The id of the feature template
*/
readonly id: string;
/**
* Set the number of polling intervals used to determine tunnel SLA class
*/
readonly multiplier: number;
/**
* Variable name
*/
readonly multiplierVariable: string;
/**
* The name of the feature template
*/
readonly name: string;
/**
* Set how often BFD polls tunnels to collect packet latency, loss, and statistics
*/
readonly pollInterval: number;
/**
* Variable name
*/
readonly pollIntervalVariable: string;
/**
* The template type
*/
readonly templateType: string;
/**
* The version of the feature template
*/
readonly version: number;
}
/**
* This data source can read the Cisco BFD feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getCiscoBfdFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getCiscoBfdFeatureTemplateOutput(args?: GetCiscoBfdFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCiscoBfdFeatureTemplateResult>;
/**
* A collection of arguments for invoking getCiscoBfdFeatureTemplate.
*/
export interface GetCiscoBfdFeatureTemplateOutputArgs {
/**
* The id of the feature template
*/
id?: pulumi.Input<string>;
/**
* The name of the feature template
*/
name?: pulumi.Input<string>;
}