Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scaleway-async/scaleway_async/inference/v1/content.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
DeploymentStatus.CREATING,
DeploymentStatus.DEPLOYING,
DeploymentStatus.DELETING,
DeploymentStatus.SCALING,
]
"""
Lists transient statutes of the enum :class:`DeploymentStatus <DeploymentStatus>`.
Expand Down
1 change: 1 addition & 0 deletions scaleway-async/scaleway_async/inference/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
DeploymentStatus.CREATING,
DeploymentStatus.DEPLOYING,
DeploymentStatus.DELETING,
DeploymentStatus.SCALING,
]
"""
Lists transient statutes of the enum :class:`DeploymentStatus <DeploymentStatus>`.
Expand Down
1 change: 1 addition & 0 deletions scaleway-async/scaleway_async/inference/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions scaleway/scaleway/inference/v1/content.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
DeploymentStatus.CREATING,
DeploymentStatus.DEPLOYING,
DeploymentStatus.DELETING,
DeploymentStatus.SCALING,
]
"""
Lists transient statutes of the enum :class:`DeploymentStatus <DeploymentStatus>`.
Expand Down
1 change: 1 addition & 0 deletions scaleway/scaleway/inference/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions scaleway/scaleway/inference/v1beta1/content.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
DeploymentStatus.CREATING,
DeploymentStatus.DEPLOYING,
DeploymentStatus.DELETING,
DeploymentStatus.SCALING,
]
"""
Lists transient statutes of the enum :class:`DeploymentStatus <DeploymentStatus>`.
Expand Down
1 change: 1 addition & 0 deletions scaleway/scaleway/inference/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading