cloudflare
Version:
The official TypeScript library for the Cloudflare API
2,555 lines (2,221 loc) • 51.7 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';
export class Summary extends APIResource {
/**
* Retrieves the distribution of DNS queries by cache status.
*/
cacheHit(
query?: SummaryCacheHitParams,
options?: Core.RequestOptions,
): Core.APIPromise<SummaryCacheHitResponse>;
cacheHit(options?: Core.RequestOptions): Core.APIPromise<SummaryCacheHitResponse>;
cacheHit(
query: SummaryCacheHitParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<SummaryCacheHitResponse> {
if (isRequestOptions(query)) {
return this.cacheHit({}, query);
}
return (
this._client.get('/radar/dns/summary/cache_hit', { query, ...options }) as Core.APIPromise<{
result: SummaryCacheHitResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Retrieves the distribution of DNS responses by DNSSEC (DNS Security Extensions)
* support.
*/
dnssec(query?: SummaryDNSSECParams, options?: Core.RequestOptions): Core.APIPromise<SummaryDNSSECResponse>;
dnssec(options?: Core.RequestOptions): Core.APIPromise<SummaryDNSSECResponse>;
dnssec(
query: SummaryDNSSECParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<SummaryDNSSECResponse> {
if (isRequestOptions(query)) {
return this.dnssec({}, query);
}
return (
this._client.get('/radar/dns/summary/dnssec', { query, ...options }) as Core.APIPromise<{
result: SummaryDNSSECResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Retrieves the distribution of DNS queries by DNSSEC (DNS Security Extensions)
* client awareness.
*/
dnssecAware(
query?: SummaryDNSSECAwareParams,
options?: Core.RequestOptions,
): Core.APIPromise<SummaryDNSSECAwareResponse>;
dnssecAware(options?: Core.RequestOptions): Core.APIPromise<SummaryDNSSECAwareResponse>;
dnssecAware(
query: SummaryDNSSECAwareParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<SummaryDNSSECAwareResponse> {
if (isRequestOptions(query)) {
return this.dnssecAware({}, query);
}
return (
this._client.get('/radar/dns/summary/dnssec_aware', { query, ...options }) as Core.APIPromise<{
result: SummaryDNSSECAwareResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Retrieves the distribution of DNSSEC-validated answers by end-to-end security
* status.
*/
dnssecE2E(
query?: SummaryDNSSECE2EParams,
options?: Core.RequestOptions,
): Core.APIPromise<SummaryDNSSECE2EResponse>;
dnssecE2E(options?: Core.RequestOptions): Core.APIPromise<SummaryDNSSECE2EResponse>;
dnssecE2E(
query: SummaryDNSSECE2EParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<SummaryDNSSECE2EResponse> {
if (isRequestOptions(query)) {
return this.dnssecE2E({}, query);
}
return (
this._client.get('/radar/dns/summary/dnssec_e2e', { query, ...options }) as Core.APIPromise<{
result: SummaryDNSSECE2EResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Retrieves the distribution of DNS queries by IP version.
*/
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/dns/summary/ip_version', { query, ...options }) as Core.APIPromise<{
result: SummaryIPVersionResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Retrieves the distribution of DNS queries by matching answers.
*/
matchingAnswer(
query?: SummaryMatchingAnswerParams,
options?: Core.RequestOptions,
): Core.APIPromise<SummaryMatchingAnswerResponse>;
matchingAnswer(options?: Core.RequestOptions): Core.APIPromise<SummaryMatchingAnswerResponse>;
matchingAnswer(
query: SummaryMatchingAnswerParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<SummaryMatchingAnswerResponse> {
if (isRequestOptions(query)) {
return this.matchingAnswer({}, query);
}
return (
this._client.get('/radar/dns/summary/matching_answer', { query, ...options }) as Core.APIPromise<{
result: SummaryMatchingAnswerResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Retrieves the distribution of DNS queries by DNS transport protocol.
*/
protocol(
query?: SummaryProtocolParams,
options?: Core.RequestOptions,
): Core.APIPromise<SummaryProtocolResponse>;
protocol(options?: Core.RequestOptions): Core.APIPromise<SummaryProtocolResponse>;
protocol(
query: SummaryProtocolParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<SummaryProtocolResponse> {
if (isRequestOptions(query)) {
return this.protocol({}, query);
}
return (
this._client.get('/radar/dns/summary/protocol', { query, ...options }) as Core.APIPromise<{
result: SummaryProtocolResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Retrieves the distribution of DNS queries by type.
*/
queryType(
query?: SummaryQueryTypeParams,
options?: Core.RequestOptions,
): Core.APIPromise<SummaryQueryTypeResponse>;
queryType(options?: Core.RequestOptions): Core.APIPromise<SummaryQueryTypeResponse>;
queryType(
query: SummaryQueryTypeParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<SummaryQueryTypeResponse> {
if (isRequestOptions(query)) {
return this.queryType({}, query);
}
return (
this._client.get('/radar/dns/summary/query_type', { query, ...options }) as Core.APIPromise<{
result: SummaryQueryTypeResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Retrieves the distribution of DNS queries by response code.
*/
responseCode(
query?: SummaryResponseCodeParams,
options?: Core.RequestOptions,
): Core.APIPromise<SummaryResponseCodeResponse>;
responseCode(options?: Core.RequestOptions): Core.APIPromise<SummaryResponseCodeResponse>;
responseCode(
query: SummaryResponseCodeParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<SummaryResponseCodeResponse> {
if (isRequestOptions(query)) {
return this.responseCode({}, query);
}
return (
this._client.get('/radar/dns/summary/response_code', { query, ...options }) as Core.APIPromise<{
result: SummaryResponseCodeResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Retrieves the distribution of DNS queries by minimum response TTL.
*/
responseTTL(
query?: SummaryResponseTTLParams,
options?: Core.RequestOptions,
): Core.APIPromise<SummaryResponseTTLResponse>;
responseTTL(options?: Core.RequestOptions): Core.APIPromise<SummaryResponseTTLResponse>;
responseTTL(
query: SummaryResponseTTLParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<SummaryResponseTTLResponse> {
if (isRequestOptions(query)) {
return this.responseTTL({}, query);
}
return (
this._client.get('/radar/dns/summary/response_ttl', { query, ...options }) as Core.APIPromise<{
result: SummaryResponseTTLResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
}
export interface SummaryCacheHitResponse {
meta: SummaryCacheHitResponse.Meta;
summary_0: SummaryCacheHitResponse.Summary0;
}
export namespace SummaryCacheHitResponse {
export interface Meta {
dateRange: Array<Meta.DateRange>;
lastUpdated: string;
normalization: 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: boolean;
endTime?: string;
linkedUrl?: string;
startTime?: string;
}
}
}
export interface Summary0 {
NEGATIVE: string;
POSITIVE: string;
}
}
export interface SummaryDNSSECResponse {
meta: SummaryDNSSECResponse.Meta;
summary_0: SummaryDNSSECResponse.Summary0;
}
export namespace SummaryDNSSECResponse {
export interface Meta {
dateRange: Array<Meta.DateRange>;
lastUpdated: string;
normalization: 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: boolean;
endTime?: string;
linkedUrl?: string;
startTime?: string;
}
}
}
export interface Summary0 {
INSECURE: string;
INVALID: string;
OTHER: string;
SECURE: string;
}
}
export interface SummaryDNSSECAwareResponse {
meta: SummaryDNSSECAwareResponse.Meta;
summary_0: SummaryDNSSECAwareResponse.Summary0;
}
export namespace SummaryDNSSECAwareResponse {
export interface Meta {
dateRange: Array<Meta.DateRange>;
lastUpdated: string;
normalization: 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: boolean;
endTime?: string;
linkedUrl?: string;
startTime?: string;
}
}
}
export interface Summary0 {
NOT_SUPPORTED: string;
SUPPORTED: string;
}
}
export interface SummaryDNSSECE2EResponse {
meta: SummaryDNSSECE2EResponse.Meta;
summary_0: SummaryDNSSECE2EResponse.Summary0;
}
export namespace SummaryDNSSECE2EResponse {
export interface Meta {
dateRange: Array<Meta.DateRange>;
lastUpdated: string;
normalization: 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: boolean;
endTime?: string;
linkedUrl?: string;
startTime?: string;
}
}
}
export interface Summary0 {
NEGATIVE: string;
POSITIVE: string;
}
}
export interface SummaryIPVersionResponse {
meta: SummaryIPVersionResponse.Meta;
summary_0: SummaryIPVersionResponse.Summary0;
}
export namespace SummaryIPVersionResponse {
export interface Meta {
dateRange: Array<Meta.DateRange>;
lastUpdated: string;
normalization: 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: boolean;
endTime?: string;
linkedUrl?: string;
startTime?: string;
}
}
}
export interface Summary0 {
IPv4: string;
IPv6: string;
}
}
export interface SummaryMatchingAnswerResponse {
meta: SummaryMatchingAnswerResponse.Meta;
summary_0: SummaryMatchingAnswerResponse.Summary0;
}
export namespace SummaryMatchingAnswerResponse {
export interface Meta {
dateRange: Array<Meta.DateRange>;
lastUpdated: string;
normalization: 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: boolean;
endTime?: string;
linkedUrl?: string;
startTime?: string;
}
}
}
export interface Summary0 {
NEGATIVE: string;
POSITIVE: string;
}
}
export interface SummaryProtocolResponse {
meta: SummaryProtocolResponse.Meta;
summary_0: SummaryProtocolResponse.Summary0;
}
export namespace SummaryProtocolResponse {
export interface Meta {
dateRange: Array<Meta.DateRange>;
lastUpdated: string;
normalization: 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: boolean;
endTime?: string;
linkedUrl?: string;
startTime?: string;
}
}
}
export interface Summary0 {
HTTPS: string;
TCP: string;
TLS: string;
UDP: string;
}
}
export interface SummaryQueryTypeResponse {
meta: SummaryQueryTypeResponse.Meta;
summary_0: Record<string, string>;
}
export namespace SummaryQueryTypeResponse {
export interface Meta {
dateRange: Array<Meta.DateRange>;
lastUpdated: string;
normalization: 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: boolean;
endTime?: string;
linkedUrl?: string;
startTime?: string;
}
}
}
}
export interface SummaryResponseCodeResponse {
meta: SummaryResponseCodeResponse.Meta;
summary_0: Record<string, string>;
}
export namespace SummaryResponseCodeResponse {
export interface Meta {
dateRange: Array<Meta.DateRange>;
lastUpdated: string;
normalization: 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: boolean;
endTime?: string;
linkedUrl?: string;
startTime?: string;
}
}
}
}
export interface SummaryResponseTTLResponse {
meta: SummaryResponseTTLResponse.Meta;
summary_0: SummaryResponseTTLResponse.Summary0;
}
export namespace SummaryResponseTTLResponse {
export interface Meta {
dateRange: Array<Meta.DateRange>;
lastUpdated: string;
normalization: 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: boolean;
endTime?: string;
linkedUrl?: string;
startTime?: string;
}
}
}
export interface Summary0 {
gt_15m_lte_1h: string;
gt_1d_lte_1w: string;
gt_1h_lte_1d: string;
gt_1m_lte_5m: string;
gt_1w: string;
gt_5m_lte_15m: string;
lte_1m: string;
}
}
export interface SummaryCacheHitParams {
/**
* Comma-separated list of Autonomous System Numbers (ASNs). Prefix with `-` to
* exclude ASNs from results. For example, `-174, 3356` excludes results from
* AS174, but includes results from AS3356.
*/
asn?: Array<string>;
/**
* Comma-separated list of continents (alpha-2 continent 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 the specified 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';
/**
* Comma-separated list of locations (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>;
/**
* Includes empty DNS responses (NODATA).
*/
nodata?: boolean;
/**
* Filters results by DNS transport protocol.
*/
protocol?: 'UDP' | 'TCP' | 'HTTPS' | 'TLS';
/**
* Filters results by DNS query type.
*/
queryType?:
| 'A'
| 'AAAA'
| 'A6'
| 'AFSDB'
| 'ANY'
| 'APL'
| 'ATMA'
| 'AXFR'
| 'CAA'
| 'CDNSKEY'
| 'CDS'
| 'CERT'
| 'CNAME'
| 'CSYNC'
| 'DHCID'
| 'DLV'
| 'DNAME'
| 'DNSKEY'
| 'DOA'
| 'DS'
| 'EID'
| 'EUI48'
| 'EUI64'
| 'GPOS'
| 'GID'
| 'HINFO'
| 'HIP'
| 'HTTPS'
| 'IPSECKEY'
| 'ISDN'
| 'IXFR'
| 'KEY'
| 'KX'
| 'L32'
| 'L64'
| 'LOC'
| 'LP'
| 'MAILA'
| 'MAILB'
| 'MB'
| 'MD'
| 'MF'
| 'MG'
| 'MINFO'
| 'MR'
| 'MX'
| 'NAPTR'
| 'NB'
| 'NBSTAT'
| 'NID'
| 'NIMLOC'
| 'NINFO'
| 'NS'
| 'NSAP'
| 'NSEC'
| 'NSEC3'
| 'NSEC3PARAM'
| 'NULL'
| 'NXT'
| 'OPENPGPKEY'
| 'OPT'
| 'PTR'
| 'PX'
| 'RKEY'
| 'RP'
| 'RRSIG'
| 'RT'
| 'SIG'
| 'SINK'
| 'SMIMEA'
| 'SOA'
| 'SPF'
| 'SRV'
| 'SSHFP'
| 'SVCB'
| 'TA'
| 'TALINK'
| 'TKEY'
| 'TLSA'
| 'TSIG'
| 'TXT'
| 'UINFO'
| 'UID'
| 'UNSPEC'
| 'URI'
| 'WKS'
| 'X25'
| 'ZONEMD'
| null;
/**
* Filters results by DNS response code.
*/
responseCode?:
| 'NOERROR'
| 'FORMERR'
| 'SERVFAIL'
| 'NXDOMAIN'
| 'NOTIMP'
| 'REFUSED'
| 'YXDOMAIN'
| 'YXRRSET'
| 'NXRRSET'
| 'NOTAUTH'
| 'NOTZONE'
| 'BADSIG'
| 'BADKEY'
| 'BADTIME'
| 'BADMODE'
| 'BADNAME'
| 'BADALG'
| 'BADTRUNC'
| 'BADCOOKIE';
/**
* Filters results by country code top-level domain (ccTLD).
*/
tld?: Array<string>;
}
export interface SummaryDNSSECParams {
/**
* Comma-separated list of Autonomous System Numbers (ASNs). Prefix with `-` to
* exclude ASNs from results. For example, `-174, 3356` excludes results from
* AS174, but includes results from AS3356.
*/
asn?: Array<string>;
/**
* Comma-separated list of continents (alpha-2 continent 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 the specified 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';
/**
* Comma-separated list of locations (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>;
/**
* Includes empty DNS responses (NODATA).
*/
nodata?: boolean;
/**
* Filters results by DNS transport protocol.
*/
protocol?: 'UDP' | 'TCP' | 'HTTPS' | 'TLS';
/**
* Filters results by DNS query type.
*/
queryType?:
| 'A'
| 'AAAA'
| 'A6'
| 'AFSDB'
| 'ANY'
| 'APL'
| 'ATMA'
| 'AXFR'
| 'CAA'
| 'CDNSKEY'
| 'CDS'
| 'CERT'
| 'CNAME'
| 'CSYNC'
| 'DHCID'
| 'DLV'
| 'DNAME'
| 'DNSKEY'
| 'DOA'
| 'DS'
| 'EID'
| 'EUI48'
| 'EUI64'
| 'GPOS'
| 'GID'
| 'HINFO'
| 'HIP'
| 'HTTPS'
| 'IPSECKEY'
| 'ISDN'
| 'IXFR'
| 'KEY'
| 'KX'
| 'L32'
| 'L64'
| 'LOC'
| 'LP'
| 'MAILA'
| 'MAILB'
| 'MB'
| 'MD'
| 'MF'
| 'MG'
| 'MINFO'
| 'MR'
| 'MX'
| 'NAPTR'
| 'NB'
| 'NBSTAT'
| 'NID'
| 'NIMLOC'
| 'NINFO'
| 'NS'
| 'NSAP'
| 'NSEC'
| 'NSEC3'
| 'NSEC3PARAM'
| 'NULL'
| 'NXT'
| 'OPENPGPKEY'
| 'OPT'
| 'PTR'
| 'PX'
| 'RKEY'
| 'RP'
| 'RRSIG'
| 'RT'
| 'SIG'
| 'SINK'
| 'SMIMEA'
| 'SOA'
| 'SPF'
| 'SRV'
| 'SSHFP'
| 'SVCB'
| 'TA'
| 'TALINK'
| 'TKEY'
| 'TLSA'
| 'TSIG'
| 'TXT'
| 'UINFO'
| 'UID'
| 'UNSPEC'
| 'URI'
| 'WKS'
| 'X25'
| 'ZONEMD'
| null;
/**
* Filters results by DNS response code.
*/
responseCode?:
| 'NOERROR'
| 'FORMERR'
| 'SERVFAIL'
| 'NXDOMAIN'
| 'NOTIMP'
| 'REFUSED'
| 'YXDOMAIN'
| 'YXRRSET'
| 'NXRRSET'
| 'NOTAUTH'
| 'NOTZONE'
| 'BADSIG'
| 'BADKEY'
| 'BADTIME'
| 'BADMODE'
| 'BADNAME'
| 'BADALG'
| 'BADTRUNC'
| 'BADCOOKIE';
/**
* Filters results by country code top-level domain (ccTLD).
*/
tld?: Array<string>;
}
export interface SummaryDNSSECAwareParams {
/**
* Comma-separated list of Autonomous System Numbers (ASNs). Prefix with `-` to
* exclude ASNs from results. For example, `-174, 3356` excludes results from
* AS174, but includes results from AS3356.
*/
asn?: Array<string>;
/**
* Comma-separated list of continents (alpha-2 continent 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 the specified 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';
/**
* Comma-separated list of locations (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>;
/**
* Includes empty DNS responses (NODATA).
*/
nodata?: boolean;
/**
* Filters results by DNS transport protocol.
*/
protocol?: 'UDP' | 'TCP' | 'HTTPS' | 'TLS';
/**
* Filters results by DNS query type.
*/
queryType?:
| 'A'
| 'AAAA'
| 'A6'
| 'AFSDB'
| 'ANY'
| 'APL'
| 'ATMA'
| 'AXFR'
| 'CAA'
| 'CDNSKEY'
| 'CDS'
| 'CERT'
| 'CNAME'
| 'CSYNC'
| 'DHCID'
| 'DLV'
| 'DNAME'
| 'DNSKEY'
| 'DOA'
| 'DS'
| 'EID'
| 'EUI48'
| 'EUI64'
| 'GPOS'
| 'GID'
| 'HINFO'
| 'HIP'
| 'HTTPS'
| 'IPSECKEY'
| 'ISDN'
| 'IXFR'
| 'KEY'
| 'KX'
| 'L32'
| 'L64'
| 'LOC'
| 'LP'
| 'MAILA'
| 'MAILB'
| 'MB'
| 'MD'
| 'MF'
| 'MG'
| 'MINFO'
| 'MR'
| 'MX'
| 'NAPTR'
| 'NB'
| 'NBSTAT'
| 'NID'
| 'NIMLOC'
| 'NINFO'
| 'NS'
| 'NSAP'
| 'NSEC'
| 'NSEC3'
| 'NSEC3PARAM'
| 'NULL'
| 'NXT'
| 'OPENPGPKEY'
| 'OPT'
| 'PTR'
| 'PX'
| 'RKEY'
| 'RP'
| 'RRSIG'
| 'RT'
| 'SIG'
| 'SINK'
| 'SMIMEA'
| 'SOA'
| 'SPF'
| 'SRV'
| 'SSHFP'
| 'SVCB'
| 'TA'
| 'TALINK'
| 'TKEY'
| 'TLSA'
| 'TSIG'
| 'TXT'
| 'UINFO'
| 'UID'
| 'UNSPEC'
| 'URI'
| 'WKS'
| 'X25'
| 'ZONEMD'
| null;
/**
* Filters results by DNS response code.
*/
responseCode?:
| 'NOERROR'
| 'FORMERR'
| 'SERVFAIL'
| 'NXDOMAIN'
| 'NOTIMP'
| 'REFUSED'
| 'YXDOMAIN'
| 'YXRRSET'
| 'NXRRSET'
| 'NOTAUTH'
| 'NOTZONE'
| 'BADSIG'
| 'BADKEY'
| 'BADTIME'
| 'BADMODE'
| 'BADNAME'
| 'BADALG'
| 'BADTRUNC'
| 'BADCOOKIE';
/**
* Filters results by country code top-level domain (ccTLD).
*/
tld?: Array<string>;
}
export interface SummaryDNSSECE2EParams {
/**
* Comma-separated list of Autonomous System Numbers (ASNs). Prefix with `-` to
* exclude ASNs from results. For example, `-174, 3356` excludes results from
* AS174, but includes results from AS3356.
*/
asn?: Array<string>;
/**
* Comma-separated list of continents (alpha-2 continent 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 the specified 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';
/**
* Comma-separated list of locations (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>;
/**
* Includes empty DNS responses (NODATA).
*/
nodata?: boolean;
/**
* Filters results by DNS transport protocol.
*/
protocol?: 'UDP' | 'TCP' | 'HTTPS' | 'TLS';
/**
* Filters results by DNS query type.
*/
queryType?:
| 'A'
| 'AAAA'
| 'A6'
| 'AFSDB'
| 'ANY'
| 'APL'
| 'ATMA'
| 'AXFR'
| 'CAA'
| 'CDNSKEY'
| 'CDS'
| 'CERT'
| 'CNAME'
| 'CSYNC'
| 'DHCID'
| 'DLV'
| 'DNAME'
| 'DNSKEY'
| 'DOA'
| 'DS'
| 'EID'
| 'EUI48'
| 'EUI64'
| 'GPOS'
| 'GID'
| 'HINFO'
| 'HIP'
| 'HTTPS'
| 'IPSECKEY'
| 'ISDN'
| 'IXFR'
| 'KEY'
| 'KX'
| 'L32'
| 'L64'
| 'LOC'
| 'LP'
| 'MAILA'
| 'MAILB'
| 'MB'
| 'MD'
| 'MF'
| 'MG'
| 'MINFO'
| 'MR'
| 'MX'
| 'NAPTR'
| 'NB'
| 'NBSTAT'
| 'NID'
| 'NIMLOC'
| 'NINFO'
| 'NS'
| 'NSAP'
| 'NSEC'
| 'NSEC3'
| 'NSEC3PARAM'
| 'NULL'
| 'NXT'
| 'OPENPGPKEY'
| 'OPT'
| 'PTR'
| 'PX'
| 'RKEY'
| 'RP'
| 'RRSIG'
| 'RT'
| 'SIG'
| 'SINK'
| 'SMIMEA'
| 'SOA'
| 'SPF'
| 'SRV'
| 'SSHFP'
| 'SVCB'
| 'TA'
| 'TALINK'
| 'TKEY'
| 'TLSA'
| 'TSIG'
| 'TXT'
| 'UINFO'
| 'UID'
| 'UNSPEC'
| 'URI'
| 'WKS'
| 'X25'
| 'ZONEMD'
| null;
/**
* Filters results by DNS response code.
*/
responseCode?:
| 'NOERROR'
| 'FORMERR'
| 'SERVFAIL'
| 'NXDOMAIN'
| 'NOTIMP'
| 'REFUSED'
| 'YXDOMAIN'
| 'YXRRSET'
| 'NXRRSET'
| 'NOTAUTH'
| 'NOTZONE'
| 'BADSIG'
| 'BADKEY'
| 'BADTIME'
| 'BADMODE'
| 'BADNAME'
| 'BADALG'
| 'BADTRUNC'
| 'BADCOOKIE';
/**
* Filters results by country code top-level domain (ccTLD).
*/
tld?: Array<string>;
}
export interface SummaryIPVersionParams {
/**
* Comma-separated list of Autonomous System Numbers (ASNs). Prefix with `-` to
* exclude ASNs from results. For example, `-174, 3356` excludes results from
* AS174, but includes results from AS3356.
*/
asn?: Array<string>;
/**
* Comma-separated list of continents (alpha-2 continent 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 the specified 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';
/**
* Comma-separated list of locations (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>;
/**
* Includes empty DNS responses (NODATA).
*/
nodata?: boolean;
/**
* Filters results by DNS transport protocol.
*/
protocol?: 'UDP' | 'TCP' | 'HTTPS' | 'TLS';
/**
* Filters results by DNS query type.
*/
queryType?:
| 'A'
| 'AAAA'
| 'A6'
| 'AFSDB'
| 'ANY'
| 'APL'
| 'ATMA'
| 'AXFR'
| 'CAA'
| 'CDNSKEY'
| 'CDS'
| 'CERT'
| 'CNAME'
| 'CSYNC'
| 'DHCID'
| 'DLV'
| 'DNAME'
| 'DNSKEY'
| 'DOA'
| 'DS'
| 'EID'
| 'EUI48'
| 'EUI64'
| 'GPOS'
| 'GID'
| 'HINFO'
| 'HIP'
| 'HTTPS'
| 'IPSECKEY'
| 'ISDN'
| 'IXFR'
| 'KEY'
| 'KX'
| 'L32'
| 'L64'
| 'LOC'
| 'LP'
| 'MAILA'
| 'MAILB'
| 'MB'
| 'MD'
| 'MF'
| 'MG'
| 'MINFO'
| 'MR'
| 'MX'
| 'NAPTR'
| 'NB'
| 'NBSTAT'
| 'NID'
| 'NIMLOC'
| 'NINFO'
| 'NS'
| 'NSAP'
| 'NSEC'
| 'NSEC3'
| 'NSEC3PARAM'
| 'NULL'
| 'NXT'
| 'OPENPGPKEY'
| 'OPT'
| 'PTR'
| 'PX'
| 'RKEY'
| 'RP'
| 'RRSIG'
| 'RT'
| 'SIG'
| 'SINK'
| 'SMIMEA'
| 'SOA'
| 'SPF'
| 'SRV'
| 'SSHFP'
| 'SVCB'
| 'TA'
| 'TALINK'
| 'TKEY'
| 'TLSA'
| 'TSIG'
| 'TXT'
| 'UINFO'
| 'UID'
| 'UNSPEC'
| 'URI'
| 'WKS'
| 'X25'
| 'ZONEMD'
| null;
/**
* Filters results by DNS response code.
*/
responseCode?:
| 'NOERROR'
| 'FORMERR'
| 'SERVFAIL'
| 'NXDOMAIN'
| 'NOTIMP'
| 'REFUSED'
| 'YXDOMAIN'
| 'YXRRSET'
| 'NXRRSET'
| 'NOTAUTH'
| 'NOTZONE'
| 'BADSIG'
| 'BADKEY'
| 'BADTIME'
| 'BADMODE'
| 'BADNAME'
| 'BADALG'
| 'BADTRUNC'
| 'BADCOOKIE';
/**
* Filters results by country code top-level domain (ccTLD).
*/
tld?: Array<string>;
}
export interface SummaryMatchingAnswerParams {
/**
* Comma-separated list of Autonomous System Numbers (ASNs). Prefix with `-` to
* exclude ASNs from results. For example, `-174, 3356` excludes results from
* AS174, but includes results from AS3356.
*/
asn?: Array<string>;
/**
* Comma-separated list of continents (alpha-2 continent 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 the specified 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';
/**
* Comma-separated list of locations (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>;
/**
* Includes empty DNS responses (NODATA).
*/
nodata?: boolean;
/**
* Filters results by DNS transport protocol.
*/
protocol?: 'UDP' | 'TCP' | 'HTTPS' | 'TLS';
/**
* Filters results by DNS query type.
*/
queryType?:
| 'A'
| 'AAAA'
| 'A6'
| 'AFSDB'
| 'ANY'
| 'APL'
| 'ATMA'
| 'AXFR'
| 'CAA'
| 'CDNSKEY'
| 'CDS'
| 'CERT'
| 'CNAME'
| 'CSYNC'
| 'DHCID'
| 'DLV'
| 'DNAME'
| 'DNSKEY'
| 'DOA'
| 'DS'
| 'EID'
| 'EUI48'
| 'EUI64'
| 'GPOS'
| 'GID'
| 'HINFO'
| 'HIP'
| 'HTTPS'
| 'IPSECKEY'
| 'ISDN'
| 'IXFR'
| 'KEY'
| 'KX'
| 'L32'
| 'L64'
| 'LOC'
| 'LP'
| 'MAILA'
| 'MAILB'
| 'MB'
| 'MD'
| 'MF'
| 'MG'
| 'MINFO'
| 'MR'
| 'MX'
| 'NAPTR'
| 'NB'
| 'NBSTAT'
| 'NID'
| 'NIMLOC'
| 'NINFO'
| 'NS'
| 'NSAP'
| 'NSEC'
| 'NSEC3'
| 'NSEC3PARAM'
| 'NULL'
| 'NXT'
| 'OPENPGPKEY'
| 'OPT'
| 'PTR'
| 'PX'
| 'RKEY'
| 'RP'
| 'RRSIG'
| 'RT'
| 'SIG'
| 'SINK'
| 'SMIMEA'
| 'SOA'
| 'SPF'
| 'SRV'
| 'SSHFP'
| 'SVCB'
| 'TA'
| 'TALINK'
| 'TKEY'
| 'TLSA'
| 'TSIG'
| 'TXT'
| 'UINFO'
| 'UID'
| 'UNSPEC'
| 'URI'
| 'WKS'
| 'X25'
| 'ZONEMD'
| null;
/**
* Filters results by DNS response code.
*/
responseCode?:
| 'NOERROR'
| 'FORMERR'
| 'SERVFAIL'
| 'NXDOMAIN'
| 'NOTIMP'
| 'REFUSED'
| 'YXDOMAIN'
| 'YXRRSET'
| 'NXRRSET'
| 'NOTAUTH'
| 'NOTZONE'
| 'BADSIG'
| 'BADKEY'
| 'BADTIME'
| 'BADMODE'
| 'BADNAME'
| 'BADALG'
| 'BADTRUNC'
| 'BADCOOKIE';
/**
* Filters results by country code top-level domain (ccTLD).
*/
tld?: Array<string>;
}
export interface SummaryProtocolParams {
/**
* Comma-separated list of Autonomous System Numbers (ASNs). Prefix with `-` to
* exclude ASNs from results. For example, `-174, 3356` excludes results from
* AS174, but includes results from AS3356.
*/
asn?: Array<string>;
/**
* Comma-separated list of continents (alpha-2 continent 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 the specified 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';
/**
* Comma-separated list of locations (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>;
/**
* Includes empty DNS responses (NODATA).
*/
nodata?: boolean;
/**
* Filters results by DNS query type.
*/
queryType?:
| 'A'
| 'AAAA'
| 'A6'
| 'AFSDB'
| 'ANY'
| 'APL'
| 'ATMA'
| 'AXFR'
| 'CAA'
| 'CDNSKEY'
| 'CDS'
| 'CERT'
| 'CNAME'
| 'CSYNC'
| 'DHCID'
| 'DLV'
| 'DNAME'
| 'DNSKEY'
| 'DOA'
| 'DS'
| 'EID'
| 'EUI48'
| 'EUI64'
| 'GPOS'
| 'GID'
| 'HINFO'
| 'HIP'
| 'HTTPS'
| 'IPSECKEY'
| 'ISDN'
| 'IXFR'
| 'KEY'
| 'KX'
| 'L32'
| 'L64'
| 'LOC'
| 'LP'
| 'MAILA'
| 'MAILB'
| 'MB'
| 'MD'
| 'MF'
| 'MG'
| 'MINFO'
| 'MR'
| 'MX'
| 'NAPTR'
| 'NB'
| 'NBSTAT'
| 'NID'
| 'NIMLOC'
| 'NINFO'
| 'NS'
| 'NSAP'
| 'NSEC'
| 'NSEC3'
| 'NSEC3PARAM'
| 'NULL'
| 'NXT'
| 'OPENPGPKEY'
| 'OPT'
| 'PTR'
| 'PX'
| 'RKEY'
| 'RP'
| 'RRSIG'
| 'RT'
| 'SIG'
| 'SINK'
| 'SMIMEA'
| 'SOA'
| 'SPF'
| 'SRV'
| 'SSHFP'
| 'SVCB'
| 'TA'
| 'TALINK'
| 'TKEY'
| 'TLSA'
| 'TSIG'
| 'TXT'
| 'UINFO'
| 'UID'
| 'UNSPEC'
| 'URI'
| 'WKS'
| 'X25'
| 'ZONEMD'
| null;
/**
* Filters results by DNS response code.
*/
responseCode?:
| 'NOERROR'
| 'FORMERR'
| 'SERVFAIL'
| 'NXDOMAIN'
| 'NOTIMP'
| 'REFUSED'
| 'YXDOMAIN'
| 'YXRRSET'
| 'NXRRSET'
| 'NOTAUTH'
| 'NOTZONE'
| 'BADSIG'
| 'BADKEY'
| 'BADTIME'
| 'BADMODE'
| 'BADNAME'
| 'BADALG'
| 'BADTRUNC'
| 'BADCOOKIE';
/**
* Filters results by country code top-level domain (ccTLD).
*/
tld?: Array<string>;
}
export interface SummaryQueryTypeParams {
/**
* Comma-separated list of Autonomous System Numbers (ASNs). Prefix with `-` to
* exclude ASNs from results. For example, `-174, 3356` excludes results from
* AS174, but includes results from AS3356.
*/
asn?: Array<string>;
/**
* Comma-separated list of continents (alpha-2 continent 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 the specified 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';
/**
* Limits the number of objects per group to the top items within the specified
* time range. If there are more items than the limit, the response will include
* the count of items, with any remaining items grouped together under an "other"
* category.
*/
limitPerGroup?: number;
/**
* Comma-separated list of locations (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>;
/**
* Includes empty DNS responses (NODATA).
*/
nodata?: boolean;
/**
* Filters results by DNS transport protocol.
*/
protocol?: 'UDP' | 'TCP' | 'HTTPS' | 'TLS';
/**
* Filters results by DNS response code.
*/
responseCode?:
| 'NOERROR'
| 'FORMERR'
| 'SERVFAIL'
| 'NXDOMAIN'
| 'NOTIMP'
| 'REFUSED'
| 'YXDOMAIN'
| 'YXRRSET'
| 'NXRRSET'
| 'NOTAUTH'
| 'NOTZONE'
| 'BADSIG'
| 'BADKEY'
| 'BADTIME'
| 'BADMODE'
| 'BADNAME'
| 'BADALG'
| 'BADTRUNC'
| 'BADCOOKIE';
/**
* Filters results by country code top-level domain (ccTLD).
*/
tld?: Array<string>;
}
export interface SummaryResponseCodeParams {
/**
* Comma-separated list of Autonomous System Numbers (ASNs). Prefix with `-` to
* exclude ASNs from results. For example, `-174, 3356` excludes results from
* AS174, but includes results from AS3356.
*/
asn?: Array<string>;
/**
* Comma-separated list of continents (alpha-2 continent 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 the specified 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';
/**
* Limits the number of objects per group to the top items within the specified
* time range. If there are more items than the limit, the response will include
* the count of items, with any remaining items grouped together under an "other"
* category.
*/
limitPerGroup?: number;
/**
* Comma-separated list of locations (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>;
/**
* Includes empty DNS responses (NODATA).
*/
nodata?: boolean;
/**
* Filters results by DNS transport protocol.
*/
protocol?: 'UDP' | 'TCP' | 'HTTPS' | 'TLS';
/**
* Filters results by DNS query type.
*/
queryType?:
| 'A'
| 'AAAA'
| 'A6'
| 'AFSDB'
| 'ANY'
| 'APL'
| 'ATMA'
| 'AXFR'
| 'CAA'
| 'CDNSKEY'
| 'CDS'
| 'CERT'
| 'CNAME'
| 'CSYNC'
| 'DHCID'
| 'DLV'
| 'DNAME'
| 'DNSKEY'
| 'DOA'
| 'DS'
| 'EID'
| 'EUI48'
| 'EUI64'
| 'GPOS'
| 'GID'
| 'HINFO'
| 'HIP'
| 'HTTPS'
| 'IPSECKEY'
| 'ISDN'
| 'IXFR'
| 'KEY'
| 'KX'
| 'L32'
| 'L64'
| 'LOC'
| 'LP'
| 'MAILA'
| 'MAILB'
| 'MB'
| 'MD'
| 'MF'
| 'MG'
| 'MINFO'
| 'MR'
| 'MX'
| 'NAPTR'
| 'NB'
| 'NBSTAT'
| 'NID'
| 'NIMLOC'
| 'NINFO'
| 'NS'
| 'NSAP'
| 'NSEC'
| 'NSEC3'
| 'NSEC3PARAM'
| 'NULL'
| 'NXT'
| 'OPENPGPKEY'
| 'OPT'
| 'PTR'
| 'PX'
| 'RKEY'
| 'RP'
| 'RRSIG'
| 'RT'
| 'SIG'
| 'SINK'
| 'SMIMEA'
| 'SOA'
| 'SPF'
| 'SRV'
| 'SSHFP'
| 'SVCB'
| 'TA'
| 'TALINK'
| 'TKEY'
| 'TLSA'
| 'TSIG'
| 'TXT'
| 'UINFO'
| 'UID'
| 'UNSPEC'
| 'URI'
| 'WKS'
| 'X25'
| 'ZONEMD'
| null;
/**
* Filters results by country code top-level domain (ccTLD).
*/
tld?: Array<string>;
}
export interface SummaryResponseTTLParams {
/**
* Comma-separated list of Autonomous System Numbers (ASNs). Prefix with `-` to
* exclude ASNs from results. For example, `-174, 3356` excludes results from
* AS174, but includes results from AS3356.
*/
asn?: Array<string>;
/**
* Comma-separated list of continents (alpha-2 continent 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 the specified 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';
/**
* Comma-separated list of locations (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>;
/**
* Includes empty DNS responses (NODATA).
*/
nodata?: boolean;
/**
* Filters results by DNS transport protocol.
*/
protocol?: 'UDP' | 'TCP' | 'HTTPS' | 'TLS';
/**
* Filters results by DNS query type.
*/
queryType?:
| 'A'
| 'AAAA'
| 'A6'
| 'AFSDB'
| 'ANY'
| 'APL'
| 'ATMA'
| 'AXFR'
| 'CAA'
| 'CDNSKEY'
| 'CDS'
| 'CERT'
| 'CNAME'
| 'CSYNC'
| 'DHCID'
| 'DLV'
| 'DNAME'
| 'DNSKEY'
| 'DOA'
| 'DS'
| 'EID'
| 'EUI48'
| 'EUI64'
| 'GPOS'
| 'GID'
| 'HINFO'
| 'HIP'
| 'HTTPS'
| 'IPSECKEY'
| 'ISDN'
| 'IXFR'
| 'KEY'
| 'KX'
| 'L32'
| 'L64'
| 'LOC'
| 'LP'
| 'MAILA'
| 'MAILB'
| 'MB'
| 'MD'
| 'MF'
| 'MG'
| 'MINFO'
| 'MR'
| 'MX'
| 'NAPTR'
| 'NB'
| 'NBSTAT'
| 'NID'
| 'NIMLOC'
| 'NINFO'
| 'NS'
| 'NSAP'
| 'NSEC'
| 'NSEC3'
| 'NSEC3PARAM'
| 'NULL'
| 'NXT'
| 'OPENPGPKEY'
| 'OPT'
| 'PTR'
| 'PX'
| 'RKEY'
| 'RP'
| 'RRSIG'
| 'RT'
| 'SIG'
| 'SINK'
| 'SMIMEA'
| 'SOA'
| 'SPF'
| 'SRV'
| 'SSHFP'
| 'SVCB'
| 'TA'
| 'TALINK'
| 'TKEY'
| 'TLSA'
| 'TSIG'
| 'TXT'
| 'UINFO'
| 'UID'
| 'UNSPEC'
| 'URI'
| 'WKS'
| 'X25'
| 'ZONEMD'
| null;
/**
* Filters results by DNS response code.
*/
responseCode?:
| 'NOERROR'
| 'FORMERR'
| 'SERVFAIL'
| 'NXD