import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleFilters = cloudflare.getFilters({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * id: "372e67954025e0ba6aaa6d586b9e0b61", * description: "browsers", * expression: "php", * paused: false, * ref: "FIL-100", * }); * ``` */ export declare function getFilters(args: GetFiltersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFilters. */ export interface GetFiltersArgs { /** * A case-insensitive string to find in the description. */ description?: string; /** * A case-insensitive string to find in the expression. */ expression?: string; /** * The unique identifier of the filter. */ id?: string; /** * Max items to fetch, default: 1000 */ maxItems?: number; /** * When true, indicates that the filter is currently paused. */ paused?: boolean; /** * The filter ref (a short reference tag) to search for. Must be an exact match. */ ref?: string; /** * Defines an identifier. */ zoneId: string; } /** * A collection of values returned by getFilters. */ export interface GetFiltersResult { /** * A case-insensitive string to find in the description. */ readonly description?: string; /** * A case-insensitive string to find in the expression. */ readonly expression?: string; /** * The unique identifier of the filter. */ readonly id?: string; /** * Max items to fetch, default: 1000 */ readonly maxItems?: number; /** * When true, indicates that the filter is currently paused. */ readonly paused?: boolean; /** * The filter ref (a short reference tag) to search for. Must be an exact match. */ readonly ref?: string; /** * The items returned by the data source */ readonly results: outputs.GetFiltersResult[]; /** * Defines an identifier. */ readonly zoneId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleFilters = cloudflare.getFilters({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * id: "372e67954025e0ba6aaa6d586b9e0b61", * description: "browsers", * expression: "php", * paused: false, * ref: "FIL-100", * }); * ``` */ export declare function getFiltersOutput(args: GetFiltersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFilters. */ export interface GetFiltersOutputArgs { /** * A case-insensitive string to find in the description. */ description?: pulumi.Input; /** * A case-insensitive string to find in the expression. */ expression?: pulumi.Input; /** * The unique identifier of the filter. */ id?: pulumi.Input; /** * Max items to fetch, default: 1000 */ maxItems?: pulumi.Input; /** * When true, indicates that the filter is currently paused. */ paused?: pulumi.Input; /** * The filter ref (a short reference tag) to search for. Must be an exact match. */ ref?: pulumi.Input; /** * Defines an identifier. */ zoneId: pulumi.Input; }