UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

46 lines 2.33 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; import * as GroupsAPI from 'cloudflare/resources/firewall/waf/packages/groups'; import { V4PagePaginationArray } from 'cloudflare/pagination'; export class Groups extends APIResource { /** * Fetches the WAF rule groups in a WAF package. * * **Note:** Applies only to the * [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ list(packageId, params, options) { const { zone_id, ...query } = params; return this._client.getAPIList(`/zones/${zone_id}/firewall/waf/packages/${packageId}/groups`, GroupsV4PagePaginationArray, { query, ...options }); } /** * Updates a WAF rule group. You can update the state (`mode` parameter) of a rule * group. * * **Note:** Applies only to the * [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ edit(packageId, groupId, params, options) { const { zone_id, ...body } = params; return this._client.patch(`/zones/${zone_id}/firewall/waf/packages/${packageId}/groups/${groupId}`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Fetches the details of a WAF rule group. * * **Note:** Applies only to the * [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ get(packageId, groupId, params, options) { const { zone_id } = params; return this._client.get(`/zones/${zone_id}/firewall/waf/packages/${packageId}/groups/${groupId}`, options)._thenUnwrap((obj) => obj.result); } } export class GroupsV4PagePaginationArray extends V4PagePaginationArray { } (function (Groups) { Groups.GroupsV4PagePaginationArray = GroupsAPI.GroupsV4PagePaginationArray; })(Groups || (Groups = {})); //# sourceMappingURL=groups.mjs.map