cloudflare
Version:
The official TypeScript library for the Cloudflare API
20 lines • 856 B
JavaScript
// 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 {
list(query = {}, options) {
if (isRequestOptions(query)) {
return this.list({}, query);
}
return this._client.get('/radar/entities/locations', { query, ...options })._thenUnwrap((obj) => obj.result);
}
get(location, query = {}, options) {
if (isRequestOptions(query)) {
return this.get(location, {}, query);
}
return this._client.get(`/radar/entities/locations/${location}`, { query, ...options })._thenUnwrap((obj) => obj.result);
}
}
(function (Locations) {
})(Locations || (Locations = {}));
//# sourceMappingURL=locations.mjs.map