UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

26 lines 994 B
import { ColdArchiveContainerStatusEnum } from './ColdArchiveContainerStatusEnum'; import { StorageObjectList } from './StorageObjectList'; /** Container */ export interface ColdArchiveContainer { /** After restoring your archive, date when the restored files will be deleted */ automaticDeletionAt?: string; /** The date when the resource was created */ createdAt: string; /** Archive is locked (cannot be deleted) until this date */ lockedUntil?: string; /** Container name */ name: string; /** @deprecated Container objects (deprecated) */ objects: StorageObjectList[]; /** Container total objects count */ objectsCount: number; /** Container total objects size (bytes) */ objectsSize: number; /** Container owner user ID */ ownerId: number; /** ColdArchive status */ status: ColdArchiveContainerStatusEnum; /** Container virtual host */ virtualHost: string; } //# sourceMappingURL=ColdArchiveContainer.d.ts.map