UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

58 lines 2.19 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; import { CloudflareError } from 'cloudflare/error'; export class Validate extends APIResource { /** * Checks if there is an existing job with a destination. */ destination(params, options) { const { account_id, zone_id, ...body } = params; if (!account_id && !zone_id) { throw new CloudflareError('You must provide either account_id or zone_id.'); } if (account_id && zone_id) { throw new CloudflareError('You cannot provide both account_id and zone_id.'); } const { accountOrZone, accountOrZoneId } = account_id ? { accountOrZone: 'accounts', accountOrZoneId: account_id, } : { accountOrZone: 'zones', accountOrZoneId: zone_id, }; return this._client.post(`/${accountOrZone}/${accountOrZoneId}/logpush/validate/destination/exists`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Validates logpull origin with logpull_options. */ origin(params, options) { const { account_id, zone_id, ...body } = params; if (!account_id && !zone_id) { throw new CloudflareError('You must provide either account_id or zone_id.'); } if (account_id && zone_id) { throw new CloudflareError('You cannot provide both account_id and zone_id.'); } const { accountOrZone, accountOrZoneId } = account_id ? { accountOrZone: 'accounts', accountOrZoneId: account_id, } : { accountOrZone: 'zones', accountOrZoneId: zone_id, }; return this._client.post(`/${accountOrZone}/${accountOrZoneId}/logpush/validate/origin`, { body, ...options, })._thenUnwrap((obj) => obj.result); } } (function (Validate) { })(Validate || (Validate = {})); //# sourceMappingURL=validate.mjs.map