Skip to content

Commit c5f6200

Browse files
authored
feat(block): add volume updating status (scaleway#525)
1 parent 8207187 commit c5f6200

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

scaleway-async/scaleway_async/block/v1alpha1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
VolumeStatus.DELETING,
2929
VolumeStatus.RESIZING,
3030
VolumeStatus.SNAPSHOTTING,
31+
VolumeStatus.UPDATING,
3132
]
3233
"""
3334
Lists transient statutes of the enum :class:`VolumeStatus <VolumeStatus>`.

scaleway-async/scaleway_async/block/v1alpha1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ class VolumeStatus(str, Enum, metaclass=StrEnumMeta):
9494
ERROR = "error"
9595
SNAPSHOTTING = "snapshotting"
9696
LOCKED = "locked"
97+
UPDATING = "updating"
9798

9899
def __str__(self) -> str:
99100
return str(self.value)

scaleway/scaleway/block/v1alpha1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
VolumeStatus.DELETING,
2929
VolumeStatus.RESIZING,
3030
VolumeStatus.SNAPSHOTTING,
31+
VolumeStatus.UPDATING,
3132
]
3233
"""
3334
Lists transient statutes of the enum :class:`VolumeStatus <VolumeStatus>`.

scaleway/scaleway/block/v1alpha1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ class VolumeStatus(str, Enum, metaclass=StrEnumMeta):
9494
ERROR = "error"
9595
SNAPSHOTTING = "snapshotting"
9696
LOCKED = "locked"
97+
UPDATING = "updating"
9798

9899
def __str__(self) -> str:
99100
return str(self.value)

0 commit comments

Comments
 (0)