import * as $dara from '@darabonba/typescript'; export declare class GetAppApiByPageRequest extends $dara.Model { /** * @remarks * The page number of the returned page. * * @example * 1 */ currentPage?: number; /** * @remarks * The end of the time range to query. Unit: milliseconds. * * @example * 1600066800000 */ endTime?: number; /** * @remarks * The time interval between the data shards to be queried. Unit: milliseconds. Minimum value: 60000. Maximum value: 2147483647. * * @example * 60000 */ intervalMills?: number; /** * @remarks * The process identifier (PID) of the application. For information about how to obtain a PID, see [Obtain the PID of an application](https://www.alibabacloud.com/help/zh/doc-detail/186100.htm?spm=a2cdw.13409063.0.0.7a72281f0bkTfx#title-imy-7gj-qhr). * * This parameter is required. * * @example * a2n80plglh@745eddxxx */ PId?: string; /** * @remarks * The number of entries to return on each page. This parameter is no longer supported. The number of entries to return on each page. Default value: 10. * * @example * 10 */ pageSize?: number; /** * @remarks * The ID of the region. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The beginning of the time range to query. Unit: milliseconds. * * @example * 1600063200000 */ startTime?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }