cloudflare
Version:
The official TypeScript library for the Cloudflare API
22 lines • 904 B
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../../../../resource.mjs";
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);
}
}
//# sourceMappingURL=configurations.mjs.map