import * as $dara from '@darabonba/typescript'; export declare class QueryAppMetadataRequest extends $dara.Model { endTimeMs?: number; /** * @remarks * The metadata IDs. Separate multiple IDs with commas (,). * * You can obtain the exception ID on the **Exception Analysis** page of your application in the ARMS console. * * This parameter is required. * * @example * 4c9dd447,3c76c565 */ metaIds?: string; /** * @remarks * The metadata type. Valid values: * * * sql: obtains an SQL statement based on sqlId. * * exception: obtains the exception stack based on exceptionId. * * This parameter is required. * * @example * sql */ metaType?: string; /** * @remarks * The process identifier (PID) of the application. You can obtain the PID of an application by calling the **ListTraceApps** operation. * * This parameter is required. * * @example * ggxw4lnjuz@54364d85b97dc56 */ pid?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; startTimeMs?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }