NAME

WWW::Hetzner::Storage::API::Actions - Hetzner Storage Box Actions API

VERSION

version 0.101

SYNOPSIS

my $actions = $storage->actions->list_all(status => 'running');
my $action = $storage->actions->get($id);

DESCRIPTION

Reads Storage Box actions. A controller bound to a Storage Box lists only that box's actions, while action lookup and action polling always use the global Storage Box action endpoint.

list

my $actions = $storage->actions->list(%query);
my $box_actions = $box->actions->list(%query);

Returns one page of WWW::Hetzner::Action objects. A box-bound controller uses /storage_boxes/{id}/actions; the root controller uses /storage_boxes/actions.

get

my $action = $storage->actions->get($id);
my $same_action = $box->actions->get($id);

Returns an action loaded from the global /storage_boxes/actions/{id} endpoint, including from a box-bound controller.

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.