interface Image {
    categories: string[];
    createdAt?: Date;
    description: string;
    id: string;
    label: string;
    logo: string;
    name: string;
    updatedAt?: Date;
    validUntil?: Date;
}

Properties

categories: string[]

List of categories this image belongs to.

createdAt?: Date

Creation date of this image.

description: string

Text description of this image.

id: string

UUID of this image.

label: string

Typically an identifier for a distribution (ex. "ubuntu_focal").

logo: string

URL of this image's logo.

name: string

Name of the image.

updatedAt?: Date

Date of the last modification of this image.

validUntil?: Date

Expiration date of this image.