UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

45 lines 1.76 kB
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.OwnershipResource = void 0; const resource_1 = require("cloudflare/resource"); class OwnershipResource extends resource_1.APIResource { /** * Adds an AWS or GCP bucket to use with full packet captures. */ create(params, options) { const { account_id, ...body } = params; return this._client.post(`/accounts/${account_id}/pcaps/ownership`, { body, ...options })._thenUnwrap((obj) => obj.result); } /** * Deletes buckets added to the packet captures API. */ delete(ownershipId, params, options) { const { account_id } = params; return this._client.delete(`/accounts/${account_id}/pcaps/ownership/${ownershipId}`, { ...options, headers: { Accept: '*/*', ...options?.headers }, }); } /** * List all buckets configured for use with PCAPs API. */ get(params, options) { const { account_id } = params; return this._client.get(`/accounts/${account_id}/pcaps/ownership`, options)._thenUnwrap((obj) => obj.result); } /** * Validates buckets added to the packet captures API. */ validate(params, options) { const { account_id, ...body } = params; return this._client.post(`/accounts/${account_id}/pcaps/ownership/validate`, { body, ...options, })._thenUnwrap((obj) => obj.result); } } exports.OwnershipResource = OwnershipResource; (function (OwnershipResource) { })(OwnershipResource = exports.OwnershipResource || (exports.OwnershipResource = {})); //# sourceMappingURL=ownership.js.map