import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Access List Extended configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getAccessListExtended({ * name: "EACL1", * }); * ``` */ export declare function getAccessListExtended(args: GetAccessListExtendedArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAccessListExtended. */ export interface GetAccessListExtendedArgs { /** * A device name from the provider configuration. */ device?: string; name: string; } /** * A collection of values returned by getAccessListExtended. */ export interface GetAccessListExtendedResult { /** * A device name from the provider configuration. */ readonly device?: string; readonly entries: outputs.GetAccessListExtendedEntry[]; /** * The path of the retrieved object. */ readonly id: string; readonly name: string; } /** * This data source can read the Access List Extended configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getAccessListExtended({ * name: "EACL1", * }); * ``` */ export declare function getAccessListExtendedOutput(args: GetAccessListExtendedOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getAccessListExtended. */ export interface GetAccessListExtendedOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; name: pulumi.Input; }