re-uploading work
This commit is contained in:
16
tests/generated_client/models/execution_status.py
Normal file
16
tests/generated_client/models/execution_status.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from enum import Enum
|
||||
|
||||
class ExecutionStatus(str, Enum):
|
||||
ABANDONED = "Abandoned"
|
||||
CANCELING = "Canceling"
|
||||
CANCELLED = "Cancelled"
|
||||
COMPLETED = "Completed"
|
||||
FAILED = "Failed"
|
||||
REQUESTED = "Requested"
|
||||
RUNNING = "Running"
|
||||
SCHEDULED = "Scheduled"
|
||||
SCHEDULING = "Scheduling"
|
||||
TIMEOUT = "Timeout"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
||||
Reference in New Issue
Block a user