diracx-client 0.0.1a12__py3-none-any.whl → 0.0.1a14__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- diracx/client/__init__.py +1 -1
- diracx/client/_client.py +1 -1
- diracx/client/_configuration.py +1 -1
- diracx/client/_vendor.py +1 -1
- diracx/client/aio/__init__.py +1 -1
- diracx/client/aio/_client.py +1 -1
- diracx/client/aio/_configuration.py +1 -1
- diracx/client/aio/_vendor.py +1 -1
- diracx/client/aio/operations/__init__.py +1 -1
- diracx/client/aio/operations/_operations.py +366 -40
- diracx/client/models/__init__.py +5 -3
- diracx/client/models/_enums.py +13 -6
- diracx/client/models/_models.py +1 -1
- diracx/client/operations/__init__.py +1 -1
- diracx/client/operations/_operations.py +473 -40
- {diracx_client-0.0.1a12.dist-info → diracx_client-0.0.1a14.dist-info}/METADATA +1 -1
- diracx_client-0.0.1a14.dist-info/RECORD +26 -0
- diracx_client-0.0.1a12.dist-info/RECORD +0 -26
- {diracx_client-0.0.1a12.dist-info → diracx_client-0.0.1a14.dist-info}/WHEEL +0 -0
- {diracx_client-0.0.1a12.dist-info → diracx_client-0.0.1a14.dist-info}/top_level.txt +0 -0
diracx/client/models/__init__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# coding=utf-8
|
2
2
|
# --------------------------------------------------------------------------
|
3
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.13.
|
3
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.13.9)
|
4
4
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
5
5
|
# --------------------------------------------------------------------------
|
6
6
|
|
@@ -38,13 +38,14 @@ from ._models import VectorSearchSpecValues
|
|
38
38
|
from ._enums import ChecksumAlgorithm
|
39
39
|
from ._enums import Enum0
|
40
40
|
from ._enums import Enum1
|
41
|
-
from ._enums import Enum10
|
42
41
|
from ._enums import Enum11
|
42
|
+
from ._enums import Enum12
|
43
43
|
from ._enums import Enum2
|
44
44
|
from ._enums import Enum3
|
45
45
|
from ._enums import Enum4
|
46
46
|
from ._enums import JobStatus
|
47
47
|
from ._enums import SandboxFormat
|
48
|
+
from ._enums import SandboxType
|
48
49
|
from ._enums import ScalarSearchOperator
|
49
50
|
from ._enums import VectorSearchOperator
|
50
51
|
from ._patch import __all__ as _patch_all
|
@@ -85,13 +86,14 @@ __all__ = [
|
|
85
86
|
"ChecksumAlgorithm",
|
86
87
|
"Enum0",
|
87
88
|
"Enum1",
|
88
|
-
"Enum10",
|
89
89
|
"Enum11",
|
90
|
+
"Enum12",
|
90
91
|
"Enum2",
|
91
92
|
"Enum3",
|
92
93
|
"Enum4",
|
93
94
|
"JobStatus",
|
94
95
|
"SandboxFormat",
|
96
|
+
"SandboxType",
|
95
97
|
"ScalarSearchOperator",
|
96
98
|
"VectorSearchOperator",
|
97
99
|
]
|
diracx/client/models/_enums.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# coding=utf-8
|
2
2
|
# --------------------------------------------------------------------------
|
3
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.13.
|
3
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.13.9)
|
4
4
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
5
5
|
# --------------------------------------------------------------------------
|
6
6
|
|
@@ -26,14 +26,14 @@ class Enum1(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
|
26
26
|
S256 = "S256"
|
27
27
|
|
28
28
|
|
29
|
-
class
|
30
|
-
"""
|
29
|
+
class Enum11(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
30
|
+
"""Enum11."""
|
31
31
|
|
32
32
|
ASC = "asc"
|
33
33
|
|
34
34
|
|
35
|
-
class
|
36
|
-
"""
|
35
|
+
class Enum12(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
36
|
+
"""Enum12."""
|
37
37
|
|
38
38
|
DSC = "dsc"
|
39
39
|
|
@@ -84,6 +84,13 @@ class SandboxFormat(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
|
84
84
|
TAR_BZ2 = "tar.bz2"
|
85
85
|
|
86
86
|
|
87
|
+
class SandboxType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
88
|
+
"""Sandbox Type."""
|
89
|
+
|
90
|
+
INPUT = "input"
|
91
|
+
OUTPUT = "output"
|
92
|
+
|
93
|
+
|
87
94
|
class ScalarSearchOperator(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
88
95
|
"""An enumeration."""
|
89
96
|
|
@@ -97,5 +104,5 @@ class ScalarSearchOperator(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
|
97
104
|
class VectorSearchOperator(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
98
105
|
"""An enumeration."""
|
99
106
|
|
100
|
-
|
107
|
+
IN_ENUM = "in"
|
101
108
|
NOT_IN = "not in"
|
diracx/client/models/_models.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# coding=utf-8
|
2
2
|
# pylint: disable=too-many-lines
|
3
3
|
# --------------------------------------------------------------------------
|
4
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.13.
|
4
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.13.9)
|
5
5
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
6
6
|
# --------------------------------------------------------------------------
|
7
7
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# coding=utf-8
|
2
2
|
# --------------------------------------------------------------------------
|
3
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.13.
|
3
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.13.9)
|
4
4
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
5
5
|
# --------------------------------------------------------------------------
|
6
6
|
|