import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the AAA Authorization configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getAaaAuthorization({}); * ``` */ export declare function getAaaAuthorization(args?: GetAaaAuthorizationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAaaAuthorization. */ export interface GetAaaAuthorizationArgs { /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getAaaAuthorization. */ export interface GetAaaAuthorizationResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * For starting an exec (shell). */ readonly execs: outputs.GetAaaAuthorizationExec[]; /** * The path of the retrieved object. */ readonly id: string; /** * For network services. (PPP, SLIP, ARAP) */ readonly networks: outputs.GetAaaAuthorizationNetwork[]; } /** * This data source can read the AAA Authorization configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getAaaAuthorization({}); * ``` */ export declare function getAaaAuthorizationOutput(args?: GetAaaAuthorizationOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getAaaAuthorization. */ export interface GetAaaAuthorizationOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; }