NAME

WWW::Hetzner::Cloud::ISO - Hetzner Cloud ISO object

VERSION

version 0.101

SYNOPSIS

my $iso = $cloud->isos->get_by_name('netboot.xyz.iso');

print $iso->name, "\n";         # netboot.xyz.iso
print $iso->description, "\n";  # netboot.xyz
print $iso->type, "\n";         # public
print $iso->architecture, "\n"; # x86

$cloud->servers->attach_iso($server_id, $iso->name);

DESCRIPTION

This class represents a Hetzner Cloud ISO image. Objects are returned by WWW::Hetzner::Cloud::API::ISOs methods.

ISOs are read-only resources.

id

ISO ID.

name

ISO name, e.g. "netboot.xyz.iso". This is what "attach_iso" in WWW::Hetzner::Cloud::API::Servers expects.

description

Human-readable description.

type

ISO type: public or private.

architecture

CPU architecture the ISO can be attached to: x86 or arm. undef for ISOs that are not bound to an architecture.

deprecation

Deprecation hashref with announced and unavailable_after timestamps, undef unless the ISO is deprecated.

deprecated

Legacy deprecation timestamp. Superseded by deprecation in the current API; kept for responses that still carry it.

data

my $hashref = $iso->data;

Returns all ISO data as a hashref (for JSON serialization).

SEE ALSO

SUPPORT

Issues

Please report bugs and feature requests on GitHub at https://github.com/Getty/p5-www-hetzner/issues.

IRC

Join #kubernetes on irc.perl.org or message Getty directly.

CONTRIBUTING

Contributions are welcome! Please fork the repository and submit a pull request.

AUTHOR

Torsten Raudssus <torsten@raudssus.de>

COPYRIGHT AND LICENSE

This software is copyright (c) 2026 by Torsten Raudssus <torsten@raudssus.de> https://raudssus.de/.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.