import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getRouterCommunityList(args: GetRouterCommunityListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetRouterCommunityList. */ export interface GetRouterCommunityListArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetRouterCommunityList. */ export interface GetRouterCommunityListResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly rules: outputs.GetRouterCommunityListRule[]; readonly type: string; readonly vdomparam?: string; } export declare function getRouterCommunityListOutput(args: GetRouterCommunityListOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetRouterCommunityList. */ export interface GetRouterCommunityListOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }