UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

34 lines 1.16 kB
import { APIResource } from "../../../../resource.js"; import * as Core from "../../../../core.js"; export declare class UniqueDevices extends APIResource { /** * Returns unique count of devices that have run synthetic application monitoring * tests in the past 7 days. */ list(params: UniqueDeviceListParams, options?: Core.RequestOptions): Core.APIPromise<UniqueDevices>; } export interface UniqueDevices { /** * total number of unique devices */ uniqueDevicesTotal: number; } export interface UniqueDeviceListParams { /** * Path param: unique identifier linked to an account in the API request path. */ account_id: string; /** * Query param: Optionally filter result stats to a specific device(s). Cannot be * used in combination with colo param. */ deviceId?: Array<string>; /** * Query param: Optionally filter results by test name */ testName?: string; } export declare namespace UniqueDevices { export { type UniqueDevices as UniqueDevices, type UniqueDeviceListParams as UniqueDeviceListParams }; } //# sourceMappingURL=unique-devices.d.ts.map