interface Namespace {
    createdAt?: Date;
    description: string;
    endpoint: string;
    id: string;
    imageCount: number;
    isPublic: boolean;
    name: string;
    organizationId: string;
    projectId: string;
    region: Region;
    size: number;
    status: Registry.v1.NamespaceStatus;
    statusMessage: string;
    updatedAt?: Date;
}

Properties

createdAt?: Date

Date and time of creation.

description: string

Description of the namespace.

endpoint: string

Endpoint reachable by docker.

id: string

UUID of the namespace.

imageCount: number

Number of images in the namespace.

isPublic: boolean

Defines whether or not namespace is public.

name: string

Name of the namespace, unique in a region accross all organizations.

organizationId: string

Owner of the namespace.

projectId: string

Project of the namespace.

region: Region

Region the namespace belongs to.

size: number

Total size of the namespace, calculated as the sum of the size of all images in the namespace.

Namespace status.

statusMessage: string

Namespace status details.

updatedAt?: Date

Date and time of last update.