diracx-client 0.0.1a19__py3-none-any.whl → 0.0.1a20__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/generated/__init__.py +3 -3
- diracx/client/generated/_client.py +1 -1
- diracx/client/generated/_configuration.py +1 -1
- diracx/client/generated/_serialization.py +3 -4
- diracx/client/generated/_vendor.py +1 -1
- diracx/client/generated/aio/__init__.py +3 -3
- diracx/client/generated/aio/_client.py +1 -1
- diracx/client/generated/aio/_configuration.py +1 -1
- diracx/client/generated/aio/_vendor.py +1 -1
- diracx/client/generated/aio/operations/__init__.py +2 -2
- diracx/client/generated/aio/operations/_operations.py +232 -319
- diracx/client/generated/models/__init__.py +2 -2
- diracx/client/generated/models/_enums.py +1 -1
- diracx/client/generated/models/_models.py +3 -4
- diracx/client/generated/operations/__init__.py +2 -2
- diracx/client/generated/operations/_operations.py +232 -319
- diracx/client/patches/aio/utils.py +15 -0
- diracx/client/patches/utils.py +17 -1
- {diracx_client-0.0.1a19.dist-info → diracx_client-0.0.1a20.dist-info}/METADATA +1 -2
- diracx_client-0.0.1a20.dist-info/RECORD +36 -0
- {diracx_client-0.0.1a19.dist-info → diracx_client-0.0.1a20.dist-info}/WHEEL +1 -1
- diracx_client-0.0.1a19.dist-info/RECORD +0 -36
- {diracx_client-0.0.1a19.dist-info → diracx_client-0.0.1a20.dist-info}/entry_points.txt +0 -0
- {diracx_client-0.0.1a19.dist-info → diracx_client-0.0.1a20.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
# coding=utf-8
|
2
2
|
# --------------------------------------------------------------------------
|
3
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.
|
3
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.26.0)
|
4
4
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
5
5
|
# --------------------------------------------------------------------------
|
6
6
|
|
@@ -9,13 +9,13 @@ from ._client import Dirac
|
|
9
9
|
try:
|
10
10
|
from ._patch import __all__ as _patch_all
|
11
11
|
from ._patch import * # pylint: disable=unused-wildcard-import
|
12
|
-
except
|
12
|
+
except ImportError:
|
13
13
|
_patch_all = []
|
14
14
|
from ._patch import patch_sdk as _patch_sdk
|
15
15
|
|
16
16
|
__all__ = [
|
17
17
|
"Dirac",
|
18
18
|
]
|
19
|
-
__all__.extend([p for p in _patch_all if p not in __all__])
|
19
|
+
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
|
20
20
|
|
21
21
|
_patch_sdk()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# coding=utf-8
|
2
2
|
# --------------------------------------------------------------------------
|
3
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.
|
3
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.26.0)
|
4
4
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
5
5
|
# --------------------------------------------------------------------------
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# coding=utf-8
|
2
2
|
# --------------------------------------------------------------------------
|
3
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.
|
3
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.26.0)
|
4
4
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
5
5
|
# --------------------------------------------------------------------------
|
6
6
|
|
@@ -1,4 +1,3 @@
|
|
1
|
-
# pylint: disable=too-many-lines
|
2
1
|
# --------------------------------------------------------------------------
|
3
2
|
#
|
4
3
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
@@ -235,7 +234,7 @@ except ImportError: # Python 2.7
|
|
235
234
|
:param datetime.timedelta offset: offset in timedelta format
|
236
235
|
"""
|
237
236
|
|
238
|
-
def __init__(self, offset):
|
237
|
+
def __init__(self, offset) -> None:
|
239
238
|
self.__offset = offset
|
240
239
|
|
241
240
|
def utcoffset(self, dt):
|
@@ -637,7 +636,7 @@ class Serializer(object): # pylint: disable=too-many-public-methods
|
|
637
636
|
"multiple": lambda x, y: x % y != 0,
|
638
637
|
}
|
639
638
|
|
640
|
-
def __init__(self, classes: Optional[Mapping[str, type]] = None):
|
639
|
+
def __init__(self, classes: Optional[Mapping[str, type]] = None) -> None:
|
641
640
|
self.serialize_type = {
|
642
641
|
"iso-8601": Serializer.serialize_iso,
|
643
642
|
"rfc-1123": Serializer.serialize_rfc,
|
@@ -1550,7 +1549,7 @@ class Deserializer(object):
|
|
1550
1549
|
r"\d{4}[-]\d{2}[-]\d{2}T\d{2}:\d{2}:\d{2}\.?\d*Z?[-+]?[\d{2}]?:?[\d{2}]?"
|
1551
1550
|
)
|
1552
1551
|
|
1553
|
-
def __init__(self, classes: Optional[Mapping[str, type]] = None):
|
1552
|
+
def __init__(self, classes: Optional[Mapping[str, type]] = None) -> None:
|
1554
1553
|
self.deserialize_type = {
|
1555
1554
|
"iso-8601": Deserializer.deserialize_iso,
|
1556
1555
|
"rfc-1123": Deserializer.deserialize_rfc,
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# --------------------------------------------------------------------------
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.26.0)
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
4
4
|
# --------------------------------------------------------------------------
|
5
5
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# coding=utf-8
|
2
2
|
# --------------------------------------------------------------------------
|
3
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.
|
3
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.26.0)
|
4
4
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
5
5
|
# --------------------------------------------------------------------------
|
6
6
|
|
@@ -9,13 +9,13 @@ from ._client import Dirac
|
|
9
9
|
try:
|
10
10
|
from ._patch import __all__ as _patch_all
|
11
11
|
from ._patch import * # pylint: disable=unused-wildcard-import
|
12
|
-
except
|
12
|
+
except ImportError:
|
13
13
|
_patch_all = []
|
14
14
|
from ._patch import patch_sdk as _patch_sdk
|
15
15
|
|
16
16
|
__all__ = [
|
17
17
|
"Dirac",
|
18
18
|
]
|
19
|
-
__all__.extend([p for p in _patch_all if p not in __all__])
|
19
|
+
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
|
20
20
|
|
21
21
|
_patch_sdk()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# coding=utf-8
|
2
2
|
# --------------------------------------------------------------------------
|
3
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.
|
3
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.26.0)
|
4
4
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
5
5
|
# --------------------------------------------------------------------------
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# coding=utf-8
|
2
2
|
# --------------------------------------------------------------------------
|
3
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.
|
3
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.26.0)
|
4
4
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
5
5
|
# --------------------------------------------------------------------------
|
6
6
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# --------------------------------------------------------------------------
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.26.0)
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
4
4
|
# --------------------------------------------------------------------------
|
5
5
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# coding=utf-8
|
2
2
|
# --------------------------------------------------------------------------
|
3
|
-
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.
|
3
|
+
# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/python@6.26.0)
|
4
4
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
5
5
|
# --------------------------------------------------------------------------
|
6
6
|
|
@@ -19,5 +19,5 @@ __all__ = [
|
|
19
19
|
"ConfigOperations",
|
20
20
|
"JobsOperations",
|
21
21
|
]
|
22
|
-
__all__.extend([p for p in _patch_all if p not in __all__])
|
22
|
+
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
|
23
23
|
_patch_sdk()
|