Skip to content

Commit 6aca8f7

Browse files
authored
feat(apple_silicon): add busy server status (scaleway#757)
1 parent 248a4b0 commit 6aca8f7

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
ServerStatus.LOCKING,
1414
ServerStatus.UNLOCKING,
1515
ServerStatus.REINSTALLING,
16+
ServerStatus.BUSY,
1617
]
1718
"""
1819
Lists transient statutes of the enum :class:`ServerStatus <ServerStatus>`.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ class ServerStatus(str, Enum, metaclass=StrEnumMeta):
5252
LOCKED = "locked"
5353
UNLOCKING = "unlocking"
5454
REINSTALLING = "reinstalling"
55+
BUSY = "busy"
5556

5657
def __str__(self) -> str:
5758
return str(self.value)

scaleway/scaleway/applesilicon/v1alpha1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
ServerStatus.LOCKING,
1414
ServerStatus.UNLOCKING,
1515
ServerStatus.REINSTALLING,
16+
ServerStatus.BUSY,
1617
]
1718
"""
1819
Lists transient statutes of the enum :class:`ServerStatus <ServerStatus>`.

scaleway/scaleway/applesilicon/v1alpha1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ class ServerStatus(str, Enum, metaclass=StrEnumMeta):
5252
LOCKED = "locked"
5353
UNLOCKING = "unlocking"
5454
REINSTALLING = "reinstalling"
55+
BUSY = "busy"
5556

5657
def __str__(self) -> str:
5758
return str(self.value)

0 commit comments

Comments
 (0)