hetzner-ts
    Preparing search index...
    interface Image {
        architecture: "x86" | "arm64";
        bound_to: null | number;
        created: string;
        created_from: null | { id: number; name: string };
        deleted?: null | string;
        deprecated?: null | boolean;
        description: string;
        disk_size: number;
        id: number;
        image_size: number;
        labels: Record<string, string>;
        name: string;
        os_flavor:
            | "unknown"
            | "ubuntu"
            | "centos"
            | "debian"
            | "fedora"
            | "rocky"
            | "alma";
        os_version: null
        | string;
        protection: { delete: boolean };
        rapid_deploy?: boolean;
        status: "available" | "creating" | "unavailable";
        type: "system" | "app" | "snapshot" | "backup";
    }
    Index

    Properties

    architecture: "x86" | "arm64"
    bound_to: null | number
    created: string
    created_from: null | { id: number; name: string }
    deleted?: null | string
    deprecated?: null | boolean
    description: string
    disk_size: number
    id: number
    image_size: number
    labels: Record<string, string>
    name: string
    os_flavor:
        | "unknown"
        | "ubuntu"
        | "centos"
        | "debian"
        | "fedora"
        | "rocky"
        | "alma"
    os_version: null | string
    protection: { delete: boolean }
    rapid_deploy?: boolean
    status: "available" | "creating" | "unavailable"
    type: "system" | "app" | "snapshot" | "backup"