import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getRouterPrefixList(args: GetRouterPrefixListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetRouterPrefixList. */ export interface GetRouterPrefixListArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetRouterPrefixList. */ export interface GetRouterPrefixListResult { readonly comments: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly rules: outputs.GetRouterPrefixListRule[]; readonly vdomparam?: string; } export declare function getRouterPrefixListOutput(args: GetRouterPrefixListOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetRouterPrefixList. */ export interface GetRouterPrefixListOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }