@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
26 lines • 957 B
TypeScript
import { StorageObject } from './StorageObject';
import { ColdArchiveContainerStatusEnum } from './ColdArchiveContainerStatusEnum';
/** 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;
/** Container objects */
objects: StorageObject[];
/** 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