Skip to content

Commit 7b533de

Browse files
feat(edge_services): add locked status to Pipeline (#926)
Co-authored-by: Jonathan R. <[email protected]>
1 parent f1eaabc commit 7b533de

File tree

2 files changed

+2
-0
lines changed
  • scaleway/scaleway/edge_services/v1beta1
  • scaleway-async/scaleway_async/edge_services/v1beta1

2 files changed

+2
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ class PipelineStatus(str, Enum, metaclass=StrEnumMeta):
183183
ERROR = "error"
184184
PENDING = "pending"
185185
WARNING = "warning"
186+
LOCKED = "locked"
186187

187188
def __str__(self) -> str:
188189
return str(self.value)

scaleway/scaleway/edge_services/v1beta1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ class PipelineStatus(str, Enum, metaclass=StrEnumMeta):
183183
ERROR = "error"
184184
PENDING = "pending"
185185
WARNING = "warning"
186+
LOCKED = "locked"
186187

187188
def __str__(self) -> str:
188189
return str(self.value)

0 commit comments

Comments
 (0)