qi-compute-api-client 0.56.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 (205) hide show
  1. compute_api_client/__init__.py +219 -0
  2. compute_api_client/api/__init__.py +23 -0
  3. compute_api_client/api/algorithms_api.py +1603 -0
  4. compute_api_client/api/auth_config_api.py +278 -0
  5. compute_api_client/api/backend_api.py +1540 -0
  6. compute_api_client/api/backend_types_api.py +1178 -0
  7. compute_api_client/api/batch_jobs_api.py +2224 -0
  8. compute_api_client/api/commits_api.py +1565 -0
  9. compute_api_client/api/files_api.py +1307 -0
  10. compute_api_client/api/final_results_api.py +847 -0
  11. compute_api_client/api/health_api.py +281 -0
  12. compute_api_client/api/jobs_api.py +1787 -0
  13. compute_api_client/api/languages_api.py +692 -0
  14. compute_api_client/api/members_api.py +1238 -0
  15. compute_api_client/api/metadata_api.py +930 -0
  16. compute_api_client/api/permissions_api.py +1295 -0
  17. compute_api_client/api/projects_api.py +1889 -0
  18. compute_api_client/api/reservations_api.py +1324 -0
  19. compute_api_client/api/results_api.py +1702 -0
  20. compute_api_client/api/teams_api.py +692 -0
  21. compute_api_client/api/transactions_api.py +805 -0
  22. compute_api_client/api/users_api.py +1305 -0
  23. compute_api_client/api_client.py +804 -0
  24. compute_api_client/api_response.py +21 -0
  25. compute_api_client/configuration.py +606 -0
  26. compute_api_client/docs/Algorithm.md +34 -0
  27. compute_api_client/docs/AlgorithmIn.md +33 -0
  28. compute_api_client/docs/AlgorithmType.md +12 -0
  29. compute_api_client/docs/AlgorithmsApi.md +428 -0
  30. compute_api_client/docs/AuthConfig.md +31 -0
  31. compute_api_client/docs/AuthConfigApi.md +71 -0
  32. compute_api_client/docs/Backend.md +35 -0
  33. compute_api_client/docs/BackendApi.md +418 -0
  34. compute_api_client/docs/BackendIn.md +34 -0
  35. compute_api_client/docs/BackendMessage.md +29 -0
  36. compute_api_client/docs/BackendPatch.md +31 -0
  37. compute_api_client/docs/BackendStatus.md +16 -0
  38. compute_api_client/docs/BackendType.md +48 -0
  39. compute_api_client/docs/BackendTypePatch.md +45 -0
  40. compute_api_client/docs/BackendTypesApi.md +289 -0
  41. compute_api_client/docs/BackendWithAuthentication.md +36 -0
  42. compute_api_client/docs/BatchJob.md +39 -0
  43. compute_api_client/docs/BatchJobIn.md +29 -0
  44. compute_api_client/docs/BatchJobStatus.md +18 -0
  45. compute_api_client/docs/BatchJobsApi.md +600 -0
  46. compute_api_client/docs/Commit.md +33 -0
  47. compute_api_client/docs/CommitIn.md +30 -0
  48. compute_api_client/docs/CommitsApi.md +425 -0
  49. compute_api_client/docs/CompilePayload.md +30 -0
  50. compute_api_client/docs/CompileStage.md +18 -0
  51. compute_api_client/docs/Domain.md +14 -0
  52. compute_api_client/docs/File.md +36 -0
  53. compute_api_client/docs/FileIn.md +35 -0
  54. compute_api_client/docs/FilesApi.md +346 -0
  55. compute_api_client/docs/FinalResult.md +32 -0
  56. compute_api_client/docs/FinalResultIn.md +30 -0
  57. compute_api_client/docs/FinalResultsApi.md +248 -0
  58. compute_api_client/docs/HTTPBadRequestError.md +29 -0
  59. compute_api_client/docs/HTTPNotFoundError.md +29 -0
  60. compute_api_client/docs/HTTPValidationError.md +29 -0
  61. compute_api_client/docs/HealthApi.md +72 -0
  62. compute_api_client/docs/Job.md +42 -0
  63. compute_api_client/docs/JobIn.md +32 -0
  64. compute_api_client/docs/JobPatch.md +34 -0
  65. compute_api_client/docs/JobStatus.md +18 -0
  66. compute_api_client/docs/JobsApi.md +460 -0
  67. compute_api_client/docs/Language.md +31 -0
  68. compute_api_client/docs/LanguagesApi.md +177 -0
  69. compute_api_client/docs/LocationInner.md +27 -0
  70. compute_api_client/docs/Member.md +33 -0
  71. compute_api_client/docs/MemberId.md +28 -0
  72. compute_api_client/docs/MemberIn.md +32 -0
  73. compute_api_client/docs/MembersApi.md +331 -0
  74. compute_api_client/docs/PageAlgorithm.md +33 -0
  75. compute_api_client/docs/PageBackend.md +33 -0
  76. compute_api_client/docs/PageBackendType.md +33 -0
  77. compute_api_client/docs/PageBatchJob.md +33 -0
  78. compute_api_client/docs/PageCommit.md +33 -0
  79. compute_api_client/docs/PageFile.md +33 -0
  80. compute_api_client/docs/PageJob.md +33 -0
  81. compute_api_client/docs/PageLanguage.md +33 -0
  82. compute_api_client/docs/PageMember.md +33 -0
  83. compute_api_client/docs/PageMetadata.md +32 -0
  84. compute_api_client/docs/PagePermission.md +33 -0
  85. compute_api_client/docs/PagePermissionGroup.md +33 -0
  86. compute_api_client/docs/PageProject.md +33 -0
  87. compute_api_client/docs/PageReservation.md +33 -0
  88. compute_api_client/docs/PageResult.md +33 -0
  89. compute_api_client/docs/PageTeam.md +33 -0
  90. compute_api_client/docs/PageTransaction.md +33 -0
  91. compute_api_client/docs/PageUser.md +33 -0
  92. compute_api_client/docs/Permission.md +31 -0
  93. compute_api_client/docs/PermissionGroup.md +30 -0
  94. compute_api_client/docs/PermissionsApi.md +340 -0
  95. compute_api_client/docs/Project.md +34 -0
  96. compute_api_client/docs/ProjectIn.md +32 -0
  97. compute_api_client/docs/ProjectPatch.md +32 -0
  98. compute_api_client/docs/ProjectsApi.md +502 -0
  99. compute_api_client/docs/Reservation.md +35 -0
  100. compute_api_client/docs/ReservationIn.md +32 -0
  101. compute_api_client/docs/ReservationsApi.md +341 -0
  102. compute_api_client/docs/Result.md +36 -0
  103. compute_api_client/docs/ResultIn.md +34 -0
  104. compute_api_client/docs/ResultsApi.md +439 -0
  105. compute_api_client/docs/Role.md +12 -0
  106. compute_api_client/docs/ShareType.md +14 -0
  107. compute_api_client/docs/Team.md +32 -0
  108. compute_api_client/docs/TeamsApi.md +177 -0
  109. compute_api_client/docs/Transaction.md +35 -0
  110. compute_api_client/docs/TransactionDomain.md +28 -0
  111. compute_api_client/docs/TransactionsApi.md +190 -0
  112. compute_api_client/docs/User.md +36 -0
  113. compute_api_client/docs/UserIn.md +35 -0
  114. compute_api_client/docs/UsersApi.md +338 -0
  115. compute_api_client/docs/ValidationError.md +31 -0
  116. compute_api_client/docs/ValidationErrorLocInner.md +28 -0
  117. compute_api_client/exceptions.py +216 -0
  118. compute_api_client/models/__init__.py +84 -0
  119. compute_api_client/models/algorithm.py +105 -0
  120. compute_api_client/models/algorithm_in.py +103 -0
  121. compute_api_client/models/algorithm_type.py +37 -0
  122. compute_api_client/models/auth_config.py +91 -0
  123. compute_api_client/models/backend.py +106 -0
  124. compute_api_client/models/backend_in.py +104 -0
  125. compute_api_client/models/backend_message.py +87 -0
  126. compute_api_client/models/backend_patch.py +112 -0
  127. compute_api_client/models/backend_status.py +39 -0
  128. compute_api_client/models/backend_type.py +145 -0
  129. compute_api_client/models/backend_type_patch.py +205 -0
  130. compute_api_client/models/backend_with_authentication.py +108 -0
  131. compute_api_client/models/batch_job.py +130 -0
  132. compute_api_client/models/batch_job_in.py +87 -0
  133. compute_api_client/models/batch_job_status.py +40 -0
  134. compute_api_client/models/commit.py +97 -0
  135. compute_api_client/models/commit_in.py +89 -0
  136. compute_api_client/models/compile_payload.py +95 -0
  137. compute_api_client/models/compile_stage.py +40 -0
  138. compute_api_client/models/domain.py +38 -0
  139. compute_api_client/models/file.py +108 -0
  140. compute_api_client/models/file_in.py +106 -0
  141. compute_api_client/models/final_result.py +94 -0
  142. compute_api_client/models/final_result_in.py +89 -0
  143. compute_api_client/models/http_bad_request_error.py +87 -0
  144. compute_api_client/models/http_not_found_error.py +87 -0
  145. compute_api_client/models/http_validation_error.py +95 -0
  146. compute_api_client/models/job.py +131 -0
  147. compute_api_client/models/job_in.py +98 -0
  148. compute_api_client/models/job_patch.py +99 -0
  149. compute_api_client/models/job_status.py +40 -0
  150. compute_api_client/models/language.py +92 -0
  151. compute_api_client/models/location_inner.py +144 -0
  152. compute_api_client/models/member.py +96 -0
  153. compute_api_client/models/member_id.py +144 -0
  154. compute_api_client/models/member_in.py +94 -0
  155. compute_api_client/models/metadata.py +93 -0
  156. compute_api_client/models/metadata_in.py +94 -0
  157. compute_api_client/models/page_algorithm.py +104 -0
  158. compute_api_client/models/page_backend.py +104 -0
  159. compute_api_client/models/page_backend_type.py +104 -0
  160. compute_api_client/models/page_batch_job.py +104 -0
  161. compute_api_client/models/page_commit.py +104 -0
  162. compute_api_client/models/page_file.py +104 -0
  163. compute_api_client/models/page_job.py +104 -0
  164. compute_api_client/models/page_language.py +104 -0
  165. compute_api_client/models/page_member.py +104 -0
  166. compute_api_client/models/page_metadata.py +125 -0
  167. compute_api_client/models/page_permission.py +104 -0
  168. compute_api_client/models/page_permission_group.py +104 -0
  169. compute_api_client/models/page_project.py +104 -0
  170. compute_api_client/models/page_reservation.py +104 -0
  171. compute_api_client/models/page_result.py +104 -0
  172. compute_api_client/models/page_team.py +104 -0
  173. compute_api_client/models/page_transaction.py +104 -0
  174. compute_api_client/models/page_user.py +104 -0
  175. compute_api_client/models/permission.py +92 -0
  176. compute_api_client/models/permission_group.py +90 -0
  177. compute_api_client/models/project.py +99 -0
  178. compute_api_client/models/project_in.py +94 -0
  179. compute_api_client/models/project_patch.py +114 -0
  180. compute_api_client/models/reservation.py +105 -0
  181. compute_api_client/models/reservation_in.py +94 -0
  182. compute_api_client/models/result.py +122 -0
  183. compute_api_client/models/result_in.py +117 -0
  184. compute_api_client/models/role.py +37 -0
  185. compute_api_client/models/share_type.py +38 -0
  186. compute_api_client/models/team.py +94 -0
  187. compute_api_client/models/transaction.py +117 -0
  188. compute_api_client/models/transaction_domain.py +142 -0
  189. compute_api_client/models/user.py +102 -0
  190. compute_api_client/models/user_in.py +100 -0
  191. compute_api_client/models/validation_error.py +99 -0
  192. compute_api_client/models/validation_error_loc_inner.py +138 -0
  193. compute_api_client/rest.py +213 -0
  194. qi2_shared/__init__.py +0 -0
  195. qi2_shared/authentication.py +66 -0
  196. qi2_shared/client.py +52 -0
  197. qi2_shared/hybrid/__init__.py +0 -0
  198. qi2_shared/hybrid/quantum_interface.py +45 -0
  199. qi2_shared/pagination.py +44 -0
  200. qi2_shared/settings.py +68 -0
  201. qi2_shared/utils.py +13 -0
  202. qi_compute_api_client-0.56.0.dist-info/METADATA +266 -0
  203. qi_compute_api_client-0.56.0.dist-info/RECORD +205 -0
  204. qi_compute_api_client-0.56.0.dist-info/WHEEL +4 -0
  205. qi_compute_api_client-0.56.0.dist-info/licenses/LICENSE.md +142 -0
@@ -0,0 +1,266 @@
1
+ Metadata-Version: 2.4
2
+ Name: qi-compute-api-client
3
+ Version: 0.56.0
4
+ Summary: An API client for the Compute Job Manager of Quantum Inspire.
5
+ Project-URL: Repository, https://github.com/QuTech-Delft/compute-api-client
6
+ Author-email: Quantum Inspire <support@quantum-inspire.eu>
7
+ License-Expression: Apache-2.0
8
+ License-File: LICENSE.md
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Requires-Python: <3.14,>=3.10
17
+ Requires-Dist: aiohttp-retry==2.9.1
18
+ Requires-Dist: aiohttp==3.13.3
19
+ Requires-Dist: pydantic==2.12.5
20
+ Requires-Dist: python-dateutil==2.9.0.post0
21
+ Requires-Dist: requests==2.32.5
22
+ Requires-Dist: typing-extensions==4.15.0
23
+ Requires-Dist: urllib3==2.6.3
24
+ Description-Content-Type: text/markdown
25
+
26
+ # compute-api-client
27
+
28
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
29
+
30
+ The `compute_api_client` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech)
31
+ project:
32
+
33
+ - API version: 0.1.0
34
+ - Package version: 1.0.0
35
+ - Generator version: 7.14.0
36
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
37
+
38
+ ## Requirements.
39
+
40
+ Python 3.9+
41
+
42
+ ## Installation & Usage
43
+
44
+ This python library package is generated without supporting files like setup.py or requirements files
45
+
46
+ To be able to use it, you will need these dependencies in your own package that uses this library:
47
+
48
+ - urllib3 >= 2.1.0, < 3.0.0
49
+ - python-dateutil >= 2.8.2
50
+ - aiohttp >= 3.8.4
51
+ - aiohttp-retry >= 2.8.3
52
+ - pydantic >= 2
53
+ - typing-extensions >= 4.7.1
54
+
55
+ ## Getting Started
56
+
57
+ In your own code, to use this library to connect and interact with compute-api-client, you can run the following:
58
+
59
+ ```python
60
+
61
+ import compute_api_client
62
+ from compute_api_client.rest import ApiException
63
+ from pprint import pprint
64
+
65
+ # Defining the host is optional and defaults to http://localhost
66
+ # See configuration.py for a list of all supported configuration parameters.
67
+ configuration = compute_api_client.Configuration(
68
+ host = "http://localhost"
69
+ )
70
+
71
+ # The client must configure the authentication and authorization parameters
72
+ # in accordance with the API server security policy.
73
+ # Examples for each auth method are provided below, use the example that
74
+ # satisfies your auth use case.
75
+
76
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
77
+
78
+
79
+ # Enter a context with an instance of the API client
80
+ async with compute_api_client.ApiClient(configuration) as api_client:
81
+ # Create an instance of the API class
82
+ api_instance = compute_api_client.AlgorithmsApi(api_client)
83
+ algorithm_in = compute_api_client.AlgorithmIn() # AlgorithmIn |
84
+
85
+ try:
86
+ # Create algorithm
87
+ api_response = await api_instance.create_algorithm_algorithms_post(algorithm_in)
88
+ print("The response of AlgorithmsApi->create_algorithm_algorithms_post:\n")
89
+ pprint(api_response)
90
+ except ApiException as e:
91
+ print("Exception when calling AlgorithmsApi->create_algorithm_algorithms_post: %s\n" % e)
92
+
93
+ ```
94
+
95
+ ## Documentation for API Endpoints
96
+
97
+ All URIs are relative to _http://localhost_
98
+
99
+ | Class | Method | HTTP request | Description |
100
+ | ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------- | ------------------------------------------ |
101
+ | _AlgorithmsApi_ | [**create_algorithm_algorithms_post**](compute_api_client/docs/AlgorithmsApi.md#create_algorithm_algorithms_post) | **POST** /algorithms | Create algorithm |
102
+ | _AlgorithmsApi_ | [**delete_algorithm_algorithms_id_delete**](compute_api_client/docs/AlgorithmsApi.md#delete_algorithm_algorithms_id_delete) | **DELETE** /algorithms/{id} | Destroy algorithm |
103
+ | _AlgorithmsApi_ | [**read_algorithm_algorithms_id_get**](compute_api_client/docs/AlgorithmsApi.md#read_algorithm_algorithms_id_get) | **GET** /algorithms/{id} | Retrieve algorithm |
104
+ | _AlgorithmsApi_ | [**read_algorithms_algorithms_get**](compute_api_client/docs/AlgorithmsApi.md#read_algorithms_algorithms_get) | **GET** /algorithms | List algorithms |
105
+ | _AlgorithmsApi_ | [**update_algorithm_algorithms_id_put**](compute_api_client/docs/AlgorithmsApi.md#update_algorithm_algorithms_id_put) | **PUT** /algorithms/{id} | Update algorithm |
106
+ | _AuthConfigApi_ | [**auth_config_auth_config_get**](compute_api_client/docs/AuthConfigApi.md#auth_config_auth_config_get) | **GET** /auth_config | Get suggested authentication configuration |
107
+ | _BackendApi_ | [**create_backend_backends_post**](compute_api_client/docs/BackendApi.md#create_backend_backends_post) | **POST** /backends | Create backend |
108
+ | _BackendApi_ | [**read_backend_backends_id_get**](compute_api_client/docs/BackendApi.md#read_backend_backends_id_get) | **GET** /backends/{id} | Retrieve backend |
109
+ | _BackendApi_ | [**read_backend_self_backends_me_get**](compute_api_client/docs/BackendApi.md#read_backend_self_backends_me_get) | **GET** /backends/me | Retrieve backend |
110
+ | _BackendApi_ | [**read_backends_backends_get**](compute_api_client/docs/BackendApi.md#read_backends_backends_get) | **GET** /backends | List backends |
111
+ | _BackendApi_ | [**update_backend_self_backends_me_patch**](compute_api_client/docs/BackendApi.md#update_backend_self_backends_me_patch) | **PATCH** /backends/me | Update backend |
112
+ | _BackendTypesApi_ | [**read_backend_type_backend_types_id_get**](compute_api_client/docs/BackendTypesApi.md#read_backend_type_backend_types_id_get) | **GET** /backend_types/{id} | Retrieve backend type |
113
+ | _BackendTypesApi_ | [**read_backend_types_backend_types_get**](compute_api_client/docs/BackendTypesApi.md#read_backend_types_backend_types_get) | **GET** /backend_types/ | List backend types |
114
+ | _BackendTypesApi_ | [**update_backend_type_backend_types_me_patch**](compute_api_client/docs/BackendTypesApi.md#update_backend_type_backend_types_me_patch) | **PATCH** /backend_types/me | Update backend type |
115
+ | _BatchJobsApi_ | [**create_batch_job_batch_jobs_post**](compute_api_client/docs/BatchJobsApi.md#create_batch_job_batch_jobs_post) | **POST** /batch_jobs | Create batch job |
116
+ | _BatchJobsApi_ | [**enqueue_batch_job_batch_jobs_id_enqueue_patch**](compute_api_client/docs/BatchJobsApi.md#enqueue_batch_job_batch_jobs_id_enqueue_patch) | **PATCH** /batch_jobs/{id}/enqueue | Enqueue batch job for execution |
117
+ | _BatchJobsApi_ | [**finish_batch_job_batch_jobs_id_finish_patch**](compute_api_client/docs/BatchJobsApi.md#finish_batch_job_batch_jobs_id_finish_patch) | **PATCH** /batch_jobs/{id}/finish | Finish batch job |
118
+ | _BatchJobsApi_ | [**peek_batch_job_batch_jobs_peek_patch**](compute_api_client/docs/BatchJobsApi.md#peek_batch_job_batch_jobs_peek_patch) | **PATCH** /batch_jobs/peek | Peek batch job |
119
+ | _BatchJobsApi_ | [**pop_batch_job_batch_jobs_pop_patch**](compute_api_client/docs/BatchJobsApi.md#pop_batch_job_batch_jobs_pop_patch) | **PATCH** /batch_jobs/pop | Take batch job |
120
+ | _BatchJobsApi_ | [**read_batch_jobs_batch_jobs_get**](compute_api_client/docs/BatchJobsApi.md#read_batch_jobs_batch_jobs_get) | **GET** /batch_jobs | List batch jobs |
121
+ | _BatchJobsApi_ | [**unpop_batch_job_batch_jobs_id_unpop_patch**](compute_api_client/docs/BatchJobsApi.md#unpop_batch_job_batch_jobs_id_unpop_patch) | **PATCH** /batch_jobs/{id}/unpop | Take batch job |
122
+ | _CommitsApi_ | [**compile_commit_commits_id_compile_post**](compute_api_client/docs/CommitsApi.md#compile_commit_commits_id_compile_post) | **POST** /commits/{id}/compile | Compile file in a commit |
123
+ | _CommitsApi_ | [**create_commit_commits_post**](compute_api_client/docs/CommitsApi.md#create_commit_commits_post) | **POST** /commits | Create commit |
124
+ | _CommitsApi_ | [**delete_commit_commits_id_delete**](compute_api_client/docs/CommitsApi.md#delete_commit_commits_id_delete) | **DELETE** /commits/{id} | Destroy commit |
125
+ | _CommitsApi_ | [**read_commit_commits_id_get**](compute_api_client/docs/CommitsApi.md#read_commit_commits_id_get) | **GET** /commits/{id} | Get commit by ID |
126
+ | _CommitsApi_ | [**read_commits_commits_get**](compute_api_client/docs/CommitsApi.md#read_commits_commits_get) | **GET** /commits | List commits |
127
+ | _FilesApi_ | [**create_file_files_post**](compute_api_client/docs/FilesApi.md#create_file_files_post) | **POST** /files | Create file |
128
+ | _FilesApi_ | [**delete_file_files_id_delete**](compute_api_client/docs/FilesApi.md#delete_file_files_id_delete) | **DELETE** /files/{id} | Destroy file |
129
+ | _FilesApi_ | [**read_file_files_id_get**](compute_api_client/docs/FilesApi.md#read_file_files_id_get) | **GET** /files/{id} | Retrieve file |
130
+ | _FilesApi_ | [**read_files_files_get**](compute_api_client/docs/FilesApi.md#read_files_files_get) | **GET** /files | List files |
131
+ | _FinalResultsApi_ | [**create_final_result_final_results_post**](compute_api_client/docs/FinalResultsApi.md#create_final_result_final_results_post) | **POST** /final_results | Create final result |
132
+ | _FinalResultsApi_ | [**read_final_result_by_job_id_final_results_job_job_id_get**](compute_api_client/docs/FinalResultsApi.md#read_final_result_by_job_id_final_results_job_job_id_get) | **GET** /final_results/job/{job_id} | Retrieve final result by job ID |
133
+ | _FinalResultsApi_ | [**read_final_result_final_results_id_get**](compute_api_client/docs/FinalResultsApi.md#read_final_result_final_results_id_get) | **GET** /final_results/{id} | Retrieve final result |
134
+ | _HealthApi_ | [**healthz_healthz_get**](compute_api_client/docs/HealthApi.md#healthz_healthz_get) | **GET** /healthz | Report health |
135
+ | _JobsApi_ | [**create_job_jobs_post**](compute_api_client/docs/JobsApi.md#create_job_jobs_post) | **POST** /jobs | Create job |
136
+ | _JobsApi_ | [**delete_job_jobs_id_delete**](compute_api_client/docs/JobsApi.md#delete_job_jobs_id_delete) | **DELETE** /jobs/{id} | Destroy job |
137
+ | _JobsApi_ | [**read_job_jobs_id_get**](compute_api_client/docs/JobsApi.md#read_job_jobs_id_get) | **GET** /jobs/{id} | Retrieve job |
138
+ | _JobsApi_ | [**read_jobs_jobs_get**](compute_api_client/docs/JobsApi.md#read_jobs_jobs_get) | **GET** /jobs | List jobs |
139
+ | _JobsApi_ | [**update_job_status_jobs_id_patch**](compute_api_client/docs/JobsApi.md#update_job_status_jobs_id_patch) | **PATCH** /jobs/{id} | Update Job Status |
140
+ | _LanguagesApi_ | [**read_language_languages_id_get**](compute_api_client/docs/LanguagesApi.md#read_language_languages_id_get) | **GET** /languages/{id} | Retrieve language |
141
+ | _LanguagesApi_ | [**read_languages_languages_get**](compute_api_client/docs/LanguagesApi.md#read_languages_languages_get) | **GET** /languages | List languages |
142
+ | _MembersApi_ | [**create_member_members_post**](compute_api_client/docs/MembersApi.md#create_member_members_post) | **POST** /members | Create member |
143
+ | _MembersApi_ | [**delete_member_members_id_delete**](compute_api_client/docs/MembersApi.md#delete_member_members_id_delete) | **DELETE** /members/{id} | Destroy member |
144
+ | _MembersApi_ | [**read_member_members_id_get**](compute_api_client/docs/MembersApi.md#read_member_members_id_get) | **GET** /members/{id} | Retrieve member |
145
+ | _MembersApi_ | [**read_members_members_get**](compute_api_client/docs/MembersApi.md#read_members_members_get) | **GET** /members | List members |
146
+ | _PermissionsApi_ | [**read_permission_group_permission_groups_id_get**](compute_api_client/docs/PermissionsApi.md#read_permission_group_permission_groups_id_get) | **GET** /permission_groups/{id} | Retrieve permission groups |
147
+ | _PermissionsApi_ | [**read_permission_groups_permission_groups_get**](compute_api_client/docs/PermissionsApi.md#read_permission_groups_permission_groups_get) | **GET** /permission_groups/ | List permission groups |
148
+ | _PermissionsApi_ | [**read_permission_permissions_id_get**](compute_api_client/docs/PermissionsApi.md#read_permission_permissions_id_get) | **GET** /permissions/{id} | Retrieve permissions |
149
+ | _PermissionsApi_ | [**read_permissions_permissions_get**](compute_api_client/docs/PermissionsApi.md#read_permissions_permissions_get) | **GET** /permissions/ | List permissions |
150
+ | _ProjectsApi_ | [**create_project_projects_post**](compute_api_client/docs/ProjectsApi.md#create_project_projects_post) | **POST** /projects | Create project |
151
+ | _ProjectsApi_ | [**delete_project_projects_id_delete**](compute_api_client/docs/ProjectsApi.md#delete_project_projects_id_delete) | **DELETE** /projects/{id} | Destroy project |
152
+ | _ProjectsApi_ | [**partial_update_project_projects_id_patch**](compute_api_client/docs/ProjectsApi.md#partial_update_project_projects_id_patch) | **PATCH** /projects/{id} | Partially update project |
153
+ | _ProjectsApi_ | [**read_project_projects_id_get**](compute_api_client/docs/ProjectsApi.md#read_project_projects_id_get) | **GET** /projects/{id} | Retrieve project |
154
+ | _ProjectsApi_ | [**read_projects_projects_get**](compute_api_client/docs/ProjectsApi.md#read_projects_projects_get) | **GET** /projects | List projects |
155
+ | _ProjectsApi_ | [**update_project_projects_id_put**](compute_api_client/docs/ProjectsApi.md#update_project_projects_id_put) | **PUT** /projects/{id} | Update project |
156
+ | _ReservationsApi_ | [**create_reservation_reservations_post**](compute_api_client/docs/ReservationsApi.md#create_reservation_reservations_post) | **POST** /reservations | Create reservation |
157
+ | _ReservationsApi_ | [**read_reservation_reservations_id_get**](compute_api_client/docs/ReservationsApi.md#read_reservation_reservations_id_get) | **GET** /reservations/{id} | Retrieve reservation |
158
+ | _ReservationsApi_ | [**read_reservations_reservations_get**](compute_api_client/docs/ReservationsApi.md#read_reservations_reservations_get) | **GET** /reservations | List reservations |
159
+ | _ReservationsApi_ | [**terminate_reservation_reservations_id_terminate_patch**](compute_api_client/docs/ReservationsApi.md#terminate_reservation_reservations_id_terminate_patch) | **PATCH** /reservations/{id}/terminate | Terminate reservation |
160
+ | _ResultsApi_ | [**create_result_results_post**](compute_api_client/docs/ResultsApi.md#create_result_results_post) | **POST** /results | Create result |
161
+ | _ResultsApi_ | [**delete_results_by_job_id_results_job_job_id_delete**](compute_api_client/docs/ResultsApi.md#delete_results_by_job_id_results_job_job_id_delete) | **DELETE** /results/job/{job_id} | Delete results by job ID |
162
+ | _ResultsApi_ | [**read_result_results_id_get**](compute_api_client/docs/ResultsApi.md#read_result_results_id_get) | **GET** /results/{id} | Retrieve result |
163
+ | _ResultsApi_ | [**read_results_by_algorithm_id_results_algorithm_algorithm_id_get**](compute_api_client/docs/ResultsApi.md#read_results_by_algorithm_id_results_algorithm_algorithm_id_get) | **GET** /results/algorithm/{algorithm_id} | Retrieve results by algorithm ID |
164
+ | _ResultsApi_ | [**read_results_by_job_id_results_job_job_id_get**](compute_api_client/docs/ResultsApi.md#read_results_by_job_id_results_job_job_id_get) | **GET** /results/job/{job_id} | Retrieve results by job ID |
165
+ | _TeamsApi_ | [**read_team_teams_id_get**](compute_api_client/docs/TeamsApi.md#read_team_teams_id_get) | **GET** /teams/{id} | Retrieve teams |
166
+ | _TeamsApi_ | [**read_teams_teams_get**](compute_api_client/docs/TeamsApi.md#read_teams_teams_get) | **GET** /teams/ | List teams |
167
+ | _TransactionsApi_ | [**read_transaction_transactions_id_get**](compute_api_client/docs/TransactionsApi.md#read_transaction_transactions_id_get) | **GET** /transactions/{id} | Retrieve transactions |
168
+ | _TransactionsApi_ | [**read_transactions_transactions_get**](compute_api_client/docs/TransactionsApi.md#read_transactions_transactions_get) | **GET** /transactions/ | List transactions |
169
+ | _UsersApi_ | [**create_user_users_post**](compute_api_client/docs/UsersApi.md#create_user_users_post) | **POST** /users | Create user |
170
+ | _UsersApi_ | [**delete_user_users_id_delete**](compute_api_client/docs/UsersApi.md#delete_user_users_id_delete) | **DELETE** /users/{id} | Destroy user |
171
+ | _UsersApi_ | [**read_user_users_id_get**](compute_api_client/docs/UsersApi.md#read_user_users_id_get) | **GET** /users/{id} | Retrieve user |
172
+ | _UsersApi_ | [**read_users_users_get**](compute_api_client/docs/UsersApi.md#read_users_users_get) | **GET** /users | List users |
173
+
174
+ ## Documentation For Models
175
+
176
+ - [Algorithm](compute_api_client/docs/Algorithm.md)
177
+ - [AlgorithmIn](compute_api_client/docs/AlgorithmIn.md)
178
+ - [AlgorithmType](compute_api_client/docs/AlgorithmType.md)
179
+ - [AuthConfig](compute_api_client/docs/AuthConfig.md)
180
+ - [Backend](compute_api_client/docs/Backend.md)
181
+ - [BackendIn](compute_api_client/docs/BackendIn.md)
182
+ - [BackendMessage](compute_api_client/docs/BackendMessage.md)
183
+ - [BackendPatch](compute_api_client/docs/BackendPatch.md)
184
+ - [BackendStatus](compute_api_client/docs/BackendStatus.md)
185
+ - [BackendType](compute_api_client/docs/BackendType.md)
186
+ - [BackendTypePatch](compute_api_client/docs/BackendTypePatch.md)
187
+ - [BackendWithAuthentication](compute_api_client/docs/BackendWithAuthentication.md)
188
+ - [BatchJob](compute_api_client/docs/BatchJob.md)
189
+ - [BatchJobIn](compute_api_client/docs/BatchJobIn.md)
190
+ - [BatchJobStatus](compute_api_client/docs/BatchJobStatus.md)
191
+ - [Commit](compute_api_client/docs/Commit.md)
192
+ - [CommitIn](compute_api_client/docs/CommitIn.md)
193
+ - [CompilePayload](compute_api_client/docs/CompilePayload.md)
194
+ - [CompileStage](compute_api_client/docs/CompileStage.md)
195
+ - [Domain](compute_api_client/docs/Domain.md)
196
+ - [File](compute_api_client/docs/File.md)
197
+ - [FileIn](compute_api_client/docs/FileIn.md)
198
+ - [FinalResult](compute_api_client/docs/FinalResult.md)
199
+ - [FinalResultIn](compute_api_client/docs/FinalResultIn.md)
200
+ - [HTTPBadRequestError](compute_api_client/docs/HTTPBadRequestError.md)
201
+ - [HTTPNotFoundError](compute_api_client/docs/HTTPNotFoundError.md)
202
+ - [HTTPValidationError](compute_api_client/docs/HTTPValidationError.md)
203
+ - [Job](compute_api_client/docs/Job.md)
204
+ - [JobIn](compute_api_client/docs/JobIn.md)
205
+ - [JobPatch](compute_api_client/docs/JobPatch.md)
206
+ - [JobStatus](compute_api_client/docs/JobStatus.md)
207
+ - [Language](compute_api_client/docs/Language.md)
208
+ - [Member](compute_api_client/docs/Member.md)
209
+ - [MemberIn](compute_api_client/docs/MemberIn.md)
210
+ - [PageAlgorithm](compute_api_client/docs/PageAlgorithm.md)
211
+ - [PageBackend](compute_api_client/docs/PageBackend.md)
212
+ - [PageBackendType](compute_api_client/docs/PageBackendType.md)
213
+ - [PageBatchJob](compute_api_client/docs/PageBatchJob.md)
214
+ - [PageCommit](compute_api_client/docs/PageCommit.md)
215
+ - [PageFile](compute_api_client/docs/PageFile.md)
216
+ - [PageJob](compute_api_client/docs/PageJob.md)
217
+ - [PageLanguage](compute_api_client/docs/PageLanguage.md)
218
+ - [PageMember](compute_api_client/docs/PageMember.md)
219
+ - [PagePermission](compute_api_client/docs/PagePermission.md)
220
+ - [PagePermissionGroup](compute_api_client/docs/PagePermissionGroup.md)
221
+ - [PageProject](compute_api_client/docs/PageProject.md)
222
+ - [PageReservation](compute_api_client/docs/PageReservation.md)
223
+ - [PageResult](compute_api_client/docs/PageResult.md)
224
+ - [PageTeam](compute_api_client/docs/PageTeam.md)
225
+ - [PageTransaction](compute_api_client/docs/PageTransaction.md)
226
+ - [PageUser](compute_api_client/docs/PageUser.md)
227
+ - [Permission](compute_api_client/docs/Permission.md)
228
+ - [PermissionGroup](compute_api_client/docs/PermissionGroup.md)
229
+ - [Project](compute_api_client/docs/Project.md)
230
+ - [ProjectIn](compute_api_client/docs/ProjectIn.md)
231
+ - [ProjectPatch](compute_api_client/docs/ProjectPatch.md)
232
+ - [Reservation](compute_api_client/docs/Reservation.md)
233
+ - [ReservationIn](compute_api_client/docs/ReservationIn.md)
234
+ - [Result](compute_api_client/docs/Result.md)
235
+ - [ResultIn](compute_api_client/docs/ResultIn.md)
236
+ - [Role](compute_api_client/docs/Role.md)
237
+ - [ShareType](compute_api_client/docs/ShareType.md)
238
+ - [Team](compute_api_client/docs/Team.md)
239
+ - [Transaction](compute_api_client/docs/Transaction.md)
240
+ - [User](compute_api_client/docs/User.md)
241
+ - [UserIn](compute_api_client/docs/UserIn.md)
242
+ - [ValidationError](compute_api_client/docs/ValidationError.md)
243
+ - [ValidationErrorLocInner](compute_api_client/docs/ValidationErrorLocInner.md)
244
+
245
+ <a id="documentation-for-authorization"></a>
246
+
247
+ ## Documentation For Authorization
248
+
249
+ Authentication schemes defined for the API: <a id="user_bearer"></a>
250
+
251
+ ### user_bearer
252
+
253
+ - **Type**: OAuth
254
+ - **Flow**: accessCode
255
+ - **Authorization URL**: https://auth.dev.quantum-inspire.com/authorize
256
+ - **Scopes**: N/A
257
+
258
+ <a id="backend"></a>
259
+
260
+ ### backend
261
+
262
+ - **Type**: API key
263
+ - **API key parameter name**: Authorization
264
+ - **Location**: HTTP header
265
+
266
+ ## Author
@@ -0,0 +1,205 @@
1
+ compute_api_client/__init__.py,sha256=A1Imu8W8jOl-9pcPnbebJBP7Ns-Z7kTk0fq48BZsU3s,9667
2
+ compute_api_client/api_client.py,sha256=SLcAKIowmIv73k5MibmNhhUioLJEdH52Qf-2bGqCU7o,27849
3
+ compute_api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ compute_api_client/configuration.py,sha256=R08xDRxZ7K7tJq3GMcDvUZV3hTmZbnUMMMgnhPgYc_g,18863
5
+ compute_api_client/exceptions.py,sha256=Cn8fmDJi6fO0_TNXMP67exDSHmq9I1PHNZOoI27K33M,6481
6
+ compute_api_client/rest.py,sha256=J9NR-WV0btN8Fmtyn7hhRjk-JtCAO3YXI_jXV3vD9mY,7306
7
+ compute_api_client/api/__init__.py,sha256=c0okte7rJ_FIjMajgwLD08jM0z1TjYJOhKcAvXNPvbs,1204
8
+ compute_api_client/api/algorithms_api.py,sha256=zOFeYYpkJ1J-P1D1cbZPoXBS7MrgIc1tcpxvfGLGWh8,60284
9
+ compute_api_client/api/auth_config_api.py,sha256=NQgT52Wj_PFB7kEswFx83UqNTCgRTMkRrIag7mpQkh8,10411
10
+ compute_api_client/api/backend_api.py,sha256=o6i0oogBrlHZ_sOjV-S0XYO01kU2wW7H7sWJnmlpuD8,58434
11
+ compute_api_client/api/backend_types_api.py,sha256=iIE1eLB8UbsXtEtqSAumGzb7yX2gnw88m5_JPEFmebw,45717
12
+ compute_api_client/api/batch_jobs_api.py,sha256=YCB3xglRtsmHBA2DnpCMuGo1o8j5Z8-tbsOMjFZs9jA,85159
13
+ compute_api_client/api/commits_api.py,sha256=wZn6v4FqVMpEHNdVHZRzBM_8nLCv-1ZXo2p1Ha0Uys4,58798
14
+ compute_api_client/api/files_api.py,sha256=txgfJ8Qexf11ot4lWD-nYYhHCEIAt4j83290YK4U7lc,48546
15
+ compute_api_client/api/final_results_api.py,sha256=A4igdegm58qmZCqgF5YqFQQethcoKHGL443guOOYKVE,32170
16
+ compute_api_client/api/health_api.py,sha256=_xV0IeTzTSFMBXQCXkTClKL0tcfv6hLkeSXfXOon74w,10277
17
+ compute_api_client/api/jobs_api.py,sha256=v9qbDKB9JHY5GphUJiRp0sXmAP971_Z_E0YY5_2POzs,66361
18
+ compute_api_client/api/languages_api.py,sha256=fid5qYNWd4zYv_HZvcvAfsEPRm73BFJ7-S3CDefoEcE,25900
19
+ compute_api_client/api/members_api.py,sha256=SQEptcASvOETOxad_wBViVI1VNsSEtyjPS_8ZAB5FKw,46368
20
+ compute_api_client/api/metadata_api.py,sha256=eLy_tlOhIUxoPDHMI779eALslCr3AxynUysIW_yaGuY,35288
21
+ compute_api_client/api/permissions_api.py,sha256=sDXk44nOLPH4KR6sger-DvEJlIIeHgUa9THU8DR5Cyk,49964
22
+ compute_api_client/api/projects_api.py,sha256=KmtCG7nbF8x6U0RbznWLtrWtqrVBS-rPWk2nUpBwLpg,72017
23
+ compute_api_client/api/reservations_api.py,sha256=S2zQz2hknaD68_6xKhc8RFJyX_6QU65qYdVYgHNfDVc,50558
24
+ compute_api_client/api/results_api.py,sha256=i8WyZATxtZx2KdF6st3WpASwIPufn2T8lVCF-mq_sWM,65252
25
+ compute_api_client/api/teams_api.py,sha256=4FvWlxx5NsThtTTmEMghZfalkj_LGViU89Th1rvMwPs,25891
26
+ compute_api_client/api/transactions_api.py,sha256=uTyMQXzqLpzbJtYjL_ThsuXiCCWmqQz5DaL7VjBwPlo,30093
27
+ compute_api_client/api/users_api.py,sha256=mRiYwSPp11wwn_3vtWfsP2xwSalTD45KvHGwEPuGB14,48389
28
+ compute_api_client/docs/Algorithm.md,sha256=3OofL3zRnVsD9N__xdZPvMX-1eJDXrJjtZrpWWlc4mM,1129
29
+ compute_api_client/docs/AlgorithmIn.md,sha256=y14M0Yc0CBtWjWbvxZSk2xTDXTNgsGuZlM6DEio3qlY,1134
30
+ compute_api_client/docs/AlgorithmType.md,sha256=4wFCmLdTHTefcJY1y8Kp7JGtPsrMO-QCBqE8TOSlEcE,257
31
+ compute_api_client/docs/AlgorithmsApi.md,sha256=SQ2rqCThN4rVQRp-s7e0htR_OndNcs96rRPvaKoHIiY,14379
32
+ compute_api_client/docs/AuthConfig.md,sha256=MzC39o6A0Ro0qEJtZPfFyhpRo1Oh6BedEqC3MX_RB5A,904
33
+ compute_api_client/docs/AuthConfigApi.md,sha256=qS4sGnpf-m4kNkUKtOKcplwyq2hJ1Fy59IRFatUb_lo,2041
34
+ compute_api_client/docs/Backend.md,sha256=B-ff__OzHalHtQeeHE1OR1_75HbuNebr7oR7EdEBLOw,1210
35
+ compute_api_client/docs/BackendApi.md,sha256=3f9Y-NgQJssOYf_RGAW-ifs3WpHcCLenTRJFxvgT9rk,13891
36
+ compute_api_client/docs/BackendIn.md,sha256=J2I7SPB9Eoh8xttbEE3HWZ_8OjhaICCwnG3x0IzIMJk,1198
37
+ compute_api_client/docs/BackendMessage.md,sha256=yIGxi-3a7NHvVl0A_cM4aWGIE53RIjPy38RCW2L4p0c,933
38
+ compute_api_client/docs/BackendPatch.md,sha256=uLcYtEElDfVZyDKvcKE0EtagwbfhJSrFU1dxhsIl058,1021
39
+ compute_api_client/docs/BackendStatus.md,sha256=2gVmq69WI4iOdlUS1lMc5jNB9iShc0v1NLfKmRMxkqg,333
40
+ compute_api_client/docs/BackendType.md,sha256=3hl4G8hL-kA0MsqRHopvghOkFfLyS5ff-VTc8LLzNUQ,2190
41
+ compute_api_client/docs/BackendTypePatch.md,sha256=v5_5-dkXf45oo80EGOxyqMXrv6ft8vteDRPpOEwJZnY,1693
42
+ compute_api_client/docs/BackendTypesApi.md,sha256=_wqtQ1eqwNSaXOBXyzGzTtoGZNNqZwlmGd5ggmjcIlE,11218
43
+ compute_api_client/docs/BackendWithAuthentication.md,sha256=yvMd4U8yYXEFHgjqHHRCNVlA3tvWLBA6krvGMRqgI-g,1534
44
+ compute_api_client/docs/BatchJob.md,sha256=YpW6_QplSCKGJyoDJyYSZAsS02hxjUxHQfnSznirofs,1385
45
+ compute_api_client/docs/BatchJobIn.md,sha256=RWKjIJudZwhYYpKpPrdFGBQt0MCuUAM1sig1jvLUPS4,866
46
+ compute_api_client/docs/BatchJobStatus.md,sha256=VNNyKjup6_xftwKlTlOwZcahl-Ku-uCmV-RJ0jhPcmg,364
47
+ compute_api_client/docs/BatchJobsApi.md,sha256=2vcvO__OMq9I8o98GoFXRnoe68Y3c4z2xj3rhWi3v2g,20883
48
+ compute_api_client/docs/Commit.md,sha256=8eHVfA-4nGEW9szDUjewNKTBLk7nk2Ghl9iV1rTZVO8,1027
49
+ compute_api_client/docs/CommitIn.md,sha256=H7QY5qOuKh7bp5Rp4QYJ6BKKxuBylQRiPh9JiaJc9hQ,895
50
+ compute_api_client/docs/CommitsApi.md,sha256=HYMEGfpdOfLZu9oGBVwqyqKovmY5DtRel8TgK4WA2_s,13691
51
+ compute_api_client/docs/CompilePayload.md,sha256=X3bgOUc1k1RKmnNZlLahzMpOBBCZDHGFmFS-xubh5v4,987
52
+ compute_api_client/docs/CompileStage.md,sha256=nwyHUnhmYsERa8mvI0bmc9ib96GgW7adk4urXs3jNzo,376
53
+ compute_api_client/docs/Domain.md,sha256=-sseFbVYIm97Ut_bll2hf8nn6NfHP7nPuVrmV3BgSt8,294
54
+ compute_api_client/docs/File.md,sha256=tjnvPXausAfFy_jThmPDpnOKM3spyzdYhOo8G1Sx9VY,1199
55
+ compute_api_client/docs/FileIn.md,sha256=_kD8lzbjh5YPNt6CKMxvwm6QG1VypdbqvJxS6Iuk3wc,1219
56
+ compute_api_client/docs/FilesApi.md,sha256=hbYMvBKl5EgThCKeebxphkpmjAZnidvj4xP_vIuWSVo,11127
57
+ compute_api_client/docs/FinalResult.md,sha256=bcW0ccjukT5xLwTnahby6feW7FK26GjD3kakBWWdUw8,1050
58
+ compute_api_client/docs/FinalResultIn.md,sha256=IVr9196swQXDcoBL0jGfx-Z59tx7VcvC3zEgkO3IjKY,965
59
+ compute_api_client/docs/FinalResultsApi.md,sha256=OEvTGTstrW3zyh1fHxPOQliiG_Og88w5DZqshUuQPlM,8110
60
+ compute_api_client/docs/HTTPBadRequestError.md,sha256=K9cu4eXcLESHcFL4uCaFb6dNtO4nndScTjNNc2WKIdk,961
61
+ compute_api_client/docs/HTTPNotFoundError.md,sha256=PlmfusM_JEpogkbvH-7fdc7jOKRDP8FfoCT47kdjpP0,935
62
+ compute_api_client/docs/HTTPValidationError.md,sha256=-K36rM5pU8CnTGs4VWaCaby0xIcKiq6GvwanJMY2c1o,1006
63
+ compute_api_client/docs/HealthApi.md,sha256=Zd378O_Bk6Y5Z7okpHxUl33xUmcL47askc2NA4f6IZ4,1806
64
+ compute_api_client/docs/Job.md,sha256=zuQqDF2xi_pXm96Dy4HmgNvHciIpv81hAK6Wc7tCmAc,1610
65
+ compute_api_client/docs/JobIn.md,sha256=rwYKqw78pMokvV-m1SEB2pzV1NDpjdDkZy8s5XGNIlk,996
66
+ compute_api_client/docs/JobPatch.md,sha256=AyLcRiP0KlY7KeO88vFpuEd1QZQUGcWWef9Ey0HmBiM,1364
67
+ compute_api_client/docs/JobStatus.md,sha256=HGP9DLxgpqDK4ZK-nrZ_PCcQZGdIFT3PZniphSIqxwA,363
68
+ compute_api_client/docs/JobsApi.md,sha256=JMd-8_t45n7x_pPBBb42lFVIxiRlMAHhwBUWpUBvzsQ,15721
69
+ compute_api_client/docs/Language.md,sha256=gaGLoa8KuoH_h0dnSFrxFbrAhfMtoYtjqb9Hg2-1pFY,914
70
+ compute_api_client/docs/LanguagesApi.md,sha256=DRfj-jmNCDjQPB8ABV7fRv0BukgTkIQ1Wc3zK9TiIYw,5939
71
+ compute_api_client/docs/LocationInner.md,sha256=Z1Z8_cF7hlrfoOGVKoWz-ZhSQ457HKDdE_nXzZ9TPCA,843
72
+ compute_api_client/docs/Member.md,sha256=ShGQ1zXe7H34Am-m5pmjSDd8UMTFBsdeEq9k0KK67F4,995
73
+ compute_api_client/docs/MemberId.md,sha256=n17ubzfG7dKaGtAQTl2WfcwnLjp6gZ65iw2flRwUGM0,829
74
+ compute_api_client/docs/MemberIn.md,sha256=NY86hFNVTOX8f8IS_C2m-Mz4SLi9iM_DsYJqQxLO44g,1013
75
+ compute_api_client/docs/MembersApi.md,sha256=tCh7U4QfsitiZYOZkmbMT6tMwJyedt_r_AhHqehbmz0,10448
76
+ compute_api_client/docs/PageAlgorithm.md,sha256=dliJVZjP4fN4NB0r-YgZHtH9-XxIeNlA2V7oZsbQlNA,1000
77
+ compute_api_client/docs/PageBackend.md,sha256=Lu1kAmSJYtHOdn5gwRb0frZL3sJwHJdBAKiBZHOhBuA,970
78
+ compute_api_client/docs/PageBackendType.md,sha256=pXEw3kz6aVb_OwIUtZ8js-ZEspBsfshEy4tc8ugyHWY,1036
79
+ compute_api_client/docs/PageBatchJob.md,sha256=r02rWBCf83SmCnIsltuBrBOjf0GjhkK_lvZKY9P9EsY,991
80
+ compute_api_client/docs/PageCommit.md,sha256=yiUUmjT4aVycAcu2s-cB6O07XhZFJR-KEHPU8CcoxiA,955
81
+ compute_api_client/docs/PageFile.md,sha256=2yw7BfKBJnnX3QNxqarb2B7KB8Fr8eK9hcfpRF3e71w,925
82
+ compute_api_client/docs/PageJob.md,sha256=PyVOjmq7HFVUqS3B2nz5u3tfuey7aO_KexBN1m4OZ2E,910
83
+ compute_api_client/docs/PageLanguage.md,sha256=jdvCbqGlslFC92Ez-cQqvgd1V3MNKTc_oTPTdnxz94k,985
84
+ compute_api_client/docs/PageMember.md,sha256=O9mPHLG5cCaZLNxsuKr0ej9buMpkHGY7OgcRHHIX4xs,955
85
+ compute_api_client/docs/PageMetadata.md,sha256=CPL3LTSh-_U_TaGwYZF6IGfdN4iYdDTsXrSjolHo9p8,995
86
+ compute_api_client/docs/PagePermission.md,sha256=fYNvUjHOj_SwMvee_I9KF_nFNrkG7d-kKnMtCyNCYmo,1015
87
+ compute_api_client/docs/PagePermissionGroup.md,sha256=cOzyIv4CPlFb84uTNqP-Ck40ZrMM87o7dVMEAvi7NNs,1096
88
+ compute_api_client/docs/PageProject.md,sha256=rMtM77ss8AN6oZexJsktBaB60U5PIYxzFLGClyip7bU,970
89
+ compute_api_client/docs/PageReservation.md,sha256=_bpmTHI5P1jDz-8uMvkiPulWz2pQpATGcfId-EHZON0,1030
90
+ compute_api_client/docs/PageResult.md,sha256=anxEGf8W4B9Nl1rDPvq-LlQY3OXYlvrkYKw2DDFyzTQ,955
91
+ compute_api_client/docs/PageTeam.md,sha256=vE6fClxbdf_uDbrwItHJXlK1JhDAsjKUIj8fh8KHEF8,925
92
+ compute_api_client/docs/PageTransaction.md,sha256=pQRBB7XJmUixg9JeCvQ8F8u5ZJeZX7dP5ldgnpbmq0g,1030
93
+ compute_api_client/docs/PageUser.md,sha256=MZQIwOVLEBQbwgL-mtmazTPR6RO0FAW1Gcs37NW3xi4,925
94
+ compute_api_client/docs/Permission.md,sha256=ra0VJ8dB6ietQKezS25_Z55vQFeVjcr307kPCX31_pA,949
95
+ compute_api_client/docs/PermissionGroup.md,sha256=tO18NICGyRSXLlqjF93XITApSIZiXAbsiEA4WCF4LA0,980
96
+ compute_api_client/docs/PermissionsApi.md,sha256=G_Mvdh4_vxUeyeI8TinNNl53WwPphJ1qL9VJ0g6vE48,11959
97
+ compute_api_client/docs/Project.md,sha256=WtuL6RCdcI1URVIz7BzGSZkJzbKIvRK75ZlkogXXtc0,1091
98
+ compute_api_client/docs/ProjectIn.md,sha256=VMk0yMeXoQF20oo05hzCJegWQUELuUiTFyJG7wpXVe8,1035
99
+ compute_api_client/docs/ProjectPatch.md,sha256=xK7AMqAAVS3jOzHZfg_hzHn7oSxOCMGBdNfp5jVj2WI,990
100
+ compute_api_client/docs/ProjectsApi.md,sha256=eG4kCM_diiDs6jHJAqHDR4S3wfnbIYow3rTndCqdFrg,16551
101
+ compute_api_client/docs/Reservation.md,sha256=uckBnu0Ql3d5wS_2hbOhb_NkgH56hY-nh-EdV4qDzEY,1231
102
+ compute_api_client/docs/ReservationIn.md,sha256=9jn5eb3n5feNMHYVSWwwmR3C9oxXwfHYX5--FmUHEo8,1111
103
+ compute_api_client/docs/ReservationsApi.md,sha256=N0VV6gKdfIHvRrH0VgSJ5Uev6UPUa-pmiaS6eYpWWHc,11993
104
+ compute_api_client/docs/Result.md,sha256=ZpRzGeZVaozHXSkqt8_uFAsNiAYQZeWBzRJ_ztYw_Sg,1126
105
+ compute_api_client/docs/ResultIn.md,sha256=A2k-97rA_8TZMmHNks20wka3Buqih0vfb4PqvtX62qk,1096
106
+ compute_api_client/docs/ResultsApi.md,sha256=yj29orehALEcNkwpaqRCC4mUqM1MIJQH-oEBhidbeLI,15540
107
+ compute_api_client/docs/Role.md,sha256=1p4hxhmLie4SDG20_hvNsgYxO3r5qSIEBapIJCOFtR8,244
108
+ compute_api_client/docs/ShareType.md,sha256=qBop8XMAaeamGw3sO4QdnwqZluHjtzA1lIE1bJnomUo,287
109
+ compute_api_client/docs/Team.md,sha256=fz88wPqtd5ZT3pqqrvN6cqcsr_G8FY4lcOcN7h62IKo,914
110
+ compute_api_client/docs/TeamsApi.md,sha256=uicb74i4OaCRwIz26XUEzdJMQ40UOQatbYcSUl1Yp4c,5773
111
+ compute_api_client/docs/Transaction.md,sha256=_ZeH6zXAXeWirzJfQDtcOghznYkQFY5VK2fDt-D9yYE,1132
112
+ compute_api_client/docs/TransactionDomain.md,sha256=NPuQmt5wfIjA418jhKMmDMm3yqKQLWaaZHoSkoSB_tw,930
113
+ compute_api_client/docs/TransactionsApi.md,sha256=jbVs69lwuPpnuZiViPaLb6BbjrRcmGxQICGfSB-d_ds,7043
114
+ compute_api_client/docs/User.md,sha256=FVCChzxtN7gx8UrZwDWOZ_8hy5MAR1jfgw9lV059CKs,1148
115
+ compute_api_client/docs/UserIn.md,sha256=aGezJgYNuc3lgTpepDXJlxoRAr-qfobCE49DJZIVMfs,1255
116
+ compute_api_client/docs/UsersApi.md,sha256=4pGacZPlSaPG0F-_6F0woBfpkJ7aGb-4EYBo8yNAkLY,10726
117
+ compute_api_client/docs/ValidationError.md,sha256=st8KdclCickB_Z3PcFc0Hj_Uj-D1wedAiyPgfSI5uJ0,999
118
+ compute_api_client/docs/ValidationErrorLocInner.md,sha256=_gJ18YzPmLj-eW_zCtKCinArmj-pbk1-_W8NOJLkA70,986
119
+ compute_api_client/models/__init__.py,sha256=woPtv2uTTIz3Tjekj627t9nToT8EN8GFBtYQBmeejn8,4623
120
+ compute_api_client/models/algorithm.py,sha256=DeGJ7qtZdMcAt5wWb_3QYBXX_gX1BFaqoQvI-aMUuhk,3544
121
+ compute_api_client/models/algorithm_in.py,sha256=87W8ChY6FL16m6Xc_uqNoFS5_XnZIUmwxcdICBmG_3U,3463
122
+ compute_api_client/models/algorithm_type.py,sha256=f2LbG7zH5Y_92tf7m8aM5MZNJHUz3_mLkSqVDfMrKiQ,764
123
+ compute_api_client/models/auth_config.py,sha256=3WfqEKPx-Y1KsPwtICm4iV6s6j9Ex3Y5cFDQfJwt5-Y,2692
124
+ compute_api_client/models/backend.py,sha256=yA3nCVsBJnTTkEtl3nNou0ub5nTz2m-XToN3n4PJeRg,3859
125
+ compute_api_client/models/backend_in.py,sha256=l74Oj13tpSU9gIsXuOkfpeQMjF1ew0BJ_IIzFfP6o1I,3765
126
+ compute_api_client/models/backend_message.py,sha256=EVSBosHFHtpi1iPDJm9zWYzZTxUvjNI_OeOhVxhz0gM,2621
127
+ compute_api_client/models/backend_patch.py,sha256=gjcN-9px_CBvzAxVNdE6N7J7HnP9IH2VIXGUPqrcu8Y,3776
128
+ compute_api_client/models/backend_status.py,sha256=umoSjN7QQEr35V2pMlmCHH60qPfBnNrRu2dfAAvkpCw,820
129
+ compute_api_client/models/backend_type.py,sha256=PKTPGwj2-ZYP5tIzv-F3yBGRRTCBboDwPxGAhNrkrSk,6659
130
+ compute_api_client/models/backend_type_patch.py,sha256=1obZFdw25OIlDXo5ZqKY8_6TxTCfYm-HOFdYGhqiaRA,8706
131
+ compute_api_client/models/backend_with_authentication.py,sha256=vTwxIZOH6NlxRx01Pzhwifk0krRTYZQumc9I0vJFo-o,4158
132
+ compute_api_client/models/batch_job.py,sha256=0SweYP6ZOaRT3jall-wtvmD1ZrpM-30HdQitYAmRwRs,4857
133
+ compute_api_client/models/batch_job_in.py,sha256=eDy7x3rOX8LXJCzAAkG67rkRST5WjgcFlDoU5pl2snQ,2560
134
+ compute_api_client/models/batch_job_status.py,sha256=4E-fC7_3BbPfElBm5bDb_9ohCGldsycgOP_f2v10-pk,843
135
+ compute_api_client/models/commit.py,sha256=yPjANNrU7x5a8DAEz_WbrERFuRF-CdD8WvOuuiqaK1E,3164
136
+ compute_api_client/models/commit_in.py,sha256=4gNTYZWUwoGJ62pSXqIyvIVWIXuzFgR5oYRF4H0RkDI,2700
137
+ compute_api_client/models/compile_payload.py,sha256=o0SXT6mOecny3_dEwyVoybvYNQ6nc9xXQl6FcI9_eaA,3009
138
+ compute_api_client/models/compile_stage.py,sha256=59OewFLXCXKl6ZJUHF8sFs4WXtPiHbQrGDDiCgYLzfM,851
139
+ compute_api_client/models/domain.py,sha256=3WDbAeoGlHbs5yR2a3ZSRsPxzrBsx7QOufZeMBWuEZA,777
140
+ compute_api_client/models/file.py,sha256=2QdIOHgeHxXqVHsVrik8p1jywGsrnpgy6rJb5IKRiTw,3823
141
+ compute_api_client/models/file_in.py,sha256=7GrgvCTUrjjTmKLjBqe7kAb2Xjh-tCT-VBgP3XUoXeE,3804
142
+ compute_api_client/models/final_result.py,sha256=5ng8H4eDkCFbFLrBKS0TWh2InOrja5ZEBiU0EnDANLU,2957
143
+ compute_api_client/models/final_result_in.py,sha256=-GiFqttusNwrgJE5OPvFIwXhnu8xq54ek1Rg4KGKFfs,2684
144
+ compute_api_client/models/http_bad_request_error.py,sha256=zKCCAOZDFlUYUbFULzCsbtfLyGijowLrJJ2rUYk8EXE,2510
145
+ compute_api_client/models/http_not_found_error.py,sha256=Ez8TmrJMD6a4oHL2vY1Y-I2njv7UCfWt7v3WPu7vKOI,2502
146
+ compute_api_client/models/http_validation_error.py,sha256=yg1nMAEY8_ZpyS0z6Nb7sfHRvj2zpq3MmG0P8B5Rwd8,3018
147
+ compute_api_client/models/job.py,sha256=NCvu6ksTEvW2ds7U9YJRFg2gBXji3eWtOdZ4Dns-AaA,5216
148
+ compute_api_client/models/job_in.py,sha256=T6P3TBMP75nrKAhPiJoXCVMgNA0cLyhfXvUA3XGbEbs,3299
149
+ compute_api_client/models/job_patch.py,sha256=QypyeDJsjamYprrj42p97AXUSg2oyWmxjch9Z0gQARk,3799
150
+ compute_api_client/models/job_status.py,sha256=7qnOwARjMoeCVnKHZm1-kvBI7fMx3W9zCzHI7lp5jwg,832
151
+ compute_api_client/models/language.py,sha256=uy9v05N2QJJBAkrljEHLtN33L3YEDqxgllFzA5Vfgtc,2856
152
+ compute_api_client/models/location_inner.py,sha256=h2NaeDVOxZszCCG3rilEBBlPsFLckpZxCxrnvP0s_pw,4866
153
+ compute_api_client/models/member.py,sha256=liisdRIwsJUGTJv0t043gq7p1BkqgVA62imBC-jlDGM,3030
154
+ compute_api_client/models/member_id.py,sha256=nVY-3RUaI2ZseXygvhjLyZtVB554HAiZtOmXp83EjXo,4863
155
+ compute_api_client/models/member_in.py,sha256=vkvwrMZB3NcSvPlJx2IKcljBBTkl82mGzpVD69DMw-g,3019
156
+ compute_api_client/models/metadata.py,sha256=igNeLm7Wlaclp5hRsOKWRUtgf21y02sLTJ8xrs9hOPY,2615
157
+ compute_api_client/models/metadata_in.py,sha256=LxBqiLnepqHj5t4nnx8gT55UeNjdV90WhwHuZEcP3vo,2699
158
+ compute_api_client/models/page_algorithm.py,sha256=FYU5D0ALdBs14_Eq1ALK5Kpm-9Lxr-4NUnIbkPbf-i4,3369
159
+ compute_api_client/models/page_backend.py,sha256=tt-dTch528j2QO-kTmgZTKexxn8sfjRsVc9z0hgetF0,3353
160
+ compute_api_client/models/page_backend_type.py,sha256=vhNmO0zwLV1HRSJ27Zu5oCU9KG-VlbkPSwbMyOEZJ_g,3386
161
+ compute_api_client/models/page_batch_job.py,sha256=zQFNVxFWuFm2TqpJEq9CQ7dwRSbzMf_9vxHeSNxII9E,3362
162
+ compute_api_client/models/page_commit.py,sha256=ZdvRqdAbwxdSW0X2MLhxa_pNfV08uSfDgaL6Xd7YeDs,3345
163
+ compute_api_client/models/page_file.py,sha256=fxzNl2Nu4uRHQPO3Wo6ismqzVQ-r_E7EnIKc5q_h7mw,3329
164
+ compute_api_client/models/page_job.py,sha256=omgDuqDLiS0PorK9TlcY7NcsVj6TY1Ta8GKG9xxfRlQ,3321
165
+ compute_api_client/models/page_language.py,sha256=38gT_R13kFwB-pxkdPtsXHZ-Zq1VRNn9iHlvjFHyhWU,3361
166
+ compute_api_client/models/page_member.py,sha256=y6EDAhRIc_5w9onjRtXj8LdTc4c4gawxh95lIyimq3U,3345
167
+ compute_api_client/models/page_metadata.py,sha256=d6ns0CKPHe-pwzYRIgLAdsDUSUyM2CLK5NAzFe1-V-s,4109
168
+ compute_api_client/models/page_permission.py,sha256=zrWaKg9SgXoUoGjOd6JpekT9a0QSgCRkD_6-m8k0YFc,3377
169
+ compute_api_client/models/page_permission_group.py,sha256=1yDQGz578k36pt4RqruugjvEL7OF0kijr6v5GP604nI,3418
170
+ compute_api_client/models/page_project.py,sha256=E36IwryA7rAgDvSPAuEwTdCyDKIkGaFxIvxm-SQb5DU,3353
171
+ compute_api_client/models/page_reservation.py,sha256=I51zRheGy-kaeD6JByvG6tgfpG6Gnots8rgYsT_6SHo,3385
172
+ compute_api_client/models/page_result.py,sha256=tsj0NOrDxgt0FcYgOboldBWSyqgtKuQpZfh-OVdI4gA,3345
173
+ compute_api_client/models/page_team.py,sha256=SM8eAQJI4NEzAU-FSvNskOWMVZuTtpNZbyZYHSbJK2s,3329
174
+ compute_api_client/models/page_transaction.py,sha256=G7x6YsAboNofWtxtrO3rl9QBVgc2aSZXBtKZfqFWWJ0,3385
175
+ compute_api_client/models/page_user.py,sha256=9fRYpqvStrnm_HrJ8VDqyj3ZIGRvnqFfvBdJVpKK_DA,3329
176
+ compute_api_client/models/permission.py,sha256=hQ3vhYxQUWeesB2ID2d2F52cYkWL6zr2ywbrf1kpSto,2882
177
+ compute_api_client/models/permission_group.py,sha256=3tSpKNhtdxmUt12I20xGlG4yMzHQtpWahz1YT9qtFXE,2740
178
+ compute_api_client/models/project.py,sha256=k2exxKi8lAM_fvgS2yI1Vb7dlRHWS3aud8OZbSX5LDk,3293
179
+ compute_api_client/models/project_in.py,sha256=xu6rjiNr2P--51G3-Qh9GAr6VsmDIU1nulRgkRw7TB8,3100
180
+ compute_api_client/models/project_patch.py,sha256=rB7Ov-qF1lkPjgfUzgkoutQTuEMb1IBXeUDwrhKAnUc,3767
181
+ compute_api_client/models/reservation.py,sha256=j7CUnR8vpRd3BflOGMLHFNH3I__2D2laR0qu9Es8p4w,3645
182
+ compute_api_client/models/reservation_in.py,sha256=9c6RUglpN-Amk5l4FzV8q-ZtH0YGmV0f3gXeN2DotDs,3039
183
+ compute_api_client/models/result.py,sha256=63qJVllnLyk1Si7JHjece-703C1Yn7rb-8czvQ-uDBY,4346
184
+ compute_api_client/models/result_in.py,sha256=EehPUYff2JAbeluynjrO_XCEWtktrq8klT9ekMQubfc,4112
185
+ compute_api_client/models/role.py,sha256=av9ZiRwxb-iA5ZUGm-mL4kTp2VRMMVS29aqVWWM7SF0,733
186
+ compute_api_client/models/share_type.py,sha256=voikUCsIYQnaBi57h1xcfMDkH6ktEKAcjGe4kXs0xKA,776
187
+ compute_api_client/models/team.py,sha256=YFLEMmvsQjBO2T43PM-o4brY5ikpvaUeMTL7kj_Ml_0,2992
188
+ compute_api_client/models/transaction.py,sha256=wjP2_Al27BJ6teuboxcaGlfYaRaIobihsW7FPD0tbHk,3920
189
+ compute_api_client/models/transaction_domain.py,sha256=qHApOJfCGqS_bTpfZcDguddGQFkO0PrIMJInzjkfXs4,4846
190
+ compute_api_client/models/user.py,sha256=pcFP4wrCONRscfobRonD6wPDz4oxKbrZc0Z8OhXzkVs,3596
191
+ compute_api_client/models/user_in.py,sha256=zhpkF3kulOQp70iVR0Ng_BGofuI5c5mZ8eMROCMzLhg,3797
192
+ compute_api_client/models/validation_error.py,sha256=ewqFQvrFX60qdBl4Lws1CxwN2v1aCJctmXG-UYrtXSk,3110
193
+ compute_api_client/models/validation_error_loc_inner.py,sha256=CVagacJ2YeoSXCnJ9pqzegDaYXAvAOilqQtqp2bH-sA,4895
194
+ qi2_shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
+ qi2_shared/authentication.py,sha256=_ZWb1oUo-avtp-yl0NANWAwzKfGhQjQnuvFqUZVPi9o,2551
196
+ qi2_shared/client.py,sha256=vK_VC5V9p2cy02GeVXh0lKxqhMrM3lzUSRtts1CvF-A,1591
197
+ qi2_shared/pagination.py,sha256=sypb9tSsi_7A1D9WoaUEuo7Xyfci8gG2QCX8XSIb7rI,1844
198
+ qi2_shared/settings.py,sha256=x2wNv8nzftMFb-5K7wKvhfJVxQn0YYlZ_Guu6DHm_qU,2384
199
+ qi2_shared/utils.py,sha256=uD7Unuhoze3DWcz6NKvAmSMkiVO1vrlhO-zZEy1-89g,381
200
+ qi2_shared/hybrid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
+ qi2_shared/hybrid/quantum_interface.py,sha256=3_XynjDHwt96fOqYKjuv30I5QU8DE2vU03pT0jVAqOg,1447
202
+ qi_compute_api_client-0.56.0.dist-info/METADATA,sha256=GuKs1znyyUpe1hr70mshvCZ1IDmbcPcNhsdMR8Ab724,28735
203
+ qi_compute_api_client-0.56.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
204
+ qi_compute_api_client-0.56.0.dist-info/licenses/LICENSE.md,sha256=aNrwtY65Glxv8qK2ZkJ_V4zq7SyY8CfLa-vo9wBpTQY,10723
205
+ qi_compute_api_client-0.56.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any