Nilovon Hetzner Cloud SDK
API

ISOs API

List available ISO images

ISOs API

The ISOs API allows you to list available ISO images.

List ISOs

Returns all ISO objects.

const isos = await client.isos.list();

Example

const isos = await client.isos.list();

isos.isos.forEach(iso => {
  console.log(`${iso.name}: ${iso.description}`);
  console.log(`  Type: ${iso.type}`);
  console.log(`  Architecture: ${iso.architecture}`);
});

Get ISO

Returns a specific ISO object.

const iso = await client.isos.get(12345);

Types

type ISOType = 'public' | 'private';

interface ISO {
  id: number;
  name: string;
  description: string;
  type: ISOType;
  architecture: 'x86' | 'arm' | null;
  deprecated: string | null;
}

On this page