Skip to content

Commit f9264e7

Browse files
feat(inference): add scaling deployment status (#1161)
Co-authored-by: Laure-di <[email protected]>
1 parent 7c054cc commit f9264e7

File tree

8 files changed

+8
-0
lines changed

8 files changed

+8
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
DeploymentStatus.CREATING,
1212
DeploymentStatus.DEPLOYING,
1313
DeploymentStatus.DELETING,
14+
DeploymentStatus.SCALING,
1415
]
1516
"""
1617
Lists transient statutes of the enum :class:`DeploymentStatus <DeploymentStatus>`.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class DeploymentStatus(str, Enum, metaclass=StrEnumMeta):
2323
ERROR = "error"
2424
DELETING = "deleting"
2525
LOCKED = "locked"
26+
SCALING = "scaling"
2627

2728
def __str__(self) -> str:
2829
return str(self.value)

scaleway-async/scaleway_async/inference/v1beta1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
DeploymentStatus.CREATING,
1111
DeploymentStatus.DEPLOYING,
1212
DeploymentStatus.DELETING,
13+
DeploymentStatus.SCALING,
1314
]
1415
"""
1516
Lists transient statutes of the enum :class:`DeploymentStatus <DeploymentStatus>`.

scaleway-async/scaleway_async/inference/v1beta1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class DeploymentStatus(str, Enum, metaclass=StrEnumMeta):
2323
ERROR = "error"
2424
DELETING = "deleting"
2525
LOCKED = "locked"
26+
SCALING = "scaling"
2627

2728
def __str__(self) -> str:
2829
return str(self.value)

scaleway/scaleway/inference/v1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
DeploymentStatus.CREATING,
1212
DeploymentStatus.DEPLOYING,
1313
DeploymentStatus.DELETING,
14+
DeploymentStatus.SCALING,
1415
]
1516
"""
1617
Lists transient statutes of the enum :class:`DeploymentStatus <DeploymentStatus>`.

scaleway/scaleway/inference/v1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class DeploymentStatus(str, Enum, metaclass=StrEnumMeta):
2323
ERROR = "error"
2424
DELETING = "deleting"
2525
LOCKED = "locked"
26+
SCALING = "scaling"
2627

2728
def __str__(self) -> str:
2829
return str(self.value)

scaleway/scaleway/inference/v1beta1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
DeploymentStatus.CREATING,
1111
DeploymentStatus.DEPLOYING,
1212
DeploymentStatus.DELETING,
13+
DeploymentStatus.SCALING,
1314
]
1415
"""
1516
Lists transient statutes of the enum :class:`DeploymentStatus <DeploymentStatus>`.

scaleway/scaleway/inference/v1beta1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class DeploymentStatus(str, Enum, metaclass=StrEnumMeta):
2323
ERROR = "error"
2424
DELETING = "deleting"
2525
LOCKED = "locked"
26+
SCALING = "scaling"
2627

2728
def __str__(self) -> str:
2829
return str(self.value)

0 commit comments

Comments
 (0)