Skip to content

job_status

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.

JobStatus

Bases: str, Enum

JobStatus

Source code in client/src/openapi_client/models/job_status.py
class JobStatus(str, Enum):
    """
    JobStatus
    """

    """
    allowed enum values
    """
    PENDING = "pending"
    EXECUTING = "executing"
    SUCCEEDED = "succeeded"
    FAILED = "failed"
    INADMISSIBLE = "inadmissible"

    @classmethod
    def from_json(cls, json_str: str) -> Self:
        """Create an instance of JobStatus from a JSON string"""
        return cls(json.loads(json_str))

from_json classmethod

from_json(json_str: str) -> Self

Create an instance of JobStatus from a JSON string

Source code in client/src/openapi_client/models/job_status.py
@classmethod
def from_json(cls, json_str: str) -> Self:
    """Create an instance of JobStatus from a JSON string"""
    return cls(json.loads(json_str))