diff --git a/scaleway-async/scaleway_async/inference/v1/content.py b/scaleway-async/scaleway_async/inference/v1/content.py index 887e0b7ec..f3189b205 100644 --- a/scaleway-async/scaleway_async/inference/v1/content.py +++ b/scaleway-async/scaleway_async/inference/v1/content.py @@ -11,6 +11,7 @@ DeploymentStatus.CREATING, DeploymentStatus.DEPLOYING, DeploymentStatus.DELETING, + DeploymentStatus.SCALING, ] """ Lists transient statutes of the enum :class:`DeploymentStatus `. diff --git a/scaleway-async/scaleway_async/inference/v1/types.py b/scaleway-async/scaleway_async/inference/v1/types.py index a4246cb00..d69897b6a 100644 --- a/scaleway-async/scaleway_async/inference/v1/types.py +++ b/scaleway-async/scaleway_async/inference/v1/types.py @@ -23,6 +23,7 @@ class DeploymentStatus(str, Enum, metaclass=StrEnumMeta): ERROR = "error" DELETING = "deleting" LOCKED = "locked" + SCALING = "scaling" def __str__(self) -> str: return str(self.value) diff --git a/scaleway-async/scaleway_async/inference/v1beta1/content.py b/scaleway-async/scaleway_async/inference/v1beta1/content.py index d4ae30bc6..50fcf4ffb 100644 --- a/scaleway-async/scaleway_async/inference/v1beta1/content.py +++ b/scaleway-async/scaleway_async/inference/v1beta1/content.py @@ -10,6 +10,7 @@ DeploymentStatus.CREATING, DeploymentStatus.DEPLOYING, DeploymentStatus.DELETING, + DeploymentStatus.SCALING, ] """ Lists transient statutes of the enum :class:`DeploymentStatus `. diff --git a/scaleway-async/scaleway_async/inference/v1beta1/types.py b/scaleway-async/scaleway_async/inference/v1beta1/types.py index c93b59bc7..1befe869c 100644 --- a/scaleway-async/scaleway_async/inference/v1beta1/types.py +++ b/scaleway-async/scaleway_async/inference/v1beta1/types.py @@ -23,6 +23,7 @@ class DeploymentStatus(str, Enum, metaclass=StrEnumMeta): ERROR = "error" DELETING = "deleting" LOCKED = "locked" + SCALING = "scaling" def __str__(self) -> str: return str(self.value) diff --git a/scaleway/scaleway/inference/v1/content.py b/scaleway/scaleway/inference/v1/content.py index 887e0b7ec..f3189b205 100644 --- a/scaleway/scaleway/inference/v1/content.py +++ b/scaleway/scaleway/inference/v1/content.py @@ -11,6 +11,7 @@ DeploymentStatus.CREATING, DeploymentStatus.DEPLOYING, DeploymentStatus.DELETING, + DeploymentStatus.SCALING, ] """ Lists transient statutes of the enum :class:`DeploymentStatus `. diff --git a/scaleway/scaleway/inference/v1/types.py b/scaleway/scaleway/inference/v1/types.py index a4246cb00..d69897b6a 100644 --- a/scaleway/scaleway/inference/v1/types.py +++ b/scaleway/scaleway/inference/v1/types.py @@ -23,6 +23,7 @@ class DeploymentStatus(str, Enum, metaclass=StrEnumMeta): ERROR = "error" DELETING = "deleting" LOCKED = "locked" + SCALING = "scaling" def __str__(self) -> str: return str(self.value) diff --git a/scaleway/scaleway/inference/v1beta1/content.py b/scaleway/scaleway/inference/v1beta1/content.py index d4ae30bc6..50fcf4ffb 100644 --- a/scaleway/scaleway/inference/v1beta1/content.py +++ b/scaleway/scaleway/inference/v1beta1/content.py @@ -10,6 +10,7 @@ DeploymentStatus.CREATING, DeploymentStatus.DEPLOYING, DeploymentStatus.DELETING, + DeploymentStatus.SCALING, ] """ Lists transient statutes of the enum :class:`DeploymentStatus `. diff --git a/scaleway/scaleway/inference/v1beta1/types.py b/scaleway/scaleway/inference/v1beta1/types.py index c93b59bc7..1befe869c 100644 --- a/scaleway/scaleway/inference/v1beta1/types.py +++ b/scaleway/scaleway/inference/v1beta1/types.py @@ -23,6 +23,7 @@ class DeploymentStatus(str, Enum, metaclass=StrEnumMeta): ERROR = "error" DELETING = "deleting" LOCKED = "locked" + SCALING = "scaling" def __str__(self) -> str: return str(self.value)