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.
Files changed (38) hide show
  1. azure/quantum/_client/__init__.py +2 -2
  2. azure/quantum/_client/_client.py +18 -57
  3. azure/quantum/_client/_configuration.py +13 -22
  4. azure/quantum/_client/_patch.py +7 -6
  5. azure/quantum/_client/_utils/__init__.py +6 -0
  6. azure/quantum/_client/{_model_base.py → _utils/model_base.py} +210 -45
  7. azure/quantum/_client/{_serialization.py → _utils/serialization.py} +74 -151
  8. azure/quantum/_client/_validation.py +66 -0
  9. azure/quantum/_client/_version.py +1 -1
  10. azure/quantum/_client/aio/__init__.py +29 -0
  11. azure/quantum/_client/aio/_client.py +110 -0
  12. azure/quantum/_client/aio/_configuration.py +75 -0
  13. azure/quantum/_client/aio/_patch.py +21 -0
  14. azure/quantum/_client/aio/operations/__init__.py +25 -0
  15. azure/quantum/_client/aio/operations/_operations.py +1988 -0
  16. azure/quantum/_client/aio/operations/_patch.py +21 -0
  17. azure/quantum/_client/models/__init__.py +8 -4
  18. azure/quantum/_client/models/_enums.py +28 -23
  19. azure/quantum/_client/models/_models.py +198 -106
  20. azure/quantum/_client/models/_patch.py +7 -6
  21. azure/quantum/_client/operations/__init__.py +2 -12
  22. azure/quantum/_client/operations/_operations.py +900 -715
  23. azure/quantum/_client/operations/_patch.py +7 -6
  24. azure/quantum/_constants.py +5 -0
  25. azure/quantum/_mgmt_client.py +18 -8
  26. azure/quantum/_workspace_connection_params.py +27 -2
  27. azure/quantum/job/base_job.py +8 -0
  28. azure/quantum/job/job.py +1 -1
  29. azure/quantum/job/session.py +11 -0
  30. azure/quantum/target/target.py +5 -1
  31. azure/quantum/target/target_factory.py +14 -7
  32. azure/quantum/version.py +1 -1
  33. azure/quantum/workspace.py +35 -31
  34. {azure_quantum-3.5.1.dev1.dist-info → azure_quantum-3.6.0.dist-info}/METADATA +1 -1
  35. azure_quantum-3.6.0.dist-info/RECORD +74 -0
  36. azure_quantum-3.5.1.dev1.dist-info/RECORD +0 -65
  37. {azure_quantum-3.5.1.dev1.dist-info → azure_quantum-3.6.0.dist-info}/WHEEL +0 -0
  38. {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 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
+ 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
- "JobsOperations",
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()