We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9218327 commit c85b5a0Copy full SHA for c85b5a0
scaleway/pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "scaleway"
3
-version = "2.0.0"
+version = "2.8.1"
4
description = "Scaleway SDK for Python"
5
authors = ["Scaleway <[email protected]>"]
6
license = "BSD"
scaleway/scaleway/instance/v1/marshalling.py
@@ -2150,6 +2150,8 @@ def unmarshal_ServerType(data: Any) -> ServerType:
2150
field = data.get("baremetal", None)
2151
if field is not None:
2152
args["baremetal"] = field
2153
+ else:
2154
+ args["baremetal"] = False
2155
2156
field = data.get("per_volume_constraint", None)
2157
0 commit comments