import { StatusEnum } from './StatusEnum';
/** Managed docker registry */
export interface Registry {
    /** Registry creation date */
    createdAt: string;
    /** OVHcloud IAM enabled */
    iamEnabled: boolean;
    /** Registry ID */
    id: string;
    /** Registry name */
    name: string;
    /** Project ID of your registry */
    projectID: string;
    /** Region of the registry. */
    region: string;
    /** Current size of the registry (bytes) */
    size: number;
    /** Registry status */
    status: StatusEnum;
    /** Registry last update date */
    updatedAt: string;
    /** Access url of the registry */
    url: string;
    /** Version of your registry */
    version: string;
}
//# sourceMappingURL=Registry.d.ts.map