Skip to content

Commit adcf240

Browse files
authored
fix(datawarehouse): deprecated Deployment.Status.configuring and added Deployment.Status.deploying (scaleway#1406)
1 parent c966107 commit adcf240

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

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

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class DeploymentStatus(str, Enum, metaclass=StrEnumMeta):
2525
LOCKED = "locked"
2626
LOCKING = "locking"
2727
UNLOCKING = "unlocking"
28+
DEPLOYING = "deploying"
2829

2930
def __str__(self) -> str:
3031
return str(self.value)

scaleway/scaleway/datawarehouse/v1beta1/content.py

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

scaleway/scaleway/datawarehouse/v1beta1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class DeploymentStatus(str, Enum, metaclass=StrEnumMeta):
2525
LOCKED = "locked"
2626
LOCKING = "locking"
2727
UNLOCKING = "unlocking"
28+
DEPLOYING = "deploying"
2829

2930
def __str__(self) -> str:
3031
return str(self.value)

0 commit comments

Comments
 (0)