cloudflare
Version:
The official TypeScript library for the Cloudflare API
163 lines (135 loc) • 5.17 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../../../resource";
import * as DEXAPI from "./dex";
import * as ColosAPI from "./colos";
import * as TracerouteTestsAPI from "./traceroute-tests";
import * as FleetStatusAPI from "./fleet-status/fleet-status";
import * as HTTPTestsAPI from "./http-tests/http-tests";
import * as TestsAPI from "./tests/tests";
import * as TracerouteTestResultsAPI from "./traceroute-test-results/traceroute-test-results";
export class DEX extends APIResource {
colos: ColosAPI.Colos = new ColosAPI.Colos(this._client);
fleetStatus: FleetStatusAPI.FleetStatus = new FleetStatusAPI.FleetStatus(this._client);
httpTests: HTTPTestsAPI.HTTPTests = new HTTPTestsAPI.HTTPTests(this._client);
tests: TestsAPI.Tests = new TestsAPI.Tests(this._client);
tracerouteTestResults: TracerouteTestResultsAPI.TracerouteTestResults =
new TracerouteTestResultsAPI.TracerouteTestResults(this._client);
tracerouteTests: TracerouteTestsAPI.TracerouteTests = new TracerouteTestsAPI.TracerouteTests(this._client);
}
export interface DeviceExperienceMonitor {
id: string;
/**
* Whether the policy is the default for the account
*/
default: boolean;
name: string;
}
export interface NetworkPath {
slots: Array<NetworkPath.Slot>;
/**
* Specifies the sampling applied, if any, to the slots response. When sampled,
* results shown represent the first test run to the start of each sampling
* interval.
*/
sampling?: NetworkPath.Sampling | null;
}
export namespace NetworkPath {
export interface Slot {
/**
* API Resource UUID tag.
*/
id: string;
/**
* Round trip time in ms of the client to app mile
*/
clientToAppRttMs: number | null;
/**
* Round trip time in ms of the client to Cloudflare egress mile
*/
clientToCfEgressRttMs: number | null;
/**
* Round trip time in ms of the client to Cloudflare ingress mile
*/
clientToCfIngressRttMs: number | null;
timestamp: string;
/**
* Round trip time in ms of the client to ISP mile
*/
clientToIspRttMs?: number | null;
}
/**
* Specifies the sampling applied, if any, to the slots response. When sampled,
* results shown represent the first test run to the start of each sampling
* interval.
*/
export interface Sampling {
unit: 'hours';
value: number;
}
}
export interface NetworkPathResponse {
/**
* API Resource UUID tag.
*/
id: string;
deviceName?: string;
/**
* The interval at which the Traceroute synthetic application test is set to run.
*/
interval?: string;
kind?: 'traceroute';
name?: string;
networkPath?: NetworkPath | null;
/**
* The host of the Traceroute synthetic application test
*/
url?: string;
}
export interface Percentiles {
/**
* p50 observed in the time period
*/
p50?: number | null;
/**
* p90 observed in the time period
*/
p90?: number | null;
/**
* p95 observed in the time period
*/
p95?: number | null;
/**
* p99 observed in the time period
*/
p99?: number | null;
}
export namespace DEX {
export import DeviceExperienceMonitor = DEXAPI.DeviceExperienceMonitor;
export import NetworkPath = DEXAPI.NetworkPath;
export import NetworkPathResponse = DEXAPI.NetworkPathResponse;
export import Percentiles = DEXAPI.Percentiles;
export import Colos = ColosAPI.Colos;
export import ColoListResponse = ColosAPI.ColoListResponse;
export import ColoListResponsesSinglePage = ColosAPI.ColoListResponsesSinglePage;
export import ColoListParams = ColosAPI.ColoListParams;
export import FleetStatus = FleetStatusAPI.FleetStatus;
export import LiveStat = FleetStatusAPI.LiveStat;
export import FleetStatusLiveResponse = FleetStatusAPI.FleetStatusLiveResponse;
export import FleetStatusLiveParams = FleetStatusAPI.FleetStatusLiveParams;
export import FleetStatusOverTimeParams = FleetStatusAPI.FleetStatusOverTimeParams;
export import HTTPTests = HTTPTestsAPI.HTTPTests;
export import HTTPDetails = HTTPTestsAPI.HTTPDetails;
export import HTTPTestGetParams = HTTPTestsAPI.HTTPTestGetParams;
export import Tests = TestsAPI.Tests;
export import AggregateTimePeriod = TestsAPI.AggregateTimePeriod;
export import TestListResponse = TestsAPI.TestListResponse;
export import TestListResponsesV4PagePagination = TestsAPI.TestListResponsesV4PagePagination;
export import TestListParams = TestsAPI.TestListParams;
export import TracerouteTestResults = TracerouteTestResultsAPI.TracerouteTestResults;
export import TracerouteTests = TracerouteTestsAPI.TracerouteTests;
export import Traceroute = TracerouteTestsAPI.Traceroute;
export import TracerouteTestPercentilesResponse = TracerouteTestsAPI.TracerouteTestPercentilesResponse;
export import TracerouteTestGetParams = TracerouteTestsAPI.TracerouteTestGetParams;
export import TracerouteTestNetworkPathParams = TracerouteTestsAPI.TracerouteTestNetworkPathParams;
export import TracerouteTestPercentilesParams = TracerouteTestsAPI.TracerouteTestPercentilesParams;
}