cloudflare
Version:
The official TypeScript library for the Cloudflare API
23 lines • 885 B
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../../../resource.mjs";
export class CatchAlls extends APIResource {
/**
* Enable or disable catch-all routing rule, or change action to forward to
* specific destination address.
*/
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.
*/
get(params, options) {
const { zone_id } = params;
return this._client.get(`/zones/${zone_id}/email/routing/rules/catch_all`, options)._thenUnwrap((obj) => obj.result);
}
}
//# sourceMappingURL=catch-alls.mjs.map