import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the AAA configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getAaa({}); * ``` */ export declare function getAaa(args?: GetAaaArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAaa. */ export interface GetAaaArgs { /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getAaa. */ export interface GetAaaResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * Radius server-group definition */ readonly groupServerRadii: outputs.GetAaaGroupServerRadius[]; /** * Tacacs+ server-group definition */ readonly groupServerTacacspluses: outputs.GetAaaGroupServerTacacsplus[]; /** * The path of the retrieved object. */ readonly id: string; /** * Enable NEW access control commands and functions.(Disables OLD commands.) */ readonly newModel: boolean; /** * Local server profile for RFC 3576 support */ readonly serverRadiusDynamicAuthor: boolean; /** * Specify a RADIUS client */ readonly serverRadiusDynamicAuthorClients: outputs.GetAaaServerRadiusDynamicAuthorClient[]; /** * AAA Session ID */ readonly sessionId: string; } /** * This data source can read the AAA configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getAaa({}); * ``` */ export declare function getAaaOutput(args?: GetAaaOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getAaa. */ export interface GetAaaOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; }