mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-10 06:34:13 +00:00
chore(deps): update dependency hcloud to v2.2.1 (#553)
This commit is contained in:
parent
a955bfe493
commit
c92c73904e
4 changed files with 6 additions and 6 deletions
|
@ -1,3 +1,3 @@
|
|||
from __future__ import annotations
|
||||
|
||||
__version__ = "2.2.0" # x-release-please-version
|
||||
__version__ = "2.2.1" # x-release-please-version
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue