import * as $dara from '@darabonba/typescript'; export declare class GetRumAppsRequestTags 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 GetRumAppsRequest extends $dara.Model { /** * @remarks * The group to which the application belongs. * * @example * default */ appGroup?: string; /** * @remarks * The application ID. * * @example * b590lhguqs@28f515462****** */ appId?: string; /** * @remarks * The name of the application. You can specify only one application name in each request. * * @example * test-app */ appName?: string; /** * @remarks * The application type. Currently, supported application types include: web, mini program, Android, iOS, Windows, macOS, and HarmonyOS. * * @example * web */ appType?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The ID of the resource group. * * @example * rg-acfmxyexli2**** */ resourceGroupId?: string; /** * @remarks * The tags. */ tags?: GetRumAppsRequestTags[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }