import * as $dara from '@darabonba/typescript'; export declare class DeleteImageRequest extends $dara.Model { dryRun?: boolean; /** * @remarks * Specifies whether to forcefully delete the custom image. Valid values: * * * true: forcefully deletes the custom image, regardless of whether the image is being used by instances. * * false: verifies that the custom image is not being used by instances and then deletes the image. * * Default value: false * * @example * false */ force?: boolean; /** * @remarks * The ID of the image. If the specified custom image does not exist, the request is 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 the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation 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; }); }