cloudflare
Version:
The official TypeScript library for the Cloudflare API
45 lines • 1.5 kB
JavaScript
;
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
Object.defineProperty(exports, "__esModule", { value: true });
exports.CatchAlls = void 0;
const resource_1 = require("../../../resource.js");
class CatchAlls extends resource_1.APIResource {
/**
* Enable or disable catch-all routing rule, or change action to forward to
* specific destination address.
*
* @example
* ```ts
* const catchAll =
* await client.emailRouting.rules.catchAlls.update({
* zone_id: '023e105f4ecef8ad9ca31a8372d0c353',
* actions: [{ type: 'forward' }],
* matchers: [{ type: 'all' }],
* });
* ```
*/
update(params, options) {
const { zone_id, ...body } = params;
return this._client.put(`/zones/${zone_id}/email/routing/rules/catch_all`, {
body,
...options,
})._thenUnwrap((obj) => obj.result);
}
/**
* Get information on the default catch-all routing rule.
*
* @example
* ```ts
* const catchAll =
* await client.emailRouting.rules.catchAlls.get({
* zone_id: '023e105f4ecef8ad9ca31a8372d0c353',
* });
* ```
*/
get(params, options) {
const { zone_id } = params;
return this._client.get(`/zones/${zone_id}/email/routing/rules/catch_all`, options)._thenUnwrap((obj) => obj.result);
}
}
exports.CatchAlls = CatchAlls;
//# sourceMappingURL=catch-alls.js.map