UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

30 lines 1.11 kB
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.DNSSECResource = void 0; const resource_1 = require("cloudflare/resource"); class DNSSECResource extends resource_1.APIResource { /** * Delete DNSSEC. */ delete(params, options) { const { zone_id, body } = params; return this._client.delete(`/zones/${zone_id}/dnssec`, { body: body, ...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); } } exports.DNSSECResource = DNSSECResource; //# sourceMappingURL=dnssec.js.map