mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [hcloud](https://redirect.github.com/hetznercloud/hcloud-python) ([changelog](https://redirect.github.com/hetznercloud/hcloud-python/blob/main/CHANGELOG.md)) | `2.5.1` -> `2.5.2` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>hetznercloud/hcloud-python (hcloud)</summary> ### [`v2.5.2`](https://redirect.github.com/hetznercloud/hcloud-python/blob/HEAD/CHANGELOG.md#v252) [Compare Source](https://redirect.github.com/hetznercloud/hcloud-python/compare/v2.5.1...v2.5.2) ##### Bug Fixes - listing page result always provide meta ([#​496](https://redirect.github.com/hetznercloud/hcloud-python/issues/496)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, 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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/ansible-collections/hetzner.hcloud). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xNi4wIiwidXBkYXRlZEluVmVyIjoiNDAuMTYuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jo <ljonas@riseup.net>
82 lines
2.6 KiB
Python
82 lines
2.6 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, Any, NamedTuple
|
|
|
|
from ..core import BoundModelBase, ClientEntityBase, Meta
|
|
from .domain import Location
|
|
|
|
if TYPE_CHECKING:
|
|
from .._client import Client
|
|
|
|
|
|
class BoundLocation(BoundModelBase, Location):
|
|
_client: LocationsClient
|
|
|
|
model = Location
|
|
|
|
|
|
class LocationsPageResult(NamedTuple):
|
|
locations: list[BoundLocation]
|
|
meta: Meta
|
|
|
|
|
|
class LocationsClient(ClientEntityBase):
|
|
_client: Client
|
|
|
|
def get_by_id(self, id: int) -> BoundLocation:
|
|
"""Get a specific location by its ID.
|
|
|
|
:param id: int
|
|
:return: :class:`BoundLocation <hcloud.locations.client.BoundLocation>`
|
|
"""
|
|
response = self._client.request(url=f"/locations/{id}", method="GET")
|
|
return BoundLocation(self, response["location"])
|
|
|
|
def get_list(
|
|
self,
|
|
name: str | None = None,
|
|
page: int | None = None,
|
|
per_page: int | None = None,
|
|
) -> LocationsPageResult:
|
|
"""Get a list of locations
|
|
|
|
:param name: str (optional)
|
|
Can be used to filter locations by their name.
|
|
:param page: int (optional)
|
|
Specifies the page to fetch
|
|
:param per_page: int (optional)
|
|
Specifies how many results are returned by page
|
|
:return: (List[:class:`BoundLocation <hcloud.locations.client.BoundLocation>`], :class:`Meta <hcloud.core.domain.Meta>`)
|
|
"""
|
|
params: dict[str, Any] = {}
|
|
if name is not None:
|
|
params["name"] = name
|
|
if page is not None:
|
|
params["page"] = page
|
|
if per_page is not None:
|
|
params["per_page"] = per_page
|
|
|
|
response = self._client.request(url="/locations", method="GET", params=params)
|
|
locations = [
|
|
BoundLocation(self, location_data)
|
|
for location_data in response["locations"]
|
|
]
|
|
return LocationsPageResult(locations, Meta.parse_meta(response))
|
|
|
|
def get_all(self, name: str | None = None) -> list[BoundLocation]:
|
|
"""Get all locations
|
|
|
|
:param name: str (optional)
|
|
Can be used to filter locations by their name.
|
|
:return: List[:class:`BoundLocation <hcloud.locations.client.BoundLocation>`]
|
|
"""
|
|
return self._iter_pages(self.get_list, name=name)
|
|
|
|
def get_by_name(self, name: str) -> BoundLocation | None:
|
|
"""Get location by name
|
|
|
|
:param name: str
|
|
Used to get location by name.
|
|
:return: :class:`BoundLocation <hcloud.locations.client.BoundLocation>`
|
|
"""
|
|
return self._get_first_by(name=name)
|