import * as $dara from '@darabonba/typescript'; export declare class DeleteRumAppRequest extends $dara.Model { /** * @remarks * The group where the application resides. * * @example * default */ appGroup?: string; /** * @remarks * The ID of the application. * * This parameter is required. * * @example * b590lhguqs@28f515462****** */ appId?: string; /** * @remarks * The region where the application resides. You can leave this parameter empty or set it to China East 2 Finance. * * @example * cn-shanghai-finance-1 */ realRegionId?: string; /** * @remarks * The ID of the region. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }