@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
103 lines (102 loc) • 2.65 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the Cisco Banner feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getCiscoBannerFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getCiscoBannerFeatureTemplate(args?: GetCiscoBannerFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCiscoBannerFeatureTemplateResult>;
/**
* A collection of arguments for invoking getCiscoBannerFeatureTemplate.
*/
export interface GetCiscoBannerFeatureTemplateArgs {
/**
* The id of the feature template
*/
id?: string;
/**
* The name of the feature template
*/
name?: string;
}
/**
* A collection of values returned by getCiscoBannerFeatureTemplate.
*/
export interface GetCiscoBannerFeatureTemplateResult {
/**
* 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 message to display before login prompt
*/
readonly login: string;
/**
* Variable name
*/
readonly loginVariable: string;
/**
* Set message to display after a user logs in
*/
readonly motd: string;
/**
* Variable name
*/
readonly motdVariable: string;
/**
* The name of the feature template
*/
readonly name: string;
/**
* The template type
*/
readonly templateType: string;
/**
* The version of the feature template
*/
readonly version: number;
}
/**
* This data source can read the Cisco Banner feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getCiscoBannerFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getCiscoBannerFeatureTemplateOutput(args?: GetCiscoBannerFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCiscoBannerFeatureTemplateResult>;
/**
* A collection of arguments for invoking getCiscoBannerFeatureTemplate.
*/
export interface GetCiscoBannerFeatureTemplateOutputArgs {
/**
* The id of the feature template
*/
id?: pulumi.Input<string>;
/**
* The name of the feature template
*/
name?: pulumi.Input<string>;
}