cloudflare
Version:
The official TypeScript library for the Cloudflare API
50 lines (42 loc) • 1.42 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../../resource';
import * as Core from '../../../../core';
export 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> {
const { account_id, ...query } = params;
return (
this._client.get(`/accounts/${account_id}/dex/tests/unique-devices`, {
query,
...options,
}) as Core.APIPromise<{ result: UniqueDevices }>
)._thenUnwrap((obj) => obj.result);
}
}
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 };
}