UNPKG

@pulumi/fastly

Version:

A Pulumi package for creating and managing fastly cloud resources.. Based on terraform-provider-fastly: version v4

44 lines (43 loc) 1.32 kB
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<GetNgwafAccountListsResult>; /** * 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<GetNgwafAccountListsResult>;