NAME
WWW::Hetzner::Cloud::LoadBalancerType - Hetzner Cloud LoadBalancerType object
VERSION
version 0.101
SYNOPSIS
my $type = $cloud->load_balancer_types->get_by_name('lb11');
print $type->name, "\n"; # lb11
print $type->max_connections, "\n"; # 20000
print $type->max_services, "\n"; # 5
print $type->max_targets, "\n"; # 25
DESCRIPTION
This class represents a Hetzner Cloud load balancer type (connection, service and target limits). Objects are returned by WWW::Hetzner::Cloud::API::LoadBalancerTypes methods.
Load balancer types are read-only resources.
id
Load balancer type ID.
name
Load balancer type name, e.g. "lb11", "lb21", "lb31".
description
Human-readable description.
max_connections
Maximum number of simultaneous open connections.
max_services
Maximum number of services.
max_targets
Maximum number of targets.
max_assigned_certificates
Maximum number of certificates that can be assigned.
prices
Arrayref of per-location prices, each a hashref with location, price_hourly, price_monthly, included_traffic and price_per_tb_traffic.
deprecated
Deprecation timestamp if deprecated, undef otherwise.
deprecation
Deprecation hashref with announced and unavailable_after timestamps, undef unless the type is deprecated.
data
my $hashref = $type->data;
Returns all load balancer type data as a hashref (for JSON serialization).
SEE ALSO
WWW::Hetzner::Cloud::API::LoadBalancerTypes - Load Balancer Types API
WWW::Hetzner::Cloud - Main Cloud API client
WWW::Hetzner::Cloud::LoadBalancer - LoadBalancer entity
WWW::Hetzner - Main umbrella module
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.