mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-12-15 06:52:31 +00:00
4ae557c287
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [hcloud](https://togithub.com/hetznercloud/hcloud-python) ([changelog](https://togithub.com/hetznercloud/hcloud-python/blob/main/CHANGELOG.md)) | `1.28.0` -> `1.29.0` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/hcloud/1.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/hcloud/1.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/hcloud/1.28.0/1.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/hcloud/1.28.0/1.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>hetznercloud/hcloud-python (hcloud)</summary> ### [`v1.29.0`](https://togithub.com/hetznercloud/hcloud-python/blob/HEAD/CHANGELOG.md#1290-2023-09-25) [Compare Source](https://togithub.com/hetznercloud/hcloud-python/compare/v1.28.0...v1.29.0) ##### Features - add domain attribute type hints to bound models ([#​300](https://togithub.com/hetznercloud/hcloud-python/issues/300)) ([6d46d06](6d46d06c42
)) - **firewalls:** add `applied_to_resources` to `FirewallResource` ([#​297](https://togithub.com/hetznercloud/hcloud-python/issues/297)) ([55d2b20](55d2b2043e
)) ##### Bug Fixes - missing BaseDomain base class inheritance ([#​303](https://togithub.com/hetznercloud/hcloud-python/issues/303)) ([0ee7598](0ee759856c
)) ##### Dependencies - update actions/checkout action to v4 ([#​295](https://togithub.com/hetznercloud/hcloud-python/issues/295)) ([c02b446](c02b4468f0
)) - update dependency sphinx to >=7.2.2,<7.3 ([#​291](https://togithub.com/hetznercloud/hcloud-python/issues/291)) ([10234ea](10234ea7bf
)) - update dependency sphinx to v7 ([#​211](https://togithub.com/hetznercloud/hcloud-python/issues/211)) ([f635c94](f635c94c23
)) - update pre-commit hook asottile/pyupgrade to v3.11.0 ([#​298](https://togithub.com/hetznercloud/hcloud-python/issues/298)) ([4bbd0cc](4bbd0ccb0f
)) - update pre-commit hook asottile/pyupgrade to v3.11.1 ([#​299](https://togithub.com/hetznercloud/hcloud-python/issues/299)) ([2f9fcd7](2f9fcd7bb8
)) - update pre-commit hook asottile/pyupgrade to v3.13.0 ([#​301](https://togithub.com/hetznercloud/hcloud-python/issues/301)) ([951dbf3](951dbf3e3b
)) - update pre-commit hook pre-commit/mirrors-prettier to v3.0.3 ([#​294](https://togithub.com/hetznercloud/hcloud-python/issues/294)) ([381e336](381e336ff1
)) - update pre-commit hook psf/black to v23.9.1 ([#​296](https://togithub.com/hetznercloud/hcloud-python/issues/296)) ([4374a7b](4374a7be9f
)) ##### Documentation - load token from env in examples scripts ([#​302](https://togithub.com/hetznercloud/hcloud-python/issues/302)) ([f18c9a6](f18c9a60e0
)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/ansible-collections/hetzner.hcloud). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi45Ny4xIiwidXBkYXRlZEluVmVyIjoiMzYuOTcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jo <ljonas@riseup.net>
236 lines
7.9 KiB
Python
236 lines
7.9 KiB
Python
from __future__ import annotations
|
|
|
|
import time
|
|
from typing import NoReturn
|
|
|
|
try:
|
|
import requests
|
|
except ImportError:
|
|
requests = None
|
|
|
|
from ._version import VERSION
|
|
from ._exceptions import APIException
|
|
from .actions import ActionsClient
|
|
from .certificates import CertificatesClient
|
|
from .datacenters import DatacentersClient
|
|
from .firewalls import FirewallsClient
|
|
from .floating_ips import FloatingIPsClient
|
|
from .images import ImagesClient
|
|
from .isos import IsosClient
|
|
from .load_balancer_types import LoadBalancerTypesClient
|
|
from .load_balancers import LoadBalancersClient
|
|
from .locations import LocationsClient
|
|
from .networks import NetworksClient
|
|
from .placement_groups import PlacementGroupsClient
|
|
from .primary_ips import PrimaryIPsClient
|
|
from .server_types import ServerTypesClient
|
|
from .servers import ServersClient
|
|
from .ssh_keys import SSHKeysClient
|
|
from .volumes import VolumesClient
|
|
|
|
|
|
class Client:
|
|
"""Base Client for accessing the Hetzner Cloud API"""
|
|
|
|
_version = VERSION
|
|
_retry_wait_time = 0.5
|
|
__user_agent_prefix = "hcloud-python"
|
|
|
|
def __init__(
|
|
self,
|
|
token: str,
|
|
api_endpoint: str = "https://api.hetzner.cloud/v1",
|
|
application_name: str | None = None,
|
|
application_version: str | None = None,
|
|
poll_interval: int = 1,
|
|
timeout: float | tuple[float, float] | None = None,
|
|
):
|
|
"""Create a new Client instance
|
|
|
|
:param token: Hetzner Cloud API token
|
|
:param api_endpoint: Hetzner Cloud API endpoint
|
|
:param application_name: Your application name
|
|
:param application_version: Your application _version
|
|
:param poll_interval: Interval for polling information from Hetzner Cloud API in seconds
|
|
:param timeout: Requests timeout in seconds
|
|
"""
|
|
self.token = token
|
|
self._api_endpoint = api_endpoint
|
|
self._application_name = application_name
|
|
self._application_version = application_version
|
|
self._requests_session = requests.Session()
|
|
self._requests_timeout = timeout
|
|
self.poll_interval = poll_interval
|
|
|
|
self.datacenters = DatacentersClient(self)
|
|
"""DatacentersClient Instance
|
|
|
|
:type: :class:`DatacentersClient <hcloud.datacenters.client.DatacentersClient>`
|
|
"""
|
|
self.locations = LocationsClient(self)
|
|
"""LocationsClient Instance
|
|
|
|
:type: :class:`LocationsClient <hcloud.locations.client.LocationsClient>`
|
|
"""
|
|
self.servers = ServersClient(self)
|
|
"""ServersClient Instance
|
|
|
|
:type: :class:`ServersClient <hcloud.servers.client.ServersClient>`
|
|
"""
|
|
self.server_types = ServerTypesClient(self)
|
|
"""ServerTypesClient Instance
|
|
|
|
:type: :class:`ServerTypesClient <hcloud.server_types.client.ServerTypesClient>`
|
|
"""
|
|
self.volumes = VolumesClient(self)
|
|
"""VolumesClient Instance
|
|
|
|
:type: :class:`VolumesClient <hcloud.volumes.client.VolumesClient>`
|
|
"""
|
|
self.actions = ActionsClient(self)
|
|
"""ActionsClient Instance
|
|
|
|
:type: :class:`ActionsClient <hcloud.actions.client.ActionsClient>`
|
|
"""
|
|
self.images = ImagesClient(self)
|
|
"""ImagesClient Instance
|
|
|
|
:type: :class:`ImagesClient <hcloud.images.client.ImagesClient>`
|
|
"""
|
|
self.isos = IsosClient(self)
|
|
"""ImagesClient Instance
|
|
|
|
:type: :class:`IsosClient <hcloud.isos.client.IsosClient>`
|
|
"""
|
|
self.ssh_keys = SSHKeysClient(self)
|
|
"""SSHKeysClient Instance
|
|
|
|
:type: :class:`SSHKeysClient <hcloud.ssh_keys.client.SSHKeysClient>`
|
|
"""
|
|
self.floating_ips = FloatingIPsClient(self)
|
|
"""FloatingIPsClient Instance
|
|
|
|
:type: :class:`FloatingIPsClient <hcloud.floating_ips.client.FloatingIPsClient>`
|
|
"""
|
|
self.primary_ips = PrimaryIPsClient(self)
|
|
"""PrimaryIPsClient Instance
|
|
|
|
:type: :class:`PrimaryIPsClient <hcloud.primary_ips.client.PrimaryIPsClient>`
|
|
"""
|
|
self.networks = NetworksClient(self)
|
|
"""NetworksClient Instance
|
|
|
|
:type: :class:`NetworksClient <hcloud.networks.client.NetworksClient>`
|
|
"""
|
|
self.certificates = CertificatesClient(self)
|
|
"""CertificatesClient Instance
|
|
|
|
:type: :class:`CertificatesClient <hcloud.certificates.client.CertificatesClient>`
|
|
"""
|
|
|
|
self.load_balancers = LoadBalancersClient(self)
|
|
"""LoadBalancersClient Instance
|
|
|
|
:type: :class:`LoadBalancersClient <hcloud.load_balancers.client.LoadBalancersClient>`
|
|
"""
|
|
|
|
self.load_balancer_types = LoadBalancerTypesClient(self)
|
|
"""LoadBalancerTypesClient Instance
|
|
|
|
:type: :class:`LoadBalancerTypesClient <hcloud.load_balancer_types.client.LoadBalancerTypesClient>`
|
|
"""
|
|
|
|
self.firewalls = FirewallsClient(self)
|
|
"""FirewallsClient Instance
|
|
|
|
:type: :class:`FirewallsClient <hcloud.firewalls.client.FirewallsClient>`
|
|
"""
|
|
|
|
self.placement_groups = PlacementGroupsClient(self)
|
|
"""PlacementGroupsClient Instance
|
|
|
|
:type: :class:`PlacementGroupsClient <hcloud.placement_groups.client.PlacementGroupsClient>`
|
|
"""
|
|
|
|
def _get_user_agent(self) -> str:
|
|
"""Get the user agent of the hcloud-python instance with the user application name (if specified)
|
|
|
|
:return: The user agent of this hcloud-python instance
|
|
"""
|
|
user_agents = []
|
|
for name, version in [
|
|
(self._application_name, self._application_version),
|
|
(self.__user_agent_prefix, self._version),
|
|
]:
|
|
if name is not None:
|
|
user_agents.append(name if version is None else f"{name}/{version}")
|
|
|
|
return " ".join(user_agents)
|
|
|
|
def _get_headers(self) -> dict:
|
|
headers = {
|
|
"User-Agent": self._get_user_agent(),
|
|
"Authorization": f"Bearer {self.token}",
|
|
}
|
|
return headers
|
|
|
|
def _raise_exception_from_response(self, response) -> NoReturn:
|
|
raise APIException(
|
|
code=response.status_code,
|
|
message=response.reason,
|
|
details={"content": response.content},
|
|
)
|
|
|
|
def _raise_exception_from_content(self, content: dict) -> NoReturn:
|
|
raise APIException(
|
|
code=content["error"]["code"],
|
|
message=content["error"]["message"],
|
|
details=content["error"]["details"],
|
|
)
|
|
|
|
def request( # type: ignore[no-untyped-def]
|
|
self,
|
|
method: str,
|
|
url: str,
|
|
tries: int = 1,
|
|
**kwargs,
|
|
) -> dict:
|
|
"""Perform a request to the Hetzner Cloud API, wrapper around requests.request
|
|
|
|
:param method: HTTP Method to perform the Request
|
|
:param url: URL of the Endpoint
|
|
:param tries: Tries of the request (used internally, should not be set by the user)
|
|
:param timeout: Requests timeout in seconds
|
|
:return: Response
|
|
"""
|
|
timeout = kwargs.pop("timeout", self._requests_timeout)
|
|
|
|
response = self._requests_session.request(
|
|
method=method,
|
|
url=self._api_endpoint + url,
|
|
headers=self._get_headers(),
|
|
timeout=timeout,
|
|
**kwargs,
|
|
)
|
|
|
|
content = response.content
|
|
try:
|
|
if len(content) > 0:
|
|
content = response.json()
|
|
except (TypeError, ValueError):
|
|
self._raise_exception_from_response(response)
|
|
|
|
if not response.ok:
|
|
if content:
|
|
assert isinstance(content, dict)
|
|
if content["error"]["code"] == "rate_limit_exceeded" and tries < 5:
|
|
time.sleep(tries * self._retry_wait_time)
|
|
tries = tries + 1
|
|
return self.request(method, url, tries, **kwargs)
|
|
|
|
self._raise_exception_from_content(content)
|
|
else:
|
|
self._raise_exception_from_response(response)
|
|
|
|
# TODO: return an empty dict instead of an empty string when content == "".
|
|
return content # type: ignore[return-value]
|