16 lines
334 B
Python
Raw Permalink Normal View History

2024-06-26 15:45:06 -04:00
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
from enum import Enum
class PipelineJobState(str, Enum):
2024-06-26 15:45:06 -04:00
SCHEDULED = "scheduled"
RUNNING = "running"
FAILED = "failed"
COMPLETE = "complete"
def __repr__(self):
"""Get a string representation."""
return f'"{self.value}"'