You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: add field Architecture to ISO, ServerType & Image
* feat: add architecture filter to image & iso clients
* feat(image): add new method to get image by name&architecture
* chore: prepare release 1.19.0
Copy file name to clipboardExpand all lines: hcloud/isos/domain.py
+11-2Lines changed: 11 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,17 +14,26 @@ class Iso(BaseDomain, DomainIdentityMixin):
14
14
Description of the ISO
15
15
:param type: str
16
16
Type of the ISO. Choices: `public`, `private`
17
+
:param architecture: str, None
18
+
CPU Architecture that the ISO is compatible with. None means that the compatibility is unknown. Choices: `x86`, `arm`
17
19
:param deprecated: datetime, None
18
20
ISO 8601 timestamp of deprecation, None if ISO is still available. After the deprecation time it will no longer be possible to attach the ISO to servers.
0 commit comments