UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

21 lines 622 B
import { StorageClassEnum } from './storage/StorageClassEnum'; /** Object */ export interface StorageObjectVersion { /** ETag */ etag: string; /** Whether this object is a delete marker */ isDeleteMarker?: boolean; /** Whether this is the latest version of the object */ isLatest?: boolean; /** Key */ key: string; /** Last modification date */ lastModified: string; /** Size (bytes) */ size: number; /** Storage class */ storageClass?: StorageClassEnum; /** Version ID of the object */ versionId: string; } //# sourceMappingURL=StorageObjectVersion.d.ts.map