import * as $dara from '@darabonba/typescript'; export declare class SearchTraceAppByPageRequestTags extends $dara.Model { /** * @remarks * The tag key. * * @example * TestKey */ key?: string; /** * @remarks * The tag value. * * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchTraceAppByPageRequest extends $dara.Model { /** * @remarks * The number of the page to return. Default value: `1`. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries to return on each page. Default value: `10`. * * @example * 10 */ pageSize?: number; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The resource group ID. * * @example * rg-acfmxyexli2**** */ resourceGroupId?: string; /** * @remarks * A list of tags. */ tags?: SearchTraceAppByPageRequestTags[]; /** * @remarks * The name of the application. * * @example * test-app */ traceAppName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }