UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

51 lines 2.11 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; import * as NetworksAPI from 'cloudflare/resources/zero-trust/devices/networks'; import { SinglePage } from 'cloudflare/pagination'; export class Networks extends APIResource { /** * Creates a new device managed network. */ create(params, options) { const { account_id, ...body } = params; return this._client.post(`/accounts/${account_id}/devices/networks`, { body, ...options })._thenUnwrap((obj) => obj.result); } /** * Updates a configured device managed network. */ update(networkId, params, options) { const { account_id, ...body } = params; return this._client.put(`/accounts/${account_id}/devices/networks/${networkId}`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Fetches a list of managed networks for an account. */ list(params, options) { const { account_id } = params; return this._client.getAPIList(`/accounts/${account_id}/devices/networks`, DeviceManagedNetworksSinglePage, options); } /** * Deletes a device managed network and fetches a list of the remaining device * managed networks for an account. */ delete(networkId, params, options) { const { account_id } = params; return this._client.delete(`/accounts/${account_id}/devices/networks/${networkId}`, options)._thenUnwrap((obj) => obj.result); } /** * Fetches details for a single managed network. */ get(networkId, params, options) { const { account_id } = params; return this._client.get(`/accounts/${account_id}/devices/networks/${networkId}`, options)._thenUnwrap((obj) => obj.result); } } export class DeviceManagedNetworksSinglePage extends SinglePage { } (function (Networks) { Networks.DeviceManagedNetworksSinglePage = NetworksAPI.DeviceManagedNetworksSinglePage; })(Networks || (Networks = {})); //# sourceMappingURL=networks.mjs.map