UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

33 lines 1.24 kB
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.FallbackOrigin = void 0; const resource_1 = require("../../resource.js"); class FallbackOrigin extends resource_1.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); } } exports.FallbackOrigin = FallbackOrigin; //# sourceMappingURL=fallback-origin.js.map