import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Prefix List configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getPrefixList({}); * ``` */ export declare function getPrefixList(args?: GetPrefixListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPrefixList. */ export interface GetPrefixListArgs { /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getPrefixList. */ export interface GetPrefixListResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; /** * Build prefix-lists with name ans seq.no */ readonly prefixes: outputs.GetPrefixListPrefix[]; } /** * This data source can read the Prefix List configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getPrefixList({}); * ``` */ export declare function getPrefixListOutput(args?: GetPrefixListOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getPrefixList. */ export interface GetPrefixListOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; }