UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

128 lines 3.98 kB
import * as Core from 'cloudflare/core'; import { APIResource } from 'cloudflare/resource'; import * as AsesAPI from 'cloudflare/resources/radar/bgp/top/ases'; export declare class Ases extends APIResource { /** * Get the top autonomous systems (AS) by BGP updates (announcements only). Values * are a percentage out of the total updates. */ get(query?: AseGetParams, options?: Core.RequestOptions): Core.APIPromise<AseGetResponse>; get(options?: Core.RequestOptions): Core.APIPromise<AseGetResponse>; /** * Get the full list of autonomous systems on the global routing table ordered by * announced prefixes count. The data comes from public BGP MRT data archives and * updates every 2 hours. */ prefixes(query?: AsePrefixesParams, options?: Core.RequestOptions): Core.APIPromise<AsePrefixesResponse>; prefixes(options?: Core.RequestOptions): Core.APIPromise<AsePrefixesResponse>; } export interface AseGetResponse { meta: AseGetResponse.Meta; top_0: Array<AseGetResponse.Top0>; } export declare namespace AseGetResponse { interface Meta { dateRange: Array<Meta.DateRange>; } namespace Meta { interface DateRange { /** * Adjusted end of date range. */ endTime: string; /** * Adjusted start of date range. */ startTime: string; } } interface Top0 { asn: number; ASName: string; /** * Percentage of updates by this AS out of the total updates by all autonomous * systems. */ value: string; } } export interface AsePrefixesResponse { asns: Array<AsePrefixesResponse.ASN>; meta: AsePrefixesResponse.Meta; } export declare namespace AsePrefixesResponse { interface ASN { asn: number; country: string; name: string; pfxs_count: number; } interface Meta { data_time: string; query_time: string; total_peers: number; } } export interface AseGetParams { /** * Array of comma separated list of ASNs, start with `-` to exclude from results. * For example, `-174, 3356` excludes results from AS174, but includes results from * AS3356. */ asn?: Array<string>; /** * End of the date range (inclusive). */ dateEnd?: Array<string>; /** * For example, use `7d` and `7dControl` to compare this week with the previous * week. Use this parameter or set specific start and end dates (`dateStart` and * `dateEnd` parameters). */ dateRange?: Array<'1d' | '2d' | '7d' | '14d' | '28d' | '12w' | '24w' | '52w' | '1dControl' | '2dControl' | '7dControl' | '14dControl' | '28dControl' | '12wControl' | '24wControl'>; /** * Array of datetimes to filter the start of a series. */ dateStart?: Array<string>; /** * Format results are returned in. */ format?: 'JSON' | 'CSV'; /** * Limit the number of objects in the response. */ limit?: number; /** * Array of names that will be used to name the series in responses. */ name?: Array<string>; /** * Array of BGP network prefixes. */ prefix?: Array<string>; /** * Array of BGP update types. */ updateType?: Array<'ANNOUNCEMENT' | 'WITHDRAWAL'>; } export interface AsePrefixesParams { /** * Alpha-2 country code. */ country?: string; /** * Format results are returned in. */ format?: 'JSON' | 'CSV'; /** * Maximum number of ASes to return */ limit?: number; } export declare namespace Ases { export import AseGetResponse = AsesAPI.AseGetResponse; export import AsePrefixesResponse = AsesAPI.AsePrefixesResponse; export import AseGetParams = AsesAPI.AseGetParams; export import AsePrefixesParams = AsesAPI.AsePrefixesParams; } //# sourceMappingURL=ases.d.ts.map