import * as $dara from '@darabonba/typescript'; export declare class DeleteSnapshotRequest extends $dara.Model { /** * @remarks * Specifies whether to force delete the snapshot that has been used to create cloud disks. Valid values: * * * true: force deletes the snapshot. After the snapshot is force deleted, the cloud disks created from the snapshot cannot be re-initialized. * * false: does not force delete the snapshot. * * Default value: false. * * @example * false */ force?: boolean; ownerAccount?: string; ownerId?: number; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The snapshot ID. * * This parameter is required. * * @example * s-bp1c0doj0taqyzzl**** */ snapshotId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }