UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

28 lines 1 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; export class DNSSECResource extends APIResource { /** * Delete DNSSEC. */ delete(params, options) { const { zone_id } = params; return this._client.delete(`/zones/${zone_id}/dnssec`, options)._thenUnwrap((obj) => obj.result); } /** * Enable or disable DNSSEC. */ edit(params, options) { const { zone_id, ...body } = params; return this._client.patch(`/zones/${zone_id}/dnssec`, { body, ...options })._thenUnwrap((obj) => obj.result); } /** * Details about DNSSEC status and configuration. */ get(params, options) { const { zone_id } = params; return this._client.get(`/zones/${zone_id}/dnssec`, options)._thenUnwrap((obj) => obj.result); } } (function (DNSSECResource) { })(DNSSECResource || (DNSSECResource = {})); //# sourceMappingURL=dnssec.mjs.map