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