UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

29 lines 1.09 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from "../../resource.mjs"; export class FallbackOrigin extends APIResource { /** * Update Fallback Origin for Custom Hostnames */ update(params, options) { const { zone_id, ...body } = params; return this._client.put(`/zones/${zone_id}/custom_hostnames/fallback_origin`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Delete Fallback Origin for Custom Hostnames */ delete(params, options) { const { zone_id } = params; return this._client.delete(`/zones/${zone_id}/custom_hostnames/fallback_origin`, options)._thenUnwrap((obj) => obj.result); } /** * Get Fallback Origin for Custom Hostnames */ get(params, options) { const { zone_id } = params; return this._client.get(`/zones/${zone_id}/custom_hostnames/fallback_origin`, options)._thenUnwrap((obj) => obj.result); } } //# sourceMappingURL=fallback-origin.mjs.map