cloudflare
Version:
The official TypeScript library for the Cloudflare API
70 lines • 3.14 kB
JavaScript
"use strict";
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
Object.defineProperty(exports, "__esModule", { value: true });
exports.Summary = void 0;
const resource_1 = require("../../../resource.js");
const core_1 = require("../../../core.js");
class Summary extends resource_1.APIResource {
cacheHit(query = {}, options) {
if ((0, core_1.isRequestOptions)(query)) {
return this.cacheHit({}, query);
}
return this._client.get('/radar/dns/summary/cache_hit', { query, ...options })._thenUnwrap((obj) => obj.result);
}
dnssec(query = {}, options) {
if ((0, core_1.isRequestOptions)(query)) {
return this.dnssec({}, query);
}
return this._client.get('/radar/dns/summary/dnssec', { query, ...options })._thenUnwrap((obj) => obj.result);
}
dnssecAware(query = {}, options) {
if ((0, core_1.isRequestOptions)(query)) {
return this.dnssecAware({}, query);
}
return this._client.get('/radar/dns/summary/dnssec_aware', { query, ...options })._thenUnwrap((obj) => obj.result);
}
dnssecE2E(query = {}, options) {
if ((0, core_1.isRequestOptions)(query)) {
return this.dnssecE2E({}, query);
}
return this._client.get('/radar/dns/summary/dnssec_e2e', { query, ...options })._thenUnwrap((obj) => obj.result);
}
ipVersion(query = {}, options) {
if ((0, core_1.isRequestOptions)(query)) {
return this.ipVersion({}, query);
}
return this._client.get('/radar/dns/summary/ip_version', { query, ...options })._thenUnwrap((obj) => obj.result);
}
matchingAnswer(query = {}, options) {
if ((0, core_1.isRequestOptions)(query)) {
return this.matchingAnswer({}, query);
}
return this._client.get('/radar/dns/summary/matching_answer', { query, ...options })._thenUnwrap((obj) => obj.result);
}
protocol(query = {}, options) {
if ((0, core_1.isRequestOptions)(query)) {
return this.protocol({}, query);
}
return this._client.get('/radar/dns/summary/protocol', { query, ...options })._thenUnwrap((obj) => obj.result);
}
queryType(query = {}, options) {
if ((0, core_1.isRequestOptions)(query)) {
return this.queryType({}, query);
}
return this._client.get('/radar/dns/summary/query_type', { query, ...options })._thenUnwrap((obj) => obj.result);
}
responseCode(query = {}, options) {
if ((0, core_1.isRequestOptions)(query)) {
return this.responseCode({}, query);
}
return this._client.get('/radar/dns/summary/response_code', { query, ...options })._thenUnwrap((obj) => obj.result);
}
responseTTL(query = {}, options) {
if ((0, core_1.isRequestOptions)(query)) {
return this.responseTTL({}, query);
}
return this._client.get('/radar/dns/summary/response_ttl', { query, ...options })._thenUnwrap((obj) => obj.result);
}
}
exports.Summary = Summary;
//# sourceMappingURL=summary.js.map