cloudflare
Version:
The official TypeScript library for the Cloudflare API
1,472 lines (1,304 loc) • 35.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 TimeseriesGroupsAPI from "./timeseries-groups";
export class TimeseriesGroups extends APIResource {
/**
* Get a time series of the percentual distribution of mitigation techniques, over
* time.
*/
get(
query?: TimeseriesGroupGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupGetResponse>;
get(options?: Core.RequestOptions): Core.APIPromise<TimeseriesGroupGetResponse>;
get(
query: TimeseriesGroupGetParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupGetResponse> {
if (isRequestOptions(query)) {
return this.get({}, query);
}
return (
this._client.get('/radar/attacks/layer7/timeseries_groups', { query, ...options }) as Core.APIPromise<{
result: TimeseriesGroupGetResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Percentage distribution of attacks by http method used over time.
*/
httpMethod(
query?: TimeseriesGroupHTTPMethodParams,
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupHTTPMethodResponse>;
httpMethod(options?: Core.RequestOptions): Core.APIPromise<TimeseriesGroupHTTPMethodResponse>;
httpMethod(
query: TimeseriesGroupHTTPMethodParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupHTTPMethodResponse> {
if (isRequestOptions(query)) {
return this.httpMethod({}, query);
}
return (
this._client.get('/radar/attacks/layer7/timeseries_groups/http_method', {
query,
...options,
}) as Core.APIPromise<{ result: TimeseriesGroupHTTPMethodResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Percentage distribution of attacks by http version used over time.
*/
httpVersion(
query?: TimeseriesGroupHTTPVersionParams,
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupHTTPVersionResponse>;
httpVersion(options?: Core.RequestOptions): Core.APIPromise<TimeseriesGroupHTTPVersionResponse>;
httpVersion(
query: TimeseriesGroupHTTPVersionParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupHTTPVersionResponse> {
if (isRequestOptions(query)) {
return this.httpVersion({}, query);
}
return (
this._client.get('/radar/attacks/layer7/timeseries_groups/http_version', {
query,
...options,
}) as Core.APIPromise<{ result: TimeseriesGroupHTTPVersionResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Percentage distribution of attacks by industry used over time.
*/
industry(
query?: TimeseriesGroupIndustryParams,
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupIndustryResponse>;
industry(options?: Core.RequestOptions): Core.APIPromise<TimeseriesGroupIndustryResponse>;
industry(
query: TimeseriesGroupIndustryParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupIndustryResponse> {
if (isRequestOptions(query)) {
return this.industry({}, query);
}
return (
this._client.get('/radar/attacks/layer7/timeseries_groups/industry', {
query,
...options,
}) as Core.APIPromise<{ result: TimeseriesGroupIndustryResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Percentage distribution of attacks by ip version used over time.
*/
ipVersion(
query?: TimeseriesGroupIPVersionParams,
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupIPVersionResponse>;
ipVersion(options?: Core.RequestOptions): Core.APIPromise<TimeseriesGroupIPVersionResponse>;
ipVersion(
query: TimeseriesGroupIPVersionParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupIPVersionResponse> {
if (isRequestOptions(query)) {
return this.ipVersion({}, query);
}
return (
this._client.get('/radar/attacks/layer7/timeseries_groups/ip_version', {
query,
...options,
}) as Core.APIPromise<{ result: TimeseriesGroupIPVersionResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Percentage distribution of attacks by managed rules used over time.
*/
managedRules(
query?: TimeseriesGroupManagedRulesParams,
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupManagedRulesResponse>;
managedRules(options?: Core.RequestOptions): Core.APIPromise<TimeseriesGroupManagedRulesResponse>;
managedRules(
query: TimeseriesGroupManagedRulesParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupManagedRulesResponse> {
if (isRequestOptions(query)) {
return this.managedRules({}, query);
}
return (
this._client.get('/radar/attacks/layer7/timeseries_groups/managed_rules', {
query,
...options,
}) as Core.APIPromise<{ result: TimeseriesGroupManagedRulesResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Percentage distribution of attacks by mitigation product used over time.
*/
mitigationProduct(
query?: TimeseriesGroupMitigationProductParams,
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupMitigationProductResponse>;
mitigationProduct(options?: Core.RequestOptions): Core.APIPromise<TimeseriesGroupMitigationProductResponse>;
mitigationProduct(
query: TimeseriesGroupMitigationProductParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupMitigationProductResponse> {
if (isRequestOptions(query)) {
return this.mitigationProduct({}, query);
}
return (
this._client.get('/radar/attacks/layer7/timeseries_groups/mitigation_product', {
query,
...options,
}) as Core.APIPromise<{ result: TimeseriesGroupMitigationProductResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Percentage distribution of attacks by vertical used over time.
*/
vertical(
query?: TimeseriesGroupVerticalParams,
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupVerticalResponse>;
vertical(options?: Core.RequestOptions): Core.APIPromise<TimeseriesGroupVerticalResponse>;
vertical(
query: TimeseriesGroupVerticalParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<TimeseriesGroupVerticalResponse> {
if (isRequestOptions(query)) {
return this.vertical({}, query);
}
return (
this._client.get('/radar/attacks/layer7/timeseries_groups/vertical', {
query,
...options,
}) as Core.APIPromise<{ result: TimeseriesGroupVerticalResponse }>
)._thenUnwrap((obj) => obj.result);
}
}
export interface TimeseriesGroupGetResponse {
meta: TimeseriesGroupGetResponse.Meta;
serie_0: TimeseriesGroupGetResponse.Serie0;
}
export namespace TimeseriesGroupGetResponse {
export interface Meta {
aggInterval: string;
dateRange: Array<Meta.DateRange>;
lastUpdated: string;
confidenceInfo?: Meta.ConfidenceInfo;
}
export namespace Meta {
export interface DateRange {
/**
* Adjusted end of date range.
*/
endTime: string;
/**
* Adjusted start of date range.
*/
startTime: string;
}
export interface ConfidenceInfo {
annotations?: Array<ConfidenceInfo.Annotation>;
level?: number;
}
export namespace ConfidenceInfo {
export interface Annotation {
dataSource: string;
description: string;
eventType: string;
isInstantaneous: unknown;
endTime?: string;
linkedUrl?: string;
startTime?: string;
}
}
}
export interface Serie0 {
ACCESS_RULES: Array<string>;
API_SHIELD: Array<string>;
BOT_MANAGEMENT: Array<string>;
DATA_LOSS_PREVENTION: Array<string>;
DDOS: Array<string>;
IP_REPUTATION: Array<string>;
timestamps: Array<string>;
WAF: Array<string>;
}
}
export interface TimeseriesGroupHTTPMethodResponse {
meta: unknown;
serie_0: TimeseriesGroupHTTPMethodResponse.Serie0;
}
export namespace TimeseriesGroupHTTPMethodResponse {
export interface Serie0 {
GET: Array<string>;
timestamps: Array<string>;
}
}
export interface TimeseriesGroupHTTPVersionResponse {
meta: unknown;
serie_0: TimeseriesGroupHTTPVersionResponse.Serie0;
}
export namespace TimeseriesGroupHTTPVersionResponse {
export interface Serie0 {
'HTTP/1.x': Array<string>;
timestamps: Array<string>;
}
}
export interface TimeseriesGroupIndustryResponse {
meta: unknown;
serie_0: TimeseriesGroupIndustryResponse.Serie0;
}
export namespace TimeseriesGroupIndustryResponse {
export interface Serie0 {
timestamps: Array<string>;
[]: Array<string>;
}
}
export interface TimeseriesGroupIPVersionResponse {
meta: unknown;
serie_0: TimeseriesGroupIPVersionResponse.Serie0;
}
export namespace TimeseriesGroupIPVersionResponse {
export interface Serie0 {
IPv4: Array<string>;
IPv6: Array<string>;
timestamps: Array<string>;
}
}
export interface TimeseriesGroupManagedRulesResponse {
meta: unknown;
serie_0: TimeseriesGroupManagedRulesResponse.Serie0;
}
export namespace TimeseriesGroupManagedRulesResponse {
export interface Serie0 {
Bot: Array<string>;
timestamps: Array<string>;
}
}
export interface TimeseriesGroupMitigationProductResponse {
meta: unknown;
serie_0: TimeseriesGroupMitigationProductResponse.Serie0;
}
export namespace TimeseriesGroupMitigationProductResponse {
export interface Serie0 {
DDOS: Array<string>;
timestamps: Array<string>;
}
}
export interface TimeseriesGroupVerticalResponse {
meta: unknown;
serie_0: TimeseriesGroupVerticalResponse.Serie0;
}
export namespace TimeseriesGroupVerticalResponse {
export interface Serie0 {
timestamps: Array<string>;
[]: Array<string>;
}
}
export interface TimeseriesGroupGetParams {
/**
* Aggregation interval results should be returned in (for example, in 15 minutes
* or 1 hour intervals). Refer to
* [Aggregation intervals](https://developers.cloudflare.com/radar/concepts/aggregation-intervals/).
*/
aggInterval?: '15m' | '1h' | '1d' | '1w';
/**
* 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>;
/**
* Array of comma separated list of continents (alpha-2 continent codes). Start
* with `-` to exclude from results. For example, `-EU,NA` excludes results from
* Europe, but includes results from North America.
*/
continent?: 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';
/**
* Array of comma separated list of locations (alpha-2 country codes). Start with
* `-` to exclude from results. For example, `-US,PT` excludes results from the US,
* but includes results from PT.
*/
location?: Array<string>;
/**
* Array of names that will be used to name the series in responses.
*/
name?: Array<string>;
}
export interface TimeseriesGroupHTTPMethodParams {
/**
* Aggregation interval results should be returned in (for example, in 15 minutes
* or 1 hour intervals). Refer to
* [Aggregation intervals](https://developers.cloudflare.com/radar/concepts/aggregation-intervals/).
*/
aggInterval?: '15m' | '1h' | '1d' | '1w';
/**
* 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>;
/**
* Array of comma separated list of continents (alpha-2 continent codes). Start
* with `-` to exclude from results. For example, `-EU,NA` excludes results from
* Europe, but includes results from North America.
*/
continent?: 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';
/**
* Filter for http version.
*/
httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>;
/**
* Filter for ip version.
*/
ipVersion?: Array<'IPv4' | 'IPv6'>;
/**
* Array of comma separated list of locations (alpha-2 country codes). Start with
* `-` to exclude from results. For example, `-US,PT` excludes results from the US,
* but includes results from PT.
*/
location?: Array<string>;
/**
* Array of L7 mitigation products.
*/
mitigationProduct?: Array<
| 'DDOS'
| 'WAF'
| 'BOT_MANAGEMENT'
| 'ACCESS_RULES'
| 'IP_REPUTATION'
| 'API_SHIELD'
| 'DATA_LOSS_PREVENTION'
>;
/**
* Array of names that will be used to name the series in responses.
*/
name?: Array<string>;
/**
* Normalization method applied. Refer to
* [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
*/
normalization?: 'PERCENTAGE' | 'MIN0_MAX';
}
export interface TimeseriesGroupHTTPVersionParams {
/**
* Aggregation interval results should be returned in (for example, in 15 minutes
* or 1 hour intervals). Refer to
* [Aggregation intervals](https://developers.cloudflare.com/radar/concepts/aggregation-intervals/).
*/
aggInterval?: '15m' | '1h' | '1d' | '1w';
/**
* 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>;
/**
* Array of comma separated list of continents (alpha-2 continent codes). Start
* with `-` to exclude from results. For example, `-EU,NA` excludes results from
* Europe, but includes results from North America.
*/
continent?: 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';
/**
* Filter for http method.
*/
httpMethod?: Array<
| 'GET'
| 'POST'
| 'DELETE'
| 'PUT'
| 'HEAD'
| 'PURGE'
| 'OPTIONS'
| 'PROPFIND'
| 'MKCOL'
| 'PATCH'
| 'ACL'
| 'BCOPY'
| 'BDELETE'
| 'BMOVE'
| 'BPROPFIND'
| 'BPROPPATCH'
| 'CHECKIN'
| 'CHECKOUT'
| 'CONNECT'
| 'COPY'
| 'LABEL'
| 'LOCK'
| 'MERGE'
| 'MKACTIVITY'
| 'MKWORKSPACE'
| 'MOVE'
| 'NOTIFY'
| 'ORDERPATCH'
| 'POLL'
| 'PROPPATCH'
| 'REPORT'
| 'SEARCH'
| 'SUBSCRIBE'
| 'TRACE'
| 'UNCHECKOUT'
| 'UNLOCK'
| 'UNSUBSCRIBE'
| 'UPDATE'
| 'VERSIONCONTROL'
| 'BASELINECONTROL'
| 'XMSENUMATTS'
| 'RPC_OUT_DATA'
| 'RPC_IN_DATA'
| 'JSON'
| 'COOK'
| 'TRACK'
>;
/**
* Filter for ip version.
*/
ipVersion?: Array<'IPv4' | 'IPv6'>;
/**
* Array of comma separated list of locations (alpha-2 country codes). Start with
* `-` to exclude from results. For example, `-US,PT` excludes results from the US,
* but includes results from PT.
*/
location?: Array<string>;
/**
* Array of L7 mitigation products.
*/
mitigationProduct?: Array<
| 'DDOS'
| 'WAF'
| 'BOT_MANAGEMENT'
| 'ACCESS_RULES'
| 'IP_REPUTATION'
| 'API_SHIELD'
| 'DATA_LOSS_PREVENTION'
>;
/**
* Array of names that will be used to name the series in responses.
*/
name?: Array<string>;
/**
* Normalization method applied. Refer to
* [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
*/
normalization?: 'PERCENTAGE' | 'MIN0_MAX';
}
export interface TimeseriesGroupIndustryParams {
/**
* Aggregation interval results should be returned in (for example, in 15 minutes
* or 1 hour intervals). Refer to
* [Aggregation intervals](https://developers.cloudflare.com/radar/concepts/aggregation-intervals/).
*/
aggInterval?: '15m' | '1h' | '1d' | '1w';
/**
* 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>;
/**
* Array of comma separated list of continents (alpha-2 continent codes). Start
* with `-` to exclude from results. For example, `-EU,NA` excludes results from
* Europe, but includes results from North America.
*/
continent?: 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';
/**
* Filter for http method.
*/
httpMethod?: Array<
| 'GET'
| 'POST'
| 'DELETE'
| 'PUT'
| 'HEAD'
| 'PURGE'
| 'OPTIONS'
| 'PROPFIND'
| 'MKCOL'
| 'PATCH'
| 'ACL'
| 'BCOPY'
| 'BDELETE'
| 'BMOVE'
| 'BPROPFIND'
| 'BPROPPATCH'
| 'CHECKIN'
| 'CHECKOUT'
| 'CONNECT'
| 'COPY'
| 'LABEL'
| 'LOCK'
| 'MERGE'
| 'MKACTIVITY'
| 'MKWORKSPACE'
| 'MOVE'
| 'NOTIFY'
| 'ORDERPATCH'
| 'POLL'
| 'PROPPATCH'
| 'REPORT'
| 'SEARCH'
| 'SUBSCRIBE'
| 'TRACE'
| 'UNCHECKOUT'
| 'UNLOCK'
| 'UNSUBSCRIBE'
| 'UPDATE'
| 'VERSIONCONTROL'
| 'BASELINECONTROL'
| 'XMSENUMATTS'
| 'RPC_OUT_DATA'
| 'RPC_IN_DATA'
| 'JSON'
| 'COOK'
| 'TRACK'
>;
/**
* Filter for http version.
*/
httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>;
/**
* Filter for ip version.
*/
ipVersion?: Array<'IPv4' | 'IPv6'>;
/**
* Limit the number of objects (eg browsers, verticals, etc) to the top items over
* the time range.
*/
limitPerGroup?: number;
/**
* Array of comma separated list of locations (alpha-2 country codes). Start with
* `-` to exclude from results. For example, `-US,PT` excludes results from the US,
* but includes results from PT.
*/
location?: Array<string>;
/**
* Array of L7 mitigation products.
*/
mitigationProduct?: Array<
| 'DDOS'
| 'WAF'
| 'BOT_MANAGEMENT'
| 'ACCESS_RULES'
| 'IP_REPUTATION'
| 'API_SHIELD'
| 'DATA_LOSS_PREVENTION'
>;
/**
* Array of names that will be used to name the series in responses.
*/
name?: Array<string>;
/**
* Normalization method applied. Refer to
* [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
*/
normalization?: 'PERCENTAGE' | 'MIN0_MAX';
}
export interface TimeseriesGroupIPVersionParams {
/**
* Aggregation interval results should be returned in (for example, in 15 minutes
* or 1 hour intervals). Refer to
* [Aggregation intervals](https://developers.cloudflare.com/radar/concepts/aggregation-intervals/).
*/
aggInterval?: '15m' | '1h' | '1d' | '1w';
/**
* 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>;
/**
* Array of comma separated list of continents (alpha-2 continent codes). Start
* with `-` to exclude from results. For example, `-EU,NA` excludes results from
* Europe, but includes results from North America.
*/
continent?: 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';
/**
* Filter for http method.
*/
httpMethod?: Array<
| 'GET'
| 'POST'
| 'DELETE'
| 'PUT'
| 'HEAD'
| 'PURGE'
| 'OPTIONS'
| 'PROPFIND'
| 'MKCOL'
| 'PATCH'
| 'ACL'
| 'BCOPY'
| 'BDELETE'
| 'BMOVE'
| 'BPROPFIND'
| 'BPROPPATCH'
| 'CHECKIN'
| 'CHECKOUT'
| 'CONNECT'
| 'COPY'
| 'LABEL'
| 'LOCK'
| 'MERGE'
| 'MKACTIVITY'
| 'MKWORKSPACE'
| 'MOVE'
| 'NOTIFY'
| 'ORDERPATCH'
| 'POLL'
| 'PROPPATCH'
| 'REPORT'
| 'SEARCH'
| 'SUBSCRIBE'
| 'TRACE'
| 'UNCHECKOUT'
| 'UNLOCK'
| 'UNSUBSCRIBE'
| 'UPDATE'
| 'VERSIONCONTROL'
| 'BASELINECONTROL'
| 'XMSENUMATTS'
| 'RPC_OUT_DATA'
| 'RPC_IN_DATA'
| 'JSON'
| 'COOK'
| 'TRACK'
>;
/**
* Filter for http version.
*/
httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>;
/**
* Array of comma separated list of locations (alpha-2 country codes). Start with
* `-` to exclude from results. For example, `-US,PT` excludes results from the US,
* but includes results from PT.
*/
location?: Array<string>;
/**
* Array of L7 mitigation products.
*/
mitigationProduct?: Array<
| 'DDOS'
| 'WAF'
| 'BOT_MANAGEMENT'
| 'ACCESS_RULES'
| 'IP_REPUTATION'
| 'API_SHIELD'
| 'DATA_LOSS_PREVENTION'
>;
/**
* Array of names that will be used to name the series in responses.
*/
name?: Array<string>;
/**
* Normalization method applied. Refer to
* [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
*/
normalization?: 'PERCENTAGE' | 'MIN0_MAX';
}
export interface TimeseriesGroupManagedRulesParams {
/**
* Aggregation interval results should be returned in (for example, in 15 minutes
* or 1 hour intervals). Refer to
* [Aggregation intervals](https://developers.cloudflare.com/radar/concepts/aggregation-intervals/).
*/
aggInterval?: '15m' | '1h' | '1d' | '1w';
/**
* 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>;
/**
* Array of comma separated list of continents (alpha-2 continent codes). Start
* with `-` to exclude from results. For example, `-EU,NA` excludes results from
* Europe, but includes results from North America.
*/
continent?: 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';
/**
* Filter for http method.
*/
httpMethod?: Array<
| 'GET'
| 'POST'
| 'DELETE'
| 'PUT'
| 'HEAD'
| 'PURGE'
| 'OPTIONS'
| 'PROPFIND'
| 'MKCOL'
| 'PATCH'
| 'ACL'
| 'BCOPY'
| 'BDELETE'
| 'BMOVE'
| 'BPROPFIND'
| 'BPROPPATCH'
| 'CHECKIN'
| 'CHECKOUT'
| 'CONNECT'
| 'COPY'
| 'LABEL'
| 'LOCK'
| 'MERGE'
| 'MKACTIVITY'
| 'MKWORKSPACE'
| 'MOVE'
| 'NOTIFY'
| 'ORDERPATCH'
| 'POLL'
| 'PROPPATCH'
| 'REPORT'
| 'SEARCH'
| 'SUBSCRIBE'
| 'TRACE'
| 'UNCHECKOUT'
| 'UNLOCK'
| 'UNSUBSCRIBE'
| 'UPDATE'
| 'VERSIONCONTROL'
| 'BASELINECONTROL'
| 'XMSENUMATTS'
| 'RPC_OUT_DATA'
| 'RPC_IN_DATA'
| 'JSON'
| 'COOK'
| 'TRACK'
>;
/**
* Filter for http version.
*/
httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>;
/**
* Filter for ip version.
*/
ipVersion?: Array<'IPv4' | 'IPv6'>;
/**
* Array of comma separated list of locations (alpha-2 country codes). Start with
* `-` to exclude from results. For example, `-US,PT` excludes results from the US,
* but includes results from PT.
*/
location?: Array<string>;
/**
* Array of L7 mitigation products.
*/
mitigationProduct?: Array<
| 'DDOS'
| 'WAF'
| 'BOT_MANAGEMENT'
| 'ACCESS_RULES'
| 'IP_REPUTATION'
| 'API_SHIELD'
| 'DATA_LOSS_PREVENTION'
>;
/**
* Array of names that will be used to name the series in responses.
*/
name?: Array<string>;
/**
* Normalization method applied. Refer to
* [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
*/
normalization?: 'PERCENTAGE' | 'MIN0_MAX';
}
export interface TimeseriesGroupMitigationProductParams {
/**
* Aggregation interval results should be returned in (for example, in 15 minutes
* or 1 hour intervals). Refer to
* [Aggregation intervals](https://developers.cloudflare.com/radar/concepts/aggregation-intervals/).
*/
aggInterval?: '15m' | '1h' | '1d' | '1w';
/**
* 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>;
/**
* Array of comma separated list of continents (alpha-2 continent codes). Start
* with `-` to exclude from results. For example, `-EU,NA` excludes results from
* Europe, but includes results from North America.
*/
continent?: 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';
/**
* Filter for http method.
*/
httpMethod?: Array<
| 'GET'
| 'POST'
| 'DELETE'
| 'PUT'
| 'HEAD'
| 'PURGE'
| 'OPTIONS'
| 'PROPFIND'
| 'MKCOL'
| 'PATCH'
| 'ACL'
| 'BCOPY'
| 'BDELETE'
| 'BMOVE'
| 'BPROPFIND'
| 'BPROPPATCH'
| 'CHECKIN'
| 'CHECKOUT'
| 'CONNECT'
| 'COPY'
| 'LABEL'
| 'LOCK'
| 'MERGE'
| 'MKACTIVITY'
| 'MKWORKSPACE'
| 'MOVE'
| 'NOTIFY'
| 'ORDERPATCH'
| 'POLL'
| 'PROPPATCH'
| 'REPORT'
| 'SEARCH'
| 'SUBSCRIBE'
| 'TRACE'
| 'UNCHECKOUT'
| 'UNLOCK'
| 'UNSUBSCRIBE'
| 'UPDATE'
| 'VERSIONCONTROL'
| 'BASELINECONTROL'
| 'XMSENUMATTS'
| 'RPC_OUT_DATA'
| 'RPC_IN_DATA'
| 'JSON'
| 'COOK'
| 'TRACK'
>;
/**
* Filter for http version.
*/
httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>;
/**
* Filter for ip version.
*/
ipVersion?: Array<'IPv4' | 'IPv6'>;
/**
* Array of comma separated list of locations (alpha-2 country codes). Start with
* `-` to exclude from results. For example, `-US,PT` excludes results from the US,
* but includes results from PT.
*/
location?: Array<string>;
/**
* Array of names that will be used to name the series in responses.
*/
name?: Array<string>;
/**
* Normalization method applied. Refer to
* [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
*/
normalization?: 'PERCENTAGE' | 'MIN0_MAX';
}
export interface TimeseriesGroupVerticalParams {
/**
* Aggregation interval results should be returned in (for example, in 15 minutes
* or 1 hour intervals). Refer to
* [Aggregation intervals](https://developers.cloudflare.com/radar/concepts/aggregation-intervals/).
*/
aggInterval?: '15m' | '1h' | '1d' | '1w';
/**
* 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>;
/**
* Array of comma separated list of continents (alpha-2 continent codes). Start
* with `-` to exclude from results. For example, `-EU,NA` excludes results from
* Europe, but includes results from North America.
*/
continent?: 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';
/**
* Filter for http method.
*/
httpMethod?: Array<
| 'GET'
| 'POST'
| 'DELETE'
| 'PUT'
| 'HEAD'
| 'PURGE'
| 'OPTIONS'
| 'PROPFIND'
| 'MKCOL'
| 'PATCH'
| 'ACL'
| 'BCOPY'
| 'BDELETE'
| 'BMOVE'
| 'BPROPFIND'
| 'BPROPPATCH'
| 'CHECKIN'
| 'CHECKOUT'
| 'CONNECT'
| 'COPY'
| 'LABEL'
| 'LOCK'
| 'MERGE'
| 'MKACTIVITY'
| 'MKWORKSPACE'
| 'MOVE'
| 'NOTIFY'
| 'ORDERPATCH'
| 'POLL'
| 'PROPPATCH'
| 'REPORT'
| 'SEARCH'
| 'SUBSCRIBE'
| 'TRACE'
| 'UNCHECKOUT'
| 'UNLOCK'
| 'UNSUBSCRIBE'
| 'UPDATE'
| 'VERSIONCONTROL'
| 'BASELINECONTROL'
| 'XMSENUMATTS'
| 'RPC_OUT_DATA'
| 'RPC_IN_DATA'
| 'JSON'
| 'COOK'
| 'TRACK'
>;
/**
* Filter for http version.
*/
httpVersion?: Array<'HTTPv1' | 'HTTPv2' | 'HTTPv3'>;
/**
* Filter for ip version.
*/
ipVersion?: Array<'IPv4' | 'IPv6'>;
/**
* Limit the number of objects (eg browsers, verticals, etc) to the top items over
* the time range.
*/
limitPerGroup?: number;
/**
* Array of comma separated list of locations (alpha-2 country codes). Start with
* `-` to exclude from results. For example, `-US,PT` excludes results from the US,
* but includes results from PT.
*/
location?: Array<string>;
/**
* Array of L7 mitigation products.
*/
mitigationProduct?: Array<
| 'DDOS'
| 'WAF'
| 'BOT_MANAGEMENT'
| 'ACCESS_RULES'
| 'IP_REPUTATION'
| 'API_SHIELD'
| 'DATA_LOSS_PREVENTION'
>;
/**
* Array of names that will be used to name the series in responses.
*/
name?: Array<string>;
/**
* Normalization method applied. Refer to
* [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
*/
normalization?: 'PERCENTAGE' | 'MIN0_MAX';
}
export namespace TimeseriesGroups {
export import TimeseriesGroupGetResponse = TimeseriesGroupsAPI.TimeseriesGroupGetResponse;
export import TimeseriesGroupHTTPMethodResponse = TimeseriesGroupsAPI.TimeseriesGroupHTTPMethodResponse;
export import TimeseriesGroupHTTPVersionResponse = TimeseriesGroupsAPI.TimeseriesGroupHTTPVersionResponse;
export import TimeseriesGroupIndustryResponse = TimeseriesGroupsAPI.TimeseriesGroupIndustryResponse;
export import TimeseriesGroupIPVersionResponse = TimeseriesGroupsAPI.TimeseriesGroupIPVersionResponse;
export import TimeseriesGroupManagedRulesResponse = TimeseriesGroupsAPI.TimeseriesGroupManagedRulesResponse;
export import TimeseriesGroupMitigationProductResponse = TimeseriesGroupsAPI.TimeseriesGroupMitigationProductResponse;
export import TimeseriesGroupVerticalResponse = TimeseriesGroupsAPI.TimeseriesGroupVerticalResponse;
export import TimeseriesGroupGetParams = TimeseriesGroupsAPI.TimeseriesGroupGetParams;
export import TimeseriesGroupHTTPMethodParams = TimeseriesGroupsAPI.TimeseriesGroupHTTPMethodParams;
export import TimeseriesGroupHTTPVersionParams = TimeseriesGroupsAPI.TimeseriesGroupHTTPVersionParams;
export import TimeseriesGroupIndustryParams = TimeseriesGroupsAPI.TimeseriesGroupIndustryParams;
export import TimeseriesGroupIPVersionParams = TimeseriesGroupsAPI.TimeseriesGroupIPVersionParams;
export import TimeseriesGroupManagedRulesParams = TimeseriesGroupsAPI.TimeseriesGroupManagedRulesParams;
export import TimeseriesGroupMitigationProductParams = TimeseriesGroupsAPI.TimeseriesGroupMitigationProductParams;
export import TimeseriesGroupVerticalParams = TimeseriesGroupsAPI.TimeseriesGroupVerticalParams;
}