mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-10 06:34:13 +00:00
deps: update dependency hcloud to v1.27.2 (#294)
* deps: update dependency hcloud to v1.27.2 * chore: update vendored files --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jo <ljonas@riseup.net>
This commit is contained in:
parent
8b5891dab6
commit
e89835531f
8 changed files with 12 additions and 13 deletions
|
@ -1,3 +1,3 @@
|
|||
from __future__ import annotations
|
||||
|
||||
VERSION = "1.27.1" # x-release-please-version
|
||||
VERSION = "1.27.2" # x-release-please-version
|
||||
|
|
|
@ -81,7 +81,7 @@ class BoundCertificate(BoundModelBase):
|
|||
New name to set
|
||||
:param labels: Dict[str, str] (optional)
|
||||
User-defined labels (key-value pairs)
|
||||
:return: :class:`BoundCertificate <hcloud.certificates.client.BoundCertificate>
|
||||
:return: :class:`BoundCertificate <hcloud.certificates.client.BoundCertificate>`
|
||||
"""
|
||||
return self._client.update(self, name, labels)
|
||||
|
||||
|
|
|
@ -67,7 +67,6 @@ class BoundFloatingIP(BoundModelBase):
|
|||
Response will have only actions with specified statuses. Choices: `running` `success` `error`
|
||||
:param sort: List[str] (optional)
|
||||
Specify how the results are sorted. Choices: `id` `id:asc` `id:desc` `command` `command:asc` `command:desc` `status` `status:asc` `status:desc` `progress` `progress:asc` `progress:desc` `started` `started:asc` `started:desc` `finished` `finished:asc` `finished:desc`
|
||||
|
||||
:return: List[:class:`BoundAction <hcloud.actions.client.BoundAction>`]
|
||||
"""
|
||||
return self._client.get_actions(self, status, sort)
|
||||
|
|
|
@ -180,7 +180,7 @@ class ImagesClient(ClientEntityBase):
|
|||
"""Get a specific Image
|
||||
|
||||
:param id: int
|
||||
:return: :class:`BoundImage <hcloud.images.client.BoundImage
|
||||
:return: :class:`BoundImage <hcloud.images.client.BoundImage`
|
||||
"""
|
||||
response = self._client.request(url=f"/images/{id}", method="GET")
|
||||
return BoundImage(self, response["image"])
|
||||
|
|
|
@ -172,7 +172,7 @@ class NetworksClient(ClientEntityBase):
|
|||
"""Get a specific network
|
||||
|
||||
:param id: int
|
||||
:return: :class:`BoundNetwork <hcloud.networks.client.BoundNetwork>
|
||||
:return: :class:`BoundNetwork <hcloud.networks.client.BoundNetwork>`
|
||||
"""
|
||||
response = self._client.request(url=f"/networks/{id}", method="GET")
|
||||
return BoundNetwork(self, response["network"])
|
||||
|
|
|
@ -25,7 +25,7 @@ class BoundSSHKey(BoundModelBase):
|
|||
New Description to set
|
||||
:param labels: Dict[str, str] (optional)
|
||||
User-defined labels (key-value pairs)
|
||||
:return: :class:`BoundSSHKey <hcloud.ssh_keys.client.BoundSSHKey>
|
||||
:return: :class:`BoundSSHKey <hcloud.ssh_keys.client.BoundSSHKey>`
|
||||
"""
|
||||
return self._client.update(self, name, labels)
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ from textwrap import dedent
|
|||
logger = logging.getLogger("vendor")
|
||||
|
||||
HCLOUD_SOURCE_URL = "https://github.com/hetznercloud/hcloud-python"
|
||||
HCLOUD_VERSION = "v1.27.1"
|
||||
HCLOUD_VERSION = "v1.27.2"
|
||||
HCLOUD_VENDOR_PATH = "plugins/module_utils/vendor/hcloud"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue