cloudflare
Version:
The official TypeScript library for the Cloudflare API
236 lines (191 loc) • 4.9 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import * as Core from "../../../core";
import { APIResource } from "../../../resource";
import { isRequestOptions } from "../../../core";
import * as OutagesAPI from "./outages";
export class Outages extends APIResource {
/**
* Get latest Internet outages and anomalies.
*/
get(query?: OutageGetParams, options?: Core.RequestOptions): Core.APIPromise<OutageGetResponse>;
get(options?: Core.RequestOptions): Core.APIPromise<OutageGetResponse>;
get(
query: OutageGetParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<OutageGetResponse> {
if (isRequestOptions(query)) {
return this.get({}, query);
}
return (
this._client.get('/radar/annotations/outages', { query, ...options }) as Core.APIPromise<{
result: OutageGetResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Get the number of outages for locations.
*/
locations(
query?: OutageLocationsParams,
options?: Core.RequestOptions,
): Core.APIPromise<OutageLocationsResponse>;
locations(options?: Core.RequestOptions): Core.APIPromise<OutageLocationsResponse>;
locations(
query: OutageLocationsParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<OutageLocationsResponse> {
if (isRequestOptions(query)) {
return this.locations({}, query);
}
return (
this._client.get('/radar/annotations/outages/locations', { query, ...options }) as Core.APIPromise<{
result: OutageLocationsResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
}
export interface OutageGetResponse {
annotations: Array<OutageGetResponse.Annotation>;
}
export namespace OutageGetResponse {
export interface Annotation {
id: string;
asns: Array<number>;
asnsDetails: Array<Annotation.ASNsDetail>;
dataSource: string;
eventType: string;
locations: Array<string>;
locationsDetails: Array<Annotation.LocationsDetail>;
outage: Annotation.Outage;
startDate: string;
description?: string;
endDate?: string;
linkedUrl?: string;
scope?: string;
}
export namespace Annotation {
export interface ASNsDetail {
asn: string;
name: string;
locations?: ASNsDetail.Locations;
}
export namespace ASNsDetail {
export interface Locations {
code: string;
name: string;
}
}
export interface LocationsDetail {
code: string;
name: string;
}
export interface Outage {
outageCause: string;
outageType: string;
}
}
}
export interface OutageLocationsResponse {
annotations: Array<OutageLocationsResponse.Annotation>;
}
export namespace OutageLocationsResponse {
export interface Annotation {
clientCountryAlpha2: string;
clientCountryName: string;
value: string;
}
}
export interface OutageGetParams {
/**
* 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;
}
export interface OutageLocationsParams {
/**
* 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;
}
export namespace Outages {
export import OutageGetResponse = OutagesAPI.OutageGetResponse;
export import OutageLocationsResponse = OutagesAPI.OutageLocationsResponse;
export import OutageGetParams = OutagesAPI.OutageGetParams;
export import OutageLocationsParams = OutagesAPI.OutageLocationsParams;
}