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

18 lines
476 B
Python

from enum import Enum
class QueuedJobJobKind(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)