chore(deps): update dependency hcloud to v2.2.1 (#553)

This commit is contained in:
renovate[bot] 2024-08-30 15:11:41 +02:00 committed by GitHub
parent a955bfe493
commit c92c73904e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View file

@ -1,3 +1,3 @@
from __future__ import annotations
__version__ = "2.2.0" # x-release-please-version
__version__ = "2.2.1" # x-release-please-version

View file

@ -20,7 +20,7 @@ class LoadBalancerType(BaseDomain, DomainIdentityMixin):
Max amount of targets the Load Balancer can handle
:param max_assigned_certificates: int
Max amount of certificates the Load Balancer can serve
:param prices: Dict
:param prices: List of dict
Prices in different locations
"""
@ -46,7 +46,7 @@ class LoadBalancerType(BaseDomain, DomainIdentityMixin):
max_services: int | None = None,
max_targets: int | None = None,
max_assigned_certificates: int | None = None,
prices: dict | None = None,
prices: list[dict] | None = None,
):
self.id = id
self.name = name

View file

@ -21,7 +21,7 @@ class ServerType(BaseDomain, DomainIdentityMixin):
Memory a server of this type will have in GB
:param disk: int
Disk size a server of this type will have in GB
:param prices: Dict
:param prices: List of dict
Prices in different locations
:param storage_type: str
Type of server boot drive. Local has higher speed. Network has better availability. Choices: `local`, `network`
@ -69,7 +69,7 @@ class ServerType(BaseDomain, DomainIdentityMixin):
cores: int | None = None,
memory: int | None = None,
disk: int | None = None,
prices: dict | None = None,
prices: list[dict] | None = None,
storage_type: str | None = None,
cpu_type: str | None = None,
architecture: str | None = None,

View file

@ -22,7 +22,7 @@ from textwrap import dedent
logger = logging.getLogger("vendor")
HCLOUD_SOURCE_URL = "https://github.com/hetznercloud/hcloud-python"
HCLOUD_VERSION = "v2.2.0"
HCLOUD_VERSION = "v2.2.1"
HCLOUD_VENDOR_PATH = "plugins/module_utils/vendor/hcloud"