UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

72 lines 2.78 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from "../../../resource.mjs"; import * as PreviewsAPI from "./previews.mjs"; import { Previews } from "./previews.mjs"; import * as ReferencesAPI from "./references.mjs"; import { ReferenceGetResponsesSinglePage, References, } from "./references.mjs"; import { SinglePage } from "../../../pagination.mjs"; export class Monitors extends APIResource { constructor() { super(...arguments); this.previews = new PreviewsAPI.Previews(this._client); this.references = new ReferencesAPI.References(this._client); } /** * Create a configured monitor. */ create(params, options) { const { account_id, ...body } = params; return this._client.post(`/accounts/${account_id}/load_balancers/monitors`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Modify a configured monitor. */ update(monitorId, params, options) { const { account_id, ...body } = params; return this._client.put(`/accounts/${account_id}/load_balancers/monitors/${monitorId}`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * List configured monitors for an account. */ list(params, options) { const { account_id } = params; return this._client.getAPIList(`/accounts/${account_id}/load_balancers/monitors`, MonitorsSinglePage, options); } /** * Delete a configured monitor. */ delete(monitorId, params, options) { const { account_id } = params; return this._client.delete(`/accounts/${account_id}/load_balancers/monitors/${monitorId}`, options)._thenUnwrap((obj) => obj.result); } /** * Apply changes to an existing monitor, overwriting the supplied properties. */ edit(monitorId, params, options) { const { account_id, ...body } = params; return this._client.patch(`/accounts/${account_id}/load_balancers/monitors/${monitorId}`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * List a single configured monitor for an account. */ get(monitorId, params, options) { const { account_id } = params; return this._client.get(`/accounts/${account_id}/load_balancers/monitors/${monitorId}`, options)._thenUnwrap((obj) => obj.result); } } export class MonitorsSinglePage extends SinglePage { } Monitors.MonitorsSinglePage = MonitorsSinglePage; Monitors.Previews = Previews; Monitors.References = References; Monitors.ReferenceGetResponsesSinglePage = ReferenceGetResponsesSinglePage; //# sourceMappingURL=monitors.mjs.map