azure-quantum 2.5.0.dev2__py3-none-any.whl → 3.0.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 +11 -5
- azure/quantum/_client/_client.py +40 -49
- azure/quantum/_client/_configuration.py +34 -41
- azure/quantum/_client/_model_base.py +1159 -0
- azure/quantum/_client/_serialization.py +285 -172
- azure/quantum/_client/_version.py +1 -1
- azure/quantum/_client/models/__init__.py +41 -30
- azure/quantum/_client/models/_enums.py +34 -4
- azure/quantum/_client/models/_models.py +435 -764
- azure/quantum/_client/operations/__init__.py +16 -10
- azure/quantum/_client/operations/_operations.py +1191 -769
- azure/quantum/target/microsoft/elements/dft/target.py +4 -1
- azure/quantum/version.py +1 -1
- azure/quantum/workspace.py +371 -38
- {azure_quantum-2.5.0.dev2.dist-info → azure_quantum-3.0.0.dist-info}/METADATA +1 -1
- {azure_quantum-2.5.0.dev2.dist-info → azure_quantum-3.0.0.dist-info}/RECORD +18 -18
- azure/quantum/_client/_vendor.py +0 -20
- {azure_quantum-2.5.0.dev2.dist-info → azure_quantum-3.0.0.dist-info}/WHEEL +0 -0
- {azure_quantum-2.5.0.dev2.dist-info → azure_quantum-3.0.0.dist-info}/top_level.txt +0 -0
|
@@ -2,28 +2,34 @@
|
|
|
2
2
|
# --------------------------------------------------------------------------
|
|
3
3
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
# Licensed under the MIT License. See License.txt in the project root for license information.
|
|
5
|
-
# Code generated by Microsoft (R)
|
|
5
|
+
# Code generated by Microsoft (R) Python Code Generator.
|
|
6
6
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
7
|
# --------------------------------------------------------------------------
|
|
8
|
+
# pylint: disable=wrong-import-position
|
|
8
9
|
|
|
9
|
-
from
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
from .
|
|
13
|
-
|
|
14
|
-
from ._operations import
|
|
10
|
+
from typing import TYPE_CHECKING
|
|
11
|
+
|
|
12
|
+
if TYPE_CHECKING:
|
|
13
|
+
from ._patch import * # pylint: disable=unused-wildcard-import
|
|
14
|
+
|
|
15
|
+
from ._operations import JobsOperations # type: ignore
|
|
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
21
|
|
|
16
22
|
from ._patch import __all__ as _patch_all
|
|
17
|
-
from ._patch import *
|
|
23
|
+
from ._patch import *
|
|
18
24
|
from ._patch import patch_sdk as _patch_sdk
|
|
19
25
|
|
|
20
26
|
__all__ = [
|
|
21
27
|
"JobsOperations",
|
|
28
|
+
"SessionsOperations",
|
|
22
29
|
"ProvidersOperations",
|
|
23
30
|
"StorageOperations",
|
|
24
31
|
"QuotasOperations",
|
|
25
|
-
"SessionsOperations",
|
|
26
32
|
"TopLevelItemsOperations",
|
|
27
33
|
]
|
|
28
|
-
__all__.extend([p for p in _patch_all if p not in __all__])
|
|
34
|
+
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
|
|
29
35
|
_patch_sdk()
|