We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f772485 commit fba1bf6Copy full SHA for fba1bf6
1 file changed
hcloud/storage_boxes/client.py
@@ -728,7 +728,12 @@ def create_snapshot(
728
json=data,
729
)
730
return CreateStorageBoxSnapshotResponse(
731
- snapshot=BoundStorageBoxSnapshot(self, response["snapshot"]),
+ snapshot=BoundStorageBoxSnapshot(
732
+ self,
733
+ response["snapshot"],
734
+ # API only returns a partial object.
735
+ complete=False,
736
+ ),
737
action=BoundAction(self._parent.actions, response["action"]),
738
739
0 commit comments