cloudflare
Version:
The official TypeScript library for the Cloudflare API
398 lines (324 loc) • 9.67 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../../resource';
import { isRequestOptions } from '../../../../core';
import * as Core from '../../../../core';
import * as TopAPI from './top';
import { Top, TopAsesParams, TopAsesResponse, TopLocationsParams, TopLocationsResponse } from './top';
export class Speed extends APIResource {
top: TopAPI.Top = new TopAPI.Top(this._client);
/**
* Retrieves a histogram from the previous 90 days of Cloudflare Speed Test data,
* split into fixed bandwidth (Mbps), latency (ms), or jitter (ms) buckets.
*
* @example
* ```ts
* const response =
* await client.radar.quality.speed.histogram();
* ```
*/
histogram(
query?: SpeedHistogramParams,
options?: Core.RequestOptions,
): Core.APIPromise<SpeedHistogramResponse>;
histogram(options?: Core.RequestOptions): Core.APIPromise<SpeedHistogramResponse>;
histogram(
query: SpeedHistogramParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<SpeedHistogramResponse> {
if (isRequestOptions(query)) {
return this.histogram({}, query);
}
return (
this._client.get('/radar/quality/speed/histogram', { query, ...options }) as Core.APIPromise<{
result: SpeedHistogramResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Retrieves a summary of bandwidth, latency, jitter, and packet loss, from the
* previous 90 days of Cloudflare Speed Test data.
*
* @example
* ```ts
* const response = await client.radar.quality.speed.summary();
* ```
*/
summary(query?: SpeedSummaryParams, options?: Core.RequestOptions): Core.APIPromise<SpeedSummaryResponse>;
summary(options?: Core.RequestOptions): Core.APIPromise<SpeedSummaryResponse>;
summary(
query: SpeedSummaryParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<SpeedSummaryResponse> {
if (isRequestOptions(query)) {
return this.summary({}, query);
}
return (
this._client.get('/radar/quality/speed/summary', { query, ...options }) as Core.APIPromise<{
result: SpeedSummaryResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
}
export interface SpeedHistogramResponse {
histogram_0: SpeedHistogramResponse.Histogram0;
/**
* Metadata for the results.
*/
meta: SpeedHistogramResponse.Meta;
}
export namespace SpeedHistogramResponse {
export interface Histogram0 {
bandwidthDownload: Array<string>;
bandwidthUpload: Array<string>;
bucketMin: Array<string>;
}
/**
* Metadata for the results.
*/
export interface Meta {
/**
* The width for every bucket in the histogram.
*/
bucketSize: number;
confidenceInfo: Meta.ConfidenceInfo;
dateRange: Array<Meta.DateRange>;
/**
* Timestamp of the last dataset update.
*/
lastUpdated: string;
/**
* Normalization method applied to the results. Refer to
* [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
*/
normalization:
| 'PERCENTAGE'
| 'MIN0_MAX'
| 'MIN_MAX'
| 'RAW_VALUES'
| 'PERCENTAGE_CHANGE'
| 'ROLLING_AVERAGE'
| 'OVERLAPPED_PERCENTAGE'
| 'RATIO';
totalTests: Array<number>;
/**
* Measurement units for the results.
*/
units: Array<Meta.Unit>;
}
export namespace Meta {
export interface ConfidenceInfo {
annotations: Array<ConfidenceInfo.Annotation>;
/**
* Provides an indication of how much confidence Cloudflare has in the data.
*/
level: number;
}
export namespace ConfidenceInfo {
/**
* Annotation associated with the result (e.g. outage or other type of event).
*/
export interface Annotation {
dataSource: string;
description: string;
endDate: string;
eventType: string;
/**
* Whether event is a single point in time or a time range.
*/
isInstantaneous: boolean;
linkedUrl: string;
startDate: string;
}
}
export interface DateRange {
/**
* Adjusted end of date range.
*/
endTime: string;
/**
* Adjusted start of date range.
*/
startTime: string;
}
export interface Unit {
name: string;
value: string;
}
}
}
export interface SpeedSummaryResponse {
/**
* Metadata for the results.
*/
meta: SpeedSummaryResponse.Meta;
summary_0: SpeedSummaryResponse.Summary0;
}
export namespace SpeedSummaryResponse {
/**
* Metadata for the results.
*/
export interface Meta {
confidenceInfo: Meta.ConfidenceInfo;
dateRange: Array<Meta.DateRange>;
/**
* Timestamp of the last dataset update.
*/
lastUpdated: string;
/**
* Normalization method applied to the results. Refer to
* [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
*/
normalization:
| 'PERCENTAGE'
| 'MIN0_MAX'
| 'MIN_MAX'
| 'RAW_VALUES'
| 'PERCENTAGE_CHANGE'
| 'ROLLING_AVERAGE'
| 'OVERLAPPED_PERCENTAGE'
| 'RATIO';
/**
* Measurement units for the results.
*/
units: Array<Meta.Unit>;
}
export namespace Meta {
export interface ConfidenceInfo {
annotations: Array<ConfidenceInfo.Annotation>;
/**
* Provides an indication of how much confidence Cloudflare has in the data.
*/
level: number;
}
export namespace ConfidenceInfo {
/**
* Annotation associated with the result (e.g. outage or other type of event).
*/
export interface Annotation {
dataSource: string;
description: string;
endDate: string;
eventType: string;
/**
* Whether event is a single point in time or a time range.
*/
isInstantaneous: boolean;
linkedUrl: string;
startDate: string;
}
}
export interface DateRange {
/**
* Adjusted end of date range.
*/
endTime: string;
/**
* Adjusted start of date range.
*/
startTime: string;
}
export interface Unit {
name: string;
value: string;
}
}
export interface Summary0 {
bandwidthDownload: string;
bandwidthUpload: string;
jitterIdle: string;
jitterLoaded: string;
latencyIdle: string;
latencyLoaded: string;
packetLoss: string;
}
}
export interface SpeedHistogramParams {
/**
* Filters results by Autonomous System. Specify one or more Autonomous System
* Numbers (ASNs) as a comma-separated list. Prefix with `-` to exclude ASNs from
* results. For example, `-174, 3356` excludes results from AS174, but includes
* results from AS3356.
*/
asn?: Array<string>;
/**
* Specifies the width for every bucket in the histogram.
*/
bucketSize?: number;
/**
* Filters results by continent. Specify a comma-separated list of alpha-2 codes.
* Prefix with `-` to exclude continents from results. For example, `-EU,NA`
* excludes results from EU, but includes results from NA.
*/
continent?: Array<string>;
/**
* End of the date range (inclusive).
*/
dateEnd?: Array<string>;
/**
* Format in which results will be returned.
*/
format?: 'JSON' | 'CSV';
/**
* Filters results by location. Specify a comma-separated list of alpha-2 codes.
* Prefix with `-` to exclude locations from results. For example, `-US,PT`
* excludes results from the US, but includes results from PT.
*/
location?: Array<string>;
/**
* Metrics to be returned.
*/
metricGroup?: 'BANDWIDTH' | 'LATENCY' | 'JITTER';
/**
* Array of names used to label the series in the response.
*/
name?: Array<string>;
}
export interface SpeedSummaryParams {
/**
* Filters results by Autonomous System. Specify one or more Autonomous System
* Numbers (ASNs) as a comma-separated list. Prefix with `-` to exclude ASNs from
* results. For example, `-174, 3356` excludes results from AS174, but includes
* results from AS3356.
*/
asn?: Array<string>;
/**
* Filters results by continent. Specify a comma-separated list of alpha-2 codes.
* Prefix with `-` to exclude continents from results. For example, `-EU,NA`
* excludes results from EU, but includes results from NA.
*/
continent?: Array<string>;
/**
* End of the date range (inclusive).
*/
dateEnd?: Array<string>;
/**
* Format in which results will be returned.
*/
format?: 'JSON' | 'CSV';
/**
* Filters results by location. Specify a comma-separated list of alpha-2 codes.
* Prefix with `-` to exclude locations from results. For example, `-US,PT`
* excludes results from the US, but includes results from PT.
*/
location?: Array<string>;
/**
* Array of names used to label the series in the response.
*/
name?: Array<string>;
}
Speed.Top = Top;
export declare namespace Speed {
export {
type SpeedHistogramResponse as SpeedHistogramResponse,
type SpeedSummaryResponse as SpeedSummaryResponse,
type SpeedHistogramParams as SpeedHistogramParams,
type SpeedSummaryParams as SpeedSummaryParams,
};
export {
Top as Top,
type TopAsesResponse as TopAsesResponse,
type TopLocationsResponse as TopLocationsResponse,
type TopAsesParams as TopAsesParams,
type TopLocationsParams as TopLocationsParams,
};
}