// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class SearchRetcodeAppByPageRequestTags extends $dara.Model { /** * @remarks * The tag key. * * @example * TestKey */ key?: string; /** * @remarks * The tag value. * * @example * TestValue */ value?: string; static names(): { [key: string]: string } { return { key: 'Key', value: 'Value', }; } static types(): { [key: string]: any } { return { key: 'string', value: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class SearchRetcodeAppByPageRequest extends $dara.Model { /** * @remarks * The number of the page to return. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries to return on each page. * * @example * 5 */ pageSize?: number; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The ID of the resource group. You can obtain the resource group ID in the **Resource Management** console. * * @example * rg-acfmxyexli2**** */ resourceGroupId?: string; /** * @remarks * The application ID. * * Log on to the **ARMS console**. In the left-side navigation pane, choose **Browser Monitoring** > **Browser Monitoring**. On the Browser Monitoring page, click the name of an application. The URL in the browser address bar contains the pid of this application in the format of `pid=xxx`. 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 (@). The actual PID is `xxx@74xxx`. * * @example * eb4zdose6v@9781be0f44d**** */ retcodeAppId?: string; /** * @remarks * The name of the application. * * @example * App1 */ retcodeAppName?: string; /** * @remarks * The tag. */ tags?: SearchRetcodeAppByPageRequestTags[]; static names(): { [key: string]: string } { return { pageNumber: 'PageNumber', pageSize: 'PageSize', regionId: 'RegionId', resourceGroupId: 'ResourceGroupId', retcodeAppId: 'RetcodeAppId', retcodeAppName: 'RetcodeAppName', tags: 'Tags', }; } static types(): { [key: string]: any } { return { pageNumber: 'number', pageSize: 'number', regionId: 'string', resourceGroupId: 'string', retcodeAppId: 'string', retcodeAppName: 'string', tags: { 'type': 'array', 'itemType': SearchRetcodeAppByPageRequestTags }, }; } validate() { if(Array.isArray(this.tags)) { $dara.Model.validateArray(this.tags); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }