Skip to content

Commit 7143d0a

Browse files
authored
feat(webhosting): add hosting updating status (#1118)
1 parent f474703 commit 7143d0a

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

scaleway-async/scaleway_async/webhosting/v1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
HostingStatus.DELIVERING,
2525
HostingStatus.DELETING,
2626
HostingStatus.MIGRATING,
27+
HostingStatus.UPDATING,
2728
]
2829
"""
2930
Lists transient statutes of the enum :class:`HostingStatus <HostingStatus>`.

scaleway-async/scaleway_async/webhosting/v1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ class HostingStatus(str, Enum, metaclass=StrEnumMeta):
125125
ERROR = "error"
126126
LOCKED = "locked"
127127
MIGRATING = "migrating"
128+
UPDATING = "updating"
128129

129130
def __str__(self) -> str:
130131
return str(self.value)

scaleway/scaleway/webhosting/v1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
HostingStatus.DELIVERING,
2525
HostingStatus.DELETING,
2626
HostingStatus.MIGRATING,
27+
HostingStatus.UPDATING,
2728
]
2829
"""
2930
Lists transient statutes of the enum :class:`HostingStatus <HostingStatus>`.

scaleway/scaleway/webhosting/v1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ class HostingStatus(str, Enum, metaclass=StrEnumMeta):
125125
ERROR = "error"
126126
LOCKED = "locked"
127127
MIGRATING = "migrating"
128+
UPDATING = "updating"
128129

129130
def __str__(self) -> str:
130131
return str(self.value)

0 commit comments

Comments
 (0)