UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

24 lines 973 B
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; export class Configurations extends APIResource { /** * Adds or updates the configuration for a remotely-managed tunnel. */ update(tunnelId, params, options) { const { account_id, ...body } = params; return this._client.put(`/accounts/${account_id}/cfd_tunnel/${tunnelId}/configurations`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Gets the configuration for a remotely-managed tunnel */ get(tunnelId, params, options) { const { account_id } = params; return this._client.get(`/accounts/${account_id}/cfd_tunnel/${tunnelId}/configurations`, options)._thenUnwrap((obj) => obj.result); } } (function (Configurations) { })(Configurations || (Configurations = {})); //# sourceMappingURL=configurations.mjs.map