cloudflare/cloudflare-typescript
Publicmirrored from https://github.com/cloudflare/cloudflare-typescriptAvailable
src/resources/analytics/analytics.ts
24lines · modecode
| 1 | // File generated from our OpenAPI spec by Stainless. |
| 2 | |
| 3 | import { APIResource } from 'cloudflare/resource'; |
| 4 | import * as ColoAPI from 'cloudflare/resources/analytics/colo'; |
| 5 | import * as DashboardsAPI from 'cloudflare/resources/analytics/dashboards'; |
| 6 | import * as LatenciesAPI from 'cloudflare/resources/analytics/latencies/latencies'; |
| 7 | |
| 8 | export class Analytics extends APIResource { |
| 9 | colo: ColoAPI.Colo = new ColoAPI.Colo(this._client); |
| 10 | dashboards: DashboardsAPI.Dashboards = new DashboardsAPI.Dashboards(this._client); |
| 11 | latencies: LatenciesAPI.Latencies = new LatenciesAPI.Latencies(this._client); |
| 12 | } |
| 13 | |
| 14 | export namespace Analytics { |
| 15 | export import Colo = ColoAPI.Colo; |
| 16 | export import ColoZoneAnalyticsDeprecatedGetAnalyticsByCoLocationsResponse = ColoAPI.ColoZoneAnalyticsDeprecatedGetAnalyticsByCoLocationsResponse; |
| 17 | export import ColoZoneAnalyticsDeprecatedGetAnalyticsByCoLocationsParams = ColoAPI.ColoZoneAnalyticsDeprecatedGetAnalyticsByCoLocationsParams; |
| 18 | export import Dashboards = DashboardsAPI.Dashboards; |
| 19 | export import DashboardZoneAnalyticsDeprecatedGetDashboardResponse = DashboardsAPI.DashboardZoneAnalyticsDeprecatedGetDashboardResponse; |
| 20 | export import DashboardZoneAnalyticsDeprecatedGetDashboardParams = DashboardsAPI.DashboardZoneAnalyticsDeprecatedGetDashboardParams; |
| 21 | export import Latencies = LatenciesAPI.Latencies; |
| 22 | export import LatencyArgoAnalyticsForZoneArgoAnalyticsForAZoneResponse = LatenciesAPI.LatencyArgoAnalyticsForZoneArgoAnalyticsForAZoneResponse; |
| 23 | export import LatencyArgoAnalyticsForZoneArgoAnalyticsForAZoneParams = LatenciesAPI.LatencyArgoAnalyticsForZoneArgoAnalyticsForAZoneParams; |
| 24 | } |
| 25 | |