// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { force: 'Force', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', snapshotId: 'SnapshotId', }; } static types(): { [key: string]: any } { return { force: 'boolean', ownerAccount: 'string', ownerId: 'number', resourceOwnerAccount: 'string', resourceOwnerId: 'number', snapshotId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }