import * as $dara from '@darabonba/typescript'; export declare class GetRumOcuStatisticDataRequestFilter extends $dara.Model { /** * @remarks * The key of the filter condition. Three types of filter conditions are provided: * * * Application name: pid (Note that the application name is displayed, but the application ID is actually specified) * * Application type: siteType * * Data type: dataType * * @example * pid */ key?: string; /** * @remarks * The type of the operator. Valid value: in. * * @example * in */ opType?: string; /** * @remarks * The value of the filter condition. The value is a JSON array of strings. * * @example * ["b590xxxxx@2dcbxxxxx9", "b590xxxxx@2dcbxxxxx8"] */ value?: any; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetRumOcuStatisticDataRequest extends $dara.Model { /** * @remarks * The end of the time range to query. Unit: milliseconds. * * This parameter is required. * * @example * 1687849260000 */ endTime?: number; /** * @remarks * The filter condition. Three types of filter conditions are provided: * * * Application name: pid (Note that the application name is displayed, but the application ID is actually specified) * * Application type: siteType * * Data type: dataType */ filter?: GetRumOcuStatisticDataRequestFilter[]; /** * @remarks * The grouping fields. Valid values: * * * siteType: The total number of OCUs is grouped by application type. * * dataType: The total number of OCUs is grouped by data type. * * pid: The total number of OCUs is grouped by application ID. * * appName: The total number of OCUs is grouped by application name. * * startTime: The total number of OCUs is grouped by start time. */ group?: string[]; /** * @remarks * The page number. * * This parameter is required. * * @example * 1 */ page?: number; /** * @remarks * The number of entries per page. * * This parameter is required. * * @example * 100 */ pageSize?: number; /** * @remarks * The type of the query. To query non-time series data, set the value to INSTANT. To query time series data, set the value to TIME_SERIES. * * @example * TIME_SERIES */ queryType?: string; /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The beginning of the time range to query. Unit: milliseconds. * * This parameter is required. * * @example * 1600063200000 */ startTime?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }