UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

53 lines 2.28 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; import * as ProxyEndpointsAPI from 'cloudflare/resources/zero-trust/gateway/proxy-endpoints'; import { SinglePage } from 'cloudflare/pagination'; export class ProxyEndpoints extends APIResource { /** * Creates a new Zero Trust Gateway proxy endpoint. */ create(params, options) { const { account_id, ...body } = params; return this._client.post(`/accounts/${account_id}/gateway/proxy_endpoints`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Fetches a single Zero Trust Gateway proxy endpoint. */ list(params, options) { const { account_id } = params; return this._client.getAPIList(`/accounts/${account_id}/gateway/proxy_endpoints`, ZeroTrustGatewayProxyEndpointsSinglePage, options); } /** * Deletes a configured Zero Trust Gateway proxy endpoint. */ delete(proxyEndpointId, params, options) { const { account_id } = params; return this._client.delete(`/accounts/${account_id}/gateway/proxy_endpoints/${proxyEndpointId}`, options)._thenUnwrap((obj) => obj.result); } /** * Updates a configured Zero Trust Gateway proxy endpoint. */ edit(proxyEndpointId, params, options) { const { account_id, ...body } = params; return this._client.patch(`/accounts/${account_id}/gateway/proxy_endpoints/${proxyEndpointId}`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Fetches all Zero Trust Gateway proxy endpoints for an account. */ get(proxyEndpointId, params, options) { const { account_id } = params; return this._client.get(`/accounts/${account_id}/gateway/proxy_endpoints/${proxyEndpointId}`, options)._thenUnwrap((obj) => obj.result); } } export class ZeroTrustGatewayProxyEndpointsSinglePage extends SinglePage { } (function (ProxyEndpoints) { ProxyEndpoints.ZeroTrustGatewayProxyEndpointsSinglePage = ProxyEndpointsAPI.ZeroTrustGatewayProxyEndpointsSinglePage; })(ProxyEndpoints || (ProxyEndpoints = {})); //# sourceMappingURL=proxy-endpoints.mjs.map