@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
83 lines (82 loc) • 2.03 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the CLI Device Template .
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getCliDeviceTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getCliDeviceTemplate(args: GetCliDeviceTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCliDeviceTemplateResult>;
/**
* A collection of arguments for invoking getCliDeviceTemplate.
*/
export interface GetCliDeviceTemplateArgs {
/**
* The id of the object
*/
id: string;
}
/**
* A collection of values returned by getCliDeviceTemplate.
*/
export interface GetCliDeviceTemplateResult {
/**
* CLI configuration
*/
readonly cliConfiguration: string;
/**
* CLI type
*/
readonly cliType: string;
/**
* The description of the device template
*/
readonly description: string;
/**
* The device type (e.g., `vedge-ISR-4331`)
*/
readonly deviceType: string;
/**
* The id of the object
*/
readonly id: string;
/**
* The name of the device template
*/
readonly name: string;
/**
* The version of the object
*/
readonly version: number;
}
/**
* This data source can read the CLI Device Template .
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getCliDeviceTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getCliDeviceTemplateOutput(args: GetCliDeviceTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCliDeviceTemplateResult>;
/**
* A collection of arguments for invoking getCliDeviceTemplate.
*/
export interface GetCliDeviceTemplateOutputArgs {
/**
* The id of the object
*/
id: pulumi.Input<string>;
}