@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
135 lines (134 loc) • 3.11 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the gps feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getGpsFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getGpsFeatureTemplate(args?: GetGpsFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetGpsFeatureTemplateResult>;
/**
* A collection of arguments for invoking getGpsFeatureTemplate.
*/
export interface GetGpsFeatureTemplateArgs {
/**
* The id of the feature template
*/
id?: string;
/**
* The name of the feature template
*/
name?: string;
}
/**
* A collection of values returned by getGpsFeatureTemplate.
*/
export interface GetGpsFeatureTemplateResult {
/**
* The description of the feature template
*/
readonly description: string;
/**
* Destination address
*/
readonly destinationAddress: string;
/**
* Variable name
*/
readonly destinationAddressVariable: string;
/**
* Destination port
*/
readonly destinationPort: number;
/**
* Variable name
*/
readonly destinationPortVariable: string;
/**
* List of supported device types
*/
readonly deviceTypes: string[];
/**
* Enable/disable GPS
*/
readonly enable: boolean;
/**
* Variable name
*/
readonly enableVariable: string;
/**
* Select GPS mode
*/
readonly gpsMode: string;
/**
* Variable name
*/
readonly gpsModeVariable: string;
/**
* The id of the feature template
*/
readonly id: string;
/**
* The name of the feature template
*/
readonly name: string;
/**
* Enable/disable NMEA data
*/
readonly nmea: boolean;
/**
* Variable name
*/
readonly nmeaVariable: string;
/**
* Source address
*/
readonly sourceAddress: string;
/**
* Variable name
*/
readonly sourceAddressVariable: string;
/**
* The template type
*/
readonly templateType: string;
/**
* The version of the feature template
*/
readonly version: number;
}
/**
* This data source can read the gps feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getGpsFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getGpsFeatureTemplateOutput(args?: GetGpsFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGpsFeatureTemplateResult>;
/**
* A collection of arguments for invoking getGpsFeatureTemplate.
*/
export interface GetGpsFeatureTemplateOutputArgs {
/**
* The id of the feature template
*/
id?: pulumi.Input<string>;
/**
* The name of the feature template
*/
name?: pulumi.Input<string>;
}