Files
windmill/python-client/windmill-api/windmill_api/models/completed_job_job_kind.py
Ruben Fiszel f782e009cd sqlx
2024-01-16 23:46:46 +01:00

18 lines
479 B
Python

from enum import Enum
class CompletedJobJobKind(str, Enum):
APPDEPENDENCIES = "appdependencies"
DEPENDENCIES = "dependencies"
DEPLOYMENTCALLBACK = "deploymentcallback"
FLOW = "flow"
FLOWDEPENDENCIES = "flowdependencies"
FLOWPREVIEW = "flowpreview"
IDENTITY = "identity"
PREVIEW = "preview"
SCRIPT = "script"
SCRIPT_HUB = "script_hub"
SINGLESCRIPTFLOW = "singlescriptflow"
def __str__(self) -> str:
return str(self.value)