azure-quantum 3.5.1.dev1__py3-none-any.whl → 3.6.0__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.
- azure/quantum/_client/__init__.py +2 -2
- azure/quantum/_client/_client.py +18 -57
- azure/quantum/_client/_configuration.py +13 -22
- azure/quantum/_client/_patch.py +7 -6
- azure/quantum/_client/_utils/__init__.py +6 -0
- azure/quantum/_client/{_model_base.py → _utils/model_base.py} +210 -45
- azure/quantum/_client/{_serialization.py → _utils/serialization.py} +74 -151
- azure/quantum/_client/_validation.py +66 -0
- azure/quantum/_client/_version.py +1 -1
- azure/quantum/_client/aio/__init__.py +29 -0
- azure/quantum/_client/aio/_client.py +110 -0
- azure/quantum/_client/aio/_configuration.py +75 -0
- azure/quantum/_client/aio/_patch.py +21 -0
- azure/quantum/_client/aio/operations/__init__.py +25 -0
- azure/quantum/_client/aio/operations/_operations.py +1988 -0
- azure/quantum/_client/aio/operations/_patch.py +21 -0
- azure/quantum/_client/models/__init__.py +8 -4
- azure/quantum/_client/models/_enums.py +28 -23
- azure/quantum/_client/models/_models.py +198 -106
- azure/quantum/_client/models/_patch.py +7 -6
- azure/quantum/_client/operations/__init__.py +2 -12
- azure/quantum/_client/operations/_operations.py +900 -715
- azure/quantum/_client/operations/_patch.py +7 -6
- azure/quantum/_constants.py +5 -0
- azure/quantum/_mgmt_client.py +18 -8
- azure/quantum/_workspace_connection_params.py +27 -2
- azure/quantum/job/base_job.py +8 -0
- azure/quantum/job/job.py +1 -1
- azure/quantum/job/session.py +11 -0
- azure/quantum/target/target.py +5 -1
- azure/quantum/target/target_factory.py +14 -7
- azure/quantum/version.py +1 -1
- azure/quantum/workspace.py +35 -31
- {azure_quantum-3.5.1.dev1.dist-info → azure_quantum-3.6.0.dist-info}/METADATA +1 -1
- azure_quantum-3.6.0.dist-info/RECORD +74 -0
- azure_quantum-3.5.1.dev1.dist-info/RECORD +0 -65
- {azure_quantum-3.5.1.dev1.dist-info → azure_quantum-3.6.0.dist-info}/WHEEL +0 -0
- {azure_quantum-3.5.1.dev1.dist-info → azure_quantum-3.6.0.dist-info}/top_level.txt +0 -0
|
@@ -12,24 +12,14 @@ from typing import TYPE_CHECKING
|
|
|
12
12
|
if TYPE_CHECKING:
|
|
13
13
|
from ._patch import * # pylint: disable=unused-wildcard-import
|
|
14
14
|
|
|
15
|
-
from ._operations import
|
|
16
|
-
from ._operations import SessionsOperations # type: ignore
|
|
17
|
-
from ._operations import ProvidersOperations # type: ignore
|
|
18
|
-
from ._operations import StorageOperations # type: ignore
|
|
19
|
-
from ._operations import QuotasOperations # type: ignore
|
|
20
|
-
from ._operations import TopLevelItemsOperations # type: ignore
|
|
15
|
+
from ._operations import ServicesOperations # type: ignore
|
|
21
16
|
|
|
22
17
|
from ._patch import __all__ as _patch_all
|
|
23
18
|
from ._patch import *
|
|
24
19
|
from ._patch import patch_sdk as _patch_sdk
|
|
25
20
|
|
|
26
21
|
__all__ = [
|
|
27
|
-
"
|
|
28
|
-
"SessionsOperations",
|
|
29
|
-
"ProvidersOperations",
|
|
30
|
-
"StorageOperations",
|
|
31
|
-
"QuotasOperations",
|
|
32
|
-
"TopLevelItemsOperations",
|
|
22
|
+
"ServicesOperations",
|
|
33
23
|
]
|
|
34
24
|
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
|
|
35
25
|
_patch_sdk()
|