// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class GetRetcodeLogstoreRequest extends $dara.Model { /** * @remarks * The process identifier (PID) of the application. To obtain the PID of the application, perform the following steps: Log on to the Application Real-Time Monitoring Service (ARMS) console. In the left-side navigation pane, choose **Browser Monitoring** > **Browser Monitoring**. On the Browser Monitoring page, click the name of the application. The URL in the address bar contains the PID of the application. The PID is 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 xxx%4074xxx, you must replace %40 with the at sign (@) to obtain xxx@74xxx. * * This parameter is required. * * @example * atc889zkcf@d8deedfa9bf**** */ pid?: string; /** * @remarks * The ID of the region. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string } { return { pid: 'Pid', regionId: 'RegionId', }; } static types(): { [key: string]: any } { return { pid: 'string', regionId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }