qi-compute-api-client 0.33.0__py3-none-any.whl → 0.36.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 -0
- compute_api_client/api/__init__.py +1 -0
- compute_api_client/api/backend_types_api.py +17 -0
- compute_api_client/api/files_api.py +34 -0
- compute_api_client/api/health_api.py +290 -0
- compute_api_client/api/results_api.py +1 -29
- compute_api_client/docs/BackendType.md +3 -1
- compute_api_client/docs/BackendTypesApi.md +4 -2
- compute_api_client/docs/File.md +1 -0
- compute_api_client/docs/FileIn.md +1 -0
- compute_api_client/docs/FilesApi.md +6 -2
- compute_api_client/docs/HealthApi.md +71 -0
- compute_api_client/docs/ResultsApi.md +3 -5
- compute_api_client/models/backend_type.py +7 -3
- compute_api_client/models/file.py +12 -3
- compute_api_client/models/file_in.py +11 -2
- {qi_compute_api_client-0.33.0.dist-info → qi_compute_api_client-0.36.0.dist-info}/METADATA +3 -2
- {qi_compute_api_client-0.33.0.dist-info → qi_compute_api_client-0.36.0.dist-info}/RECORD +20 -18
- {qi_compute_api_client-0.33.0.dist-info → qi_compute_api_client-0.36.0.dist-info}/LICENSE.md +0 -0
- {qi_compute_api_client-0.33.0.dist-info → qi_compute_api_client-0.36.0.dist-info}/WHEEL +0 -0
compute_api_client/__init__.py
CHANGED
|
@@ -24,6 +24,7 @@ from compute_api_client.api.batch_jobs_api import BatchJobsApi
|
|
|
24
24
|
from compute_api_client.api.commits_api import CommitsApi
|
|
25
25
|
from compute_api_client.api.files_api import FilesApi
|
|
26
26
|
from compute_api_client.api.final_results_api import FinalResultsApi
|
|
27
|
+
from compute_api_client.api.health_api import HealthApi
|
|
27
28
|
from compute_api_client.api.jobs_api import JobsApi
|
|
28
29
|
from compute_api_client.api.languages_api import LanguagesApi
|
|
29
30
|
from compute_api_client.api.members_api import MembersApi
|
|
@@ -8,6 +8,7 @@ from compute_api_client.api.batch_jobs_api import BatchJobsApi
|
|
|
8
8
|
from compute_api_client.api.commits_api import CommitsApi
|
|
9
9
|
from compute_api_client.api.files_api import FilesApi
|
|
10
10
|
from compute_api_client.api.final_results_api import FinalResultsApi
|
|
11
|
+
from compute_api_client.api.health_api import HealthApi
|
|
11
12
|
from compute_api_client.api.jobs_api import JobsApi
|
|
12
13
|
from compute_api_client.api.languages_api import LanguagesApi
|
|
13
14
|
from compute_api_client.api.members_api import MembersApi
|
|
@@ -328,6 +328,7 @@ class BackendTypesApi:
|
|
|
328
328
|
description: Optional[StrictStr] = None,
|
|
329
329
|
image_id: Optional[StrictStr] = None,
|
|
330
330
|
is_hardware: Optional[StrictBool] = None,
|
|
331
|
+
nqubits: Optional[StrictInt] = None,
|
|
331
332
|
status: Optional[BackendStatus] = None,
|
|
332
333
|
default_number_of_shots: Optional[StrictInt] = None,
|
|
333
334
|
max_number_of_shots: Optional[StrictInt] = None,
|
|
@@ -364,6 +365,8 @@ class BackendTypesApi:
|
|
|
364
365
|
:type image_id: str
|
|
365
366
|
:param is_hardware:
|
|
366
367
|
:type is_hardware: bool
|
|
368
|
+
:param nqubits:
|
|
369
|
+
:type nqubits: int
|
|
367
370
|
:param status:
|
|
368
371
|
:type status: BackendStatus
|
|
369
372
|
:param default_number_of_shots:
|
|
@@ -407,6 +410,7 @@ class BackendTypesApi:
|
|
|
407
410
|
description=description,
|
|
408
411
|
image_id=image_id,
|
|
409
412
|
is_hardware=is_hardware,
|
|
413
|
+
nqubits=nqubits,
|
|
410
414
|
status=status,
|
|
411
415
|
default_number_of_shots=default_number_of_shots,
|
|
412
416
|
max_number_of_shots=max_number_of_shots,
|
|
@@ -445,6 +449,7 @@ class BackendTypesApi:
|
|
|
445
449
|
description: Optional[StrictStr] = None,
|
|
446
450
|
image_id: Optional[StrictStr] = None,
|
|
447
451
|
is_hardware: Optional[StrictBool] = None,
|
|
452
|
+
nqubits: Optional[StrictInt] = None,
|
|
448
453
|
status: Optional[BackendStatus] = None,
|
|
449
454
|
default_number_of_shots: Optional[StrictInt] = None,
|
|
450
455
|
max_number_of_shots: Optional[StrictInt] = None,
|
|
@@ -481,6 +486,8 @@ class BackendTypesApi:
|
|
|
481
486
|
:type image_id: str
|
|
482
487
|
:param is_hardware:
|
|
483
488
|
:type is_hardware: bool
|
|
489
|
+
:param nqubits:
|
|
490
|
+
:type nqubits: int
|
|
484
491
|
:param status:
|
|
485
492
|
:type status: BackendStatus
|
|
486
493
|
:param default_number_of_shots:
|
|
@@ -524,6 +531,7 @@ class BackendTypesApi:
|
|
|
524
531
|
description=description,
|
|
525
532
|
image_id=image_id,
|
|
526
533
|
is_hardware=is_hardware,
|
|
534
|
+
nqubits=nqubits,
|
|
527
535
|
status=status,
|
|
528
536
|
default_number_of_shots=default_number_of_shots,
|
|
529
537
|
max_number_of_shots=max_number_of_shots,
|
|
@@ -562,6 +570,7 @@ class BackendTypesApi:
|
|
|
562
570
|
description: Optional[StrictStr] = None,
|
|
563
571
|
image_id: Optional[StrictStr] = None,
|
|
564
572
|
is_hardware: Optional[StrictBool] = None,
|
|
573
|
+
nqubits: Optional[StrictInt] = None,
|
|
565
574
|
status: Optional[BackendStatus] = None,
|
|
566
575
|
default_number_of_shots: Optional[StrictInt] = None,
|
|
567
576
|
max_number_of_shots: Optional[StrictInt] = None,
|
|
@@ -598,6 +607,8 @@ class BackendTypesApi:
|
|
|
598
607
|
:type image_id: str
|
|
599
608
|
:param is_hardware:
|
|
600
609
|
:type is_hardware: bool
|
|
610
|
+
:param nqubits:
|
|
611
|
+
:type nqubits: int
|
|
601
612
|
:param status:
|
|
602
613
|
:type status: BackendStatus
|
|
603
614
|
:param default_number_of_shots:
|
|
@@ -641,6 +652,7 @@ class BackendTypesApi:
|
|
|
641
652
|
description=description,
|
|
642
653
|
image_id=image_id,
|
|
643
654
|
is_hardware=is_hardware,
|
|
655
|
+
nqubits=nqubits,
|
|
644
656
|
status=status,
|
|
645
657
|
default_number_of_shots=default_number_of_shots,
|
|
646
658
|
max_number_of_shots=max_number_of_shots,
|
|
@@ -674,6 +686,7 @@ class BackendTypesApi:
|
|
|
674
686
|
description,
|
|
675
687
|
image_id,
|
|
676
688
|
is_hardware,
|
|
689
|
+
nqubits,
|
|
677
690
|
status,
|
|
678
691
|
default_number_of_shots,
|
|
679
692
|
max_number_of_shots,
|
|
@@ -726,6 +739,10 @@ class BackendTypesApi:
|
|
|
726
739
|
|
|
727
740
|
_query_params.append(('is_hardware', is_hardware))
|
|
728
741
|
|
|
742
|
+
if nqubits is not None:
|
|
743
|
+
|
|
744
|
+
_query_params.append(('nqubits', nqubits))
|
|
745
|
+
|
|
729
746
|
if status is not None:
|
|
730
747
|
|
|
731
748
|
_query_params.append(('status', status.value))
|
|
@@ -867,6 +867,8 @@ class FilesApi:
|
|
|
867
867
|
language_id: Optional[StrictInt] = None,
|
|
868
868
|
compile_stage: Optional[CompileStage] = None,
|
|
869
869
|
generated: Optional[StrictBool] = None,
|
|
870
|
+
name__isnull: Optional[StrictBool] = None,
|
|
871
|
+
name: Optional[StrictStr] = None,
|
|
870
872
|
sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
|
|
871
873
|
latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
|
|
872
874
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
|
|
@@ -900,6 +902,10 @@ class FilesApi:
|
|
|
900
902
|
:type compile_stage: CompileStage
|
|
901
903
|
:param generated:
|
|
902
904
|
:type generated: bool
|
|
905
|
+
:param name__isnull:
|
|
906
|
+
:type name__isnull: bool
|
|
907
|
+
:param name:
|
|
908
|
+
:type name: str
|
|
903
909
|
:param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
|
|
904
910
|
:type sort_by: str
|
|
905
911
|
:param latest: If True gets the most recently created object.
|
|
@@ -937,6 +943,8 @@ class FilesApi:
|
|
|
937
943
|
language_id=language_id,
|
|
938
944
|
compile_stage=compile_stage,
|
|
939
945
|
generated=generated,
|
|
946
|
+
name__isnull=name__isnull,
|
|
947
|
+
name=name,
|
|
940
948
|
sort_by=sort_by,
|
|
941
949
|
latest=latest,
|
|
942
950
|
page=page,
|
|
@@ -972,6 +980,8 @@ class FilesApi:
|
|
|
972
980
|
language_id: Optional[StrictInt] = None,
|
|
973
981
|
compile_stage: Optional[CompileStage] = None,
|
|
974
982
|
generated: Optional[StrictBool] = None,
|
|
983
|
+
name__isnull: Optional[StrictBool] = None,
|
|
984
|
+
name: Optional[StrictStr] = None,
|
|
975
985
|
sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
|
|
976
986
|
latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
|
|
977
987
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
|
|
@@ -1005,6 +1015,10 @@ class FilesApi:
|
|
|
1005
1015
|
:type compile_stage: CompileStage
|
|
1006
1016
|
:param generated:
|
|
1007
1017
|
:type generated: bool
|
|
1018
|
+
:param name__isnull:
|
|
1019
|
+
:type name__isnull: bool
|
|
1020
|
+
:param name:
|
|
1021
|
+
:type name: str
|
|
1008
1022
|
:param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
|
|
1009
1023
|
:type sort_by: str
|
|
1010
1024
|
:param latest: If True gets the most recently created object.
|
|
@@ -1042,6 +1056,8 @@ class FilesApi:
|
|
|
1042
1056
|
language_id=language_id,
|
|
1043
1057
|
compile_stage=compile_stage,
|
|
1044
1058
|
generated=generated,
|
|
1059
|
+
name__isnull=name__isnull,
|
|
1060
|
+
name=name,
|
|
1045
1061
|
sort_by=sort_by,
|
|
1046
1062
|
latest=latest,
|
|
1047
1063
|
page=page,
|
|
@@ -1077,6 +1093,8 @@ class FilesApi:
|
|
|
1077
1093
|
language_id: Optional[StrictInt] = None,
|
|
1078
1094
|
compile_stage: Optional[CompileStage] = None,
|
|
1079
1095
|
generated: Optional[StrictBool] = None,
|
|
1096
|
+
name__isnull: Optional[StrictBool] = None,
|
|
1097
|
+
name: Optional[StrictStr] = None,
|
|
1080
1098
|
sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
|
|
1081
1099
|
latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
|
|
1082
1100
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
|
|
@@ -1110,6 +1128,10 @@ class FilesApi:
|
|
|
1110
1128
|
:type compile_stage: CompileStage
|
|
1111
1129
|
:param generated:
|
|
1112
1130
|
:type generated: bool
|
|
1131
|
+
:param name__isnull:
|
|
1132
|
+
:type name__isnull: bool
|
|
1133
|
+
:param name:
|
|
1134
|
+
:type name: str
|
|
1113
1135
|
:param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
|
|
1114
1136
|
:type sort_by: str
|
|
1115
1137
|
:param latest: If True gets the most recently created object.
|
|
@@ -1147,6 +1169,8 @@ class FilesApi:
|
|
|
1147
1169
|
language_id=language_id,
|
|
1148
1170
|
compile_stage=compile_stage,
|
|
1149
1171
|
generated=generated,
|
|
1172
|
+
name__isnull=name__isnull,
|
|
1173
|
+
name=name,
|
|
1150
1174
|
sort_by=sort_by,
|
|
1151
1175
|
latest=latest,
|
|
1152
1176
|
page=page,
|
|
@@ -1177,6 +1201,8 @@ class FilesApi:
|
|
|
1177
1201
|
language_id,
|
|
1178
1202
|
compile_stage,
|
|
1179
1203
|
generated,
|
|
1204
|
+
name__isnull,
|
|
1205
|
+
name,
|
|
1180
1206
|
sort_by,
|
|
1181
1207
|
latest,
|
|
1182
1208
|
page,
|
|
@@ -1226,6 +1252,14 @@ class FilesApi:
|
|
|
1226
1252
|
|
|
1227
1253
|
_query_params.append(('generated', generated))
|
|
1228
1254
|
|
|
1255
|
+
if name__isnull is not None:
|
|
1256
|
+
|
|
1257
|
+
_query_params.append(('name__isnull', name__isnull))
|
|
1258
|
+
|
|
1259
|
+
if name is not None:
|
|
1260
|
+
|
|
1261
|
+
_query_params.append(('name', name))
|
|
1262
|
+
|
|
1229
1263
|
if sort_by is not None:
|
|
1230
1264
|
|
|
1231
1265
|
_query_params.append(('sort_by', sort_by))
|
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Quantum Inspire 2
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 0.1.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
import io
|
|
16
|
+
import warnings
|
|
17
|
+
|
|
18
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
19
|
+
from typing import Dict, List, Optional, Tuple, Union, Any
|
|
20
|
+
|
|
21
|
+
try:
|
|
22
|
+
from typing import Annotated
|
|
23
|
+
except ImportError:
|
|
24
|
+
from typing_extensions import Annotated
|
|
25
|
+
|
|
26
|
+
from typing import Any
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
from compute_api_client.api_client import ApiClient
|
|
30
|
+
from compute_api_client.api_response import ApiResponse
|
|
31
|
+
from compute_api_client.rest import RESTResponseType
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class HealthApi:
|
|
35
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
36
|
+
Ref: https://openapi-generator.tech
|
|
37
|
+
|
|
38
|
+
Do not edit the class manually.
|
|
39
|
+
"""
|
|
40
|
+
|
|
41
|
+
def __init__(self, api_client=None) -> None:
|
|
42
|
+
if api_client is None:
|
|
43
|
+
api_client = ApiClient.get_default()
|
|
44
|
+
self.api_client = api_client
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
@validate_call
|
|
48
|
+
async def healthz_healthz_get(
|
|
49
|
+
self,
|
|
50
|
+
_request_timeout: Union[
|
|
51
|
+
None,
|
|
52
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
53
|
+
Tuple[
|
|
54
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
55
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
56
|
+
]
|
|
57
|
+
] = None,
|
|
58
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
59
|
+
_content_type: Optional[StrictStr] = None,
|
|
60
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
61
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
62
|
+
) -> object:
|
|
63
|
+
"""Report health
|
|
64
|
+
|
|
65
|
+
Health endpoint.
|
|
66
|
+
|
|
67
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
68
|
+
number provided, it will be total request
|
|
69
|
+
timeout. It can also be a pair (tuple) of
|
|
70
|
+
(connection, read) timeouts.
|
|
71
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
72
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
73
|
+
request; this effectively ignores the
|
|
74
|
+
authentication in the spec for a single request.
|
|
75
|
+
:type _request_auth: dict, optional
|
|
76
|
+
:param _content_type: force content-type for the request.
|
|
77
|
+
:type _content_type: str, Optional
|
|
78
|
+
:param _headers: set to override the headers for a single
|
|
79
|
+
request; this effectively ignores the headers
|
|
80
|
+
in the spec for a single request.
|
|
81
|
+
:type _headers: dict, optional
|
|
82
|
+
:param _host_index: set to override the host_index for a single
|
|
83
|
+
request; this effectively ignores the host_index
|
|
84
|
+
in the spec for a single request.
|
|
85
|
+
:type _host_index: int, optional
|
|
86
|
+
:return: Returns the result object.
|
|
87
|
+
""" # noqa: E501
|
|
88
|
+
|
|
89
|
+
_param = self._healthz_healthz_get_serialize(
|
|
90
|
+
_request_auth=_request_auth,
|
|
91
|
+
_content_type=_content_type,
|
|
92
|
+
_headers=_headers,
|
|
93
|
+
_host_index=_host_index
|
|
94
|
+
)
|
|
95
|
+
|
|
96
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
97
|
+
'200': "object"
|
|
98
|
+
|
|
99
|
+
}
|
|
100
|
+
response_data = await self.api_client.call_api(
|
|
101
|
+
*_param,
|
|
102
|
+
_request_timeout=_request_timeout
|
|
103
|
+
)
|
|
104
|
+
await response_data.read()
|
|
105
|
+
return self.api_client.response_deserialize(
|
|
106
|
+
response_data=response_data,
|
|
107
|
+
response_types_map=_response_types_map,
|
|
108
|
+
).data
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
@validate_call
|
|
112
|
+
async def healthz_healthz_get_with_http_info(
|
|
113
|
+
self,
|
|
114
|
+
_request_timeout: Union[
|
|
115
|
+
None,
|
|
116
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
117
|
+
Tuple[
|
|
118
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
119
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
120
|
+
]
|
|
121
|
+
] = None,
|
|
122
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
123
|
+
_content_type: Optional[StrictStr] = None,
|
|
124
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
125
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
126
|
+
) -> ApiResponse[object]:
|
|
127
|
+
"""Report health
|
|
128
|
+
|
|
129
|
+
Health endpoint.
|
|
130
|
+
|
|
131
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
132
|
+
number provided, it will be total request
|
|
133
|
+
timeout. It can also be a pair (tuple) of
|
|
134
|
+
(connection, read) timeouts.
|
|
135
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
136
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
137
|
+
request; this effectively ignores the
|
|
138
|
+
authentication in the spec for a single request.
|
|
139
|
+
:type _request_auth: dict, optional
|
|
140
|
+
:param _content_type: force content-type for the request.
|
|
141
|
+
:type _content_type: str, Optional
|
|
142
|
+
:param _headers: set to override the headers for a single
|
|
143
|
+
request; this effectively ignores the headers
|
|
144
|
+
in the spec for a single request.
|
|
145
|
+
:type _headers: dict, optional
|
|
146
|
+
:param _host_index: set to override the host_index for a single
|
|
147
|
+
request; this effectively ignores the host_index
|
|
148
|
+
in the spec for a single request.
|
|
149
|
+
:type _host_index: int, optional
|
|
150
|
+
:return: Returns the result object.
|
|
151
|
+
""" # noqa: E501
|
|
152
|
+
|
|
153
|
+
_param = self._healthz_healthz_get_serialize(
|
|
154
|
+
_request_auth=_request_auth,
|
|
155
|
+
_content_type=_content_type,
|
|
156
|
+
_headers=_headers,
|
|
157
|
+
_host_index=_host_index
|
|
158
|
+
)
|
|
159
|
+
|
|
160
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
161
|
+
'200': "object"
|
|
162
|
+
|
|
163
|
+
}
|
|
164
|
+
response_data = await self.api_client.call_api(
|
|
165
|
+
*_param,
|
|
166
|
+
_request_timeout=_request_timeout
|
|
167
|
+
)
|
|
168
|
+
await response_data.read()
|
|
169
|
+
return self.api_client.response_deserialize(
|
|
170
|
+
response_data=response_data,
|
|
171
|
+
response_types_map=_response_types_map,
|
|
172
|
+
)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
@validate_call
|
|
176
|
+
async def healthz_healthz_get_without_preload_content(
|
|
177
|
+
self,
|
|
178
|
+
_request_timeout: Union[
|
|
179
|
+
None,
|
|
180
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
181
|
+
Tuple[
|
|
182
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
183
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
184
|
+
]
|
|
185
|
+
] = None,
|
|
186
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
187
|
+
_content_type: Optional[StrictStr] = None,
|
|
188
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
189
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
190
|
+
) -> RESTResponseType:
|
|
191
|
+
"""Report health
|
|
192
|
+
|
|
193
|
+
Health endpoint.
|
|
194
|
+
|
|
195
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
196
|
+
number provided, it will be total request
|
|
197
|
+
timeout. It can also be a pair (tuple) of
|
|
198
|
+
(connection, read) timeouts.
|
|
199
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
200
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
201
|
+
request; this effectively ignores the
|
|
202
|
+
authentication in the spec for a single request.
|
|
203
|
+
:type _request_auth: dict, optional
|
|
204
|
+
:param _content_type: force content-type for the request.
|
|
205
|
+
:type _content_type: str, Optional
|
|
206
|
+
:param _headers: set to override the headers for a single
|
|
207
|
+
request; this effectively ignores the headers
|
|
208
|
+
in the spec for a single request.
|
|
209
|
+
:type _headers: dict, optional
|
|
210
|
+
:param _host_index: set to override the host_index for a single
|
|
211
|
+
request; this effectively ignores the host_index
|
|
212
|
+
in the spec for a single request.
|
|
213
|
+
:type _host_index: int, optional
|
|
214
|
+
:return: Returns the result object.
|
|
215
|
+
""" # noqa: E501
|
|
216
|
+
|
|
217
|
+
_param = self._healthz_healthz_get_serialize(
|
|
218
|
+
_request_auth=_request_auth,
|
|
219
|
+
_content_type=_content_type,
|
|
220
|
+
_headers=_headers,
|
|
221
|
+
_host_index=_host_index
|
|
222
|
+
)
|
|
223
|
+
|
|
224
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
225
|
+
'200': "object"
|
|
226
|
+
|
|
227
|
+
}
|
|
228
|
+
response_data = await self.api_client.call_api(
|
|
229
|
+
*_param,
|
|
230
|
+
_request_timeout=_request_timeout
|
|
231
|
+
)
|
|
232
|
+
return response_data.response
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
def _healthz_healthz_get_serialize(
|
|
236
|
+
self,
|
|
237
|
+
_request_auth,
|
|
238
|
+
_content_type,
|
|
239
|
+
_headers,
|
|
240
|
+
_host_index,
|
|
241
|
+
) -> Tuple:
|
|
242
|
+
|
|
243
|
+
_host = None
|
|
244
|
+
|
|
245
|
+
_collection_formats: Dict[str, str] = {
|
|
246
|
+
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
_path_params: Dict[str, str] = {}
|
|
250
|
+
_query_params: List[Tuple[str, str]] = []
|
|
251
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
252
|
+
_form_params: List[Tuple[str, str]] = []
|
|
253
|
+
_files: Dict[str, str] = {}
|
|
254
|
+
_body_params: Optional[bytes] = None
|
|
255
|
+
|
|
256
|
+
# process the path parameters
|
|
257
|
+
# process the query parameters
|
|
258
|
+
# process the header parameters
|
|
259
|
+
# process the form parameters
|
|
260
|
+
# process the body parameter
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
# set the HTTP header `Accept`
|
|
264
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
265
|
+
[
|
|
266
|
+
'application/json'
|
|
267
|
+
]
|
|
268
|
+
)
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
# authentication setting
|
|
272
|
+
_auth_settings: List[str] = [
|
|
273
|
+
]
|
|
274
|
+
|
|
275
|
+
return self.api_client.param_serialize(
|
|
276
|
+
method='GET',
|
|
277
|
+
resource_path='/healthz',
|
|
278
|
+
path_params=_path_params,
|
|
279
|
+
query_params=_query_params,
|
|
280
|
+
header_params=_header_params,
|
|
281
|
+
body=_body_params,
|
|
282
|
+
post_params=_form_params,
|
|
283
|
+
files=_files,
|
|
284
|
+
auth_settings=_auth_settings,
|
|
285
|
+
collection_formats=_collection_formats,
|
|
286
|
+
_host=_host,
|
|
287
|
+
_request_auth=_request_auth
|
|
288
|
+
)
|
|
289
|
+
|
|
290
|
+
|
|
@@ -29,7 +29,7 @@ from datetime import datetime
|
|
|
29
29
|
|
|
30
30
|
from pydantic import StrictBool, StrictFloat, StrictInt, StrictStr
|
|
31
31
|
|
|
32
|
-
from typing import
|
|
32
|
+
from typing import Optional, Union
|
|
33
33
|
|
|
34
34
|
from compute_api_client.models.page_result import PageResult
|
|
35
35
|
from compute_api_client.models.result import Result
|
|
@@ -876,7 +876,6 @@ class ResultsApi:
|
|
|
876
876
|
latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
|
|
877
877
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
|
|
878
878
|
size: Annotated[Optional[Annotated[int, Field(le=100, strict=True, ge=1)]], Field(description="Page size")] = None,
|
|
879
|
-
body: Optional[Dict[str, Any]] = None,
|
|
880
879
|
_request_timeout: Union[
|
|
881
880
|
None,
|
|
882
881
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -924,8 +923,6 @@ class ResultsApi:
|
|
|
924
923
|
:type page: int
|
|
925
924
|
:param size: Page size
|
|
926
925
|
:type size: int
|
|
927
|
-
:param body:
|
|
928
|
-
:type body: object
|
|
929
926
|
:param _request_timeout: timeout setting for this request. If one
|
|
930
927
|
number provided, it will be total request
|
|
931
928
|
timeout. It can also be a pair (tuple) of
|
|
@@ -964,7 +961,6 @@ class ResultsApi:
|
|
|
964
961
|
latest=latest,
|
|
965
962
|
page=page,
|
|
966
963
|
size=size,
|
|
967
|
-
body=body,
|
|
968
964
|
_request_auth=_request_auth,
|
|
969
965
|
_content_type=_content_type,
|
|
970
966
|
_headers=_headers,
|
|
@@ -1006,7 +1002,6 @@ class ResultsApi:
|
|
|
1006
1002
|
latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
|
|
1007
1003
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
|
|
1008
1004
|
size: Annotated[Optional[Annotated[int, Field(le=100, strict=True, ge=1)]], Field(description="Page size")] = None,
|
|
1009
|
-
body: Optional[Dict[str, Any]] = None,
|
|
1010
1005
|
_request_timeout: Union[
|
|
1011
1006
|
None,
|
|
1012
1007
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1054,8 +1049,6 @@ class ResultsApi:
|
|
|
1054
1049
|
:type page: int
|
|
1055
1050
|
:param size: Page size
|
|
1056
1051
|
:type size: int
|
|
1057
|
-
:param body:
|
|
1058
|
-
:type body: object
|
|
1059
1052
|
:param _request_timeout: timeout setting for this request. If one
|
|
1060
1053
|
number provided, it will be total request
|
|
1061
1054
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1094,7 +1087,6 @@ class ResultsApi:
|
|
|
1094
1087
|
latest=latest,
|
|
1095
1088
|
page=page,
|
|
1096
1089
|
size=size,
|
|
1097
|
-
body=body,
|
|
1098
1090
|
_request_auth=_request_auth,
|
|
1099
1091
|
_content_type=_content_type,
|
|
1100
1092
|
_headers=_headers,
|
|
@@ -1136,7 +1128,6 @@ class ResultsApi:
|
|
|
1136
1128
|
latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
|
|
1137
1129
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
|
|
1138
1130
|
size: Annotated[Optional[Annotated[int, Field(le=100, strict=True, ge=1)]], Field(description="Page size")] = None,
|
|
1139
|
-
body: Optional[Dict[str, Any]] = None,
|
|
1140
1131
|
_request_timeout: Union[
|
|
1141
1132
|
None,
|
|
1142
1133
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1184,8 +1175,6 @@ class ResultsApi:
|
|
|
1184
1175
|
:type page: int
|
|
1185
1176
|
:param size: Page size
|
|
1186
1177
|
:type size: int
|
|
1187
|
-
:param body:
|
|
1188
|
-
:type body: object
|
|
1189
1178
|
:param _request_timeout: timeout setting for this request. If one
|
|
1190
1179
|
number provided, it will be total request
|
|
1191
1180
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1224,7 +1213,6 @@ class ResultsApi:
|
|
|
1224
1213
|
latest=latest,
|
|
1225
1214
|
page=page,
|
|
1226
1215
|
size=size,
|
|
1227
|
-
body=body,
|
|
1228
1216
|
_request_auth=_request_auth,
|
|
1229
1217
|
_content_type=_content_type,
|
|
1230
1218
|
_headers=_headers,
|
|
@@ -1261,7 +1249,6 @@ class ResultsApi:
|
|
|
1261
1249
|
latest,
|
|
1262
1250
|
page,
|
|
1263
1251
|
size,
|
|
1264
|
-
body,
|
|
1265
1252
|
_request_auth,
|
|
1266
1253
|
_content_type,
|
|
1267
1254
|
_headers,
|
|
@@ -1353,8 +1340,6 @@ class ResultsApi:
|
|
|
1353
1340
|
# process the header parameters
|
|
1354
1341
|
# process the form parameters
|
|
1355
1342
|
# process the body parameter
|
|
1356
|
-
if body is not None:
|
|
1357
|
-
_body_params = body
|
|
1358
1343
|
|
|
1359
1344
|
|
|
1360
1345
|
# set the HTTP header `Accept`
|
|
@@ -1364,19 +1349,6 @@ class ResultsApi:
|
|
|
1364
1349
|
]
|
|
1365
1350
|
)
|
|
1366
1351
|
|
|
1367
|
-
# set the HTTP header `Content-Type`
|
|
1368
|
-
if _content_type:
|
|
1369
|
-
_header_params['Content-Type'] = _content_type
|
|
1370
|
-
else:
|
|
1371
|
-
_default_content_type = (
|
|
1372
|
-
self.api_client.select_header_content_type(
|
|
1373
|
-
[
|
|
1374
|
-
'application/json'
|
|
1375
|
-
]
|
|
1376
|
-
)
|
|
1377
|
-
)
|
|
1378
|
-
if _default_content_type is not None:
|
|
1379
|
-
_header_params['Content-Type'] = _default_content_type
|
|
1380
1352
|
|
|
1381
1353
|
# authentication setting
|
|
1382
1354
|
_auth_settings: List[str] = [
|
|
@@ -12,7 +12,9 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**is_hardware** | **bool** | |
|
|
13
13
|
**features** | **List[str]** | |
|
|
14
14
|
**default_compiler_config** | **object** | |
|
|
15
|
-
**
|
|
15
|
+
**gateset** | **List[str]** | |
|
|
16
|
+
**topology** | **List[List[int]]** | |
|
|
17
|
+
**nqubits** | **int** | |
|
|
16
18
|
**status** | [**BackendStatus**](BackendStatus.md) | |
|
|
17
19
|
**default_number_of_shots** | **int** | |
|
|
18
20
|
**max_number_of_shots** | **int** | |
|
|
@@ -85,7 +85,7 @@ Name | Type | Description | Notes
|
|
|
85
85
|
[[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)
|
|
86
86
|
|
|
87
87
|
# **read_backend_types_backend_types_get**
|
|
88
|
-
> PageBackendType read_backend_types_backend_types_get(id=id, name=name, infrastructure=infrastructure, description=description, image_id=image_id, is_hardware=is_hardware, status=status, default_number_of_shots=default_number_of_shots, max_number_of_shots=max_number_of_shots, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
88
|
+
> PageBackendType read_backend_types_backend_types_get(id=id, name=name, infrastructure=infrastructure, description=description, image_id=image_id, is_hardware=is_hardware, nqubits=nqubits, status=status, default_number_of_shots=default_number_of_shots, max_number_of_shots=max_number_of_shots, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
89
89
|
|
|
90
90
|
List backend types
|
|
91
91
|
|
|
@@ -126,6 +126,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
|
|
|
126
126
|
description = 'description_example' # str | (optional)
|
|
127
127
|
image_id = 'image_id_example' # str | (optional)
|
|
128
128
|
is_hardware = True # bool | (optional)
|
|
129
|
+
nqubits = 56 # int | (optional)
|
|
129
130
|
status = compute_api_client.BackendStatus() # BackendStatus | (optional)
|
|
130
131
|
default_number_of_shots = 56 # int | (optional)
|
|
131
132
|
max_number_of_shots = 56 # int | (optional)
|
|
@@ -136,7 +137,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
|
|
|
136
137
|
|
|
137
138
|
try:
|
|
138
139
|
# List backend types
|
|
139
|
-
api_response = await api_instance.read_backend_types_backend_types_get(id=id, name=name, infrastructure=infrastructure, description=description, image_id=image_id, is_hardware=is_hardware, status=status, default_number_of_shots=default_number_of_shots, max_number_of_shots=max_number_of_shots, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
140
|
+
api_response = await api_instance.read_backend_types_backend_types_get(id=id, name=name, infrastructure=infrastructure, description=description, image_id=image_id, is_hardware=is_hardware, nqubits=nqubits, status=status, default_number_of_shots=default_number_of_shots, max_number_of_shots=max_number_of_shots, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
140
141
|
print("The response of BackendTypesApi->read_backend_types_backend_types_get:\n")
|
|
141
142
|
pprint(api_response)
|
|
142
143
|
except Exception as e:
|
|
@@ -155,6 +156,7 @@ Name | Type | Description | Notes
|
|
|
155
156
|
**description** | **str**| | [optional]
|
|
156
157
|
**image_id** | **str**| | [optional]
|
|
157
158
|
**is_hardware** | **bool**| | [optional]
|
|
159
|
+
**nqubits** | **int**| | [optional]
|
|
158
160
|
**status** | [**BackendStatus**](.md)| | [optional]
|
|
159
161
|
**default_number_of_shots** | **int**| | [optional]
|
|
160
162
|
**max_number_of_shots** | **int**| | [optional]
|
compute_api_client/docs/File.md
CHANGED
|
@@ -243,7 +243,7 @@ Name | Type | Description | Notes
|
|
|
243
243
|
[[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)
|
|
244
244
|
|
|
245
245
|
# **read_files_files_get**
|
|
246
|
-
> PageFile read_files_files_get(id=id, commit_id=commit_id, content=content, language_id=language_id, compile_stage=compile_stage, generated=generated, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
246
|
+
> PageFile read_files_files_get(id=id, commit_id=commit_id, content=content, language_id=language_id, compile_stage=compile_stage, generated=generated, name__isnull=name__isnull, name=name, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
247
247
|
|
|
248
248
|
List files
|
|
249
249
|
|
|
@@ -284,6 +284,8 @@ async with compute_api_client.ApiClient(configuration) as api_client:
|
|
|
284
284
|
language_id = 56 # int | (optional)
|
|
285
285
|
compile_stage = compute_api_client.CompileStage() # CompileStage | (optional)
|
|
286
286
|
generated = True # bool | (optional)
|
|
287
|
+
name__isnull = True # bool | (optional)
|
|
288
|
+
name = 'name_example' # str | (optional)
|
|
287
289
|
sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
|
|
288
290
|
latest = True # bool | If True gets the most recently created object. (optional)
|
|
289
291
|
page = 1 # int | Page number (optional) (default to 1)
|
|
@@ -291,7 +293,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
|
|
|
291
293
|
|
|
292
294
|
try:
|
|
293
295
|
# List files
|
|
294
|
-
api_response = await api_instance.read_files_files_get(id=id, commit_id=commit_id, content=content, language_id=language_id, compile_stage=compile_stage, generated=generated, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
296
|
+
api_response = await api_instance.read_files_files_get(id=id, commit_id=commit_id, content=content, language_id=language_id, compile_stage=compile_stage, generated=generated, name__isnull=name__isnull, name=name, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
295
297
|
print("The response of FilesApi->read_files_files_get:\n")
|
|
296
298
|
pprint(api_response)
|
|
297
299
|
except Exception as e:
|
|
@@ -310,6 +312,8 @@ Name | Type | Description | Notes
|
|
|
310
312
|
**language_id** | **int**| | [optional]
|
|
311
313
|
**compile_stage** | [**CompileStage**](.md)| | [optional]
|
|
312
314
|
**generated** | **bool**| | [optional]
|
|
315
|
+
**name__isnull** | **bool**| | [optional]
|
|
316
|
+
**name** | **str**| | [optional]
|
|
313
317
|
**sort_by** | **str**| The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional]
|
|
314
318
|
**latest** | **bool**| If True gets the most recently created object. | [optional]
|
|
315
319
|
**page** | **int**| Page number | [optional] [default to 1]
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# compute_api_client.HealthApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *http://localhost*
|
|
4
|
+
|
|
5
|
+
Method | HTTP request | Description
|
|
6
|
+
------------- | ------------- | -------------
|
|
7
|
+
[**healthz_healthz_get**](HealthApi.md#healthz_healthz_get) | **GET** /healthz | Report health
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# **healthz_healthz_get**
|
|
11
|
+
> object healthz_healthz_get()
|
|
12
|
+
|
|
13
|
+
Report health
|
|
14
|
+
|
|
15
|
+
Health endpoint.
|
|
16
|
+
|
|
17
|
+
### Example
|
|
18
|
+
|
|
19
|
+
```python
|
|
20
|
+
import time
|
|
21
|
+
import os
|
|
22
|
+
import compute_api_client
|
|
23
|
+
from compute_api_client.rest import ApiException
|
|
24
|
+
from pprint import pprint
|
|
25
|
+
|
|
26
|
+
# Defining the host is optional and defaults to http://localhost
|
|
27
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
28
|
+
configuration = compute_api_client.Configuration(
|
|
29
|
+
host = "http://localhost"
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Enter a context with an instance of the API client
|
|
34
|
+
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
35
|
+
# Create an instance of the API class
|
|
36
|
+
api_instance = compute_api_client.HealthApi(api_client)
|
|
37
|
+
|
|
38
|
+
try:
|
|
39
|
+
# Report health
|
|
40
|
+
api_response = await api_instance.healthz_healthz_get()
|
|
41
|
+
print("The response of HealthApi->healthz_healthz_get:\n")
|
|
42
|
+
pprint(api_response)
|
|
43
|
+
except Exception as e:
|
|
44
|
+
print("Exception when calling HealthApi->healthz_healthz_get: %s\n" % e)
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Parameters
|
|
50
|
+
This endpoint does not need any parameter.
|
|
51
|
+
|
|
52
|
+
### Return type
|
|
53
|
+
|
|
54
|
+
**object**
|
|
55
|
+
|
|
56
|
+
### Authorization
|
|
57
|
+
|
|
58
|
+
No authorization required
|
|
59
|
+
|
|
60
|
+
### HTTP request headers
|
|
61
|
+
|
|
62
|
+
- **Content-Type**: Not defined
|
|
63
|
+
- **Accept**: application/json
|
|
64
|
+
|
|
65
|
+
### HTTP response details
|
|
66
|
+
| Status code | Description | Response headers |
|
|
67
|
+
|-------------|-------------|------------------|
|
|
68
|
+
**200** | Successful Response | - |
|
|
69
|
+
|
|
70
|
+
[[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)
|
|
71
|
+
|
|
@@ -245,7 +245,7 @@ Name | Type | Description | Notes
|
|
|
245
245
|
[[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)
|
|
246
246
|
|
|
247
247
|
# **read_results_by_algorithm_id_results_algorithm_algorithm_id_get**
|
|
248
|
-
> PageResult read_results_by_algorithm_id_results_algorithm_algorithm_id_get(algorithm_id, id=id, created_on=created_on, job_id=job_id, metadata_id=metadata_id, execution_time_in_seconds=execution_time_in_seconds, shots_requested__isnull=shots_requested__isnull, shots_requested=shots_requested, shots_done__isnull=shots_done__isnull, shots_done=shots_done, results__isnull=results__isnull, sort_by=sort_by, latest=latest, page=page, size=size
|
|
248
|
+
> PageResult read_results_by_algorithm_id_results_algorithm_algorithm_id_get(algorithm_id, id=id, created_on=created_on, job_id=job_id, metadata_id=metadata_id, execution_time_in_seconds=execution_time_in_seconds, shots_requested__isnull=shots_requested__isnull, shots_requested=shots_requested, shots_done__isnull=shots_done__isnull, shots_done=shots_done, results__isnull=results__isnull, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
249
249
|
|
|
250
250
|
Retrieve results by algorithm ID
|
|
251
251
|
|
|
@@ -294,11 +294,10 @@ async with compute_api_client.ApiClient(configuration) as api_client:
|
|
|
294
294
|
latest = True # bool | If True gets the most recently created object. (optional)
|
|
295
295
|
page = 1 # int | Page number (optional) (default to 1)
|
|
296
296
|
size = 50 # int | Page size (optional) (default to 50)
|
|
297
|
-
body = None # object | (optional)
|
|
298
297
|
|
|
299
298
|
try:
|
|
300
299
|
# Retrieve results by algorithm ID
|
|
301
|
-
api_response = await api_instance.read_results_by_algorithm_id_results_algorithm_algorithm_id_get(algorithm_id, id=id, created_on=created_on, job_id=job_id, metadata_id=metadata_id, execution_time_in_seconds=execution_time_in_seconds, shots_requested__isnull=shots_requested__isnull, shots_requested=shots_requested, shots_done__isnull=shots_done__isnull, shots_done=shots_done, results__isnull=results__isnull, sort_by=sort_by, latest=latest, page=page, size=size
|
|
300
|
+
api_response = await api_instance.read_results_by_algorithm_id_results_algorithm_algorithm_id_get(algorithm_id, id=id, created_on=created_on, job_id=job_id, metadata_id=metadata_id, execution_time_in_seconds=execution_time_in_seconds, shots_requested__isnull=shots_requested__isnull, shots_requested=shots_requested, shots_done__isnull=shots_done__isnull, shots_done=shots_done, results__isnull=results__isnull, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
302
301
|
print("The response of ResultsApi->read_results_by_algorithm_id_results_algorithm_algorithm_id_get:\n")
|
|
303
302
|
pprint(api_response)
|
|
304
303
|
except Exception as e:
|
|
@@ -326,7 +325,6 @@ Name | Type | Description | Notes
|
|
|
326
325
|
**latest** | **bool**| If True gets the most recently created object. | [optional]
|
|
327
326
|
**page** | **int**| Page number | [optional] [default to 1]
|
|
328
327
|
**size** | **int**| Page size | [optional] [default to 50]
|
|
329
|
-
**body** | **object**| | [optional]
|
|
330
328
|
|
|
331
329
|
### Return type
|
|
332
330
|
|
|
@@ -338,7 +336,7 @@ Name | Type | Description | Notes
|
|
|
338
336
|
|
|
339
337
|
### HTTP request headers
|
|
340
338
|
|
|
341
|
-
- **Content-Type**:
|
|
339
|
+
- **Content-Type**: Not defined
|
|
342
340
|
- **Accept**: application/json
|
|
343
341
|
|
|
344
342
|
### HTTP response details
|
|
@@ -40,11 +40,13 @@ class BackendType(BaseModel):
|
|
|
40
40
|
is_hardware: StrictBool
|
|
41
41
|
features: List[StrictStr]
|
|
42
42
|
default_compiler_config: Union[str, Any]
|
|
43
|
-
|
|
43
|
+
gateset: List[StrictStr]
|
|
44
|
+
topology: List[List[StrictInt]]
|
|
45
|
+
nqubits: StrictInt
|
|
44
46
|
status: BackendStatus
|
|
45
47
|
default_number_of_shots: StrictInt
|
|
46
48
|
max_number_of_shots: StrictInt
|
|
47
|
-
__properties: ClassVar[List[str]] = ["id", "name", "infrastructure", "description", "image_id", "is_hardware", "features", "default_compiler_config", "
|
|
49
|
+
__properties: ClassVar[List[str]] = ["id", "name", "infrastructure", "description", "image_id", "is_hardware", "features", "default_compiler_config", "gateset", "topology", "nqubits", "status", "default_number_of_shots", "max_number_of_shots"]
|
|
48
50
|
|
|
49
51
|
model_config = {
|
|
50
52
|
"populate_by_name": True,
|
|
@@ -102,7 +104,9 @@ class BackendType(BaseModel):
|
|
|
102
104
|
"is_hardware": obj.get("is_hardware"),
|
|
103
105
|
"features": obj.get("features"),
|
|
104
106
|
"default_compiler_config": obj.get("default_compiler_config"),
|
|
105
|
-
"
|
|
107
|
+
"gateset": obj.get("gateset"),
|
|
108
|
+
"topology": obj.get("topology"),
|
|
109
|
+
"nqubits": obj.get("nqubits"),
|
|
106
110
|
"status": obj.get("status"),
|
|
107
111
|
"default_number_of_shots": obj.get("default_number_of_shots"),
|
|
108
112
|
"max_number_of_shots": obj.get("max_number_of_shots")
|
|
@@ -18,8 +18,10 @@ import re # noqa: F401
|
|
|
18
18
|
import json
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
from typing import Any, ClassVar, Dict, List, Union
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
22
22
|
from pydantic import BaseModel, StrictBool, StrictInt, StrictStr
|
|
23
|
+
from pydantic import Field
|
|
24
|
+
from typing_extensions import Annotated
|
|
23
25
|
from compute_api_client.models.compile_stage import CompileStage
|
|
24
26
|
try:
|
|
25
27
|
from typing import Self
|
|
@@ -37,7 +39,8 @@ class File(BaseModel):
|
|
|
37
39
|
compile_stage: CompileStage
|
|
38
40
|
compile_properties: Union[str, Any]
|
|
39
41
|
generated: StrictBool
|
|
40
|
-
|
|
42
|
+
name: Optional[Annotated[str, Field(strict=True, max_length=255)]] = None
|
|
43
|
+
__properties: ClassVar[List[str]] = ["id", "commit_id", "content", "language_id", "compile_stage", "compile_properties", "generated", "name"]
|
|
41
44
|
|
|
42
45
|
model_config = {
|
|
43
46
|
"populate_by_name": True,
|
|
@@ -75,6 +78,11 @@ class File(BaseModel):
|
|
|
75
78
|
},
|
|
76
79
|
exclude_none=True,
|
|
77
80
|
)
|
|
81
|
+
# set to None if name (nullable) is None
|
|
82
|
+
# and model_fields_set contains the field
|
|
83
|
+
if self.name is None and "name" in self.model_fields_set:
|
|
84
|
+
_dict['name'] = None
|
|
85
|
+
|
|
78
86
|
return _dict
|
|
79
87
|
|
|
80
88
|
@classmethod
|
|
@@ -93,7 +101,8 @@ class File(BaseModel):
|
|
|
93
101
|
"language_id": obj.get("language_id"),
|
|
94
102
|
"compile_stage": obj.get("compile_stage"),
|
|
95
103
|
"compile_properties": obj.get("compile_properties"),
|
|
96
|
-
"generated": obj.get("generated")
|
|
104
|
+
"generated": obj.get("generated"),
|
|
105
|
+
"name": obj.get("name")
|
|
97
106
|
})
|
|
98
107
|
return _obj
|
|
99
108
|
|
|
@@ -20,6 +20,8 @@ import json
|
|
|
20
20
|
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
22
22
|
from pydantic import BaseModel, StrictBool, StrictInt, StrictStr
|
|
23
|
+
from pydantic import Field
|
|
24
|
+
from typing_extensions import Annotated
|
|
23
25
|
from compute_api_client.models.compile_stage import CompileStage
|
|
24
26
|
try:
|
|
25
27
|
from typing import Self
|
|
@@ -36,7 +38,8 @@ class FileIn(BaseModel):
|
|
|
36
38
|
compile_stage: CompileStage
|
|
37
39
|
compile_properties: Union[str, Any]
|
|
38
40
|
generated: Optional[StrictBool] = False
|
|
39
|
-
|
|
41
|
+
name: Optional[Annotated[str, Field(strict=True, max_length=255)]] = None
|
|
42
|
+
__properties: ClassVar[List[str]] = ["commit_id", "content", "language_id", "compile_stage", "compile_properties", "generated", "name"]
|
|
40
43
|
|
|
41
44
|
model_config = {
|
|
42
45
|
"populate_by_name": True,
|
|
@@ -74,6 +77,11 @@ class FileIn(BaseModel):
|
|
|
74
77
|
},
|
|
75
78
|
exclude_none=True,
|
|
76
79
|
)
|
|
80
|
+
# set to None if name (nullable) is None
|
|
81
|
+
# and model_fields_set contains the field
|
|
82
|
+
if self.name is None and "name" in self.model_fields_set:
|
|
83
|
+
_dict['name'] = None
|
|
84
|
+
|
|
77
85
|
return _dict
|
|
78
86
|
|
|
79
87
|
@classmethod
|
|
@@ -91,7 +99,8 @@ class FileIn(BaseModel):
|
|
|
91
99
|
"language_id": obj.get("language_id"),
|
|
92
100
|
"compile_stage": obj.get("compile_stage"),
|
|
93
101
|
"compile_properties": obj.get("compile_properties"),
|
|
94
|
-
"generated": obj.get("generated") if obj.get("generated") is not None else False
|
|
102
|
+
"generated": obj.get("generated") if obj.get("generated") is not None else False,
|
|
103
|
+
"name": obj.get("name")
|
|
95
104
|
})
|
|
96
105
|
return _obj
|
|
97
106
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qi-compute-api-client
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.36.0
|
|
4
4
|
Summary: An API client for the Compute Job Manager of Quantum Inspire.
|
|
5
5
|
Home-page: https://github.com/QuTech-Delft/compute-api-client
|
|
6
6
|
License: Apache-2.0
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Requires-Dist: aiohttp (>=3.
|
|
18
|
+
Requires-Dist: aiohttp (>=3.10.5,<4.0.0)
|
|
19
19
|
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
|
|
20
20
|
Requires-Dist: urllib3 (>=1.25.3,<2.0.0)
|
|
21
21
|
Project-URL: Repository, https://github.com/QuTech-Delft/compute-api-client
|
|
@@ -123,6 +123,7 @@ Class | Method | HTTP request | Description
|
|
|
123
123
|
*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
|
|
124
124
|
*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
|
|
125
125
|
*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
|
|
126
|
+
*HealthApi* | [**healthz_healthz_get**](compute_api_client/docs/HealthApi.md#healthz_healthz_get) | **GET** /healthz | Report health
|
|
126
127
|
*JobsApi* | [**create_job_jobs_post**](compute_api_client/docs/JobsApi.md#create_job_jobs_post) | **POST** /jobs | Create job
|
|
127
128
|
*JobsApi* | [**delete_job_jobs_id_delete**](compute_api_client/docs/JobsApi.md#delete_job_jobs_id_delete) | **DELETE** /jobs/{id} | Destroy job
|
|
128
129
|
*JobsApi* | [**read_job_jobs_id_get**](compute_api_client/docs/JobsApi.md#read_job_jobs_id_get) | **GET** /jobs/{id} | Retrieve job
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
compute_api_client/__init__.py,sha256=
|
|
2
|
-
compute_api_client/api/__init__.py,sha256=
|
|
1
|
+
compute_api_client/__init__.py,sha256=PPvcbRzgr9QBIFU8dThwoJSJ-3Wvvwi61xCPYGxZ2vs,6160
|
|
2
|
+
compute_api_client/api/__init__.py,sha256=r1XAqXSWdvgMGLPSoqbjUEHsf6p2tYHMg7Aejad7u24,1199
|
|
3
3
|
compute_api_client/api/algorithms_api.py,sha256=Iq3X7347R8ZsF3hDoIlEA8girl0ww_k1orMPMc6ygDE,59489
|
|
4
4
|
compute_api_client/api/backend_api.py,sha256=zNX_CYAm-6IrCuR7hlgHOCTwOkR1YQXn-3Ck9VUsCK8,57958
|
|
5
|
-
compute_api_client/api/backend_types_api.py,sha256=
|
|
5
|
+
compute_api_client/api/backend_types_api.py,sha256=RV57i8F30r4aMVYpRNaBLKtmIb0TcUikn6d82rSBuhM,30054
|
|
6
6
|
compute_api_client/api/batch_jobs_api.py,sha256=OB9EsaNpLvr80Tq3CUkNoJlwrO4CnDnVBeHne3FVJa8,83892
|
|
7
7
|
compute_api_client/api/commits_api.py,sha256=5V_qvBwjVK9ALOQ3sEgdBw0uKtypUBkhha9dQO4tGVY,46742
|
|
8
|
-
compute_api_client/api/files_api.py,sha256=
|
|
8
|
+
compute_api_client/api/files_api.py,sha256=eItVegQVnni7AK2yyT_6Paj4WB01vUwM8fIwxwJEZuk,47862
|
|
9
9
|
compute_api_client/api/final_results_api.py,sha256=zfr4Yn44Q5KhNSHAk2aC_ZfLa1yASHHq3D3_MJ3ToNg,31894
|
|
10
|
+
compute_api_client/api/health_api.py,sha256=7oW14fRdmsHaQjlTUXMCksFb7wfmKybQhL6zqiFa2bg,10223
|
|
10
11
|
compute_api_client/api/jobs_api.py,sha256=Pr-nutBW3a7eeymnoPUJRLWrFFb_lVyRi50_k4aZv4M,62808
|
|
11
12
|
compute_api_client/api/languages_api.py,sha256=J9XI0q_60UaBfaemtV4XdgelkEDUqjx6WUTLjb-XJ4k,25756
|
|
12
13
|
compute_api_client/api/members_api.py,sha256=tCywXFQoJPF0BnJ_Da4lEyM4XD9BPLTCjYkjWkpfNAw,45684
|
|
@@ -14,7 +15,7 @@ compute_api_client/api/metadata_api.py,sha256=eLy_tlOhIUxoPDHMI779eALslCr3AxynUy
|
|
|
14
15
|
compute_api_client/api/permissions_api.py,sha256=-8Y7YJa4lpaCVHckoVwYa-cJYiWD-98_IL0su1ArsEI,49598
|
|
15
16
|
compute_api_client/api/projects_api.py,sha256=URa3DDiCqiHdR7NWfWR-Y7-9RuQ7UOAWQKxEVyWMDf8,71112
|
|
16
17
|
compute_api_client/api/reservations_api.py,sha256=28sDPr3slUvdtEzBDeNOHvjzX5A_oxPSgPEkgagChlw,50193
|
|
17
|
-
compute_api_client/api/results_api.py,sha256=
|
|
18
|
+
compute_api_client/api/results_api.py,sha256=Avnsaj6aHcR43YI-wbanGEbOL3cgWqfSLoCL3OxTiEM,64357
|
|
18
19
|
compute_api_client/api/teams_api.py,sha256=daGp9YTZF7I5NCAgm2_2xW4sOTh30oqpMZE0ppQs-fw,25747
|
|
19
20
|
compute_api_client/api/transactions_api.py,sha256=vQz7UvzTA1BGKUz08A1-8gz3975QnqLG87V9dsvsTs4,29950
|
|
20
21
|
compute_api_client/api/users_api.py,sha256=veol1D2YXX3NWs9Y_uljjdjG2PsEz8y1hSF-5jHmtt0,47705
|
|
@@ -30,8 +31,8 @@ compute_api_client/docs/BackendApi.md,sha256=KWld3mvfxlP_ZiYNSHxNNCkMSwuSnbKy9aF
|
|
|
30
31
|
compute_api_client/docs/BackendIn.md,sha256=7_drRygOUPHFWjrvAJGo7WwmcyK6EeRnlSnA6WtTCu0,978
|
|
31
32
|
compute_api_client/docs/BackendPatch.md,sha256=xET1pnI8JStGhtHm7qT-1zv7RCuKl2CUIKtYueWq72U,927
|
|
32
33
|
compute_api_client/docs/BackendStatus.md,sha256=ofnS843IHCIxoywjJJ01GP90Gn1XedAm5xR8TONmUbk,292
|
|
33
|
-
compute_api_client/docs/BackendType.md,sha256=
|
|
34
|
-
compute_api_client/docs/BackendTypesApi.md,sha256=
|
|
34
|
+
compute_api_client/docs/BackendType.md,sha256=mHhQKSZ7a-8g02F5vOsfosavoTaYcsVvw3J4ZAlNaR4,1320
|
|
35
|
+
compute_api_client/docs/BackendTypesApi.md,sha256=hfKaNCifgyNLw2p1f68ggQNmBOSsmO8TePhNkRnnJxA,7306
|
|
35
36
|
compute_api_client/docs/BackendWithAuthentication.md,sha256=u9lZh4FusMtOuV53yc0QXHdnTas-4HNC06NyDh8E1Go,1256
|
|
36
37
|
compute_api_client/docs/BatchJob.md,sha256=IozaJI2zAL1zo_zmuI-RIKvLGK68KkyW53AH4jbIaIs,1210
|
|
37
38
|
compute_api_client/docs/BatchJobIn.md,sha256=9-nP1Xgnzd5tfvo8WmandUWR8IY-2pMeZyW0HveKZEU,847
|
|
@@ -42,14 +43,15 @@ compute_api_client/docs/CommitIn.md,sha256=tnd4OQ1brIRnNGAGkH3x_HRIQIg68CZTuAEJ2
|
|
|
42
43
|
compute_api_client/docs/CommitsApi.md,sha256=URc0Hg8YCHaqieHbRFEdd33kcM29xmPKvh9yG_ZpUTU,10974
|
|
43
44
|
compute_api_client/docs/CompileStage.md,sha256=-U9wb4fyD8b_cjV1-GBIBJfbquFulRlHFm3C0GFnGik,291
|
|
44
45
|
compute_api_client/docs/Domain.md,sha256=HONTAt17CX2vFhnkHOFqMpJEIJjPM8GTBBQriWA71UY,285
|
|
45
|
-
compute_api_client/docs/File.md,sha256=
|
|
46
|
-
compute_api_client/docs/FileIn.md,sha256=
|
|
47
|
-
compute_api_client/docs/FilesApi.md,sha256=
|
|
46
|
+
compute_api_client/docs/File.md,sha256=D3F6zwqPEKjXBuGfbmh9ZiSWG1vMEpxut2qkJJJUEak,1003
|
|
47
|
+
compute_api_client/docs/FileIn.md,sha256=bLMQCgfGCu0eI56UqRu8k2yAlk5BS7Suf9xisN7IAlE,1042
|
|
48
|
+
compute_api_client/docs/FilesApi.md,sha256=GC4e2AiIb0IVxw5e2pEHulw0bnYVexBRxdR1ouSYAyg,11203
|
|
48
49
|
compute_api_client/docs/FinalResult.md,sha256=sRCvqIH3TXruJvgaHp4s6zyfCEkuBReVoaqr2iHVkJU,939
|
|
49
50
|
compute_api_client/docs/FinalResultIn.md,sha256=9RSstFSQ08-we_4TtoEAP1_KIq6FBdftRyc-DDkAGLQ,913
|
|
50
51
|
compute_api_client/docs/FinalResultsApi.md,sha256=V7X34yAWXZMlUBhPgC7EKhW_TXenIlhYR84PiH3kG9A,8167
|
|
51
52
|
compute_api_client/docs/HTTPNotFoundError.md,sha256=1GluS5OAVTk1qNrQwBOb29eQiNMJnCXyJk-0oKf-Rlc,936
|
|
52
53
|
compute_api_client/docs/HTTPValidationError.md,sha256=MRdybtO0HOeFCN3Zk221Q6XH6fw1Qyg8J9KLPn38tI4,1006
|
|
54
|
+
compute_api_client/docs/HealthApi.md,sha256=K1eWpfCF0AIbMsi0mAvFnIW-xjnnJvoQoyDQf7vyKEE,1825
|
|
53
55
|
compute_api_client/docs/Job.md,sha256=gXYcbGXDIqOTNuf9kHJJqmK7d9IrWIdsqLznizkrBNk,1048
|
|
54
56
|
compute_api_client/docs/JobIn.md,sha256=zN8pXLT1iGJg0o--iOfTZCm8Qj3UWApejFaASJ5AM8s,847
|
|
55
57
|
compute_api_client/docs/JobPatch.md,sha256=YadPzV_CU2oygKaaw8FJuikEo4M6QqO5uR628w1bKf4,827
|
|
@@ -94,7 +96,7 @@ compute_api_client/docs/ReservationIn.md,sha256=veTcJp5zNuApDCm76I6FawcWVjyLcvxG
|
|
|
94
96
|
compute_api_client/docs/ReservationsApi.md,sha256=ru49lUSCPKg6uyDcSWuxtGgqOwBMkWKpS7YKJZqj0Ok,12069
|
|
95
97
|
compute_api_client/docs/Result.md,sha256=dCqJTUZpwJQyoQh4-m45RhqlJQowbta06mBTyTH961U,1009
|
|
96
98
|
compute_api_client/docs/ResultIn.md,sha256=HFOPIzX-tVPrIUMYYdgyGoq9I_1KFNLDnGIJal0hdag,1027
|
|
97
|
-
compute_api_client/docs/ResultsApi.md,sha256=
|
|
99
|
+
compute_api_client/docs/ResultsApi.md,sha256=UNuPnLNQJh_QhknWbZbrRxakAWoB438XiTw_cCgHglw,15601
|
|
98
100
|
compute_api_client/docs/Role.md,sha256=WKRdBmGL1vHDgSxeIhUItEJnZJ-lMedQJoBEleQQou4,283
|
|
99
101
|
compute_api_client/docs/ShareType.md,sha256=AxfoQcU9wr9iU9r4unG1_miL8XT75FdAziZJzLDvQL0,288
|
|
100
102
|
compute_api_client/docs/Team.md,sha256=cGhzeDoJHyFX-offM414nz1lp1G9BslQUBGJejJMGWo,829
|
|
@@ -114,7 +116,7 @@ compute_api_client/models/backend.py,sha256=cZ_q1zzW6t9hDF-Llu2Zm8bgVQLvef0qFWLI
|
|
|
114
116
|
compute_api_client/models/backend_in.py,sha256=9XK17112GvDxH2jAJpedX7z4kQ4oNr14EsCQ5dmGsEk,2957
|
|
115
117
|
compute_api_client/models/backend_patch.py,sha256=QMKRJkxMIRiIc4dFQscqIJFe5zgCU11cm_6d_rnKOaE,2556
|
|
116
118
|
compute_api_client/models/backend_status.py,sha256=kLo5B4ZGtYuzRRADnxAdxeurPJYD_0TzJq69rYAnWGA,918
|
|
117
|
-
compute_api_client/models/backend_type.py,sha256=
|
|
119
|
+
compute_api_client/models/backend_type.py,sha256=pmWZ5eB04Ol_dLlA9BMoPfo9pq8QYIxj9_ruvIkkfzs,3895
|
|
118
120
|
compute_api_client/models/backend_with_authentication.py,sha256=Zc62u-GsghnQnWu8KYAqNcF9WA60uPYxqMnGtYeJkdc,3243
|
|
119
121
|
compute_api_client/models/batch_job.py,sha256=OWedWfSa23U5qDT9SELxtHdrQEuSlDbdhcMCC9bIa58,4388
|
|
120
122
|
compute_api_client/models/batch_job_in.py,sha256=K2HVli0JZyLf_sVQbP6J7b5PyQUAwM6TbFpPTEbEdmY,2391
|
|
@@ -123,8 +125,8 @@ compute_api_client/models/commit.py,sha256=n7E2FeCSYGoxR2GA-Iaynon5WgCbyme5_eXqn
|
|
|
123
125
|
compute_api_client/models/commit_in.py,sha256=ABzzJRUP9FEc2y6AxRmWUFRxT_KJSH7X_TIfLpLdfLk,2475
|
|
124
126
|
compute_api_client/models/compile_stage.py,sha256=tjYzMVSAAtFemNiAchhZs-SOO7sKv5aCkfZWp0UgSwE,919
|
|
125
127
|
compute_api_client/models/domain.py,sha256=74HU4E_VPU84i7035NxJArBJW87yo-MS-YSoT1J7-Ac,875
|
|
126
|
-
compute_api_client/models/file.py,sha256=
|
|
127
|
-
compute_api_client/models/file_in.py,sha256=
|
|
128
|
+
compute_api_client/models/file.py,sha256=PBxeUINDtmevly7zqwWTbg_1gKq21c5__HlGSfD5jqk,3381
|
|
129
|
+
compute_api_client/models/file_in.py,sha256=MWC-9renc5TKWJ5C-xSEWa7jmtm8xlL0YmcWOa0axRo,3397
|
|
128
130
|
compute_api_client/models/final_result.py,sha256=nikP4R6CF4otZ3kPmw1_VlrS51-y-2c1UdDhiVFmi28,2643
|
|
129
131
|
compute_api_client/models/final_result_in.py,sha256=0a3BDpM21XdfMp-kdr7DQ3peU4IDa_Pe-2z6v_D1s_8,2477
|
|
130
132
|
compute_api_client/models/http_not_found_error.py,sha256=ZxTsaEc2MX_Sb6pyoqt-sEhnQ6uwzpd8uRTEklcfaSY,2383
|
|
@@ -174,7 +176,7 @@ compute_api_client/models/user.py,sha256=WD1QyiqRlyObnK61QRE2NUCyY5Oc9ejeNcOGopm
|
|
|
174
176
|
compute_api_client/models/user_in.py,sha256=gMWrBylb3ihoc-bm-K7AG9w3iWGn_ROV14wZnGlJU30,3330
|
|
175
177
|
compute_api_client/models/validation_error.py,sha256=HWliEU5aNn3CkND3c0MxJf0D8bUJmE3HKncfUCKDk5o,2941
|
|
176
178
|
compute_api_client/rest.py,sha256=-N7fantOYHH5Ot97NOHm2ouAUuw4kdqbnOvCtf25H7g,5836
|
|
177
|
-
qi_compute_api_client-0.
|
|
178
|
-
qi_compute_api_client-0.
|
|
179
|
-
qi_compute_api_client-0.
|
|
180
|
-
qi_compute_api_client-0.
|
|
179
|
+
qi_compute_api_client-0.36.0.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
180
|
+
qi_compute_api_client-0.36.0.dist-info/METADATA,sha256=YBOiDHKX-qfJDS3KAdGWasK2u9JaoVObl3iNzSMUGRw,19940
|
|
181
|
+
qi_compute_api_client-0.36.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
182
|
+
qi_compute_api_client-0.36.0.dist-info/RECORD,,
|
{qi_compute_api_client-0.33.0.dist-info → qi_compute_api_client-0.36.0.dist-info}/LICENSE.md
RENAMED
|
File without changes
|
|
File without changes
|