mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-06 00:42:10 +00:00
[](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.33.3` -> `1.34.0` |
[](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>
###
[`v1.34.0`](https://togithub.com/hetznercloud/hcloud-python/blob/HEAD/CHANGELOG.md#1340-2024-03-27)
[Compare
Source](https://togithub.com/hetznercloud/hcloud-python/compare/v1.33.3...v1.34.0)
##### Features
- add `has_id_or_name` to `DomainIdentityMixin`
([#​373](https://togithub.com/hetznercloud/hcloud-python/issues/373))
([8facaf6](8facaf6d4d))
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: jo <ljonas@riseup.net>
75 lines
2.1 KiB
Python
75 lines
2.1 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
try:
|
|
from dateutil.parser import isoparse
|
|
except ImportError:
|
|
isoparse = None
|
|
|
|
from ..core import BaseDomain, DomainIdentityMixin
|
|
|
|
if TYPE_CHECKING:
|
|
from ..actions import BoundAction
|
|
from .client import BoundPlacementGroup
|
|
|
|
|
|
class PlacementGroup(BaseDomain, DomainIdentityMixin):
|
|
"""Placement Group Domain
|
|
|
|
:param id: int
|
|
ID of the Placement Group
|
|
:param name: str
|
|
Name of the Placement Group
|
|
:param labels: dict
|
|
User-defined labels (key-value pairs)
|
|
:param servers: List[ int ]
|
|
List of server IDs assigned to the Placement Group
|
|
:param type: str
|
|
Type of the Placement Group
|
|
:param created: datetime
|
|
Point in time when the image was created
|
|
"""
|
|
|
|
__slots__ = ("id", "name", "labels", "servers", "type", "created")
|
|
|
|
"""Placement Group type spread
|
|
spreads all servers in the group on different vhosts
|
|
"""
|
|
TYPE_SPREAD = "spread"
|
|
|
|
def __init__(
|
|
self,
|
|
id: int | None = None,
|
|
name: str | None = None,
|
|
labels: dict[str, str] | None = None,
|
|
servers: list[int] | None = None,
|
|
type: str | None = None,
|
|
created: str | None = None,
|
|
):
|
|
self.id = id
|
|
self.name = name
|
|
self.labels = labels
|
|
self.servers = servers
|
|
self.type = type
|
|
self.created = isoparse(created) if created else None
|
|
|
|
|
|
class CreatePlacementGroupResponse(BaseDomain):
|
|
"""Create Placement Group Response Domain
|
|
|
|
:param placement_group: :class:`BoundPlacementGroup <hcloud.placement_groups.client.BoundPlacementGroup>`
|
|
The Placement Group which was created
|
|
:param action: :class:`BoundAction <hcloud.actions.client.BoundAction>`
|
|
The Action which shows the progress of the Placement Group Creation
|
|
"""
|
|
|
|
__slots__ = ("placement_group", "action")
|
|
|
|
def __init__(
|
|
self,
|
|
placement_group: BoundPlacementGroup,
|
|
action: BoundAction | None,
|
|
):
|
|
self.placement_group = placement_group
|
|
self.action = action
|