import * as $dara from '@darabonba/typescript'; export declare class ListTraceAppsRequestTags 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 ListTraceAppsRequest extends $dara.Model { /** * @remarks * The type of the application that is associated with the alert rule. Valid values: * * - TRACE: Application Monitoring * - EBPF: Application Monitoring eBPF Edition * * @example * TRACE */ appType?: string; /** * @remarks * The region ID. * * @example * cn-shenzhen */ region?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The resource group ID. * * @example * rg-acfmxyexli2**** */ resourceGroupId?: string; /** * @remarks * The tags. */ tags?: ListTraceAppsRequestTags[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }