Skip to content

Commit 55c56ad

Browse files
authored
feat(domain): add a new task type for moving project (#282)
1 parent c8ada9b commit 55c56ad

File tree

2 files changed

+2
-0
lines changed
  • scaleway-async/scaleway_async/domain/v2beta1
  • scaleway/scaleway/domain/v2beta1

2 files changed

+2
-0
lines changed

scaleway-async/scaleway_async/domain/v2beta1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,7 @@ class TaskType(str, Enum, metaclass=StrEnumMeta):
338338
CREATE_HOST = "create_host"
339339
UPDATE_HOST = "update_host"
340340
DELETE_HOST = "delete_host"
341+
MOVE_PROJECT = "move_project"
341342

342343
def __str__(self) -> str:
343344
return str(self.value)

scaleway/scaleway/domain/v2beta1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,7 @@ class TaskType(str, Enum, metaclass=StrEnumMeta):
338338
CREATE_HOST = "create_host"
339339
UPDATE_HOST = "update_host"
340340
DELETE_HOST = "delete_host"
341+
MOVE_PROJECT = "move_project"
341342

342343
def __str__(self) -> str:
343344
return str(self.value)

0 commit comments

Comments
 (0)