UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

33 lines 1.39 kB
// 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 ASNs extends APIResource { list(query = {}, options) { if (isRequestOptions(query)) { return this.list({}, query); } return this._client.get('/radar/entities/asns', { query, ...options })._thenUnwrap((obj) => obj.result); } get(asn, query = {}, options) { if (isRequestOptions(query)) { return this.get(asn, {}, query); } return this._client.get(`/radar/entities/asns/${asn}`, { query, ...options })._thenUnwrap((obj) => obj.result); } /** * Get the requested autonomous system information based on IP address. Population * estimates come from APNIC (refer to https://labs.apnic.net/?p=526). */ ip(query, options) { return this._client.get('/radar/entities/asns/ip', { query, ...options })._thenUnwrap((obj) => obj.result); } rel(asn, query = {}, options) { if (isRequestOptions(query)) { return this.rel(asn, {}, query); } return this._client.get(`/radar/entities/asns/${asn}/rel`, { query, ...options })._thenUnwrap((obj) => obj.result); } } (function (ASNs) { })(ASNs || (ASNs = {})); //# sourceMappingURL=asns.mjs.map