import * as $dara from '@darabonba/typescript'; export declare class DeleteTraceAppRequestDeleteReasonReasonIds extends $dara.Model { /** * @remarks * The ID of the reason for deletion. * * @example * 0 */ id?: number; /** * @remarks * A description of the reason for removal. * * @example * The function is not perfect, and the root cause of the problem cannot be located. */ name?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DeleteTraceAppRequestDeleteReason extends $dara.Model { /** * @remarks * Reasons Ids. */ reasonIds?: DeleteTraceAppRequestDeleteReasonReasonIds[]; /** * @remarks * Additional remarks when none of the reasons for removal provided are met. * * @example * The business scenario cannot be satisfied. */ remark?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DeleteTraceAppRequest extends $dara.Model { /** * @remarks * The ID of the application that you want to delete. You can call the SearchTraceAppByName operation to query the application ID. For more information, see [SearchTraceAppByName](https://help.aliyun.com/document_detail/130676.html). * * This parameter is required. * * @example * 5406** */ appId?: string; /** * @remarks * The reason(s) to delete application. */ deleteReason?: DeleteTraceAppRequestDeleteReason; /** * @remarks * The PID of the application. For more information about how to query the PID, see [QueryMetricByPage](https://www.alibabacloud.com/help/zh/doc-detail/186100.htm?spm=a2cdw.13409063.0.0.7a72281f0bkTfx#title-imy-7gj-qhr). * * This parameter is required. * * @example * 9w0sc5gxxz@edcsd447c2f**** */ pid?: string; /** * @remarks * The ID of the region in which the application is located. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The type of the application that you want to delete. You can call the SearchTraceAppByName operation to query the application type. For more information, see [SearchTraceAppByName](https://help.aliyun.com/document_detail/130676.html). Valid values: * * * `TRACE`: Application Monitoring * * `RETCODE`: frontend monitoring * * This parameter is required. * * @example * TRACE */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }