import * as pulumi from "@pulumi/pulumi"; /** * This data source can read a TACACS allowed protocols policy element. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.deviceadmin.getAllowedProtocolsTacacs({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getAllowedProtocolsTacacs(args?: GetAllowedProtocolsTacacsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAllowedProtocolsTacacs. */ export interface GetAllowedProtocolsTacacsArgs { /** * The id of the object */ id?: string; /** * The name of the allowed protocols */ name?: string; } /** * A collection of values returned by getAllowedProtocolsTacacs. */ export interface GetAllowedProtocolsTacacsResult { /** * Allow CHAP */ readonly allowChap: boolean; /** * Allow MS CHAP v1 */ readonly allowMsChapV1: boolean; /** * Allow PAP ASCII */ readonly allowPapAscii: boolean; /** * Description */ readonly description: string; /** * The id of the object */ readonly id: string; /** * The name of the allowed protocols */ readonly name: string; } /** * This data source can read a TACACS allowed protocols policy element. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.deviceadmin.getAllowedProtocolsTacacs({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getAllowedProtocolsTacacsOutput(args?: GetAllowedProtocolsTacacsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAllowedProtocolsTacacs. */ export interface GetAllowedProtocolsTacacsOutputArgs { /** * The id of the object */ id?: pulumi.Input; /** * The name of the allowed protocols */ name?: pulumi.Input; } //# sourceMappingURL=getAllowedProtocolsTacacs.d.ts.map