UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

154 lines 5 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from "../../../resource.mjs"; import * as HealthAPI from "./health.mjs"; import { Health, } from "./health.mjs"; import * as ReferencesAPI from "./references.mjs"; import { ReferenceGetResponsesSinglePage, References, } from "./references.mjs"; import { SinglePage } from "../../../pagination.mjs"; export class Pools extends APIResource { constructor() { super(...arguments); this.health = new HealthAPI.Health(this._client); this.references = new ReferencesAPI.References(this._client); } /** * Create a new pool. * * @example * ```ts * const pool = await client.loadBalancers.pools.create({ * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * name: 'primary-dc-1', * origins: [{}], * }); * ``` */ create(params, options) { const { account_id, ...body } = params; return this._client.post(`/accounts/${account_id}/load_balancers/pools`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Modify a configured pool. * * @example * ```ts * const pool = await client.loadBalancers.pools.update( * '17b5962d775c646f3f9725cbc7a53df4', * { * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * name: 'primary-dc-1', * origins: [{}], * }, * ); * ``` */ update(poolId, params, options) { const { account_id, ...body } = params; return this._client.put(`/accounts/${account_id}/load_balancers/pools/${poolId}`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * List configured pools. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const pool of client.loadBalancers.pools.list({ * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * })) { * // ... * } * ``` */ list(params, options) { const { account_id, ...query } = params; return this._client.getAPIList(`/accounts/${account_id}/load_balancers/pools`, PoolsSinglePage, { query, ...options, }); } /** * Delete a configured pool. * * @example * ```ts * const pool = await client.loadBalancers.pools.delete( * '17b5962d775c646f3f9725cbc7a53df4', * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * ); * ``` */ delete(poolId, params, options) { const { account_id } = params; return this._client.delete(`/accounts/${account_id}/load_balancers/pools/${poolId}`, options)._thenUnwrap((obj) => obj.result); } /** * Apply changes to a number of existing pools, overwriting the supplied * properties. Pools are ordered by ascending `name`. Returns the list of affected * pools. Supports the standard pagination query parameters, either * `limit`/`offset` or `per_page`/`page`. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const pool of client.loadBalancers.pools.bulkEdit( * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * )) { * // ... * } * ``` */ bulkEdit(params, options) { const { account_id, ...body } = params; return this._client.getAPIList(`/accounts/${account_id}/load_balancers/pools`, PoolsSinglePage, { body, method: 'patch', ...options, }); } /** * Apply changes to an existing pool, overwriting the supplied properties. * * @example * ```ts * const pool = await client.loadBalancers.pools.edit( * '17b5962d775c646f3f9725cbc7a53df4', * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * ); * ``` */ edit(poolId, params, options) { const { account_id, ...body } = params; return this._client.patch(`/accounts/${account_id}/load_balancers/pools/${poolId}`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Fetch a single configured pool. * * @example * ```ts * const pool = await client.loadBalancers.pools.get( * '17b5962d775c646f3f9725cbc7a53df4', * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * ); * ``` */ get(poolId, params, options) { const { account_id } = params; return this._client.get(`/accounts/${account_id}/load_balancers/pools/${poolId}`, options)._thenUnwrap((obj) => obj.result); } } export class PoolsSinglePage extends SinglePage { } Pools.PoolsSinglePage = PoolsSinglePage; Pools.Health = Health; Pools.References = References; Pools.ReferenceGetResponsesSinglePage = ReferenceGetResponsesSinglePage; //# sourceMappingURL=pools.mjs.map