qi-compute-api-client 0.38.2__py3-none-any.whl → 0.39.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.

@@ -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
+ supports_raw_data: Optional[StrictBool] = None,
331
332
  nqubits: Optional[StrictInt] = None,
332
333
  status: Optional[BackendStatus] = None,
333
334
  default_number_of_shots: Optional[StrictInt] = None,
@@ -365,6 +366,8 @@ class BackendTypesApi:
365
366
  :type image_id: str
366
367
  :param is_hardware:
367
368
  :type is_hardware: bool
369
+ :param supports_raw_data:
370
+ :type supports_raw_data: bool
368
371
  :param nqubits:
369
372
  :type nqubits: int
370
373
  :param status:
@@ -410,6 +413,7 @@ class BackendTypesApi:
410
413
  description=description,
411
414
  image_id=image_id,
412
415
  is_hardware=is_hardware,
416
+ supports_raw_data=supports_raw_data,
413
417
  nqubits=nqubits,
414
418
  status=status,
415
419
  default_number_of_shots=default_number_of_shots,
@@ -449,6 +453,7 @@ class BackendTypesApi:
449
453
  description: Optional[StrictStr] = None,
450
454
  image_id: Optional[StrictStr] = None,
451
455
  is_hardware: Optional[StrictBool] = None,
456
+ supports_raw_data: Optional[StrictBool] = None,
452
457
  nqubits: Optional[StrictInt] = None,
453
458
  status: Optional[BackendStatus] = None,
454
459
  default_number_of_shots: Optional[StrictInt] = None,
@@ -486,6 +491,8 @@ class BackendTypesApi:
486
491
  :type image_id: str
487
492
  :param is_hardware:
488
493
  :type is_hardware: bool
494
+ :param supports_raw_data:
495
+ :type supports_raw_data: bool
489
496
  :param nqubits:
490
497
  :type nqubits: int
491
498
  :param status:
@@ -531,6 +538,7 @@ class BackendTypesApi:
531
538
  description=description,
532
539
  image_id=image_id,
533
540
  is_hardware=is_hardware,
541
+ supports_raw_data=supports_raw_data,
534
542
  nqubits=nqubits,
535
543
  status=status,
536
544
  default_number_of_shots=default_number_of_shots,
@@ -570,6 +578,7 @@ class BackendTypesApi:
570
578
  description: Optional[StrictStr] = None,
571
579
  image_id: Optional[StrictStr] = None,
572
580
  is_hardware: Optional[StrictBool] = None,
581
+ supports_raw_data: Optional[StrictBool] = None,
573
582
  nqubits: Optional[StrictInt] = None,
574
583
  status: Optional[BackendStatus] = None,
575
584
  default_number_of_shots: Optional[StrictInt] = None,
@@ -607,6 +616,8 @@ class BackendTypesApi:
607
616
  :type image_id: str
608
617
  :param is_hardware:
609
618
  :type is_hardware: bool
619
+ :param supports_raw_data:
620
+ :type supports_raw_data: bool
610
621
  :param nqubits:
611
622
  :type nqubits: int
612
623
  :param status:
@@ -652,6 +663,7 @@ class BackendTypesApi:
652
663
  description=description,
653
664
  image_id=image_id,
654
665
  is_hardware=is_hardware,
666
+ supports_raw_data=supports_raw_data,
655
667
  nqubits=nqubits,
656
668
  status=status,
657
669
  default_number_of_shots=default_number_of_shots,
@@ -686,6 +698,7 @@ class BackendTypesApi:
686
698
  description,
687
699
  image_id,
688
700
  is_hardware,
701
+ supports_raw_data,
689
702
  nqubits,
690
703
  status,
691
704
  default_number_of_shots,
@@ -739,6 +752,10 @@ class BackendTypesApi:
739
752
 
740
753
  _query_params.append(('is_hardware', is_hardware))
741
754
 
755
+ if supports_raw_data is not None:
756
+
757
+ _query_params.append(('supports_raw_data', supports_raw_data))
758
+
742
759
  if nqubits is not None:
743
760
 
744
761
  _query_params.append(('nqubits', nqubits))
@@ -877,6 +877,7 @@ class JobsApi:
877
877
  finished_at: Optional[datetime] = None,
878
878
  number_of_shots__isnull: Optional[StrictBool] = None,
879
879
  number_of_shots: Optional[StrictInt] = None,
880
+ raw_data_enabled: Optional[StrictBool] = None,
880
881
  sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
881
882
  latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
882
883
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
@@ -922,6 +923,8 @@ class JobsApi:
922
923
  :type number_of_shots__isnull: bool
923
924
  :param number_of_shots:
924
925
  :type number_of_shots: int
926
+ :param raw_data_enabled:
927
+ :type raw_data_enabled: bool
925
928
  :param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
926
929
  :type sort_by: str
927
930
  :param latest: If True gets the most recently created object.
@@ -965,6 +968,7 @@ class JobsApi:
965
968
  finished_at=finished_at,
966
969
  number_of_shots__isnull=number_of_shots__isnull,
967
970
  number_of_shots=number_of_shots,
971
+ raw_data_enabled=raw_data_enabled,
968
972
  sort_by=sort_by,
969
973
  latest=latest,
970
974
  page=page,
@@ -1006,6 +1010,7 @@ class JobsApi:
1006
1010
  finished_at: Optional[datetime] = None,
1007
1011
  number_of_shots__isnull: Optional[StrictBool] = None,
1008
1012
  number_of_shots: Optional[StrictInt] = None,
1013
+ raw_data_enabled: Optional[StrictBool] = None,
1009
1014
  sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
1010
1015
  latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
1011
1016
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
@@ -1051,6 +1056,8 @@ class JobsApi:
1051
1056
  :type number_of_shots__isnull: bool
1052
1057
  :param number_of_shots:
1053
1058
  :type number_of_shots: int
1059
+ :param raw_data_enabled:
1060
+ :type raw_data_enabled: bool
1054
1061
  :param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
1055
1062
  :type sort_by: str
1056
1063
  :param latest: If True gets the most recently created object.
@@ -1094,6 +1101,7 @@ class JobsApi:
1094
1101
  finished_at=finished_at,
1095
1102
  number_of_shots__isnull=number_of_shots__isnull,
1096
1103
  number_of_shots=number_of_shots,
1104
+ raw_data_enabled=raw_data_enabled,
1097
1105
  sort_by=sort_by,
1098
1106
  latest=latest,
1099
1107
  page=page,
@@ -1135,6 +1143,7 @@ class JobsApi:
1135
1143
  finished_at: Optional[datetime] = None,
1136
1144
  number_of_shots__isnull: Optional[StrictBool] = None,
1137
1145
  number_of_shots: Optional[StrictInt] = None,
1146
+ raw_data_enabled: Optional[StrictBool] = None,
1138
1147
  sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
1139
1148
  latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
1140
1149
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
@@ -1180,6 +1189,8 @@ class JobsApi:
1180
1189
  :type number_of_shots__isnull: bool
1181
1190
  :param number_of_shots:
1182
1191
  :type number_of_shots: int
1192
+ :param raw_data_enabled:
1193
+ :type raw_data_enabled: bool
1183
1194
  :param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
1184
1195
  :type sort_by: str
1185
1196
  :param latest: If True gets the most recently created object.
@@ -1223,6 +1234,7 @@ class JobsApi:
1223
1234
  finished_at=finished_at,
1224
1235
  number_of_shots__isnull=number_of_shots__isnull,
1225
1236
  number_of_shots=number_of_shots,
1237
+ raw_data_enabled=raw_data_enabled,
1226
1238
  sort_by=sort_by,
1227
1239
  latest=latest,
1228
1240
  page=page,
@@ -1259,6 +1271,7 @@ class JobsApi:
1259
1271
  finished_at,
1260
1272
  number_of_shots__isnull,
1261
1273
  number_of_shots,
1274
+ raw_data_enabled,
1262
1275
  sort_by,
1263
1276
  latest,
1264
1277
  page,
@@ -1359,6 +1372,10 @@ class JobsApi:
1359
1372
 
1360
1373
  _query_params.append(('number_of_shots', number_of_shots))
1361
1374
 
1375
+ if raw_data_enabled is not None:
1376
+
1377
+ _query_params.append(('raw_data_enabled', raw_data_enabled))
1378
+
1362
1379
  if sort_by is not None:
1363
1380
 
1364
1381
  _query_params.append(('sort_by', sort_by))
@@ -872,6 +872,7 @@ class ResultsApi:
872
872
  shots_done__isnull: Optional[StrictBool] = None,
873
873
  shots_done: Optional[StrictInt] = None,
874
874
  results__isnull: Optional[StrictBool] = None,
875
+ raw_data__isnull: Optional[StrictBool] = None,
875
876
  sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
876
877
  latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
877
878
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
@@ -915,6 +916,8 @@ class ResultsApi:
915
916
  :type shots_done: int
916
917
  :param results__isnull:
917
918
  :type results__isnull: bool
919
+ :param raw_data__isnull:
920
+ :type raw_data__isnull: bool
918
921
  :param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
919
922
  :type sort_by: str
920
923
  :param latest: If True gets the most recently created object.
@@ -957,6 +960,7 @@ class ResultsApi:
957
960
  shots_done__isnull=shots_done__isnull,
958
961
  shots_done=shots_done,
959
962
  results__isnull=results__isnull,
963
+ raw_data__isnull=raw_data__isnull,
960
964
  sort_by=sort_by,
961
965
  latest=latest,
962
966
  page=page,
@@ -998,6 +1002,7 @@ class ResultsApi:
998
1002
  shots_done__isnull: Optional[StrictBool] = None,
999
1003
  shots_done: Optional[StrictInt] = None,
1000
1004
  results__isnull: Optional[StrictBool] = None,
1005
+ raw_data__isnull: Optional[StrictBool] = None,
1001
1006
  sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
1002
1007
  latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
1003
1008
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
@@ -1041,6 +1046,8 @@ class ResultsApi:
1041
1046
  :type shots_done: int
1042
1047
  :param results__isnull:
1043
1048
  :type results__isnull: bool
1049
+ :param raw_data__isnull:
1050
+ :type raw_data__isnull: bool
1044
1051
  :param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
1045
1052
  :type sort_by: str
1046
1053
  :param latest: If True gets the most recently created object.
@@ -1083,6 +1090,7 @@ class ResultsApi:
1083
1090
  shots_done__isnull=shots_done__isnull,
1084
1091
  shots_done=shots_done,
1085
1092
  results__isnull=results__isnull,
1093
+ raw_data__isnull=raw_data__isnull,
1086
1094
  sort_by=sort_by,
1087
1095
  latest=latest,
1088
1096
  page=page,
@@ -1124,6 +1132,7 @@ class ResultsApi:
1124
1132
  shots_done__isnull: Optional[StrictBool] = None,
1125
1133
  shots_done: Optional[StrictInt] = None,
1126
1134
  results__isnull: Optional[StrictBool] = None,
1135
+ raw_data__isnull: Optional[StrictBool] = None,
1127
1136
  sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
1128
1137
  latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
1129
1138
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
@@ -1167,6 +1176,8 @@ class ResultsApi:
1167
1176
  :type shots_done: int
1168
1177
  :param results__isnull:
1169
1178
  :type results__isnull: bool
1179
+ :param raw_data__isnull:
1180
+ :type raw_data__isnull: bool
1170
1181
  :param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
1171
1182
  :type sort_by: str
1172
1183
  :param latest: If True gets the most recently created object.
@@ -1209,6 +1220,7 @@ class ResultsApi:
1209
1220
  shots_done__isnull=shots_done__isnull,
1210
1221
  shots_done=shots_done,
1211
1222
  results__isnull=results__isnull,
1223
+ raw_data__isnull=raw_data__isnull,
1212
1224
  sort_by=sort_by,
1213
1225
  latest=latest,
1214
1226
  page=page,
@@ -1245,6 +1257,7 @@ class ResultsApi:
1245
1257
  shots_done__isnull,
1246
1258
  shots_done,
1247
1259
  results__isnull,
1260
+ raw_data__isnull,
1248
1261
  sort_by,
1249
1262
  latest,
1250
1263
  page,
@@ -1321,6 +1334,10 @@ class ResultsApi:
1321
1334
 
1322
1335
  _query_params.append(('results__isnull', results__isnull))
1323
1336
 
1337
+ if raw_data__isnull is not None:
1338
+
1339
+ _query_params.append(('raw_data__isnull', raw_data__isnull))
1340
+
1324
1341
  if sort_by is not None:
1325
1342
 
1326
1343
  _query_params.append(('sort_by', sort_by))
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
10
10
  **description** | **str** | |
11
11
  **image_id** | **str** | |
12
12
  **is_hardware** | **bool** | |
13
+ **supports_raw_data** | **bool** | |
13
14
  **features** | **List[str]** | |
14
15
  **default_compiler_config** | **object** | |
15
16
  **gateset** | **List[str]** | |
@@ -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, 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)
88
+ > PageBackendType read_backend_types_backend_types_get(id=id, name=name, infrastructure=infrastructure, description=description, image_id=image_id, is_hardware=is_hardware, supports_raw_data=supports_raw_data, 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
 
@@ -119,6 +119,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
119
119
  description = 'description_example' # str | (optional)
120
120
  image_id = 'image_id_example' # str | (optional)
121
121
  is_hardware = True # bool | (optional)
122
+ supports_raw_data = True # bool | (optional)
122
123
  nqubits = 56 # int | (optional)
123
124
  status = compute_api_client.BackendStatus() # BackendStatus | (optional)
124
125
  default_number_of_shots = 56 # int | (optional)
@@ -130,7 +131,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
130
131
 
131
132
  try:
132
133
  # List backend types
133
- 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)
134
+ 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, supports_raw_data=supports_raw_data, 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)
134
135
  print("The response of BackendTypesApi->read_backend_types_backend_types_get:\n")
135
136
  pprint(api_response)
136
137
  except Exception as e:
@@ -149,6 +150,7 @@ Name | Type | Description | Notes
149
150
  **description** | **str**| | [optional]
150
151
  **image_id** | **str**| | [optional]
151
152
  **is_hardware** | **bool**| | [optional]
153
+ **supports_raw_data** | **bool**| | [optional]
152
154
  **nqubits** | **int**| | [optional]
153
155
  **status** | [**BackendStatus**](.md)| | [optional]
154
156
  **default_number_of_shots** | **int**| | [optional]
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
  **queued_at** | **datetime** | |
14
14
  **finished_at** | **datetime** | |
15
15
  **number_of_shots** | **int** | |
16
+ **raw_data_enabled** | **bool** | |
16
17
 
17
18
  ## Example
18
19
 
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
  **file_id** | **int** | |
8
8
  **batch_job_id** | **int** | |
9
9
  **number_of_shots** | **int** | | [optional]
10
+ **raw_data_enabled** | **bool** | | [optional] [default to False]
10
11
 
11
12
  ## Example
12
13
 
@@ -244,7 +244,7 @@ Name | Type | Description | Notes
244
244
  [[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)
245
245
 
246
246
  # **read_jobs_jobs_get**
247
- > PageJob read_jobs_jobs_get(id=id, created_on=created_on, file_id=file_id, algorithm_type=algorithm_type, status=status, batch_job_id=batch_job_id, queued_at__isnull=queued_at__isnull, queued_at=queued_at, finished_at__isnull=finished_at__isnull, finished_at=finished_at, number_of_shots__isnull=number_of_shots__isnull, number_of_shots=number_of_shots, sort_by=sort_by, latest=latest, page=page, size=size)
247
+ > PageJob read_jobs_jobs_get(id=id, created_on=created_on, file_id=file_id, algorithm_type=algorithm_type, status=status, batch_job_id=batch_job_id, queued_at__isnull=queued_at__isnull, queued_at=queued_at, finished_at__isnull=finished_at__isnull, finished_at=finished_at, number_of_shots__isnull=number_of_shots__isnull, number_of_shots=number_of_shots, raw_data_enabled=raw_data_enabled, sort_by=sort_by, latest=latest, page=page, size=size)
248
248
 
249
249
  List jobs
250
250
 
@@ -299,6 +299,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
299
299
  finished_at = '2013-10-20T19:20:30+01:00' # datetime | (optional)
300
300
  number_of_shots__isnull = True # bool | (optional)
301
301
  number_of_shots = 56 # int | (optional)
302
+ raw_data_enabled = True # bool | (optional)
302
303
  sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
303
304
  latest = True # bool | If True gets the most recently created object. (optional)
304
305
  page = 1 # int | Page number (optional) (default to 1)
@@ -306,7 +307,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
306
307
 
307
308
  try:
308
309
  # List jobs
309
- api_response = await api_instance.read_jobs_jobs_get(id=id, created_on=created_on, file_id=file_id, algorithm_type=algorithm_type, status=status, batch_job_id=batch_job_id, queued_at__isnull=queued_at__isnull, queued_at=queued_at, finished_at__isnull=finished_at__isnull, finished_at=finished_at, number_of_shots__isnull=number_of_shots__isnull, number_of_shots=number_of_shots, sort_by=sort_by, latest=latest, page=page, size=size)
310
+ api_response = await api_instance.read_jobs_jobs_get(id=id, created_on=created_on, file_id=file_id, algorithm_type=algorithm_type, status=status, batch_job_id=batch_job_id, queued_at__isnull=queued_at__isnull, queued_at=queued_at, finished_at__isnull=finished_at__isnull, finished_at=finished_at, number_of_shots__isnull=number_of_shots__isnull, number_of_shots=number_of_shots, raw_data_enabled=raw_data_enabled, sort_by=sort_by, latest=latest, page=page, size=size)
310
311
  print("The response of JobsApi->read_jobs_jobs_get:\n")
311
312
  pprint(api_response)
312
313
  except Exception as e:
@@ -331,6 +332,7 @@ Name | Type | Description | Notes
331
332
  **finished_at** | **datetime**| | [optional]
332
333
  **number_of_shots__isnull** | **bool**| | [optional]
333
334
  **number_of_shots** | **int**| | [optional]
335
+ **raw_data_enabled** | **bool**| | [optional]
334
336
  **sort_by** | **str**| The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional]
335
337
  **latest** | **bool**| If True gets the most recently created object. | [optional]
336
338
  **page** | **int**| Page number | [optional] [default to 1]
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
12
12
  **shots_requested** | **int** | |
13
13
  **shots_done** | **int** | |
14
14
  **results** | **object** | |
15
+ **raw_data** | **List[str]** | |
15
16
 
16
17
  ## Example
17
18
 
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
10
10
  **shots_requested** | **int** | | [optional]
11
11
  **shots_done** | **int** | | [optional]
12
12
  **results** | **object** | | [optional]
13
+ **raw_data** | **List[str]** | | [optional]
13
14
 
14
15
  ## Example
15
16
 
@@ -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, raw_data__isnull=raw_data__isnull, sort_by=sort_by, latest=latest, page=page, size=size)
249
249
 
250
250
  Retrieve results by algorithm ID
251
251
 
@@ -290,6 +290,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
290
290
  shots_done__isnull = True # bool | (optional)
291
291
  shots_done = 56 # int | (optional)
292
292
  results__isnull = True # bool | (optional)
293
+ raw_data__isnull = True # bool | (optional)
293
294
  sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
294
295
  latest = True # bool | If True gets the most recently created object. (optional)
295
296
  page = 1 # int | Page number (optional) (default to 1)
@@ -297,7 +298,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
297
298
 
298
299
  try:
299
300
  # Retrieve results by algorithm ID
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)
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, raw_data__isnull=raw_data__isnull, sort_by=sort_by, latest=latest, page=page, size=size)
301
302
  print("The response of ResultsApi->read_results_by_algorithm_id_results_algorithm_algorithm_id_get:\n")
302
303
  pprint(api_response)
303
304
  except Exception as e:
@@ -321,6 +322,7 @@ Name | Type | Description | Notes
321
322
  **shots_done__isnull** | **bool**| | [optional]
322
323
  **shots_done** | **int**| | [optional]
323
324
  **results__isnull** | **bool**| | [optional]
325
+ **raw_data__isnull** | **bool**| | [optional]
324
326
  **sort_by** | **str**| The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional]
325
327
  **latest** | **bool**| If True gets the most recently created object. | [optional]
326
328
  **page** | **int**| Page number | [optional] [default to 1]
@@ -38,6 +38,7 @@ class BackendType(BaseModel):
38
38
  description: StrictStr
39
39
  image_id: Annotated[str, Field(strict=True, max_length=16)]
40
40
  is_hardware: StrictBool
41
+ supports_raw_data: StrictBool
41
42
  features: List[StrictStr]
42
43
  default_compiler_config: Union[str, Any]
43
44
  gateset: List[StrictStr]
@@ -46,7 +47,7 @@ class BackendType(BaseModel):
46
47
  status: BackendStatus
47
48
  default_number_of_shots: StrictInt
48
49
  max_number_of_shots: StrictInt
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"]
50
+ __properties: ClassVar[List[str]] = ["id", "name", "infrastructure", "description", "image_id", "is_hardware", "supports_raw_data", "features", "default_compiler_config", "gateset", "topology", "nqubits", "status", "default_number_of_shots", "max_number_of_shots"]
50
51
 
51
52
  model_config = {
52
53
  "populate_by_name": True,
@@ -102,6 +103,7 @@ class BackendType(BaseModel):
102
103
  "description": obj.get("description"),
103
104
  "image_id": obj.get("image_id"),
104
105
  "is_hardware": obj.get("is_hardware"),
106
+ "supports_raw_data": obj.get("supports_raw_data"),
105
107
  "features": obj.get("features"),
106
108
  "default_compiler_config": obj.get("default_compiler_config"),
107
109
  "gateset": obj.get("gateset"),
@@ -19,7 +19,7 @@ import json
19
19
 
20
20
  from datetime import datetime
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
- from pydantic import BaseModel, StrictInt
22
+ from pydantic import BaseModel, StrictBool, StrictInt
23
23
  from compute_api_client.models.algorithm_type import AlgorithmType
24
24
  from compute_api_client.models.job_status import JobStatus
25
25
  try:
@@ -40,7 +40,8 @@ class Job(BaseModel):
40
40
  queued_at: Optional[datetime]
41
41
  finished_at: Optional[datetime]
42
42
  number_of_shots: Optional[StrictInt]
43
- __properties: ClassVar[List[str]] = ["id", "created_on", "file_id", "algorithm_type", "status", "batch_job_id", "queued_at", "finished_at", "number_of_shots"]
43
+ raw_data_enabled: StrictBool
44
+ __properties: ClassVar[List[str]] = ["id", "created_on", "file_id", "algorithm_type", "status", "batch_job_id", "queued_at", "finished_at", "number_of_shots", "raw_data_enabled"]
44
45
 
45
46
  model_config = {
46
47
  "populate_by_name": True,
@@ -113,7 +114,8 @@ class Job(BaseModel):
113
114
  "batch_job_id": obj.get("batch_job_id"),
114
115
  "queued_at": obj.get("queued_at"),
115
116
  "finished_at": obj.get("finished_at"),
116
- "number_of_shots": obj.get("number_of_shots")
117
+ "number_of_shots": obj.get("number_of_shots"),
118
+ "raw_data_enabled": obj.get("raw_data_enabled")
117
119
  })
118
120
  return _obj
119
121
 
@@ -19,7 +19,7 @@ import json
19
19
 
20
20
 
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
- from pydantic import BaseModel, StrictInt
22
+ from pydantic import BaseModel, StrictBool, StrictInt
23
23
  try:
24
24
  from typing import Self
25
25
  except ImportError:
@@ -32,7 +32,8 @@ class JobIn(BaseModel):
32
32
  file_id: StrictInt
33
33
  batch_job_id: StrictInt
34
34
  number_of_shots: Optional[StrictInt] = None
35
- __properties: ClassVar[List[str]] = ["file_id", "batch_job_id", "number_of_shots"]
35
+ raw_data_enabled: Optional[StrictBool] = False
36
+ __properties: ClassVar[List[str]] = ["file_id", "batch_job_id", "number_of_shots", "raw_data_enabled"]
36
37
 
37
38
  model_config = {
38
39
  "populate_by_name": True,
@@ -89,7 +90,8 @@ class JobIn(BaseModel):
89
90
  _obj = cls.model_validate({
90
91
  "file_id": obj.get("file_id"),
91
92
  "batch_job_id": obj.get("batch_job_id"),
92
- "number_of_shots": obj.get("number_of_shots")
93
+ "number_of_shots": obj.get("number_of_shots"),
94
+ "raw_data_enabled": obj.get("raw_data_enabled") if obj.get("raw_data_enabled") is not None else False
93
95
  })
94
96
  return _obj
95
97
 
@@ -19,7 +19,7 @@ import json
19
19
 
20
20
  from datetime import datetime
21
21
  from typing import Any, ClassVar, Dict, List, Optional, Union
22
- from pydantic import BaseModel, StrictFloat, StrictInt
22
+ from pydantic import BaseModel, StrictFloat, StrictInt, StrictStr
23
23
  try:
24
24
  from typing import Self
25
25
  except ImportError:
@@ -37,7 +37,8 @@ class Result(BaseModel):
37
37
  shots_requested: Optional[StrictInt]
38
38
  shots_done: Optional[StrictInt]
39
39
  results: Optional[Union[str, Any]]
40
- __properties: ClassVar[List[str]] = ["id", "created_on", "job_id", "metadata_id", "execution_time_in_seconds", "shots_requested", "shots_done", "results"]
40
+ raw_data: Optional[List[StrictStr]]
41
+ __properties: ClassVar[List[str]] = ["id", "created_on", "job_id", "metadata_id", "execution_time_in_seconds", "shots_requested", "shots_done", "results", "raw_data"]
41
42
 
42
43
  model_config = {
43
44
  "populate_by_name": True,
@@ -90,6 +91,11 @@ class Result(BaseModel):
90
91
  if self.results is None and "results" in self.model_fields_set:
91
92
  _dict['results'] = None
92
93
 
94
+ # set to None if raw_data (nullable) is None
95
+ # and model_fields_set contains the field
96
+ if self.raw_data is None and "raw_data" in self.model_fields_set:
97
+ _dict['raw_data'] = None
98
+
93
99
  return _dict
94
100
 
95
101
  @classmethod
@@ -109,7 +115,8 @@ class Result(BaseModel):
109
115
  "execution_time_in_seconds": obj.get("execution_time_in_seconds"),
110
116
  "shots_requested": obj.get("shots_requested"),
111
117
  "shots_done": obj.get("shots_done"),
112
- "results": obj.get("results")
118
+ "results": obj.get("results"),
119
+ "raw_data": obj.get("raw_data")
113
120
  })
114
121
  return _obj
115
122
 
@@ -19,7 +19,7 @@ import json
19
19
 
20
20
 
21
21
  from typing import Any, ClassVar, Dict, List, Optional, Union
22
- from pydantic import BaseModel, StrictFloat, StrictInt
22
+ from pydantic import BaseModel, StrictFloat, StrictInt, StrictStr
23
23
  try:
24
24
  from typing import Self
25
25
  except ImportError:
@@ -35,7 +35,8 @@ class ResultIn(BaseModel):
35
35
  shots_requested: Optional[StrictInt] = None
36
36
  shots_done: Optional[StrictInt] = None
37
37
  results: Optional[Union[str, Any]] = None
38
- __properties: ClassVar[List[str]] = ["job_id", "metadata_id", "execution_time_in_seconds", "shots_requested", "shots_done", "results"]
38
+ raw_data: Optional[List[StrictStr]] = None
39
+ __properties: ClassVar[List[str]] = ["job_id", "metadata_id", "execution_time_in_seconds", "shots_requested", "shots_done", "results", "raw_data"]
39
40
 
40
41
  model_config = {
41
42
  "populate_by_name": True,
@@ -93,6 +94,11 @@ class ResultIn(BaseModel):
93
94
  if self.results is None and "results" in self.model_fields_set:
94
95
  _dict['results'] = None
95
96
 
97
+ # set to None if raw_data (nullable) is None
98
+ # and model_fields_set contains the field
99
+ if self.raw_data is None and "raw_data" in self.model_fields_set:
100
+ _dict['raw_data'] = None
101
+
96
102
  return _dict
97
103
 
98
104
  @classmethod
@@ -110,7 +116,8 @@ class ResultIn(BaseModel):
110
116
  "execution_time_in_seconds": obj.get("execution_time_in_seconds"),
111
117
  "shots_requested": obj.get("shots_requested"),
112
118
  "shots_done": obj.get("shots_done"),
113
- "results": obj.get("results")
119
+ "results": obj.get("results"),
120
+ "raw_data": obj.get("raw_data")
114
121
  })
115
122
  return _obj
116
123
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qi-compute-api-client
3
- Version: 0.38.2
3
+ Version: 0.39.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
@@ -250,7 +250,7 @@ Authentication schemes defined for the API:
250
250
 
251
251
  - **Type**: OAuth
252
252
  - **Flow**: accessCode
253
- - **Authorization URL**: https://auth.qi2.quantum-inspire.com/realms/oidc_staging/protocol/openid-connect/auth
253
+ - **Authorization URL**: https://auth.qi2.quantum-inspire.com/realms/oidc_development/protocol/openid-connect/auth
254
254
  - **Scopes**: N/A
255
255
 
256
256
  <a id="backend"></a>
@@ -2,20 +2,20 @@ compute_api_client/__init__.py,sha256=KzYZR60xot6tcs9C3UEJXLx3Zn-6O3AWarbY8qyBvM
2
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=8JU5Xchm8ptc_vDzyTSkWrpFLlED1Bse2X3Ax_QSeeQ,30028
5
+ compute_api_client/api/backend_types_api.py,sha256=Dq00VucVeV_6QvWSan-TBhih6XYoQDWPURRtci9vmi4,30729
6
6
  compute_api_client/api/batch_jobs_api.py,sha256=OB9EsaNpLvr80Tq3CUkNoJlwrO4CnDnVBeHne3FVJa8,83892
7
7
  compute_api_client/api/commits_api.py,sha256=ETcosKPwE8EYr_wd3rZItlmJqLtuSu8E2CpJt0t5y_0,57560
8
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
10
  compute_api_client/api/health_api.py,sha256=7oW14fRdmsHaQjlTUXMCksFb7wfmKybQhL6zqiFa2bg,10223
11
- compute_api_client/api/jobs_api.py,sha256=Pr-nutBW3a7eeymnoPUJRLWrFFb_lVyRi50_k4aZv4M,62808
11
+ compute_api_client/api/jobs_api.py,sha256=wBzFuwxl4MTds_D5XJt5c6C_Gv2gZLFBLuTAsZ34vd8,63490
12
12
  compute_api_client/api/languages_api.py,sha256=J9XI0q_60UaBfaemtV4XdgelkEDUqjx6WUTLjb-XJ4k,25756
13
13
  compute_api_client/api/members_api.py,sha256=tCywXFQoJPF0BnJ_Da4lEyM4XD9BPLTCjYkjWkpfNAw,45684
14
14
  compute_api_client/api/metadata_api.py,sha256=eLy_tlOhIUxoPDHMI779eALslCr3AxynUysIW_yaGuY,35288
15
15
  compute_api_client/api/permissions_api.py,sha256=-8Y7YJa4lpaCVHckoVwYa-cJYiWD-98_IL0su1ArsEI,49598
16
16
  compute_api_client/api/projects_api.py,sha256=URa3DDiCqiHdR7NWfWR-Y7-9RuQ7UOAWQKxEVyWMDf8,71112
17
17
  compute_api_client/api/reservations_api.py,sha256=28sDPr3slUvdtEzBDeNOHvjzX5A_oxPSgPEkgagChlw,50193
18
- compute_api_client/api/results_api.py,sha256=Avnsaj6aHcR43YI-wbanGEbOL3cgWqfSLoCL3OxTiEM,64357
18
+ compute_api_client/api/results_api.py,sha256=rhI1xTrQUSRurMZwmMMFtePMfLdYCqdPI_B5jHfw8ns,65039
19
19
  compute_api_client/api/teams_api.py,sha256=daGp9YTZF7I5NCAgm2_2xW4sOTh30oqpMZE0ppQs-fw,25747
20
20
  compute_api_client/api/transactions_api.py,sha256=vQz7UvzTA1BGKUz08A1-8gz3975QnqLG87V9dsvsTs4,29950
21
21
  compute_api_client/api/users_api.py,sha256=veol1D2YXX3NWs9Y_uljjdjG2PsEz8y1hSF-5jHmtt0,47705
@@ -31,8 +31,8 @@ compute_api_client/docs/BackendApi.md,sha256=KWld3mvfxlP_ZiYNSHxNNCkMSwuSnbKy9aF
31
31
  compute_api_client/docs/BackendIn.md,sha256=7_drRygOUPHFWjrvAJGo7WwmcyK6EeRnlSnA6WtTCu0,978
32
32
  compute_api_client/docs/BackendPatch.md,sha256=xET1pnI8JStGhtHm7qT-1zv7RCuKl2CUIKtYueWq72U,927
33
33
  compute_api_client/docs/BackendStatus.md,sha256=ofnS843IHCIxoywjJJ01GP90Gn1XedAm5xR8TONmUbk,292
34
- compute_api_client/docs/BackendType.md,sha256=mHhQKSZ7a-8g02F5vOsfosavoTaYcsVvw3J4ZAlNaR4,1320
35
- compute_api_client/docs/BackendTypesApi.md,sha256=bO8kCraT-jqXiu7HPPVDfYEI6m-P19ARmW21CrqzPnU,6963
34
+ compute_api_client/docs/BackendType.md,sha256=8NORl7QEvRr1lHOyHqdv8rnAiGWXaErw5kc1Kn74JfQ,1359
35
+ compute_api_client/docs/BackendTypesApi.md,sha256=17u9tnQ5_A_bKjFICYB79T5xRhLP8wFEd65owopCIug,7137
36
36
  compute_api_client/docs/BackendWithAuthentication.md,sha256=u9lZh4FusMtOuV53yc0QXHdnTas-4HNC06NyDh8E1Go,1256
37
37
  compute_api_client/docs/BatchJob.md,sha256=IozaJI2zAL1zo_zmuI-RIKvLGK68KkyW53AH4jbIaIs,1210
38
38
  compute_api_client/docs/BatchJobIn.md,sha256=9-nP1Xgnzd5tfvo8WmandUWR8IY-2pMeZyW0HveKZEU,847
@@ -53,11 +53,11 @@ compute_api_client/docs/FinalResultsApi.md,sha256=V7X34yAWXZMlUBhPgC7EKhW_TXenIl
53
53
  compute_api_client/docs/HTTPNotFoundError.md,sha256=1GluS5OAVTk1qNrQwBOb29eQiNMJnCXyJk-0oKf-Rlc,936
54
54
  compute_api_client/docs/HTTPValidationError.md,sha256=MRdybtO0HOeFCN3Zk221Q6XH6fw1Qyg8J9KLPn38tI4,1006
55
55
  compute_api_client/docs/HealthApi.md,sha256=K1eWpfCF0AIbMsi0mAvFnIW-xjnnJvoQoyDQf7vyKEE,1825
56
- compute_api_client/docs/Job.md,sha256=gXYcbGXDIqOTNuf9kHJJqmK7d9IrWIdsqLznizkrBNk,1048
57
- compute_api_client/docs/JobIn.md,sha256=zN8pXLT1iGJg0o--iOfTZCm8Qj3UWApejFaASJ5AM8s,847
56
+ compute_api_client/docs/Job.md,sha256=XqEefY9k5itKu4iYcz_1BsdvXm7ix5-kFEw-ORikReQ,1086
57
+ compute_api_client/docs/JobIn.md,sha256=inp79yDhGUJs5yaaoUEBFS5cso_Aop98yGkY7lq9ur4,914
58
58
  compute_api_client/docs/JobPatch.md,sha256=YadPzV_CU2oygKaaw8FJuikEo4M6QqO5uR628w1bKf4,827
59
59
  compute_api_client/docs/JobStatus.md,sha256=BFKP4etVPMe37IOCI77TTxry-KfOcwhj_H5oNSfPkPA,288
60
- compute_api_client/docs/JobsApi.md,sha256=4vV63UuUTQ9J2pYHkYz7J6Ng2WdK3jQ6AIHtRZBxxiA,15127
60
+ compute_api_client/docs/JobsApi.md,sha256=8ycW5dbDf854hH-i5A4bNX0-OAoyWsg7MiPQvaKArpw,15295
61
61
  compute_api_client/docs/Language.md,sha256=eHCpr4xEVei2MTA9zKu4DxBZamoSrSE3JOD36I7iDwU,847
62
62
  compute_api_client/docs/LanguagesApi.md,sha256=JcUYSDa-Sc7he7vUPWxWK0HH1RWfx_tJWG4bA7P3sqY,5977
63
63
  compute_api_client/docs/LocationInner.md,sha256=Z1Z8_cF7hlrfoOGVKoWz-ZhSQ457HKDdE_nXzZ9TPCA,843
@@ -95,9 +95,9 @@ compute_api_client/docs/ProjectsApi.md,sha256=q2Mhql2tzNei9rvA48iw0dMBMWd0RIuAHE
95
95
  compute_api_client/docs/Reservation.md,sha256=SX9xFwujAOl2yJBLO66CFM6JkxFquSNJQOBwkJAah5E,1035
96
96
  compute_api_client/docs/ReservationIn.md,sha256=veTcJp5zNuApDCm76I6FawcWVjyLcvxGOubmmfvPJiw,979
97
97
  compute_api_client/docs/ReservationsApi.md,sha256=ru49lUSCPKg6uyDcSWuxtGgqOwBMkWKpS7YKJZqj0Ok,12069
98
- compute_api_client/docs/Result.md,sha256=dCqJTUZpwJQyoQh4-m45RhqlJQowbta06mBTyTH961U,1009
99
- compute_api_client/docs/ResultIn.md,sha256=HFOPIzX-tVPrIUMYYdgyGoq9I_1KFNLDnGIJal0hdag,1027
100
- compute_api_client/docs/ResultsApi.md,sha256=UNuPnLNQJh_QhknWbZbrRxakAWoB438XiTw_cCgHglw,15601
98
+ compute_api_client/docs/Result.md,sha256=icbYykuov5M7Iy_0mMOhdJipicm5465mgG1oKb7R_H4,1044
99
+ compute_api_client/docs/ResultIn.md,sha256=8pqMeNWuIVsTC0wQdH658fTaRmCByFm1vDO5cF1nmew,1073
100
+ compute_api_client/docs/ResultsApi.md,sha256=_aAm0gNppupN_pQZSq0iTNe_7YB3eDGzebiwzW0IawE,15769
101
101
  compute_api_client/docs/Role.md,sha256=WKRdBmGL1vHDgSxeIhUItEJnZJ-lMedQJoBEleQQou4,283
102
102
  compute_api_client/docs/ShareType.md,sha256=AxfoQcU9wr9iU9r4unG1_miL8XT75FdAziZJzLDvQL0,288
103
103
  compute_api_client/docs/Team.md,sha256=cGhzeDoJHyFX-offM414nz1lp1G9BslQUBGJejJMGWo,829
@@ -117,7 +117,7 @@ compute_api_client/models/backend.py,sha256=cZ_q1zzW6t9hDF-Llu2Zm8bgVQLvef0qFWLI
117
117
  compute_api_client/models/backend_in.py,sha256=9XK17112GvDxH2jAJpedX7z4kQ4oNr14EsCQ5dmGsEk,2957
118
118
  compute_api_client/models/backend_patch.py,sha256=QMKRJkxMIRiIc4dFQscqIJFe5zgCU11cm_6d_rnKOaE,2556
119
119
  compute_api_client/models/backend_status.py,sha256=kLo5B4ZGtYuzRRADnxAdxeurPJYD_0TzJq69rYAnWGA,918
120
- compute_api_client/models/backend_type.py,sha256=pmWZ5eB04Ol_dLlA9BMoPfo9pq8QYIxj9_ruvIkkfzs,3895
120
+ compute_api_client/models/backend_type.py,sha256=eR_mdGTwAQrZ_mdw6hr8U9ZGQFfFyVWoBEhs-zJ72Fg,4013
121
121
  compute_api_client/models/backend_with_authentication.py,sha256=Zc62u-GsghnQnWu8KYAqNcF9WA60uPYxqMnGtYeJkdc,3243
122
122
  compute_api_client/models/batch_job.py,sha256=OWedWfSa23U5qDT9SELxtHdrQEuSlDbdhcMCC9bIa58,4388
123
123
  compute_api_client/models/batch_job_in.py,sha256=K2HVli0JZyLf_sVQbP6J7b5PyQUAwM6TbFpPTEbEdmY,2391
@@ -133,8 +133,8 @@ compute_api_client/models/final_result.py,sha256=nikP4R6CF4otZ3kPmw1_VlrS51-y-2c
133
133
  compute_api_client/models/final_result_in.py,sha256=0a3BDpM21XdfMp-kdr7DQ3peU4IDa_Pe-2z6v_D1s_8,2477
134
134
  compute_api_client/models/http_not_found_error.py,sha256=ZxTsaEc2MX_Sb6pyoqt-sEhnQ6uwzpd8uRTEklcfaSY,2383
135
135
  compute_api_client/models/http_validation_error.py,sha256=x7kRxeYeaVlQ-ckHPfkeFlsWsxZPDMKcvfOCR7jOlao,2882
136
- compute_api_client/models/job.py,sha256=WoyezOgmQTZgA4DJAF19RJWXs2WcTXoYhErP1fE5024,3924
137
- compute_api_client/models/job_in.py,sha256=dhlvkgXns3IxcMuscJwGBoue4oMuEzcwbnwBswCYal4,2815
136
+ compute_api_client/models/job.py,sha256=XFjB2GqK40Wkp-mGHF5nxTXzB_3qJYhbu2-kLbl_3y4,4050
137
+ compute_api_client/models/job_in.py,sha256=Ne6BfZcGSpzL3_6ELFYBJlTh1waOL3OdOUkKu69jC8U,3013
138
138
  compute_api_client/models/job_patch.py,sha256=eV3HzR59MOyuutLwhXDJTYbyT7rPVpabTde4BSBAGlI,2395
139
139
  compute_api_client/models/job_status.py,sha256=axKdggJ8edmJGFMVVarPd_rZIae6B1Sn7yTKOgtq8cc,930
140
140
  compute_api_client/models/language.py,sha256=rwSwzzxvpapfipAZYKpJ1bcgRzsvTVSnGCtPIs6X5Qs,2620
@@ -168,8 +168,8 @@ compute_api_client/models/project_in.py,sha256=3tu8QPZNkMRpHAUlKjpO5uXALMozXyJHp
168
168
  compute_api_client/models/project_patch.py,sha256=y-mTY6rulTO3oiS_4uTcqt4C48Q39zFEGymQdMFYJ_U,3668
169
169
  compute_api_client/models/reservation.py,sha256=-UR-pDG8anrYJdj_58FTm2zyh_OE5iLOSj2JD4HwfOA,3180
170
170
  compute_api_client/models/reservation_in.py,sha256=UyZx8ho1BUME6CveESoqv_LRT5fiqS__tLmIl5EDVkE,2685
171
- compute_api_client/models/result.py,sha256=dDg4GyKqgAFuobcHSHrsTfDUrUE6TP15hTIXpfoN0aU,3793
172
- compute_api_client/models/result_in.py,sha256=TKmPl2xr5cyN9rUmpD7GYBakqkrziu1TEEtBtJsP7-0,3892
171
+ compute_api_client/models/result.py,sha256=S9U0_qa4EIubJgQnVLmbq-sxPbwux-PjpyOar5WnFyc,4116
172
+ compute_api_client/models/result_in.py,sha256=TkuQUTEpCCzV39isTuyt4QG9o5BEKe1KGfhEzi5Y-Sc,4222
173
173
  compute_api_client/models/role.py,sha256=KIqsUUw6TrmknOiI0fy5dsJyRUyBfhlcldvW63qDaBQ,831
174
174
  compute_api_client/models/share_type.py,sha256=Lg00TV5Ychd_VkDg4dY-4wDW8TcXBiU9Usxe5EFDI8A,874
175
175
  compute_api_client/models/team.py,sha256=QR5x-hNadhdPh1N9F85wW6X0jUUnoxvdTnypUu_GHxw,2714
@@ -178,7 +178,7 @@ compute_api_client/models/user.py,sha256=WD1QyiqRlyObnK61QRE2NUCyY5Oc9ejeNcOGopm
178
178
  compute_api_client/models/user_in.py,sha256=gMWrBylb3ihoc-bm-K7AG9w3iWGn_ROV14wZnGlJU30,3330
179
179
  compute_api_client/models/validation_error.py,sha256=HWliEU5aNn3CkND3c0MxJf0D8bUJmE3HKncfUCKDk5o,2941
180
180
  compute_api_client/rest.py,sha256=-N7fantOYHH5Ot97NOHm2ouAUuw4kdqbnOvCtf25H7g,5836
181
- qi_compute_api_client-0.38.2.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
182
- qi_compute_api_client-0.38.2.dist-info/METADATA,sha256=WMy1dyyIyfMdh-_bKhDY5b-xogtiOG6yb_eHIcftMWk,20251
183
- qi_compute_api_client-0.38.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
184
- qi_compute_api_client-0.38.2.dist-info/RECORD,,
181
+ qi_compute_api_client-0.39.0.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
182
+ qi_compute_api_client-0.39.0.dist-info/METADATA,sha256=WZhBR6I9JQVTfu9ZR9RqhxERuCc_kyWHT35cnef9ZwQ,20255
183
+ qi_compute_api_client-0.39.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
184
+ qi_compute_api_client-0.39.0.dist-info/RECORD,,