import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to get a Fastly Next-Gen WAF Account List. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as fastly from "@pulumi/fastly"; * * const accountLists = fastly.getNgwafAccountLists({}); * export const fastlyNgwafAccountListsAll = accountLists; * ``` */ export declare function getNgwafAccountLists(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getNgwafAccountLists. */ export interface GetNgwafAccountListsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of lists. */ readonly lists: outputs.GetNgwafAccountListsList[]; } /** * Use this data source to get a Fastly Next-Gen WAF Account List. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as fastly from "@pulumi/fastly"; * * const accountLists = fastly.getNgwafAccountLists({}); * export const fastlyNgwafAccountListsAll = accountLists; * ``` */ export declare function getNgwafAccountListsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getNgwafAccountLists.d.ts.map