// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from "../../resource.mjs"; import { CloudflareError } from "../../error.mjs"; export class Ownership extends APIResource { /** * Gets a new ownership challenge sent to your destination. * * @example * ```ts * const ownership = await client.logpush.ownership.create({ * destination_conf: 's3://mybucket/logs?region=us-west-2', * account_id: 'account_id', * }); * ``` */ create(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/ownership`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Validates ownership challenge of the destination. * * @example * ```ts * const ownershipValidation = * await client.logpush.ownership.validate({ * destination_conf: 's3://mybucket/logs?region=us-west-2', * ownership_challenge: '00000000000000000000', * account_id: 'account_id', * }); * ``` */ validate(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/ownership/validate`, { body, ...options, })._thenUnwrap((obj) => obj.result); } } //# sourceMappingURL=ownership.mjs.map