the jobq cluster workflow management tool backend
Backend service for the appliedAI infrastructure product
The version of the OpenAPI document: 0.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
ExecutionMode
Bases: str
, Enum
ExecutionMode
Source code in client/src/openapi_client/models/execution_mode.py
| class ExecutionMode(str, Enum):
"""
ExecutionMode
"""
"""
allowed enum values
"""
LOCAL = "local"
DOCKER = "docker"
KUEUE = "kueue"
RAYJOB = "rayjob"
@classmethod
def from_json(cls, json_str: str) -> Self:
"""Create an instance of ExecutionMode from a JSON string"""
return cls(json.loads(json_str))
|
from_json
classmethod
from_json(json_str: str) -> Self
Create an instance of ExecutionMode from a JSON string
Source code in client/src/openapi_client/models/execution_mode.py
| @classmethod
def from_json(cls, json_str: str) -> Self:
"""Create an instance of ExecutionMode from a JSON string"""
return cls(json.loads(json_str))
|