import * as $dara from '@darabonba/typescript'; export declare class DeleteImageRequest extends $dara.Model { dryRun?: boolean; /** * @remarks * Specifies whether to forcibly delete the custom image. Valid values: * * - true: Forcibly deletes the custom image, ignoring whether the image is currently used by other instances. * - false: Normally deletes the custom image. Before deletion, the system checks whether the image is currently used by other instances. * * Default value: false. * * @example * false */ force?: boolean; /** * @remarks * The image ID. If the specified custom image does not exist, the request will be ignored. * * This parameter is required. * * @example * m-bp67acfmxazb4p**** */ imageId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID of the custom image. You can call [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }