// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'cloudflare/core'; import { APIResource } from 'cloudflare/resource'; import { isRequestOptions } from 'cloudflare/core'; import * as TrafficAnomaliesAPI from 'cloudflare/resources/radar/traffic-anomalies/traffic-anomalies'; import * as LocationsAPI from 'cloudflare/resources/radar/traffic-anomalies/locations'; export class TrafficAnomalies extends APIResource { locations: LocationsAPI.Locations = new LocationsAPI.Locations(this._client); /** * Internet traffic anomalies are signals that might point to an outage, These * alerts are automatically detected by Radar and then manually verified by our * team. This endpoint returns the latest alerts. */ get( query?: TrafficAnomalyGetParams, options?: Core.RequestOptions, ): Core.APIPromise; get(options?: Core.RequestOptions): Core.APIPromise; get( query: TrafficAnomalyGetParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise { if (isRequestOptions(query)) { return this.get({}, query); } return ( this._client.get('/radar/traffic_anomalies', { query, ...options }) as Core.APIPromise<{ result: TrafficAnomalyGetResponse; }> )._thenUnwrap((obj) => obj.result); } } export interface TrafficAnomalyGetResponse { trafficAnomalies: Array; } export namespace TrafficAnomalyGetResponse { export interface TrafficAnomaly { startDate: string; status: string; type: string; uuid: string; asnDetails?: TrafficAnomaly.ASNDetails; endDate?: string; locationDetails?: TrafficAnomaly.LocationDetails; visibleInDataSources?: Array; } export namespace TrafficAnomaly { export interface ASNDetails { asn: string; name: string; locations?: ASNDetails.Locations; } export namespace ASNDetails { export interface Locations { code: string; name: string; } } export interface LocationDetails { code: string; name: string; } } } export interface TrafficAnomalyGetParams { /** * Single ASN as integer. */ asn?: number; /** * End of the date range (inclusive). */ dateEnd?: string; /** * Shorthand date ranges for the last X days - use when you don't need specific * start and end dates. */ dateRange?: | '1d' | '2d' | '7d' | '14d' | '28d' | '12w' | '24w' | '52w' | '1dControl' | '2dControl' | '7dControl' | '14dControl' | '28dControl' | '12wControl' | '24wControl'; /** * Start of the date range (inclusive). */ dateStart?: string; /** * Format results are returned in. */ format?: 'JSON' | 'CSV'; /** * Limit the number of objects in the response. */ limit?: number; /** * Location Alpha2 code. */ location?: string; /** * Number of objects to skip before grabbing results. */ offset?: number; status?: 'VERIFIED' | 'UNVERIFIED'; } export namespace TrafficAnomalies { export import TrafficAnomalyGetResponse = TrafficAnomaliesAPI.TrafficAnomalyGetResponse; export import TrafficAnomalyGetParams = TrafficAnomaliesAPI.TrafficAnomalyGetParams; export import Locations = LocationsAPI.Locations; export import LocationGetResponse = LocationsAPI.LocationGetResponse; export import LocationGetParams = LocationsAPI.LocationGetParams; }