UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 486 B
import { TypeEnum } from './TypeEnum'; /** Container */ export interface Container { /** Whether this is an archive container or not */ archive?: boolean; /** Container type */ containerType?: TypeEnum; /** Storage id */ id: string; /** Storage name */ name: string; /** */ region: string; /** Total bytes stored */ storedBytes: number; /** Total objects stored */ storedObjects: number; } //# sourceMappingURL=Container.d.ts.map