mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-03 23:51:48 +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>
182 lines
5.1 KiB
Python
182 lines
5.1 KiB
Python
from __future__ import annotations
|
|
|
|
import warnings
|
|
from typing import TYPE_CHECKING, TypedDict
|
|
|
|
from ..core import BaseDomain, DomainIdentityMixin
|
|
|
|
if TYPE_CHECKING:
|
|
from ..actions import BoundAction
|
|
from ..servers import BoundServer
|
|
from .client import BoundNetwork
|
|
|
|
__all__ = [
|
|
"Network",
|
|
"NetworkProtection",
|
|
"NetworkSubnet",
|
|
"NetworkRoute",
|
|
"CreateNetworkResponse",
|
|
]
|
|
|
|
|
|
class Network(BaseDomain, DomainIdentityMixin):
|
|
"""Network Domain
|
|
|
|
:param id: int
|
|
ID of the network
|
|
:param name: str
|
|
Name of the network
|
|
:param ip_range: str
|
|
IPv4 prefix of the whole network
|
|
:param subnets: List[:class:`NetworkSubnet <hcloud.networks.domain.NetworkSubnet>`]
|
|
Subnets allocated in this network
|
|
:param routes: List[:class:`NetworkRoute <hcloud.networks.domain.NetworkRoute>`]
|
|
Routes set in this network
|
|
:param expose_routes_to_vswitch: bool
|
|
Indicates if the routes from this network should be exposed to the vSwitch connection.
|
|
:param servers: List[:class:`BoundServer <hcloud.servers.client.BoundServer>`]
|
|
Servers attached to this network
|
|
:param protection: dict
|
|
Protection configuration for the network
|
|
:param labels: dict
|
|
User-defined labels (key-value pairs)
|
|
"""
|
|
|
|
__api_properties__ = (
|
|
"id",
|
|
"name",
|
|
"ip_range",
|
|
"subnets",
|
|
"routes",
|
|
"expose_routes_to_vswitch",
|
|
"servers",
|
|
"protection",
|
|
"labels",
|
|
"created",
|
|
)
|
|
__slots__ = __api_properties__
|
|
|
|
def __init__(
|
|
self,
|
|
id: int,
|
|
name: str | None = None,
|
|
created: str | None = None,
|
|
ip_range: str | None = None,
|
|
subnets: list[NetworkSubnet] | None = None,
|
|
routes: list[NetworkRoute] | None = None,
|
|
expose_routes_to_vswitch: bool | None = None,
|
|
servers: list[BoundServer] | None = None,
|
|
protection: NetworkProtection | None = None,
|
|
labels: dict[str, str] | None = None,
|
|
):
|
|
self.id = id
|
|
self.name = name
|
|
self.created = self._parse_datetime(created)
|
|
self.ip_range = ip_range
|
|
self.subnets = subnets
|
|
self.routes = routes
|
|
self.expose_routes_to_vswitch = expose_routes_to_vswitch
|
|
self.servers = servers
|
|
self.protection = protection
|
|
self.labels = labels
|
|
|
|
|
|
class NetworkProtection(TypedDict):
|
|
delete: bool
|
|
|
|
|
|
class NetworkSubnet(BaseDomain):
|
|
"""Network Subnet Domain
|
|
|
|
:param type: str
|
|
Type of sub network.
|
|
:param ip_range: str
|
|
Range to allocate IPs from.
|
|
:param network_zone: str
|
|
Name of network zone.
|
|
:param gateway: str
|
|
Gateway for the route.
|
|
:param vswitch_id: int
|
|
ID of the vSwitch.
|
|
"""
|
|
|
|
@property
|
|
def TYPE_SERVER(self) -> str: # pylint: disable=invalid-name
|
|
"""
|
|
Used to connect cloud servers and load balancers.
|
|
|
|
.. deprecated:: 2.2.0
|
|
Use :attr:`NetworkSubnet.TYPE_CLOUD` instead.
|
|
"""
|
|
warnings.warn(
|
|
"The 'NetworkSubnet.TYPE_SERVER' property is deprecated, please use the `NetworkSubnet.TYPE_CLOUD` property instead.",
|
|
DeprecationWarning,
|
|
stacklevel=2,
|
|
)
|
|
return "server"
|
|
|
|
TYPE_CLOUD = "cloud"
|
|
"""
|
|
Used to connect cloud servers and load balancers.
|
|
"""
|
|
TYPE_VSWITCH = "vswitch"
|
|
"""
|
|
Used to connect cloud servers and load balancers with dedicated servers.
|
|
|
|
See https://docs.hetzner.com/networking/networks/connect-dedi-vswitch/
|
|
"""
|
|
|
|
__api_properties__ = ("type", "ip_range", "network_zone", "gateway", "vswitch_id")
|
|
__slots__ = __api_properties__
|
|
|
|
def __init__(
|
|
self,
|
|
ip_range: str,
|
|
type: str | None = None,
|
|
network_zone: str | None = None,
|
|
gateway: str | None = None,
|
|
vswitch_id: int | None = None,
|
|
):
|
|
self.type = type
|
|
self.ip_range = ip_range
|
|
self.network_zone = network_zone
|
|
self.gateway = gateway
|
|
self.vswitch_id = vswitch_id
|
|
|
|
|
|
class NetworkRoute(BaseDomain):
|
|
"""Network Route Domain
|
|
|
|
:param destination: str
|
|
Destination network or host of this route.
|
|
:param gateway: str
|
|
Gateway for the route.
|
|
"""
|
|
|
|
__api_properties__ = ("destination", "gateway")
|
|
__slots__ = __api_properties__
|
|
|
|
def __init__(self, destination: str, gateway: str):
|
|
self.destination = destination
|
|
self.gateway = gateway
|
|
|
|
|
|
class CreateNetworkResponse(BaseDomain):
|
|
"""Create Network Response Domain
|
|
|
|
:param network: :class:`BoundNetwork <hcloud.networks.client.BoundNetwork>`
|
|
The network which was created
|
|
:param action: :class:`BoundAction <hcloud.actions.client.BoundAction>`
|
|
The Action which shows the progress of the network Creation
|
|
"""
|
|
|
|
__api_properties__ = ("network", "action")
|
|
__slots__ = __api_properties__
|
|
|
|
def __init__(
|
|
self,
|
|
network: BoundNetwork,
|
|
action: BoundAction,
|
|
):
|
|
self.network = network
|
|
self.action = action
|