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