forked from DIRACGrid/diracx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_enums.py
More file actions
71 lines (49 loc) · 1.7 KB
/
_enums.py
File metadata and controls
71 lines (49 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# coding=utf-8
# --------------------------------------------------------------------------
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.4, generator: @autorest/python@6.34.2)
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
from enum import Enum
from azure.core import CaseInsensitiveEnumMeta
class ChecksumAlgorithm(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""ChecksumAlgorithm."""
SHA256 = "sha256"
class JobStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""JobStatus."""
SUBMITTING = "Submitting"
RECEIVED = "Received"
CHECKING = "Checking"
STAGING = "Staging"
WAITING = "Waiting"
MATCHED = "Matched"
RUNNING = "Running"
STALLED = "Stalled"
COMPLETING = "Completing"
DONE = "Done"
COMPLETED = "Completed"
FAILED = "Failed"
DELETED = "Deleted"
KILLED = "Killed"
RESCHEDULED = "Rescheduled"
class SandboxFormat(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""SandboxFormat."""
TAR_BZ2 = "tar.bz2"
class SandboxType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Sandbox Type."""
INPUT = "input"
OUTPUT = "output"
class ScalarSearchOperator(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""ScalarSearchOperator."""
EQ = "eq"
NEQ = "neq"
GT = "gt"
LT = "lt"
LIKE = "like"
class SortDirection(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""SortDirection."""
ASC = "asc"
DESC = "desc"
class VectorSearchOperator(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""VectorSearchOperator."""
IN = "in"
NOT_IN = "not in"