UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

31 lines 1.21 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; export class TLS extends APIResource { /** * Update the tls setting value for the hostname. */ update(settingId, hostname, params, options) { const { zone_id, ...body } = params; return this._client.put(`/zones/${zone_id}/hostnames/settings/${settingId}/${hostname}`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Delete the tls setting value for the hostname. */ delete(settingId, hostname, params, options) { const { zone_id } = params; return this._client.delete(`/zones/${zone_id}/hostnames/settings/${settingId}/${hostname}`, options)._thenUnwrap((obj) => obj.result); } /** * List the requested TLS setting for the hostnames under this zone. */ get(settingId, params, options) { const { zone_id } = params; return this._client.get(`/zones/${zone_id}/hostnames/settings/${settingId}`, options)._thenUnwrap((obj) => obj.result); } } (function (TLS) { })(TLS || (TLS = {})); //# sourceMappingURL=tls.mjs.map