UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

1,884 lines (1,563 loc) 46.6 kB
// 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'; export class Summary extends APIResource { /** * Retrieves the distribution of bot-generated HTTP requests to genuine human * traffic, as classified by Cloudflare. Visit * https://developers.cloudflare.com/radar/concepts/bot-classes/ for more * information. * * @deprecated */ botClass( query?: SummaryBotClassParams, options?: Core.RequestOptions, ): Core.APIPromise<SummaryBotClassResponse>; botClass(options?: Core.RequestOptions): Core.APIPromise<SummaryBotClassResponse>; botClass( query: SummaryBotClassParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise<SummaryBotClassResponse> { if (isRequestOptions(query)) { return this.botClass({}, query); } return ( this._client.get('/radar/http/summary/bot_class', { query, ...options }) as Core.APIPromise<{ result: SummaryBotClassResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Retrieves the distribution of HTTP requests generated by mobile, desktop, and * other types of devices. * * @deprecated */ deviceType( query?: SummaryDeviceTypeParams, options?: Core.RequestOptions, ): Core.APIPromise<SummaryDeviceTypeResponse>; deviceType(options?: Core.RequestOptions): Core.APIPromise<SummaryDeviceTypeResponse>; deviceType( query: SummaryDeviceTypeParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise<SummaryDeviceTypeResponse> { if (isRequestOptions(query)) { return this.deviceType({}, query); } return ( this._client.get('/radar/http/summary/device_type', { query, ...options }) as Core.APIPromise<{ result: SummaryDeviceTypeResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Retrieves the distribution of HTTP requests by HTTP protocol (HTTP vs. HTTPS). * * @deprecated */ httpProtocol( query?: SummaryHTTPProtocolParams, options?: Core.RequestOptions, ): Core.APIPromise<SummaryHTTPProtocolResponse>; httpProtocol(options?: Core.RequestOptions): Core.APIPromise<SummaryHTTPProtocolResponse>; httpProtocol( query: SummaryHTTPProtocolParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise<SummaryHTTPProtocolResponse> { if (isRequestOptions(query)) { return this.httpProtocol({}, query); } return ( this._client.get('/radar/http/summary/http_protocol', { query, ...options }) as Core.APIPromise<{ result: SummaryHTTPProtocolResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Retrieves the distribution of HTTP requests by HTTP version. * * @deprecated */ httpVersion( query?: SummaryHTTPVersionParams, options?: Core.RequestOptions, ): Core.APIPromise<SummaryHTTPVersionResponse>; httpVersion(options?: Core.RequestOptions): Core.APIPromise<SummaryHTTPVersionResponse>; httpVersion( query: SummaryHTTPVersionParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise<SummaryHTTPVersionResponse> { if (isRequestOptions(query)) { return this.httpVersion({}, query); } return ( this._client.get('/radar/http/summary/http_version', { query, ...options }) as Core.APIPromise<{ result: SummaryHTTPVersionResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Retrieves the distribution of HTTP requests by IP version. * * @deprecated */ ipVersion( query?: SummaryIPVersionParams, options?: Core.RequestOptions, ): Core.APIPromise<SummaryIPVersionResponse>; ipVersion(options?: Core.RequestOptions): Core.APIPromise<SummaryIPVersionResponse>; ipVersion( query: SummaryIPVersionParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise<SummaryIPVersionResponse> { if (isRequestOptions(query)) { return this.ipVersion({}, query); } return ( this._client.get('/radar/http/summary/ip_version', { query, ...options }) as Core.APIPromise<{ result: SummaryIPVersionResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Retrieves the distribution of HTTP requests by operating system (Windows, macOS, * Android, iOS, and others). * * @deprecated */ os(query?: SummaryOSParams, options?: Core.RequestOptions): Core.APIPromise<SummaryOSResponse>; os(options?: Core.RequestOptions): Core.APIPromise<SummaryOSResponse>; os( query: SummaryOSParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise<SummaryOSResponse> { if (isRequestOptions(query)) { return this.os({}, query); } return ( this._client.get('/radar/http/summary/os', { query, ...options }) as Core.APIPromise<{ result: SummaryOSResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Retrieves the distribution of HTTP requests by post-quantum support. * * @deprecated */ postQuantum( query?: SummaryPostQuantumParams, options?: Core.RequestOptions, ): Core.APIPromise<SummaryPostQuantumResponse>; postQuantum(options?: Core.RequestOptions): Core.APIPromise<SummaryPostQuantumResponse>; postQuantum( query: SummaryPostQuantumParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise<SummaryPostQuantumResponse> { if (isRequestOptions(query)) { return this.postQuantum({}, query); } return ( this._client.get('/radar/http/summary/post_quantum', { query, ...options }) as Core.APIPromise<{ result: SummaryPostQuantumResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Retrieves the distribution of HTTP requests by TLS version. * * @deprecated */ tlsVersion( query?: SummaryTLSVersionParams, options?: Core.RequestOptions, ): Core.APIPromise<SummaryTLSVersionResponse>; tlsVersion(options?: Core.RequestOptions): Core.APIPromise<SummaryTLSVersionResponse>; tlsVersion( query: SummaryTLSVersionParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise<SummaryTLSVersionResponse> { if (isRequestOptions(query)) { return this.tlsVersion({}, query); } return ( this._client.get('/radar/http/summary/tls_version', { query, ...options }) as Core.APIPromise<{ result: SummaryTLSVersionResponse; }> )._thenUnwrap((obj) => obj.result); } } export interface SummaryBotClassResponse { /** * Metadata for the results. */ meta: SummaryBotClassResponse.Meta; summary_0: SummaryBotClassResponse.Summary0; } export namespace SummaryBotClassResponse { /** * 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 { /** * A numeric string. */ bot: string; /** * A numeric string. */ human: string; } } export interface SummaryDeviceTypeResponse { /** * Metadata for the results. */ meta: SummaryDeviceTypeResponse.Meta; summary_0: SummaryDeviceTypeResponse.Summary0; } export namespace SummaryDeviceTypeResponse { /** * 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 { /** * A numeric string. */ desktop: string; /** * A numeric string. */ mobile: string; /** * A numeric string. */ other: string; } } export interface SummaryHTTPProtocolResponse { /** * Metadata for the results. */ meta: SummaryHTTPProtocolResponse.Meta; summary_0: SummaryHTTPProtocolResponse.Summary0; } export namespace SummaryHTTPProtocolResponse { /** * 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 { /** * A numeric string. */ http: string; /** * A numeric string. */ https: string; } } export interface SummaryHTTPVersionResponse { /** * Metadata for the results. */ meta: SummaryHTTPVersionResponse.Meta; summary_0: SummaryHTTPVersionResponse.Summary0; } export namespace SummaryHTTPVersionResponse { /** * 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 { /** * A numeric string. */ 'HTTP/1.x': string; /** * A numeric string. */ 'HTTP/2': string; /** * A numeric string. */ 'HTTP/3': string; } } export interface SummaryIPVersionResponse { /** * Metadata for the results. */ meta: SummaryIPVersionResponse.Meta; summary_0: SummaryIPVersionResponse.Summary0; } export namespace SummaryIPVersionResponse { /** * 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 { /** * A numeric string. */ IPv4: string; /** * A numeric string. */ IPv6: string; } } export interface SummaryOSResponse { /** * Metadata for the results. */ meta: SummaryOSResponse.Meta; summary_0: SummaryOSResponse.Summary0; } export namespace SummaryOSResponse { /** * 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 { /** * A numeric string. */ ANDROID: string; /** * A numeric string. */ IOS: string; } } export interface SummaryPostQuantumResponse { /** * Metadata for the results. */ meta: SummaryPostQuantumResponse.Meta; summary_0: SummaryPostQuantumResponse.Summary0; } export namespace SummaryPostQuantumResponse { /** * 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 { /** * A numeric string. */ NOT_SUPPORTED: string; /** * A numeric string. */ SUPPORTED: string; } } export interface SummaryTLSVersionResponse { /** * Metadata for the results. */ meta: SummaryTLSVersionResponse.Meta; summary_0: SummaryTLSVersionResponse.Summary0; } export namespace SummaryTLSVersionResponse { /** * 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 { /** * A numeric string. */ 'TLS 1.0': string; /** * A numeric string. */ 'TLS 1.1': string; /** * A numeric string. */ 'TLS 1.2': string; /** * A numeric string. */ 'TLS 1.3': string; /** * A numeric string. */ 'TLS QUIC': string; } } export interface SummaryBotClassParams { /** * 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 browser family. */ browserFamily?: Array<'CHROME' | 'EDGE' | 'FIREFOX' | 'SAFARI'>; /** * 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>; /** * Filters results by date range. 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<string>; /** * Start of the date range. */ dateStart?: Array<string>; /** * Filters results by device type. */ deviceType?: Array<'DESKTOP' | 'MOBILE' | 'OTHER'>; /** * Format in which results will be returned. */ format?: 'JSON' | 'CSV'; /** * Filters results by Geolocation. Specify a comma-separated list of GeoNames IDs. * Prefix with `-` to exclude geoIds from results. For example, `-2267056,360689` * excludes results from the 2267056 (Lisbon), but includes results from 5128638 * (New York). */ geoId?: Array<string>; /** * Filters results by HTTP protocol (HTTP vs. HTTPS). */ httpProtocol?: Array<'HTTP' | 'HTTPS'>; /** * Filters results by HTTP version. */ httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>; /** * Filters results by IP version (Ipv4 vs. IPv6). */ ipVersion?: Array<'IPv4' | 'IPv6'>; /** * 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>; /** * Filters results by operating system. */ os?: Array<'WINDOWS' | 'MACOSX' | 'IOS' | 'ANDROID' | 'CHROMEOS' | 'LINUX' | 'SMART_TV'>; /** * Filters results by TLS version. */ tlsVersion?: Array<'TLSv1_0' | 'TLSv1_1' | 'TLSv1_2' | 'TLSv1_3' | 'TLSvQUIC'>; } export interface SummaryDeviceTypeParams { /** * 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 bot class. Refer to * [Bot classes](https://developers.cloudflare.com/radar/concepts/bot-classes/). */ botClass?: Array<'LIKELY_AUTOMATED' | 'LIKELY_HUMAN'>; /** * Filters results by browser family. */ browserFamily?: Array<'CHROME' | 'EDGE' | 'FIREFOX' | 'SAFARI'>; /** * 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>; /** * Filters results by date range. 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<string>; /** * Start of the date range. */ dateStart?: Array<string>; /** * Format in which results will be returned. */ format?: 'JSON' | 'CSV'; /** * Filters results by Geolocation. Specify a comma-separated list of GeoNames IDs. * Prefix with `-` to exclude geoIds from results. For example, `-2267056,360689` * excludes results from the 2267056 (Lisbon), but includes results from 5128638 * (New York). */ geoId?: Array<string>; /** * Filters results by HTTP protocol (HTTP vs. HTTPS). */ httpProtocol?: Array<'HTTP' | 'HTTPS'>; /** * Filters results by HTTP version. */ httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>; /** * Filters results by IP version (Ipv4 vs. IPv6). */ ipVersion?: Array<'IPv4' | 'IPv6'>; /** * 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>; /** * Filters results by operating system. */ os?: Array<'WINDOWS' | 'MACOSX' | 'IOS' | 'ANDROID' | 'CHROMEOS' | 'LINUX' | 'SMART_TV'>; /** * Filters results by TLS version. */ tlsVersion?: Array<'TLSv1_0' | 'TLSv1_1' | 'TLSv1_2' | 'TLSv1_3' | 'TLSvQUIC'>; } export interface SummaryHTTPProtocolParams { /** * 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 bot class. Refer to * [Bot classes](https://developers.cloudflare.com/radar/concepts/bot-classes/). */ botClass?: Array<'LIKELY_AUTOMATED' | 'LIKELY_HUMAN'>; /** * Filters results by browser family. */ browserFamily?: Array<'CHROME' | 'EDGE' | 'FIREFOX' | 'SAFARI'>; /** * 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>; /** * Filters results by date range. 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<string>; /** * Start of the date range. */ dateStart?: Array<string>; /** * Filters results by device type. */ deviceType?: Array<'DESKTOP' | 'MOBILE' | 'OTHER'>; /** * Format in which results will be returned. */ format?: 'JSON' | 'CSV'; /** * Filters results by Geolocation. Specify a comma-separated list of GeoNames IDs. * Prefix with `-` to exclude geoIds from results. For example, `-2267056,360689` * excludes results from the 2267056 (Lisbon), but includes results from 5128638 * (New York). */ geoId?: Array<string>; /** * Filters results by HTTP version. */ httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>; /** * Filters results by IP version (Ipv4 vs. IPv6). */ ipVersion?: Array<'IPv4' | 'IPv6'>; /** * 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>; /** * Filters results by operating system. */ os?: Array<'WINDOWS' | 'MACOSX' | 'IOS' | 'ANDROID' | 'CHROMEOS' | 'LINUX' | 'SMART_TV'>; /** * Filters results by TLS version. */ tlsVersion?: Array<'TLSv1_0' | 'TLSv1_1' | 'TLSv1_2' | 'TLSv1_3' | 'TLSvQUIC'>; } export interface SummaryHTTPVersionParams { /** * 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 bot class. Refer to * [Bot classes](https://developers.cloudflare.com/radar/concepts/bot-classes/). */ botClass?: Array<'LIKELY_AUTOMATED' | 'LIKELY_HUMAN'>; /** * Filters results by browser family. */ browserFamily?: Array<'CHROME' | 'EDGE' | 'FIREFOX' | 'SAFARI'>; /** * 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>; /** * Filters results by date range. 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<string>; /** * Start of the date range. */ dateStart?: Array<string>; /** * Filters results by device type. */ deviceType?: Array<'DESKTOP' | 'MOBILE' | 'OTHER'>; /** * Format in which results will be returned. */ format?: 'JSON' | 'CSV'; /** * Filters results by Geolocation. Specify a comma-separated list of GeoNames IDs. * Prefix with `-` to exclude geoIds from results. For example, `-2267056,360689` * excludes results from the 2267056 (Lisbon), but includes results from 5128638 * (New York). */ geoId?: Array<string>; /** * Filters results by HTTP protocol (HTTP vs. HTTPS). */ httpProtocol?: Array<'HTTP' | 'HTTPS'>; /** * Filters results by IP version (Ipv4 vs. IPv6). */ ipVersion?: Array<'IPv4' | 'IPv6'>; /** * 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>; /** * Filters results by operating system. */ os?: Array<'WINDOWS' | 'MACOSX' | 'IOS' | 'ANDROID' | 'CHROMEOS' | 'LINUX' | 'SMART_TV'>; /** * Filters results by TLS version. */ tlsVersion?: Array<'TLSv1_0' | 'TLSv1_1' | 'TLSv1_2' | 'TLSv1_3' | 'TLSvQUIC'>; } export interface SummaryIPVersionParams { /** * 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 bot class. Refer to * [Bot classes](https://developers.cloudflare.com/radar/concepts/bot-classes/). */ botClass?: Array<'LIKELY_AUTOMATED' | 'LIKELY_HUMAN'>; /** * Filters results by browser family. */ browserFamily?: Array<'CHROME' | 'EDGE' | 'FIREFOX' | 'SAFARI'>; /** * 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>; /** * Filters results by date range. 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<string>; /** * Start of the date range. */ dateStart?: Array<string>; /** * Filters results by device type. */ deviceType?: Array<'DESKTOP' | 'MOBILE' | 'OTHER'>; /** * Format in which results will be returned. */ format?: 'JSON' | 'CSV'; /** * Filters results by Geolocation. Specify a comma-separated list of GeoNames IDs. * Prefix with `-` to exclude geoIds from results. For example, `-2267056,360689` * excludes results from the 2267056 (Lisbon), but includes results from 5128638 * (New York). */ geoId?: Array<string>; /** * Filters results by HTTP protocol (HTTP vs. HTTPS). */ httpProtocol?: Array<'HTTP' | 'HTTPS'>; /** * Filters results by HTTP version. */ httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>; /** * 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>; /** * Filters results by operating system. */ os?: Array<'WINDOWS' | 'MACOSX' | 'IOS' | 'ANDROID' | 'CHROMEOS' | 'LINUX' | 'SMART_TV'>; /** * Filters results by TLS version. */ tlsVersion?: Array<'TLSv1_0' | 'TLSv1_1' | 'TLSv1_2' | 'TLSv1_3' | 'TLSvQUIC'>; } export interface SummaryOSParams { /** * 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 bot class. Refer to * [Bot classes](https://developers.cloudflare.com/radar/concepts/bot-classes/). */ botClass?: Array<'LIKELY_AUTOMATED' | 'LIKELY_HUMAN'>; /** * Filters results by browser family. */ browserFamily?: Array<'CHROME' | 'EDGE' | 'FIREFOX' | 'SAFARI'>; /** * 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>; /** * Filters results by date range. 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<string>; /** * Start of the date range. */ dateStart?: Array<string>; /** * Filters results by device type. */ deviceType?: Array<'DESKTOP' | 'MOBILE' | 'OTHER'>; /** * Format in which results will be returned. */ format?: 'JSON' | 'CSV'; /** * Filters results by Geolocation. Specify a comma-separated list of GeoNames IDs. * Prefix with `-` to exclude geoIds from results. For example, `-2267056,360689` * excludes results from the 2267056 (Lisbon), but includes results from 5128638 * (New York). */ geoId?: Array<string>; /** * Filters results by HTTP protocol (HTTP vs. HTTPS). */ httpProtocol?: Array<'HTTP' | 'HTTPS'>; /** * Filters results by HTTP version. */ httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>; /** * Filters results by IP version (Ipv4 vs. IPv6). */ ipVersion?: Array<'IPv4' | 'IPv6'>; /** * 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>; /** * Filters results by TLS version. */ tlsVersion?: Array<'TLSv1_0' | 'TLSv1_1' | 'TLSv1_2' | 'TLSv1_3' | 'TLSvQUIC'>; } export interface SummaryPostQuantumParams { /** * 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 bot class. Refer to * [Bot classes](https://developers.cloudflare.com/radar/concepts/bot-classes/). */ botClass?: Array<'LIKELY_AUTOMATED' | 'LIKELY_HUMAN'>; /** * Filters results by browser family. */ browserFamily?: Array<'CHROME' | 'EDGE' | 'FIREFOX' | 'SAFARI'>; /** * 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>; /** * Filters results by date range. 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<string>; /** * Start of the date range. */ dateStart?: Array<string>; /** * Filters results by device type. */ deviceType?: Array<'DESKTOP' | 'MOBILE' | 'OTHER'>; /** * Format in which results will be returned. */ format?: 'JSON' | 'CSV'; /** * Filters results by Geolocation. Specify a comma-separated list of GeoNames IDs. * Prefix with `-` to exclude geoIds from results. For example, `-2267056,360689` * excludes results from the 2267056 (Lisbon), but includes results from 5128638 * (New York). */ geoId?: Array<string>; /** * Filters results by HTTP protocol (HTTP vs. HTTPS). */ httpProtocol?: Array<'HTTP' | 'HTTPS'>; /** * Filters results by HTTP version. */ httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>; /** * Filters results by IP version (Ipv4 vs. IPv6). */ ipVersion?: Array<'IPv4' | 'IPv6'>; /** * 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>; /** * Filters results by operating system. */ os?: Array<'WINDOWS' | 'MACOSX' | 'IOS' | 'ANDROID' | 'CHROMEOS' | 'LINUX' | 'SMART_TV'>; /** * Filters results by TLS version. */ tlsVersion?: Array<'TLSv1_0' | 'TLSv1_1' | 'TLSv1_2' | 'TLSv1_3' | 'TLSvQUIC'>; } export interface SummaryTLSVersionParams { /** * 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 bot class. Refer to * [Bot classes](https://developers.cloudflare.com/radar/concepts/bot-classes/). */ botClass?: Array<'LIKELY_AUTOMATED' | 'LIKELY_HUMAN'>; /** * Filters results by browser family. */ browserFamily?: Array<'CHROME' | 'EDGE' | 'FIREFOX' | 'SAFARI'>; /** * 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>; /** * Filters results by date range. 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<string>; /** * Start of the date range. */ dateStart?: Array<string>; /** * Filters results by device type. */ deviceType?: Array<'DESKTOP' | 'MOBILE' | 'OTHER'>; /** * Format in which results will be returned. */ format?: 'JSON' | 'CSV'; /** * Filters results by Geolocation. Specify a comma-separated list of GeoNames IDs. * Prefix with `-` to exclude geoIds from results. For example, `-2267056,360689` * excludes results from the 2267056 (Lisbon), but includes results from 5128638 * (New York). */ geoId?: Array<string>; /** * Filters results by HTTP protocol (HTTP vs. HTTPS). */ httpProtocol?: Array<'HTTP' | 'HTTPS'>; /** * Filters results by HTTP version. */ httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>; /** * Filters results by IP version (Ipv4 vs. IPv6). */ ipVersion?: Array<'IPv4' | 'IPv6'>; /** * 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>; /** * Filters results by operating system. */ os?: Array<'WINDOWS' | 'MACOSX' | 'IOS' | 'ANDROID' | 'CHROMEOS' | 'LINUX' | 'SMART_TV'>; } export declare namespace Summary { export { type SummaryBotClassResponse as SummaryBotClassResponse, type SummaryDeviceTypeResponse as SummaryDeviceTypeResponse, type SummaryHTTPProtocolResponse as SummaryHTTPProtocolResponse, type SummaryHTTPVersionResponse as SummaryHTTPVersionResponse, type SummaryIPVersionResponse as SummaryIPVersionResponse, type SummaryOSResponse as SummaryOSResponse, type SummaryPostQuantumResponse as SummaryPostQuantumResponse, type SummaryTLSVersionResponse as SummaryTLSVersionResponse, type SummaryBotClassParams as SummaryBotClassParams, type SummaryDeviceTypeParams as SummaryDeviceTypeParams, type SummaryHTTPProtocolParams as SummaryHTTPProtocolParams, type SummaryHTTPVersionParams as SummaryHTTPVersionParams, type SummaryIPVersionParams as SummaryIPVersionParams, type SummaryOSParams as SummaryOSParams, type SummaryPostQuantumParams as SummaryPostQuantumParams, type SummaryTLSVersionParams as SummaryTLSVersionParams, }; }