import * as $dara from '@darabonba/typescript'; export declare class GetAppJVMConfigRequest extends $dara.Model { /** * @remarks * The end of the time range to query. Unit: milliseconds. * * @example * 1480607940000 */ endTime?: number; /** * @remarks * The IDof the application. * * Log on to the **ARMS console**. In the left-side navigation pane, choose **Application Monitoring** > **Applications**. On the **Applications** page, click the name of an application. The URL in the address bar contains the process ID (PID) of the application. The PID is indicated in the pid=xxx format. The PID is usually percent encoded as xxx%40xxx. You must modify this value to remove the percent encoding. For example, if the PID in the URL is eb4zdose6v%409781be0f44d\\*\\*\\*\\*, you must replace %40 with an at sign (@) to obtain eb4zdose6v@9781be0f44d\\*\\*\\*\\*. * * @example * atc889zkcf@d8deedfa9bf**** */ pid?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The start of the time range to query. Unit: milliseconds. * * @example * 1480521600000 */ startTime?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }