UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

26 lines 934 B
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; import { isRequestOptions } from 'cloudflare/core'; export class Locations extends APIResource { origin(query = {}, options) { if (isRequestOptions(query)) { return this.origin({}, query); } return this._client.get('/radar/attacks/layer7/top/locations/origin', { query, ...options, })._thenUnwrap((obj) => obj.result); } target(query = {}, options) { if (isRequestOptions(query)) { return this.target({}, query); } return this._client.get('/radar/attacks/layer7/top/locations/target', { query, ...options, })._thenUnwrap((obj) => obj.result); } } (function (Locations) { })(Locations || (Locations = {})); //# sourceMappingURL=locations.mjs.map