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](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [hcloud](https://redirect.github.com/hetznercloud/hcloud-python) ([changelog](https://redirect.github.com/hetznercloud/hcloud-python/blob/main/CHANGELOG.md)) | `2.12.0` -> `2.13.0` |  |  | --- ### Release Notes <details> <summary>hetznercloud/hcloud-python (hcloud)</summary> ### [`v2.13.0`](https://redirect.github.com/hetznercloud/hcloud-python/blob/HEAD/CHANGELOG.md#v2130) [Compare Source](https://redirect.github.com/hetznercloud/hcloud-python/compare/v2.12.0...v2.13.0) ##### Features - add per primary ip actions list operations ([#​608](https://redirect.github.com/hetznercloud/hcloud-python/issues/608)) - deprecate datacenter in `primary ips` and `servers` ([#​609](https://redirect.github.com/hetznercloud/hcloud-python/issues/609)) </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 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:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jo <ljonas@riseup.net>
108 lines
3.7 KiB
Python
108 lines
3.7 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import Any, NamedTuple
|
|
|
|
from ..core import BoundModelBase, Meta, ResourceClientBase
|
|
from .domain import Iso
|
|
|
|
__all__ = [
|
|
"BoundIso",
|
|
"IsosPageResult",
|
|
"IsosClient",
|
|
]
|
|
|
|
|
|
class BoundIso(BoundModelBase[Iso], Iso):
|
|
_client: IsosClient
|
|
|
|
model = Iso
|
|
|
|
|
|
class IsosPageResult(NamedTuple):
|
|
isos: list[BoundIso]
|
|
meta: Meta
|
|
|
|
|
|
class IsosClient(ResourceClientBase):
|
|
_base_url = "/isos"
|
|
|
|
def get_by_id(self, id: int) -> BoundIso:
|
|
"""Get a specific ISO by its id
|
|
|
|
:param id: int
|
|
:return: :class:`BoundIso <hcloud.isos.client.BoundIso>`
|
|
"""
|
|
response = self._client.request(url=f"{self._base_url}/{id}", method="GET")
|
|
return BoundIso(self, response["iso"])
|
|
|
|
def get_list(
|
|
self,
|
|
name: str | None = None,
|
|
architecture: list[str] | None = None,
|
|
include_architecture_wildcard: bool | None = None,
|
|
page: int | None = None,
|
|
per_page: int | None = None,
|
|
) -> IsosPageResult:
|
|
"""Get a list of ISOs
|
|
|
|
:param name: str (optional)
|
|
Can be used to filter ISOs by their name.
|
|
:param architecture: List[str] (optional)
|
|
Can be used to filter ISOs by their architecture. Choices: x86 arm
|
|
:param include_architecture_wildcard: bool (optional)
|
|
Custom ISOs do not have an architecture set. You must also set this flag to True if you are filtering by
|
|
architecture and also want custom ISOs.
|
|
: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:`BoundIso <hcloud.isos.client.BoundIso>`], :class:`Meta <hcloud.core.domain.Meta>`)
|
|
"""
|
|
params: dict[str, Any] = {}
|
|
if name is not None:
|
|
params["name"] = name
|
|
if architecture is not None:
|
|
params["architecture"] = architecture
|
|
if include_architecture_wildcard is not None:
|
|
params["include_architecture_wildcard"] = include_architecture_wildcard
|
|
if page is not None:
|
|
params["page"] = page
|
|
if per_page is not None:
|
|
params["per_page"] = per_page
|
|
|
|
response = self._client.request(url=self._base_url, method="GET", params=params)
|
|
isos = [BoundIso(self, iso_data) for iso_data in response["isos"]]
|
|
return IsosPageResult(isos, Meta.parse_meta(response))
|
|
|
|
def get_all(
|
|
self,
|
|
name: str | None = None,
|
|
architecture: list[str] | None = None,
|
|
include_architecture_wildcard: bool | None = None,
|
|
) -> list[BoundIso]:
|
|
"""Get all ISOs
|
|
|
|
:param name: str (optional)
|
|
Can be used to filter ISOs by their name.
|
|
:param architecture: List[str] (optional)
|
|
Can be used to filter ISOs by their architecture. Choices: x86 arm
|
|
:param include_architecture_wildcard: bool (optional)
|
|
Custom ISOs do not have an architecture set. You must also set this flag to True if you are filtering by
|
|
architecture and also want custom ISOs.
|
|
:return: List[:class:`BoundIso <hcloud.isos.client.BoundIso>`]
|
|
"""
|
|
return self._iter_pages(
|
|
self.get_list,
|
|
name=name,
|
|
architecture=architecture,
|
|
include_architecture_wildcard=include_architecture_wildcard,
|
|
)
|
|
|
|
def get_by_name(self, name: str) -> BoundIso | None:
|
|
"""Get iso by name
|
|
|
|
:param name: str
|
|
Used to get iso by name.
|
|
:return: :class:`BoundIso <hcloud.isos.client.BoundIso>`
|
|
"""
|
|
return self._get_first_by(self.get_list, name=name)
|