-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathdomain.py
More file actions
110 lines (97 loc) · 3.25 KB
/
domain.py
File metadata and controls
110 lines (97 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
from __future__ import annotations
from typing import TYPE_CHECKING
from ..core import BaseDomain, DomainIdentityMixin
if TYPE_CHECKING:
from ..actions import BoundAction
from ..datacenters import BoundDatacenter
from .client import BoundPrimaryIP
class PrimaryIP(BaseDomain, DomainIdentityMixin):
"""Primary IP Domain
:param id: int
ID of the Primary IP
:param ip: str
IP address of the Primary IP
:param type: str
Type of Primary IP. Choices: `ipv4`, `ipv6`
:param dns_ptr: List[Dict]
Array of reverse DNS entries
:param datacenter: :class:`Datacenter <hcloud.datacenters.client.BoundDatacenter>`
Datacenter the Primary IP was created in.
:param blocked: boolean
Whether the IP is blocked
:param protection: dict
Protection configuration for the Primary IP
:param labels: dict
User-defined labels (key-value pairs)
:param created: datetime
Point in time when the Primary IP was created
:param name: str
Name of the Primary IP
:param assignee_id: int
Assignee ID the Primary IP is assigned to
:param assignee_type: str
Assignee Type of entity the Primary IP is assigned to
:param auto_delete: bool
Delete the Primary IP when the Assignee it is assigned to is deleted.
"""
__api_properties__ = (
"id",
"ip",
"type",
"dns_ptr",
"datacenter",
"blocked",
"protection",
"labels",
"created",
"name",
"assignee_id",
"assignee_type",
"auto_delete",
)
__slots__ = __api_properties__
def __init__(
self,
id: int | None = None,
type: str | None = None,
ip: str | None = None,
dns_ptr: list[dict] | None = None,
datacenter: BoundDatacenter | None = None,
blocked: bool | None = None,
protection: dict | None = None,
labels: dict[str, dict] | None = None,
created: str | None = None,
name: str | None = None,
assignee_id: int | None = None,
assignee_type: str | None = None,
auto_delete: bool | None = None,
):
self.id = id
self.type = type
self.ip = ip
self.dns_ptr = dns_ptr
self.datacenter = datacenter
self.blocked = blocked
self.protection = protection
self.labels = labels
self.created = self._parse_datetime(created)
self.name = name
self.assignee_id = assignee_id
self.assignee_type = assignee_type
self.auto_delete = auto_delete
class CreatePrimaryIPResponse(BaseDomain):
"""Create Primary IP Response Domain
:param primary_ip: :class:`BoundPrimaryIP <hcloud.primary_ips.client.BoundPrimaryIP>`
The Primary IP which was created
:param action: :class:`BoundAction <hcloud.actions.client.BoundAction>`
The Action which shows the progress of the Primary IP Creation
"""
__api_properties__ = ("primary_ip", "action")
__slots__ = __api_properties__
def __init__(
self,
primary_ip: BoundPrimaryIP,
action: BoundAction | None,
):
self.primary_ip = primary_ip
self.action = action