import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Banner configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBanner({}); * ``` */ export declare function getBanner(args?: GetBannerArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBanner. */ export interface GetBannerArgs { /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getBanner. */ export interface GetBannerResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * Banner message */ readonly execBanner: string; /** * The path of the retrieved object. */ readonly id: string; /** * Banner message */ readonly loginBanner: string; /** * Banner message */ readonly motdBanner: string; /** * Banner message */ readonly promptTimeoutBanner: string; } /** * This data source can read the Banner configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBanner({}); * ``` */ export declare function getBannerOutput(args?: GetBannerOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getBanner. */ export interface GetBannerOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; }