cloudflare
Version:
The official TypeScript library for the Cloudflare API
62 lines • 2.34 kB
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from 'cloudflare/resource';
import * as SettingsAPI from 'cloudflare/resources/pagerules/settings';
export class Pagerules extends APIResource {
constructor() {
super(...arguments);
this.settings = new SettingsAPI.Settings(this._client);
}
/**
* Creates a new Page Rule.
*/
create(params, options) {
const { zone_id, ...body } = params;
return this._client.post(`/zones/${zone_id}/pagerules`, { body, ...options })._thenUnwrap((obj) => obj.result);
}
/**
* Replaces the configuration of an existing Page Rule. The configuration of the
* updated Page Rule will exactly match the data passed in the API request.
*/
update(pageruleId, params, options) {
const { zone_id, ...body } = params;
return this._client.put(`/zones/${zone_id}/pagerules/${pageruleId}`, { body, ...options })._thenUnwrap((obj) => obj.result);
}
/**
* Fetches Page Rules in a zone.
*/
list(params, options) {
const { zone_id, ...query } = params;
return this._client.get(`/zones/${zone_id}/pagerules`, { query, ...options })._thenUnwrap((obj) => obj.result);
}
/**
* Deletes an existing Page Rule.
*/
delete(pageruleId, params, options) {
const { zone_id, body } = params;
return this._client.delete(`/zones/${zone_id}/pagerules/${pageruleId}`, {
body: body,
...options,
})._thenUnwrap((obj) => obj.result);
}
/**
* Updates one or more fields of an existing Page Rule.
*/
edit(pageruleId, params, options) {
const { zone_id, ...body } = params;
return this._client.patch(`/zones/${zone_id}/pagerules/${pageruleId}`, {
body,
...options,
})._thenUnwrap((obj) => obj.result);
}
/**
* Fetches the details of a Page Rule.
*/
get(pageruleId, params, options) {
const { zone_id } = params;
return this._client.get(`/zones/${zone_id}/pagerules/${pageruleId}`, options)._thenUnwrap((obj) => obj.result);
}
}
(function (Pagerules) {
Pagerules.Settings = SettingsAPI.Settings;
})(Pagerules || (Pagerules = {}));
//# sourceMappingURL=pagerules.mjs.map