qi-compute-api-client 0.49.0__py3-none-any.whl → 0.50.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.
Potentially problematic release.
This version of qi-compute-api-client might be problematic. Click here for more details.
- compute_api_client/__init__.py +1 -4
- compute_api_client/api/__init__.py +0 -1
- compute_api_client/api/backend_types_api.py +302 -3
- compute_api_client/api/results_api.py +0 -17
- compute_api_client/docs/BackendType.md +2 -1
- compute_api_client/docs/BackendTypePatch.md +41 -0
- compute_api_client/docs/BackendTypesApi.md +87 -3
- compute_api_client/docs/File.md +1 -1
- compute_api_client/docs/FileIn.md +1 -1
- compute_api_client/docs/FinalResult.md +1 -1
- compute_api_client/docs/FinalResultIn.md +1 -1
- compute_api_client/docs/Result.md +1 -2
- compute_api_client/docs/ResultIn.md +1 -2
- compute_api_client/docs/ResultsApi.md +2 -4
- compute_api_client/models/__init__.py +1 -3
- compute_api_client/models/backend_type.py +6 -4
- compute_api_client/models/backend_type_patch.py +185 -0
- compute_api_client/models/file.py +2 -2
- compute_api_client/models/file_in.py +2 -2
- compute_api_client/models/final_result.py +2 -2
- compute_api_client/models/final_result_in.py +2 -2
- compute_api_client/models/result.py +2 -4
- compute_api_client/models/result_in.py +2 -9
- {qi_compute_api_client-0.49.0.dist-info → qi_compute_api_client-0.50.0.dist-info}/METADATA +4 -8
- {qi_compute_api_client-0.49.0.dist-info → qi_compute_api_client-0.50.0.dist-info}/RECORD +27 -28
- {qi_compute_api_client-0.49.0.dist-info → qi_compute_api_client-0.50.0.dist-info}/WHEEL +1 -1
- compute_api_client/docs/Metadata.md +0 -31
- compute_api_client/docs/MetadataApi.md +0 -250
- compute_api_client/docs/MetadataIn.md +0 -29
- {qi_compute_api_client-0.49.0.dist-info → qi_compute_api_client-0.50.0.dist-info}/LICENSE.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: qi-compute-api-client
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.50.0
|
|
4
4
|
Summary: An API client for the Compute Job Manager of Quantum Inspire.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Author: Quantum Inspire
|
|
@@ -109,6 +109,7 @@ All URIs are relative to _http://localhost_
|
|
|
109
109
|
| _BackendApi_ | [**update_backend_self_backends_me_patch**](compute_api_client/docs/BackendApi.md#update_backend_self_backends_me_patch) | **PATCH** /backends/me | Update backend |
|
|
110
110
|
| _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 |
|
|
111
111
|
| _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 |
|
|
112
|
+
| _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 |
|
|
112
113
|
| _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 |
|
|
113
114
|
| _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 |
|
|
114
115
|
| _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 |
|
|
@@ -140,9 +141,6 @@ All URIs are relative to _http://localhost_
|
|
|
140
141
|
| _MembersApi_ | [**delete_member_members_id_delete**](compute_api_client/docs/MembersApi.md#delete_member_members_id_delete) | **DELETE** /members/{id} | Destroy member |
|
|
141
142
|
| _MembersApi_ | [**read_member_members_id_get**](compute_api_client/docs/MembersApi.md#read_member_members_id_get) | **GET** /members/{id} | Retrieve member |
|
|
142
143
|
| _MembersApi_ | [**read_members_members_get**](compute_api_client/docs/MembersApi.md#read_members_members_get) | **GET** /members | List members |
|
|
143
|
-
| _MetadataApi_ | [**create_metadata_self_metadata_post**](compute_api_client/docs/MetadataApi.md#create_metadata_self_metadata_post) | **POST** /metadata | Create metadata |
|
|
144
|
-
| _MetadataApi_ | [**read_metadata_by_backend_id_metadata_backend_backend_id_get**](compute_api_client/docs/MetadataApi.md#read_metadata_by_backend_id_metadata_backend_backend_id_get) | **GET** /metadata/backend/{backend_id} | Retrieve metadata by backend ID |
|
|
145
|
-
| _MetadataApi_ | [**read_metadata_metadata_id_get**](compute_api_client/docs/MetadataApi.md#read_metadata_metadata_id_get) | **GET** /metadata/{id} | Get metadata by ID |
|
|
146
144
|
| _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
145
|
| _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
146
|
| _PermissionsApi_ | [**read_permission_permissions_id_get**](compute_api_client/docs/PermissionsApi.md#read_permission_permissions_id_get) | **GET** /permissions/{id} | Retrieve permissions |
|
|
@@ -182,6 +180,7 @@ All URIs are relative to _http://localhost_
|
|
|
182
180
|
- [BackendPatch](compute_api_client/docs/BackendPatch.md)
|
|
183
181
|
- [BackendStatus](compute_api_client/docs/BackendStatus.md)
|
|
184
182
|
- [BackendType](compute_api_client/docs/BackendType.md)
|
|
183
|
+
- [BackendTypePatch](compute_api_client/docs/BackendTypePatch.md)
|
|
185
184
|
- [BackendWithAuthentication](compute_api_client/docs/BackendWithAuthentication.md)
|
|
186
185
|
- [BatchJob](compute_api_client/docs/BatchJob.md)
|
|
187
186
|
- [BatchJobIn](compute_api_client/docs/BatchJobIn.md)
|
|
@@ -206,8 +205,6 @@ All URIs are relative to _http://localhost_
|
|
|
206
205
|
- [LocationInner](compute_api_client/docs/LocationInner.md)
|
|
207
206
|
- [Member](compute_api_client/docs/Member.md)
|
|
208
207
|
- [MemberIn](compute_api_client/docs/MemberIn.md)
|
|
209
|
-
- [Metadata](compute_api_client/docs/Metadata.md)
|
|
210
|
-
- [MetadataIn](compute_api_client/docs/MetadataIn.md)
|
|
211
208
|
- [PageAlgorithm](compute_api_client/docs/PageAlgorithm.md)
|
|
212
209
|
- [PageBackend](compute_api_client/docs/PageBackend.md)
|
|
213
210
|
- [PageBackendType](compute_api_client/docs/PageBackendType.md)
|
|
@@ -217,7 +214,6 @@ All URIs are relative to _http://localhost_
|
|
|
217
214
|
- [PageJob](compute_api_client/docs/PageJob.md)
|
|
218
215
|
- [PageLanguage](compute_api_client/docs/PageLanguage.md)
|
|
219
216
|
- [PageMember](compute_api_client/docs/PageMember.md)
|
|
220
|
-
- [PageMetadata](compute_api_client/docs/PageMetadata.md)
|
|
221
217
|
- [PagePermission](compute_api_client/docs/PagePermission.md)
|
|
222
218
|
- [PagePermissionGroup](compute_api_client/docs/PagePermissionGroup.md)
|
|
223
219
|
- [PageProject](compute_api_client/docs/PageProject.md)
|
|
@@ -253,7 +249,7 @@ Authentication schemes defined for the API: <a id="user_bearer"></a>
|
|
|
253
249
|
|
|
254
250
|
- **Type**: OAuth
|
|
255
251
|
- **Flow**: accessCode
|
|
256
|
-
- **Authorization URL**: https://quantum-inspire-
|
|
252
|
+
- **Authorization URL**: https://quantum-inspire-development.eu.auth0.com/authorize
|
|
257
253
|
- **Scopes**: N/A
|
|
258
254
|
|
|
259
255
|
<a id="backend"></a>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
compute_api_client/__init__.py,sha256=
|
|
2
|
-
compute_api_client/api/__init__.py,sha256=
|
|
1
|
+
compute_api_client/__init__.py,sha256=eZGk1UIOGku_DEkCf9LfjydcjRVk3d0P6dj-QOkZYhk,6268
|
|
2
|
+
compute_api_client/api/__init__.py,sha256=c0okte7rJ_FIjMajgwLD08jM0z1TjYJOhKcAvXNPvbs,1204
|
|
3
3
|
compute_api_client/api/algorithms_api.py,sha256=Iq3X7347R8ZsF3hDoIlEA8girl0ww_k1orMPMc6ygDE,59489
|
|
4
4
|
compute_api_client/api/auth_config_api.py,sha256=O7XDoKk6-bWyUJkfiiOZRbb8OuDv_H0xvcs_XFfAGG8,10356
|
|
5
5
|
compute_api_client/api/backend_api.py,sha256=zNX_CYAm-6IrCuR7hlgHOCTwOkR1YQXn-3Ck9VUsCK8,57958
|
|
6
|
-
compute_api_client/api/backend_types_api.py,sha256=
|
|
6
|
+
compute_api_client/api/backend_types_api.py,sha256=zc68vaG_KW-iIJ3FX1wc1Qm85cw8tLtiRYYN6AR1yeM,42476
|
|
7
7
|
compute_api_client/api/batch_jobs_api.py,sha256=V-HYrI6Lnrc6E7BhHNUwolZRLhLdTnSMZk3C9psQML8,84401
|
|
8
8
|
compute_api_client/api/commits_api.py,sha256=ETcosKPwE8EYr_wd3rZItlmJqLtuSu8E2CpJt0t5y_0,57560
|
|
9
9
|
compute_api_client/api/files_api.py,sha256=eItVegQVnni7AK2yyT_6Paj4WB01vUwM8fIwxwJEZuk,47862
|
|
@@ -16,7 +16,7 @@ compute_api_client/api/metadata_api.py,sha256=eLy_tlOhIUxoPDHMI779eALslCr3AxynUy
|
|
|
16
16
|
compute_api_client/api/permissions_api.py,sha256=-8Y7YJa4lpaCVHckoVwYa-cJYiWD-98_IL0su1ArsEI,49598
|
|
17
17
|
compute_api_client/api/projects_api.py,sha256=URa3DDiCqiHdR7NWfWR-Y7-9RuQ7UOAWQKxEVyWMDf8,71112
|
|
18
18
|
compute_api_client/api/reservations_api.py,sha256=28sDPr3slUvdtEzBDeNOHvjzX5A_oxPSgPEkgagChlw,50193
|
|
19
|
-
compute_api_client/api/results_api.py,sha256=
|
|
19
|
+
compute_api_client/api/results_api.py,sha256=wRfdrg4W63y5R85s5dpjQJ_dM_WlBL29I3SJLawzcW8,64458
|
|
20
20
|
compute_api_client/api/teams_api.py,sha256=daGp9YTZF7I5NCAgm2_2xW4sOTh30oqpMZE0ppQs-fw,25747
|
|
21
21
|
compute_api_client/api/transactions_api.py,sha256=vQz7UvzTA1BGKUz08A1-8gz3975QnqLG87V9dsvsTs4,29950
|
|
22
22
|
compute_api_client/api/users_api.py,sha256=veol1D2YXX3NWs9Y_uljjdjG2PsEz8y1hSF-5jHmtt0,47705
|
|
@@ -34,8 +34,9 @@ compute_api_client/docs/BackendApi.md,sha256=KWld3mvfxlP_ZiYNSHxNNCkMSwuSnbKy9aF
|
|
|
34
34
|
compute_api_client/docs/BackendIn.md,sha256=7_drRygOUPHFWjrvAJGo7WwmcyK6EeRnlSnA6WtTCu0,978
|
|
35
35
|
compute_api_client/docs/BackendPatch.md,sha256=xET1pnI8JStGhtHm7qT-1zv7RCuKl2CUIKtYueWq72U,927
|
|
36
36
|
compute_api_client/docs/BackendStatus.md,sha256=ofnS843IHCIxoywjJJ01GP90Gn1XedAm5xR8TONmUbk,292
|
|
37
|
-
compute_api_client/docs/BackendType.md,sha256=
|
|
38
|
-
compute_api_client/docs/
|
|
37
|
+
compute_api_client/docs/BackendType.md,sha256=iTOb-PWb8tFkt8cClk-pzjnh4CyJzfgS_fBScsm3XY4,1399
|
|
38
|
+
compute_api_client/docs/BackendTypePatch.md,sha256=hG57U4yMnfNM-QdMCaBBuZq3IVr1vIm0xi8qtwaApzU,1545
|
|
39
|
+
compute_api_client/docs/BackendTypesApi.md,sha256=OpTEmS_tH3AxXm6pI67Ns40_ZDsvY3yt03oPI5zz6tQ,10532
|
|
39
40
|
compute_api_client/docs/BackendWithAuthentication.md,sha256=u9lZh4FusMtOuV53yc0QXHdnTas-4HNC06NyDh8E1Go,1256
|
|
40
41
|
compute_api_client/docs/BatchJob.md,sha256=IozaJI2zAL1zo_zmuI-RIKvLGK68KkyW53AH4jbIaIs,1210
|
|
41
42
|
compute_api_client/docs/BatchJobIn.md,sha256=9-nP1Xgnzd5tfvo8WmandUWR8IY-2pMeZyW0HveKZEU,847
|
|
@@ -47,11 +48,11 @@ compute_api_client/docs/CommitsApi.md,sha256=FcRxDjqBQqI_1tqDBkF-cB06euahEhWl_ch
|
|
|
47
48
|
compute_api_client/docs/CompilePayload.md,sha256=gVosNr2E66lTF4EZCRcP57m90vpLUtdLI58gGI6yRmM,965
|
|
48
49
|
compute_api_client/docs/CompileStage.md,sha256=-U9wb4fyD8b_cjV1-GBIBJfbquFulRlHFm3C0GFnGik,291
|
|
49
50
|
compute_api_client/docs/Domain.md,sha256=HONTAt17CX2vFhnkHOFqMpJEIJjPM8GTBBQriWA71UY,285
|
|
50
|
-
compute_api_client/docs/File.md,sha256=
|
|
51
|
-
compute_api_client/docs/FileIn.md,sha256=
|
|
51
|
+
compute_api_client/docs/File.md,sha256=C8dCElfyNqIAoN1nFmiX6BEWpvrMjjEFgrp3mFy585A,1014
|
|
52
|
+
compute_api_client/docs/FileIn.md,sha256=sPw1bQe74zWMQl-uc1VD67t9V-UvxXjfSG20Du2qD6Q,1053
|
|
52
53
|
compute_api_client/docs/FilesApi.md,sha256=GC4e2AiIb0IVxw5e2pEHulw0bnYVexBRxdR1ouSYAyg,11203
|
|
53
|
-
compute_api_client/docs/FinalResult.md,sha256=
|
|
54
|
-
compute_api_client/docs/FinalResultIn.md,sha256=
|
|
54
|
+
compute_api_client/docs/FinalResult.md,sha256=BdeCM0nRxHD2KlKmzJMBOToxxbh3gsZ_iE0Oa9RBooM,950
|
|
55
|
+
compute_api_client/docs/FinalResultIn.md,sha256=uiAFy8idbG3Gt3_APe_TlIS0SYU7hLY5pUYmP6GIIfY,924
|
|
55
56
|
compute_api_client/docs/FinalResultsApi.md,sha256=V7X34yAWXZMlUBhPgC7EKhW_TXenIlhYR84PiH3kG9A,8167
|
|
56
57
|
compute_api_client/docs/HTTPBadRequestError.md,sha256=TtmChwzainHvcapRwqTjmZghUFfvG3LZvYlDvs2dYjw,962
|
|
57
58
|
compute_api_client/docs/HTTPNotFoundError.md,sha256=1GluS5OAVTk1qNrQwBOb29eQiNMJnCXyJk-0oKf-Rlc,936
|
|
@@ -68,9 +69,6 @@ compute_api_client/docs/LocationInner.md,sha256=Z1Z8_cF7hlrfoOGVKoWz-ZhSQ457HKDd
|
|
|
68
69
|
compute_api_client/docs/Member.md,sha256=Y1w2DLahBH71KkFN_pLZ_jK7OeuzZjEvKm9_uypkxis,892
|
|
69
70
|
compute_api_client/docs/MemberIn.md,sha256=9Qy8ZNV5_f04glvxGQ-Y8HGPS_pYsftCnZBt1635-hU,931
|
|
70
71
|
compute_api_client/docs/MembersApi.md,sha256=TDxBG-PCQ7YSvysFHajKlEiEJ-s7hdtY6oOQPUK0jyA,10524
|
|
71
|
-
compute_api_client/docs/Metadata.md,sha256=R5XBSvfG31CHzOEV8HtwaWDmrOOihS5Ky18woUfUlwE,889
|
|
72
|
-
compute_api_client/docs/MetadataApi.md,sha256=E7LYrmQSE5H_nplhbaXf6N56ZTVYkd_G54sgvWFSWbY,8617
|
|
73
|
-
compute_api_client/docs/MetadataIn.md,sha256=PBzLjFfYDlZdF3xSFjoQ1uP_EayjI1EmgvmBxPdJ8uI,874
|
|
74
72
|
compute_api_client/docs/PageAlgorithm.md,sha256=Fm9S7b9PdITbl1pVvcwUH_P66mK_D1A4Rkf9T_ZmM7E,1010
|
|
75
73
|
compute_api_client/docs/PageBackend.md,sha256=KZ61OnUKPq7vbI7_YTv7dp4ZhrZaD9wCOaQ7kANdUYo,980
|
|
76
74
|
compute_api_client/docs/PageBackendType.md,sha256=qMch61xCP2UuafMyy_wTd8ON-hqHyxMmqWOuDv7VDMc,1047
|
|
@@ -99,9 +97,9 @@ compute_api_client/docs/ProjectsApi.md,sha256=q2Mhql2tzNei9rvA48iw0dMBMWd0RIuAHE
|
|
|
99
97
|
compute_api_client/docs/Reservation.md,sha256=SX9xFwujAOl2yJBLO66CFM6JkxFquSNJQOBwkJAah5E,1035
|
|
100
98
|
compute_api_client/docs/ReservationIn.md,sha256=veTcJp5zNuApDCm76I6FawcWVjyLcvxGOubmmfvPJiw,979
|
|
101
99
|
compute_api_client/docs/ReservationsApi.md,sha256=ru49lUSCPKg6uyDcSWuxtGgqOwBMkWKpS7YKJZqj0Ok,12069
|
|
102
|
-
compute_api_client/docs/Result.md,sha256=
|
|
103
|
-
compute_api_client/docs/ResultIn.md,sha256=
|
|
104
|
-
compute_api_client/docs/ResultsApi.md,sha256=
|
|
100
|
+
compute_api_client/docs/Result.md,sha256=WvM7CDGM1-eVMBFuDQlKJu1DDsjDEPvyjRoCB8ZjnEs,1023
|
|
101
|
+
compute_api_client/docs/ResultIn.md,sha256=9E3ATZbonkrXI1bQHdptoRxYvlv1dlbg2SJTP_64f9I,1041
|
|
102
|
+
compute_api_client/docs/ResultsApi.md,sha256=pmLa28V-PJI-2XLjj6gHa8oAoCB3oNVVp6ouep5K7_E,15635
|
|
105
103
|
compute_api_client/docs/Role.md,sha256=WKRdBmGL1vHDgSxeIhUItEJnZJ-lMedQJoBEleQQou4,283
|
|
106
104
|
compute_api_client/docs/ShareType.md,sha256=AxfoQcU9wr9iU9r4unG1_miL8XT75FdAziZJzLDvQL0,288
|
|
107
105
|
compute_api_client/docs/Team.md,sha256=cGhzeDoJHyFX-offM414nz1lp1G9BslQUBGJejJMGWo,829
|
|
@@ -113,7 +111,7 @@ compute_api_client/docs/UserIn.md,sha256=xAPeVO5WTaNcbI151w0j_g6BEM-xYquMV5Nx6sr
|
|
|
113
111
|
compute_api_client/docs/UsersApi.md,sha256=_i1dIB7AW349xb8JcFtGohvK4l6iovAEYUYKaY5DZYc,10802
|
|
114
112
|
compute_api_client/docs/ValidationError.md,sha256=NZSCUyM9u2fx4CFZfPF9cl_e6zDxQ9siBX-WtNHJyeA,978
|
|
115
113
|
compute_api_client/exceptions.py,sha256=SxnwGBUmd989OJ9knsPWbZ3v59nn3_kipRYzOQZztXE,5451
|
|
116
|
-
compute_api_client/models/__init__.py,sha256=
|
|
114
|
+
compute_api_client/models/__init__.py,sha256=E2MxQPZZmXf9JGKSRRFu042Ow7g8bPKZ6QdUD6Qz-lM,4532
|
|
117
115
|
compute_api_client/models/algorithm.py,sha256=eA77q4e5gi8VStOJplR0UF-E9gBr6VFkxsqt8Ohx1Yo,3190
|
|
118
116
|
compute_api_client/models/algorithm_in.py,sha256=-U2CoNZZSpAGBe6O7KFMJ9yIJAaOGEbPBdCTMIB3s2g,3148
|
|
119
117
|
compute_api_client/models/algorithm_type.py,sha256=yKefgGvi-f_O6OReG1Tu8Me_u2YZrvx5CFOSlTk8-6M,862
|
|
@@ -122,7 +120,8 @@ compute_api_client/models/backend.py,sha256=cZ_q1zzW6t9hDF-Llu2Zm8bgVQLvef0qFWLI
|
|
|
122
120
|
compute_api_client/models/backend_in.py,sha256=9XK17112GvDxH2jAJpedX7z4kQ4oNr14EsCQ5dmGsEk,2957
|
|
123
121
|
compute_api_client/models/backend_patch.py,sha256=QMKRJkxMIRiIc4dFQscqIJFe5zgCU11cm_6d_rnKOaE,2556
|
|
124
122
|
compute_api_client/models/backend_status.py,sha256=kLo5B4ZGtYuzRRADnxAdxeurPJYD_0TzJq69rYAnWGA,918
|
|
125
|
-
compute_api_client/models/backend_type.py,sha256=
|
|
123
|
+
compute_api_client/models/backend_type.py,sha256=5TPe04jAt11KVUWmn--kv2mKeqQ3GTUmSG_9stHj5Bw,4083
|
|
124
|
+
compute_api_client/models/backend_type_patch.py,sha256=lGvLVf3-kIXCTQ1Ej_NhoUyIR5eFkoSrHd7NYA8DuKE,7380
|
|
126
125
|
compute_api_client/models/backend_with_authentication.py,sha256=Zc62u-GsghnQnWu8KYAqNcF9WA60uPYxqMnGtYeJkdc,3243
|
|
127
126
|
compute_api_client/models/batch_job.py,sha256=OWedWfSa23U5qDT9SELxtHdrQEuSlDbdhcMCC9bIa58,4388
|
|
128
127
|
compute_api_client/models/batch_job_in.py,sha256=K2HVli0JZyLf_sVQbP6J7b5PyQUAwM6TbFpPTEbEdmY,2391
|
|
@@ -132,10 +131,10 @@ compute_api_client/models/commit_in.py,sha256=ABzzJRUP9FEc2y6AxRmWUFRxT_KJSH7X_T
|
|
|
132
131
|
compute_api_client/models/compile_payload.py,sha256=8r_LnOC892r7MhT83qNLUoF8so9ZDwHK3yzZJsdTUX4,2838
|
|
133
132
|
compute_api_client/models/compile_stage.py,sha256=dj8U5jnwohb_hgWo40qXukDvl1CUIh3oKXhYcQT44WQ,949
|
|
134
133
|
compute_api_client/models/domain.py,sha256=74HU4E_VPU84i7035NxJArBJW87yo-MS-YSoT1J7-Ac,875
|
|
135
|
-
compute_api_client/models/file.py,sha256=
|
|
136
|
-
compute_api_client/models/file_in.py,sha256=
|
|
137
|
-
compute_api_client/models/final_result.py,sha256=
|
|
138
|
-
compute_api_client/models/final_result_in.py,sha256=
|
|
134
|
+
compute_api_client/models/file.py,sha256=564f8LCybDMoD42URVqHq7_y6fpbdpCvFMoC1DMZaIQ,3373
|
|
135
|
+
compute_api_client/models/file_in.py,sha256=8AJYVCOIJy73GPNlX5WrTyM6zXMaitFCGvDJ1wBVHKY,3389
|
|
136
|
+
compute_api_client/models/final_result.py,sha256=9xCoat5JqFU9yodevh06ToQhZgTDJKepYh_2HqCS1RI,2635
|
|
137
|
+
compute_api_client/models/final_result_in.py,sha256=DHZmlmpxeX10jsasLGRJSNJb5LKVsImCueMU3CsQO10,2469
|
|
139
138
|
compute_api_client/models/http_bad_request_error.py,sha256=3Bqvic3dc-xeClqdEgClwRIvIFzkScpwbNEvw34paQU,2391
|
|
140
139
|
compute_api_client/models/http_not_found_error.py,sha256=ZxTsaEc2MX_Sb6pyoqt-sEhnQ6uwzpd8uRTEklcfaSY,2383
|
|
141
140
|
compute_api_client/models/http_validation_error.py,sha256=x7kRxeYeaVlQ-ckHPfkeFlsWsxZPDMKcvfOCR7jOlao,2882
|
|
@@ -174,8 +173,8 @@ compute_api_client/models/project_in.py,sha256=3tu8QPZNkMRpHAUlKjpO5uXALMozXyJHp
|
|
|
174
173
|
compute_api_client/models/project_patch.py,sha256=y-mTY6rulTO3oiS_4uTcqt4C48Q39zFEGymQdMFYJ_U,3668
|
|
175
174
|
compute_api_client/models/reservation.py,sha256=-UR-pDG8anrYJdj_58FTm2zyh_OE5iLOSj2JD4HwfOA,3180
|
|
176
175
|
compute_api_client/models/reservation_in.py,sha256=UyZx8ho1BUME6CveESoqv_LRT5fiqS__tLmIl5EDVkE,2685
|
|
177
|
-
compute_api_client/models/result.py,sha256=
|
|
178
|
-
compute_api_client/models/result_in.py,sha256=
|
|
176
|
+
compute_api_client/models/result.py,sha256=daD17gR339XEOSvTV5AP3xwSkBWwrbv7euae8pvZFK4,4022
|
|
177
|
+
compute_api_client/models/result_in.py,sha256=eAbRi5x_FYBK65JDtGq-rpj3Wb2guDoBO8ypedKJGrg,3884
|
|
179
178
|
compute_api_client/models/role.py,sha256=KIqsUUw6TrmknOiI0fy5dsJyRUyBfhlcldvW63qDaBQ,831
|
|
180
179
|
compute_api_client/models/share_type.py,sha256=Lg00TV5Ychd_VkDg4dY-4wDW8TcXBiU9Usxe5EFDI8A,874
|
|
181
180
|
compute_api_client/models/team.py,sha256=QR5x-hNadhdPh1N9F85wW6X0jUUnoxvdTnypUu_GHxw,2714
|
|
@@ -192,7 +191,7 @@ qi2_shared/hybrid/quantum_interface.py,sha256=3_XynjDHwt96fOqYKjuv30I5QU8DE2vU03
|
|
|
192
191
|
qi2_shared/pagination.py,sha256=sypb9tSsi_7A1D9WoaUEuo7Xyfci8gG2QCX8XSIb7rI,1844
|
|
193
192
|
qi2_shared/settings.py,sha256=x2wNv8nzftMFb-5K7wKvhfJVxQn0YYlZ_Guu6DHm_qU,2384
|
|
194
193
|
qi2_shared/utils.py,sha256=uD7Unuhoze3DWcz6NKvAmSMkiVO1vrlhO-zZEy1-89g,381
|
|
195
|
-
qi_compute_api_client-0.
|
|
196
|
-
qi_compute_api_client-0.
|
|
197
|
-
qi_compute_api_client-0.
|
|
198
|
-
qi_compute_api_client-0.
|
|
194
|
+
qi_compute_api_client-0.50.0.dist-info/LICENSE.md,sha256=aNrwtY65Glxv8qK2ZkJ_V4zq7SyY8CfLa-vo9wBpTQY,10723
|
|
195
|
+
qi_compute_api_client-0.50.0.dist-info/METADATA,sha256=KZ4o5PmSiAplPP59AqSrO5bbFL7kxCvcmYg746IHwlA,28601
|
|
196
|
+
qi_compute_api_client-0.50.0.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
197
|
+
qi_compute_api_client-0.50.0.dist-info/RECORD,,
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# Metadata
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
## Properties
|
|
5
|
-
Name | Type | Description | Notes
|
|
6
|
-
------------ | ------------- | ------------- | -------------
|
|
7
|
-
**id** | **int** | |
|
|
8
|
-
**backend_id** | **int** | |
|
|
9
|
-
**created_on** | **datetime** | |
|
|
10
|
-
**data** | **object** | |
|
|
11
|
-
|
|
12
|
-
## Example
|
|
13
|
-
|
|
14
|
-
```python
|
|
15
|
-
from compute_api_client.models.metadata import Metadata
|
|
16
|
-
|
|
17
|
-
# TODO update the JSON string below
|
|
18
|
-
json = "{}"
|
|
19
|
-
# create an instance of Metadata from a JSON string
|
|
20
|
-
metadata_instance = Metadata.from_json(json)
|
|
21
|
-
# print the JSON string representation of the object
|
|
22
|
-
print Metadata.to_json()
|
|
23
|
-
|
|
24
|
-
# convert the object into a dict
|
|
25
|
-
metadata_dict = metadata_instance.to_dict()
|
|
26
|
-
# create an instance of Metadata from a dict
|
|
27
|
-
metadata_form_dict = metadata.from_dict(metadata_dict)
|
|
28
|
-
```
|
|
29
|
-
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
30
|
-
|
|
31
|
-
|
|
@@ -1,250 +0,0 @@
|
|
|
1
|
-
# compute_api_client.MetadataApi
|
|
2
|
-
|
|
3
|
-
All URIs are relative to *http://localhost*
|
|
4
|
-
|
|
5
|
-
Method | HTTP request | Description
|
|
6
|
-
------------- | ------------- | -------------
|
|
7
|
-
[**create_metadata_self_metadata_post**](MetadataApi.md#create_metadata_self_metadata_post) | **POST** /metadata | Create metadata
|
|
8
|
-
[**read_metadata_by_backend_id_metadata_backend_backend_id_get**](MetadataApi.md#read_metadata_by_backend_id_metadata_backend_backend_id_get) | **GET** /metadata/backend/{backend_id} | Retrieve metadata by backend ID
|
|
9
|
-
[**read_metadata_metadata_id_get**](MetadataApi.md#read_metadata_metadata_id_get) | **GET** /metadata/{id} | Get metadata by ID
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
# **create_metadata_self_metadata_post**
|
|
13
|
-
> Metadata create_metadata_self_metadata_post(metadata_in)
|
|
14
|
-
|
|
15
|
-
Create metadata
|
|
16
|
-
|
|
17
|
-
Create new metadata.
|
|
18
|
-
|
|
19
|
-
### Example
|
|
20
|
-
|
|
21
|
-
* Api Key Authentication (backend):
|
|
22
|
-
```python
|
|
23
|
-
import time
|
|
24
|
-
import os
|
|
25
|
-
import compute_api_client
|
|
26
|
-
from compute_api_client.models.metadata import Metadata
|
|
27
|
-
from compute_api_client.models.metadata_in import MetadataIn
|
|
28
|
-
from compute_api_client.rest import ApiException
|
|
29
|
-
from pprint import pprint
|
|
30
|
-
|
|
31
|
-
# Defining the host is optional and defaults to http://localhost
|
|
32
|
-
# See configuration.py for a list of all supported configuration parameters.
|
|
33
|
-
configuration = compute_api_client.Configuration(
|
|
34
|
-
host = "http://localhost"
|
|
35
|
-
)
|
|
36
|
-
|
|
37
|
-
# The client must configure the authentication and authorization parameters
|
|
38
|
-
# in accordance with the API server security policy.
|
|
39
|
-
# Examples for each auth method are provided below, use the example that
|
|
40
|
-
# satisfies your auth use case.
|
|
41
|
-
|
|
42
|
-
# Configure API key authorization: backend
|
|
43
|
-
configuration.api_key['backend'] = os.environ["API_KEY"]
|
|
44
|
-
|
|
45
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
46
|
-
# configuration.api_key_prefix['backend'] = 'Bearer'
|
|
47
|
-
|
|
48
|
-
# Enter a context with an instance of the API client
|
|
49
|
-
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
50
|
-
# Create an instance of the API class
|
|
51
|
-
api_instance = compute_api_client.MetadataApi(api_client)
|
|
52
|
-
metadata_in = compute_api_client.MetadataIn() # MetadataIn |
|
|
53
|
-
|
|
54
|
-
try:
|
|
55
|
-
# Create metadata
|
|
56
|
-
api_response = await api_instance.create_metadata_self_metadata_post(metadata_in)
|
|
57
|
-
print("The response of MetadataApi->create_metadata_self_metadata_post:\n")
|
|
58
|
-
pprint(api_response)
|
|
59
|
-
except Exception as e:
|
|
60
|
-
print("Exception when calling MetadataApi->create_metadata_self_metadata_post: %s\n" % e)
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
### Parameters
|
|
66
|
-
|
|
67
|
-
Name | Type | Description | Notes
|
|
68
|
-
------------- | ------------- | ------------- | -------------
|
|
69
|
-
**metadata_in** | [**MetadataIn**](MetadataIn.md)| |
|
|
70
|
-
|
|
71
|
-
### Return type
|
|
72
|
-
|
|
73
|
-
[**Metadata**](Metadata.md)
|
|
74
|
-
|
|
75
|
-
### Authorization
|
|
76
|
-
|
|
77
|
-
[backend](../README.md#backend)
|
|
78
|
-
|
|
79
|
-
### HTTP request headers
|
|
80
|
-
|
|
81
|
-
- **Content-Type**: application/json
|
|
82
|
-
- **Accept**: application/json
|
|
83
|
-
|
|
84
|
-
### HTTP response details
|
|
85
|
-
| Status code | Description | Response headers |
|
|
86
|
-
|-------------|-------------|------------------|
|
|
87
|
-
**201** | Successful Response | - |
|
|
88
|
-
**422** | Validation Error | - |
|
|
89
|
-
|
|
90
|
-
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
91
|
-
|
|
92
|
-
# **read_metadata_by_backend_id_metadata_backend_backend_id_get**
|
|
93
|
-
> PageMetadata read_metadata_by_backend_id_metadata_backend_backend_id_get(backend_id, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
94
|
-
|
|
95
|
-
Retrieve metadata by backend ID
|
|
96
|
-
|
|
97
|
-
Get metadata by job ID.
|
|
98
|
-
|
|
99
|
-
### Example
|
|
100
|
-
|
|
101
|
-
* OAuth Authentication (user_bearer):
|
|
102
|
-
```python
|
|
103
|
-
import time
|
|
104
|
-
import os
|
|
105
|
-
import compute_api_client
|
|
106
|
-
from compute_api_client.models.page_metadata import PageMetadata
|
|
107
|
-
from compute_api_client.rest import ApiException
|
|
108
|
-
from pprint import pprint
|
|
109
|
-
|
|
110
|
-
# Defining the host is optional and defaults to http://localhost
|
|
111
|
-
# See configuration.py for a list of all supported configuration parameters.
|
|
112
|
-
configuration = compute_api_client.Configuration(
|
|
113
|
-
host = "http://localhost"
|
|
114
|
-
)
|
|
115
|
-
|
|
116
|
-
# The client must configure the authentication and authorization parameters
|
|
117
|
-
# in accordance with the API server security policy.
|
|
118
|
-
# Examples for each auth method are provided below, use the example that
|
|
119
|
-
# satisfies your auth use case.
|
|
120
|
-
|
|
121
|
-
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
122
|
-
|
|
123
|
-
# Enter a context with an instance of the API client
|
|
124
|
-
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
125
|
-
# Create an instance of the API class
|
|
126
|
-
api_instance = compute_api_client.MetadataApi(api_client)
|
|
127
|
-
backend_id = 56 # int |
|
|
128
|
-
sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
|
|
129
|
-
latest = True # bool | If True gets the most recently created object. (optional)
|
|
130
|
-
page = 1 # int | Page number (optional) (default to 1)
|
|
131
|
-
size = 50 # int | Page size (optional) (default to 50)
|
|
132
|
-
|
|
133
|
-
try:
|
|
134
|
-
# Retrieve metadata by backend ID
|
|
135
|
-
api_response = await api_instance.read_metadata_by_backend_id_metadata_backend_backend_id_get(backend_id, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
136
|
-
print("The response of MetadataApi->read_metadata_by_backend_id_metadata_backend_backend_id_get:\n")
|
|
137
|
-
pprint(api_response)
|
|
138
|
-
except Exception as e:
|
|
139
|
-
print("Exception when calling MetadataApi->read_metadata_by_backend_id_metadata_backend_backend_id_get: %s\n" % e)
|
|
140
|
-
```
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
### Parameters
|
|
145
|
-
|
|
146
|
-
Name | Type | Description | Notes
|
|
147
|
-
------------- | ------------- | ------------- | -------------
|
|
148
|
-
**backend_id** | **int**| |
|
|
149
|
-
**sort_by** | **str**| The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional]
|
|
150
|
-
**latest** | **bool**| If True gets the most recently created object. | [optional]
|
|
151
|
-
**page** | **int**| Page number | [optional] [default to 1]
|
|
152
|
-
**size** | **int**| Page size | [optional] [default to 50]
|
|
153
|
-
|
|
154
|
-
### Return type
|
|
155
|
-
|
|
156
|
-
[**PageMetadata**](PageMetadata.md)
|
|
157
|
-
|
|
158
|
-
### Authorization
|
|
159
|
-
|
|
160
|
-
[user_bearer](../README.md#user_bearer)
|
|
161
|
-
|
|
162
|
-
### HTTP request headers
|
|
163
|
-
|
|
164
|
-
- **Content-Type**: Not defined
|
|
165
|
-
- **Accept**: application/json
|
|
166
|
-
|
|
167
|
-
### HTTP response details
|
|
168
|
-
| Status code | Description | Response headers |
|
|
169
|
-
|-------------|-------------|------------------|
|
|
170
|
-
**200** | Successful Response | - |
|
|
171
|
-
**422** | Validation Error | - |
|
|
172
|
-
|
|
173
|
-
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
174
|
-
|
|
175
|
-
# **read_metadata_metadata_id_get**
|
|
176
|
-
> Metadata read_metadata_metadata_id_get(id)
|
|
177
|
-
|
|
178
|
-
Get metadata by ID
|
|
179
|
-
|
|
180
|
-
Get metadata by ID.
|
|
181
|
-
|
|
182
|
-
### Example
|
|
183
|
-
|
|
184
|
-
* OAuth Authentication (user_bearer):
|
|
185
|
-
```python
|
|
186
|
-
import time
|
|
187
|
-
import os
|
|
188
|
-
import compute_api_client
|
|
189
|
-
from compute_api_client.models.metadata import Metadata
|
|
190
|
-
from compute_api_client.rest import ApiException
|
|
191
|
-
from pprint import pprint
|
|
192
|
-
|
|
193
|
-
# Defining the host is optional and defaults to http://localhost
|
|
194
|
-
# See configuration.py for a list of all supported configuration parameters.
|
|
195
|
-
configuration = compute_api_client.Configuration(
|
|
196
|
-
host = "http://localhost"
|
|
197
|
-
)
|
|
198
|
-
|
|
199
|
-
# The client must configure the authentication and authorization parameters
|
|
200
|
-
# in accordance with the API server security policy.
|
|
201
|
-
# Examples for each auth method are provided below, use the example that
|
|
202
|
-
# satisfies your auth use case.
|
|
203
|
-
|
|
204
|
-
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
205
|
-
|
|
206
|
-
# Enter a context with an instance of the API client
|
|
207
|
-
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
208
|
-
# Create an instance of the API class
|
|
209
|
-
api_instance = compute_api_client.MetadataApi(api_client)
|
|
210
|
-
id = 56 # int |
|
|
211
|
-
|
|
212
|
-
try:
|
|
213
|
-
# Get metadata by ID
|
|
214
|
-
api_response = await api_instance.read_metadata_metadata_id_get(id)
|
|
215
|
-
print("The response of MetadataApi->read_metadata_metadata_id_get:\n")
|
|
216
|
-
pprint(api_response)
|
|
217
|
-
except Exception as e:
|
|
218
|
-
print("Exception when calling MetadataApi->read_metadata_metadata_id_get: %s\n" % e)
|
|
219
|
-
```
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
### Parameters
|
|
224
|
-
|
|
225
|
-
Name | Type | Description | Notes
|
|
226
|
-
------------- | ------------- | ------------- | -------------
|
|
227
|
-
**id** | **int**| |
|
|
228
|
-
|
|
229
|
-
### Return type
|
|
230
|
-
|
|
231
|
-
[**Metadata**](Metadata.md)
|
|
232
|
-
|
|
233
|
-
### Authorization
|
|
234
|
-
|
|
235
|
-
[user_bearer](../README.md#user_bearer)
|
|
236
|
-
|
|
237
|
-
### HTTP request headers
|
|
238
|
-
|
|
239
|
-
- **Content-Type**: Not defined
|
|
240
|
-
- **Accept**: application/json
|
|
241
|
-
|
|
242
|
-
### HTTP response details
|
|
243
|
-
| Status code | Description | Response headers |
|
|
244
|
-
|-------------|-------------|------------------|
|
|
245
|
-
**200** | Successful Response | - |
|
|
246
|
-
**404** | Not Found | - |
|
|
247
|
-
**422** | Validation Error | - |
|
|
248
|
-
|
|
249
|
-
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
250
|
-
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
# MetadataIn
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
## Properties
|
|
5
|
-
Name | Type | Description | Notes
|
|
6
|
-
------------ | ------------- | ------------- | -------------
|
|
7
|
-
**backend_id** | **int** | | [optional]
|
|
8
|
-
**data** | **object** | |
|
|
9
|
-
|
|
10
|
-
## Example
|
|
11
|
-
|
|
12
|
-
```python
|
|
13
|
-
from compute_api_client.models.metadata_in import MetadataIn
|
|
14
|
-
|
|
15
|
-
# TODO update the JSON string below
|
|
16
|
-
json = "{}"
|
|
17
|
-
# create an instance of MetadataIn from a JSON string
|
|
18
|
-
metadata_in_instance = MetadataIn.from_json(json)
|
|
19
|
-
# print the JSON string representation of the object
|
|
20
|
-
print MetadataIn.to_json()
|
|
21
|
-
|
|
22
|
-
# convert the object into a dict
|
|
23
|
-
metadata_in_dict = metadata_in_instance.to_dict()
|
|
24
|
-
# create an instance of MetadataIn from a dict
|
|
25
|
-
metadata_in_form_dict = metadata_in.from_dict(metadata_in_dict)
|
|
26
|
-
```
|
|
27
|
-
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
28
|
-
|
|
29
|
-
|
{qi_compute_api_client-0.49.0.dist-info → qi_compute_api_client-0.50.0.dist-info}/LICENSE.md
RENAMED
|
File without changes
|