import { APIResource } from "../resource.js"; import * as Core from "../core.js"; import { SinglePage, V4PagePaginationArray, type V4PagePaginationArrayParams } from "../pagination.js"; /** * @deprecated The Filters API is deprecated in favour of using the Ruleset Engine. See https://developers.cloudflare.com/fundamentals/api/reference/deprecations/#firewall-rules-api-and-filters-api for full details. */ export declare class Filters extends APIResource { /** * Creates one or more filters. * * @deprecated The Filters API is deprecated in favour of using the Ruleset Engine. See https://developers.cloudflare.com/fundamentals/api/reference/deprecations/#firewall-rules-api-and-filters-api for full details. */ create(params: FilterCreateParams, options?: Core.RequestOptions): Core.PagePromise; /** * Updates an existing filter. * * @deprecated The Filters API is deprecated in favour of using the Ruleset Engine. See https://developers.cloudflare.com/fundamentals/api/reference/deprecations/#firewall-rules-api-and-filters-api for full details. */ update(filterId: string, params: FilterUpdateParams, options?: Core.RequestOptions): Core.APIPromise; /** * Fetches filters in a zone. You can filter the results using several optional * parameters. * * @deprecated The Filters API is deprecated in favour of using the Ruleset Engine. See https://developers.cloudflare.com/fundamentals/api/reference/deprecations/#firewall-rules-api-and-filters-api for full details. */ list(params: FilterListParams, options?: Core.RequestOptions): Core.PagePromise; /** * Deletes an existing filter. * * @deprecated The Filters API is deprecated in favour of using the Ruleset Engine. See https://developers.cloudflare.com/fundamentals/api/reference/deprecations/#firewall-rules-api-and-filters-api for full details. */ delete(filterId: string, params: FilterDeleteParams, options?: Core.RequestOptions): Core.APIPromise; /** * Deletes one or more existing filters. * * @deprecated The Filters API is deprecated in favour of using the Ruleset Engine. See https://developers.cloudflare.com/fundamentals/api/reference/deprecations/#firewall-rules-api-and-filters-api for full details. */ bulkDelete(params: FilterBulkDeleteParams, options?: Core.RequestOptions): Core.APIPromise; /** * Updates one or more existing filters. * * @deprecated The Filters API is deprecated in favour of using the Ruleset Engine. See https://developers.cloudflare.com/fundamentals/api/reference/deprecations/#firewall-rules-api-and-filters-api for full details. */ bulkUpdate(params: FilterBulkUpdateParams, options?: Core.RequestOptions): Core.PagePromise; /** * Fetches the details of a filter. * * @deprecated The Filters API is deprecated in favour of using the Ruleset Engine. See https://developers.cloudflare.com/fundamentals/api/reference/deprecations/#firewall-rules-api-and-filters-api for full details. */ get(filterId: string, params: FilterGetParams, options?: Core.RequestOptions): Core.APIPromise; } export declare class FirewallFiltersSinglePage extends SinglePage { } export declare class FirewallFiltersV4PagePaginationArray extends V4PagePaginationArray { } export interface FirewallFilter { /** * The unique identifier of the filter. */ id?: string; /** * An informative summary of the filter. */ description?: string; /** * The filter expression. For more information, refer to * [Expressions](https://developers.cloudflare.com/ruleset-engine/rules-language/expressions/). */ expression?: string; /** * When true, indicates that the filter is currently paused. */ paused?: boolean; /** * A short reference tag. Allows you to select related filters. */ ref?: string; } export interface FirewallFilterParam { /** * An informative summary of the filter. */ description?: string; /** * The filter expression. For more information, refer to * [Expressions](https://developers.cloudflare.com/ruleset-engine/rules-language/expressions/). */ expression?: string; /** * When true, indicates that the filter is currently paused. */ paused?: boolean; /** * A short reference tag. Allows you to select related filters. */ ref?: string; } export interface FilterDeleteResponse { /** * The unique identifier of the filter. */ id: string; } export type FilterBulkDeleteResponse = Array; export declare namespace FilterBulkDeleteResponse { interface FilterBulkDeleteResponseItem { /** * The unique identifier of the filter. */ id?: string; } } export interface FilterCreateParams { /** * Path param: Defines an identifier. */ zone_id: string; /** * Body param: */ body: Array; } export interface FilterUpdateParams { /** * Path param: Defines an identifier. */ zone_id: string; /** * Body param: An informative summary of the filter. */ description?: string; /** * Body param: The filter expression. For more information, refer to * [Expressions](https://developers.cloudflare.com/ruleset-engine/rules-language/expressions/). */ expression?: string; /** * Body param: When true, indicates that the filter is currently paused. */ paused?: boolean; /** * Body param: A short reference tag. Allows you to select related filters. */ ref?: string; } export interface FilterListParams extends V4PagePaginationArrayParams { /** * Path param: Defines an identifier. */ zone_id: string; /** * Query param: The unique identifier of the filter. */ id?: string; /** * Query param: A case-insensitive string to find in the description. */ description?: string; /** * Query param: A case-insensitive string to find in the expression. */ expression?: string; /** * Query param: When true, indicates that the filter is currently paused. */ paused?: boolean; /** * Query param: The filter ref (a short reference tag) to search for. Must be an * exact match. */ ref?: string; } export interface FilterDeleteParams { /** * Defines an identifier. */ zone_id: string; } export interface FilterBulkDeleteParams { /** * Path param: Defines an identifier. */ zone_id: string; /** * Query param: */ id: Array; } export interface FilterBulkUpdateParams { /** * Path param: Defines an identifier. */ zone_id: string; /** * Body param: */ body: Array; } export declare namespace FilterBulkUpdateParams { interface Body { /** * An informative summary of the filter. */ description?: string; /** * The filter expression. For more information, refer to * [Expressions](https://developers.cloudflare.com/ruleset-engine/rules-language/expressions/). */ expression?: string; /** * When true, indicates that the filter is currently paused. */ paused?: boolean; /** * A short reference tag. Allows you to select related filters. */ ref?: string; } } export interface FilterGetParams { /** * Defines an identifier. */ zone_id: string; } export declare namespace Filters { export { type FirewallFilter as FirewallFilter, type FilterDeleteResponse as FilterDeleteResponse, type FilterBulkDeleteResponse as FilterBulkDeleteResponse, FirewallFiltersSinglePage as FirewallFiltersSinglePage, FirewallFiltersV4PagePaginationArray as FirewallFiltersV4PagePaginationArray, type FilterCreateParams as FilterCreateParams, type FilterUpdateParams as FilterUpdateParams, type FilterListParams as FilterListParams, type FilterDeleteParams as FilterDeleteParams, type FilterBulkDeleteParams as FilterBulkDeleteParams, type FilterBulkUpdateParams as FilterBulkUpdateParams, type FilterGetParams as FilterGetParams, }; } //# sourceMappingURL=filters.d.ts.map