import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the CTS configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCts({}); * ``` */ export declare function getCts(args?: GetCtsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCts. */ export interface GetCtsArgs { /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getCts. */ export interface GetCtsResult { /** * Local authorization list to use for CTS */ readonly authorizationList: string; /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; } /** * This data source can read the CTS configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCts({}); * ``` */ export declare function getCtsOutput(args?: GetCtsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getCts. */ export interface GetCtsOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; }