UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

8 lines 399 B
/** Bulk delete volume snapshots either all or a selection of ids */ export interface BulkDeleteSnapshots { /** Delete all snapshots related to a volume, cannot be used along side a list of IDs */ deleteAll: boolean; /** Snapshot IDs to delete, cannot be used along side the deleteAll boolean set to true */ snapshotIds?: string[]; } //# sourceMappingURL=BulkDeleteSnapshots.d.ts.map