cloudflare
Version:
The official TypeScript library for the Cloudflare API
89 lines • 3.27 kB
JavaScript
// 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.
*/
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.
*/
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.
*/
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.
*/
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`.
*/
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.
*/
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.
*/
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