qi-compute-api-client 0.50.0__py3-none-any.whl → 0.52.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/api/backend_types_api.py +17 -0
- compute_api_client/docs/BackendType.md +1 -0
- compute_api_client/docs/BackendTypePatch.md +1 -0
- compute_api_client/docs/BackendTypesApi.md +4 -2
- compute_api_client/docs/Job.md +1 -1
- compute_api_client/docs/JobPatch.md +1 -1
- compute_api_client/docs/PageAlgorithm.md +1 -1
- compute_api_client/docs/PageBackend.md +1 -1
- compute_api_client/docs/PageBackendType.md +1 -1
- compute_api_client/docs/PageBatchJob.md +1 -1
- compute_api_client/docs/PageCommit.md +1 -1
- compute_api_client/docs/PageFile.md +1 -1
- compute_api_client/docs/PageJob.md +1 -1
- compute_api_client/docs/PageLanguage.md +1 -1
- compute_api_client/docs/PageMember.md +1 -1
- compute_api_client/docs/PagePermission.md +1 -1
- compute_api_client/docs/PagePermissionGroup.md +1 -1
- compute_api_client/docs/PageProject.md +1 -1
- compute_api_client/docs/PageReservation.md +1 -1
- compute_api_client/docs/PageResult.md +1 -1
- compute_api_client/docs/PageTeam.md +1 -1
- compute_api_client/docs/PageTransaction.md +1 -1
- compute_api_client/docs/PageUser.md +1 -1
- compute_api_client/models/backend_type.py +4 -2
- compute_api_client/models/backend_type_patch.py +9 -2
- compute_api_client/models/job.py +3 -2
- compute_api_client/models/job_patch.py +1 -1
- compute_api_client/models/page_algorithm.py +1 -1
- compute_api_client/models/page_backend.py +1 -1
- compute_api_client/models/page_backend_type.py +1 -1
- compute_api_client/models/page_batch_job.py +1 -1
- compute_api_client/models/page_commit.py +1 -1
- compute_api_client/models/page_file.py +1 -1
- compute_api_client/models/page_job.py +1 -1
- compute_api_client/models/page_language.py +1 -1
- compute_api_client/models/page_member.py +1 -1
- compute_api_client/models/page_permission.py +1 -1
- compute_api_client/models/page_permission_group.py +1 -1
- compute_api_client/models/page_project.py +1 -1
- compute_api_client/models/page_reservation.py +1 -1
- compute_api_client/models/page_result.py +1 -1
- compute_api_client/models/page_team.py +1 -1
- compute_api_client/models/page_transaction.py +1 -1
- compute_api_client/models/page_user.py +1 -1
- {qi_compute_api_client-0.50.0.dist-info → qi_compute_api_client-0.52.0.dist-info}/METADATA +14 -16
- {qi_compute_api_client-0.50.0.dist-info → qi_compute_api_client-0.52.0.dist-info}/RECORD +55 -55
- {qi_compute_api_client-0.50.0.dist-info → qi_compute_api_client-0.52.0.dist-info}/WHEEL +1 -1
- {qi_compute_api_client-0.50.0.dist-info → qi_compute_api_client-0.52.0.dist-info/licenses}/LICENSE.md +0 -0
|
@@ -336,6 +336,7 @@ class BackendTypesApi:
|
|
|
336
336
|
default_number_of_shots: Optional[StrictInt] = None,
|
|
337
337
|
max_number_of_shots: Optional[StrictInt] = None,
|
|
338
338
|
enabled: Optional[StrictBool] = None,
|
|
339
|
+
identifier: Optional[StrictStr] = None,
|
|
339
340
|
sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
|
|
340
341
|
latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
|
|
341
342
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
|
|
@@ -381,6 +382,8 @@ class BackendTypesApi:
|
|
|
381
382
|
:type max_number_of_shots: int
|
|
382
383
|
:param enabled:
|
|
383
384
|
:type enabled: bool
|
|
385
|
+
:param identifier:
|
|
386
|
+
:type identifier: str
|
|
384
387
|
:param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
|
|
385
388
|
:type sort_by: str
|
|
386
389
|
:param latest: If True gets the most recently created object.
|
|
@@ -424,6 +427,7 @@ class BackendTypesApi:
|
|
|
424
427
|
default_number_of_shots=default_number_of_shots,
|
|
425
428
|
max_number_of_shots=max_number_of_shots,
|
|
426
429
|
enabled=enabled,
|
|
430
|
+
identifier=identifier,
|
|
427
431
|
sort_by=sort_by,
|
|
428
432
|
latest=latest,
|
|
429
433
|
page=page,
|
|
@@ -465,6 +469,7 @@ class BackendTypesApi:
|
|
|
465
469
|
default_number_of_shots: Optional[StrictInt] = None,
|
|
466
470
|
max_number_of_shots: Optional[StrictInt] = None,
|
|
467
471
|
enabled: Optional[StrictBool] = None,
|
|
472
|
+
identifier: Optional[StrictStr] = None,
|
|
468
473
|
sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
|
|
469
474
|
latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
|
|
470
475
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
|
|
@@ -510,6 +515,8 @@ class BackendTypesApi:
|
|
|
510
515
|
:type max_number_of_shots: int
|
|
511
516
|
:param enabled:
|
|
512
517
|
:type enabled: bool
|
|
518
|
+
:param identifier:
|
|
519
|
+
:type identifier: str
|
|
513
520
|
:param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
|
|
514
521
|
:type sort_by: str
|
|
515
522
|
:param latest: If True gets the most recently created object.
|
|
@@ -553,6 +560,7 @@ class BackendTypesApi:
|
|
|
553
560
|
default_number_of_shots=default_number_of_shots,
|
|
554
561
|
max_number_of_shots=max_number_of_shots,
|
|
555
562
|
enabled=enabled,
|
|
563
|
+
identifier=identifier,
|
|
556
564
|
sort_by=sort_by,
|
|
557
565
|
latest=latest,
|
|
558
566
|
page=page,
|
|
@@ -594,6 +602,7 @@ class BackendTypesApi:
|
|
|
594
602
|
default_number_of_shots: Optional[StrictInt] = None,
|
|
595
603
|
max_number_of_shots: Optional[StrictInt] = None,
|
|
596
604
|
enabled: Optional[StrictBool] = None,
|
|
605
|
+
identifier: Optional[StrictStr] = None,
|
|
597
606
|
sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
|
|
598
607
|
latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
|
|
599
608
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
|
|
@@ -639,6 +648,8 @@ class BackendTypesApi:
|
|
|
639
648
|
:type max_number_of_shots: int
|
|
640
649
|
:param enabled:
|
|
641
650
|
:type enabled: bool
|
|
651
|
+
:param identifier:
|
|
652
|
+
:type identifier: str
|
|
642
653
|
:param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
|
|
643
654
|
:type sort_by: str
|
|
644
655
|
:param latest: If True gets the most recently created object.
|
|
@@ -682,6 +693,7 @@ class BackendTypesApi:
|
|
|
682
693
|
default_number_of_shots=default_number_of_shots,
|
|
683
694
|
max_number_of_shots=max_number_of_shots,
|
|
684
695
|
enabled=enabled,
|
|
696
|
+
identifier=identifier,
|
|
685
697
|
sort_by=sort_by,
|
|
686
698
|
latest=latest,
|
|
687
699
|
page=page,
|
|
@@ -718,6 +730,7 @@ class BackendTypesApi:
|
|
|
718
730
|
default_number_of_shots,
|
|
719
731
|
max_number_of_shots,
|
|
720
732
|
enabled,
|
|
733
|
+
identifier,
|
|
721
734
|
sort_by,
|
|
722
735
|
latest,
|
|
723
736
|
page,
|
|
@@ -791,6 +804,10 @@ class BackendTypesApi:
|
|
|
791
804
|
|
|
792
805
|
_query_params.append(('enabled', enabled))
|
|
793
806
|
|
|
807
|
+
if identifier is not None:
|
|
808
|
+
|
|
809
|
+
_query_params.append(('identifier', identifier))
|
|
810
|
+
|
|
794
811
|
if sort_by is not None:
|
|
795
812
|
|
|
796
813
|
_query_params.append(('sort_by', sort_by))
|
|
@@ -93,7 +93,7 @@ Name | Type | Description | Notes
|
|
|
93
93
|
[[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)
|
|
94
94
|
|
|
95
95
|
# **read_backend_types_backend_types_get**
|
|
96
|
-
> 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, enabled=enabled, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
96
|
+
> 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, enabled=enabled, identifier=identifier, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
97
97
|
|
|
98
98
|
List backend types
|
|
99
99
|
|
|
@@ -133,6 +133,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
|
|
|
133
133
|
default_number_of_shots = 56 # int | (optional)
|
|
134
134
|
max_number_of_shots = 56 # int | (optional)
|
|
135
135
|
enabled = True # bool | (optional)
|
|
136
|
+
identifier = 'identifier_example' # str | (optional)
|
|
136
137
|
sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
|
|
137
138
|
latest = True # bool | If True gets the most recently created object. (optional)
|
|
138
139
|
page = 1 # int | Page number (optional) (default to 1)
|
|
@@ -140,7 +141,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
|
|
|
140
141
|
|
|
141
142
|
try:
|
|
142
143
|
# List backend types
|
|
143
|
-
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, enabled=enabled, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
144
|
+
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, enabled=enabled, identifier=identifier, sort_by=sort_by, latest=latest, page=page, size=size)
|
|
144
145
|
print("The response of BackendTypesApi->read_backend_types_backend_types_get:\n")
|
|
145
146
|
pprint(api_response)
|
|
146
147
|
except Exception as e:
|
|
@@ -165,6 +166,7 @@ Name | Type | Description | Notes
|
|
|
165
166
|
**default_number_of_shots** | **int**| | [optional]
|
|
166
167
|
**max_number_of_shots** | **int**| | [optional]
|
|
167
168
|
**enabled** | **bool**| | [optional]
|
|
169
|
+
**identifier** | **str**| | [optional]
|
|
168
170
|
**sort_by** | **str**| The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional]
|
|
169
171
|
**latest** | **bool**| If True gets the most recently created object. | [optional]
|
|
170
172
|
**page** | **int**| Page number | [optional] [default to 1]
|
compute_api_client/docs/Job.md
CHANGED
|
@@ -17,7 +17,7 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**session_id** | **str** | |
|
|
18
18
|
**trace_id** | **str** | |
|
|
19
19
|
**message** | **str** | |
|
|
20
|
-
**source** | **str** |
|
|
20
|
+
**source** | **str** | The source application of an exception that caused a job to fail (if applicable). | [optional] [default to '']
|
|
21
21
|
|
|
22
22
|
## Example
|
|
23
23
|
|
|
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**session_id** | **str** | | [optional] [default to '']
|
|
9
9
|
**trace_id** | **str** | | [optional] [default to '']
|
|
10
10
|
**message** | **str** | | [optional] [default to '']
|
|
11
|
-
**source** | **str** |
|
|
11
|
+
**source** | **str** | The source application of an exception that caused a job to fail (if applicable). | [optional] [default to '']
|
|
12
12
|
**traceback** | **str** | | [optional] [default to '']
|
|
13
13
|
|
|
14
14
|
## Example
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[Algorithm]**](Algorithm.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[Backend]**](Backend.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[BackendType]**](BackendType.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[BatchJob]**](BatchJob.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[Commit]**](Commit.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[File]**](File.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[Job]**](Job.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[Language]**](Language.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[Member]**](Member.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[Permission]**](Permission.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[PermissionGroup]**](PermissionGroup.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[Project]**](Project.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[Reservation]**](Reservation.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[Result]**](Result.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[Team]**](Team.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[Transaction]**](Transaction.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**items** | [**List[User]**](User.md) | |
|
|
8
|
-
**total** | **int** | |
|
|
8
|
+
**total** | **int** | | [optional]
|
|
9
9
|
**page** | **int** | |
|
|
10
10
|
**size** | **int** | |
|
|
11
11
|
**pages** | **int** | | [optional]
|
|
@@ -48,7 +48,8 @@ class BackendType(BaseModel):
|
|
|
48
48
|
default_number_of_shots: StrictInt
|
|
49
49
|
max_number_of_shots: StrictInt
|
|
50
50
|
enabled: StrictBool
|
|
51
|
-
|
|
51
|
+
identifier: Annotated[str, Field(strict=True, max_length=32)]
|
|
52
|
+
__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", "enabled", "identifier"]
|
|
52
53
|
|
|
53
54
|
model_config = {
|
|
54
55
|
"populate_by_name": True,
|
|
@@ -113,7 +114,8 @@ class BackendType(BaseModel):
|
|
|
113
114
|
"status": obj.get("status"),
|
|
114
115
|
"default_number_of_shots": obj.get("default_number_of_shots"),
|
|
115
116
|
"max_number_of_shots": obj.get("max_number_of_shots"),
|
|
116
|
-
"enabled": obj.get("enabled")
|
|
117
|
+
"enabled": obj.get("enabled"),
|
|
118
|
+
"identifier": obj.get("identifier")
|
|
117
119
|
})
|
|
118
120
|
return _obj
|
|
119
121
|
|
|
@@ -45,7 +45,8 @@ class BackendTypePatch(BaseModel):
|
|
|
45
45
|
default_number_of_shots: Optional[StrictInt] = None
|
|
46
46
|
max_number_of_shots: Optional[StrictInt] = None
|
|
47
47
|
enabled: Optional[StrictBool] = None
|
|
48
|
-
|
|
48
|
+
identifier: Optional[Annotated[str, Field(strict=True, max_length=32)]] = None
|
|
49
|
+
__properties: ClassVar[List[str]] = ["name", "infrastructure", "description", "image_id", "is_hardware", "supports_raw_data", "features", "default_compiler_config", "gateset", "topology", "nqubits", "default_number_of_shots", "max_number_of_shots", "enabled", "identifier"]
|
|
49
50
|
|
|
50
51
|
model_config = {
|
|
51
52
|
"populate_by_name": True,
|
|
@@ -153,6 +154,11 @@ class BackendTypePatch(BaseModel):
|
|
|
153
154
|
if self.enabled is None and "enabled" in self.model_fields_set:
|
|
154
155
|
_dict['enabled'] = None
|
|
155
156
|
|
|
157
|
+
# set to None if identifier (nullable) is None
|
|
158
|
+
# and model_fields_set contains the field
|
|
159
|
+
if self.identifier is None and "identifier" in self.model_fields_set:
|
|
160
|
+
_dict['identifier'] = None
|
|
161
|
+
|
|
156
162
|
return _dict
|
|
157
163
|
|
|
158
164
|
@classmethod
|
|
@@ -178,7 +184,8 @@ class BackendTypePatch(BaseModel):
|
|
|
178
184
|
"nqubits": obj.get("nqubits"),
|
|
179
185
|
"default_number_of_shots": obj.get("default_number_of_shots"),
|
|
180
186
|
"max_number_of_shots": obj.get("max_number_of_shots"),
|
|
181
|
-
"enabled": obj.get("enabled")
|
|
187
|
+
"enabled": obj.get("enabled"),
|
|
188
|
+
"identifier": obj.get("identifier")
|
|
182
189
|
})
|
|
183
190
|
return _obj
|
|
184
191
|
|
compute_api_client/models/job.py
CHANGED
|
@@ -20,6 +20,7 @@ import json
|
|
|
20
20
|
from datetime import datetime
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
22
|
from pydantic import BaseModel, StrictBool, StrictInt, StrictStr
|
|
23
|
+
from pydantic import Field
|
|
23
24
|
from compute_api_client.models.algorithm_type import AlgorithmType
|
|
24
25
|
from compute_api_client.models.job_status import JobStatus
|
|
25
26
|
try:
|
|
@@ -44,7 +45,7 @@ class Job(BaseModel):
|
|
|
44
45
|
session_id: StrictStr
|
|
45
46
|
trace_id: StrictStr
|
|
46
47
|
message: StrictStr
|
|
47
|
-
source: StrictStr
|
|
48
|
+
source: Optional[StrictStr] = Field(default='', description="The source application of an exception that caused a job to fail (if applicable).")
|
|
48
49
|
__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", "session_id", "trace_id", "message", "source"]
|
|
49
50
|
|
|
50
51
|
model_config = {
|
|
@@ -123,7 +124,7 @@ class Job(BaseModel):
|
|
|
123
124
|
"session_id": obj.get("session_id"),
|
|
124
125
|
"trace_id": obj.get("trace_id"),
|
|
125
126
|
"message": obj.get("message"),
|
|
126
|
-
"source": obj.get("source")
|
|
127
|
+
"source": obj.get("source") if obj.get("source") is not None else ''
|
|
127
128
|
})
|
|
128
129
|
return _obj
|
|
129
130
|
|
|
@@ -36,7 +36,7 @@ class JobPatch(BaseModel):
|
|
|
36
36
|
session_id: Optional[Annotated[str, Field(strict=True, max_length=255)]] = ''
|
|
37
37
|
trace_id: Optional[Annotated[str, Field(strict=True, max_length=255)]] = ''
|
|
38
38
|
message: Optional[StrictStr] = ''
|
|
39
|
-
source: Optional[StrictStr] = ''
|
|
39
|
+
source: Optional[StrictStr] = Field(default='', description="The source application of an exception that caused a job to fail (if applicable).")
|
|
40
40
|
traceback: Optional[StrictStr] = ''
|
|
41
41
|
__properties: ClassVar[List[str]] = ["status", "session_id", "trace_id", "message", "source", "traceback"]
|
|
42
42
|
|
|
@@ -33,7 +33,7 @@ class PageAlgorithm(BaseModel):
|
|
|
33
33
|
PageAlgorithm
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[Algorithm]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageBackend(BaseModel):
|
|
|
33
33
|
PageBackend
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[Backend]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageBackendType(BaseModel):
|
|
|
33
33
|
PageBackendType
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[BackendType]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageBatchJob(BaseModel):
|
|
|
33
33
|
PageBatchJob
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[BatchJob]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageCommit(BaseModel):
|
|
|
33
33
|
PageCommit
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[Commit]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageFile(BaseModel):
|
|
|
33
33
|
PageFile
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[File]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageJob(BaseModel):
|
|
|
33
33
|
PageJob
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[Job]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageLanguage(BaseModel):
|
|
|
33
33
|
PageLanguage
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[Language]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageMember(BaseModel):
|
|
|
33
33
|
PageMember
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[Member]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PagePermission(BaseModel):
|
|
|
33
33
|
PagePermission
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[Permission]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PagePermissionGroup(BaseModel):
|
|
|
33
33
|
PagePermissionGroup
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[PermissionGroup]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageProject(BaseModel):
|
|
|
33
33
|
PageProject
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[Project]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageReservation(BaseModel):
|
|
|
33
33
|
PageReservation
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[Reservation]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageResult(BaseModel):
|
|
|
33
33
|
PageResult
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[Result]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageTeam(BaseModel):
|
|
|
33
33
|
PageTeam
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[Team]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageTransaction(BaseModel):
|
|
|
33
33
|
PageTransaction
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[Transaction]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -33,7 +33,7 @@ class PageUser(BaseModel):
|
|
|
33
33
|
PageUser
|
|
34
34
|
""" # noqa: E501
|
|
35
35
|
items: List[User]
|
|
36
|
-
total: Optional[Annotated[int, Field(strict=True, ge=0)]]
|
|
36
|
+
total: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
37
37
|
page: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
38
38
|
size: Optional[Annotated[int, Field(strict=True, ge=1)]]
|
|
39
39
|
pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: qi-compute-api-client
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.52.0
|
|
4
4
|
Summary: An API client for the Compute Job Manager of Quantum Inspire.
|
|
5
|
-
|
|
6
|
-
Author: Quantum Inspire
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
Project-URL: Repository, https://github.com/QuTech-Delft/compute-api-client
|
|
6
|
+
Author-email: Quantum Inspire <support@quantum-inspire.eu>
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
License-File: LICENSE.md
|
|
9
9
|
Classifier: Development Status :: 3 - Alpha
|
|
10
10
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -13,14 +13,13 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
-
|
|
17
|
-
Requires-Dist: aiohttp
|
|
18
|
-
Requires-Dist: pydantic
|
|
19
|
-
Requires-Dist: python-dateutil
|
|
20
|
-
Requires-Dist: requests
|
|
21
|
-
Requires-Dist: typing-extensions
|
|
22
|
-
Requires-Dist: urllib3
|
|
23
|
-
Project-URL: Repository, https://github.com/QuTech-Delft/compute-api-client
|
|
16
|
+
Requires-Python: ~=3.9
|
|
17
|
+
Requires-Dist: aiohttp<4,>=3.10.5
|
|
18
|
+
Requires-Dist: pydantic<3,>=2.10.4
|
|
19
|
+
Requires-Dist: python-dateutil<3,>=2.8.2
|
|
20
|
+
Requires-Dist: requests<3,>=2.31.0
|
|
21
|
+
Requires-Dist: typing-extensions<5,>=4.12.2
|
|
22
|
+
Requires-Dist: urllib3<3,>=2.0.0
|
|
24
23
|
Description-Content-Type: text/markdown
|
|
25
24
|
|
|
26
25
|
# compute-api-client
|
|
@@ -249,7 +248,7 @@ Authentication schemes defined for the API: <a id="user_bearer"></a>
|
|
|
249
248
|
|
|
250
249
|
- **Type**: OAuth
|
|
251
250
|
- **Flow**: accessCode
|
|
252
|
-
- **Authorization URL**: https://quantum-inspire-
|
|
251
|
+
- **Authorization URL**: https://quantum-inspire-staging.eu.auth0.com/authorize
|
|
253
252
|
- **Scopes**: N/A
|
|
254
253
|
|
|
255
254
|
<a id="backend"></a>
|
|
@@ -261,4 +260,3 @@ Authentication schemes defined for the API: <a id="user_bearer"></a>
|
|
|
261
260
|
- **Location**: HTTP header
|
|
262
261
|
|
|
263
262
|
## Author
|
|
264
|
-
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
compute_api_client/__init__.py,sha256=eZGk1UIOGku_DEkCf9LfjydcjRVk3d0P6dj-QOkZYhk,6268
|
|
2
|
+
compute_api_client/api_client.py,sha256=Fie1rugPyLJlXtZDfP7TC8ec9_JipjKxV0EB-RP9CFQ,25065
|
|
3
|
+
compute_api_client/api_response.py,sha256=A7O_XgliD6y7jEv82fgIaxR3T8KiwaOqHR6djpZyh_o,674
|
|
4
|
+
compute_api_client/configuration.py,sha256=pwBK6aXET054Y6XCLshR8mEWBPMfpekC3bAts4kSCKQ,15231
|
|
5
|
+
compute_api_client/exceptions.py,sha256=SxnwGBUmd989OJ9knsPWbZ3v59nn3_kipRYzOQZztXE,5451
|
|
6
|
+
compute_api_client/rest.py,sha256=-N7fantOYHH5Ot97NOHm2ouAUuw4kdqbnOvCtf25H7g,5836
|
|
2
7
|
compute_api_client/api/__init__.py,sha256=c0okte7rJ_FIjMajgwLD08jM0z1TjYJOhKcAvXNPvbs,1204
|
|
3
8
|
compute_api_client/api/algorithms_api.py,sha256=Iq3X7347R8ZsF3hDoIlEA8girl0ww_k1orMPMc6ygDE,59489
|
|
4
9
|
compute_api_client/api/auth_config_api.py,sha256=O7XDoKk6-bWyUJkfiiOZRbb8OuDv_H0xvcs_XFfAGG8,10356
|
|
5
10
|
compute_api_client/api/backend_api.py,sha256=zNX_CYAm-6IrCuR7hlgHOCTwOkR1YQXn-3Ck9VUsCK8,57958
|
|
6
|
-
compute_api_client/api/backend_types_api.py,sha256=
|
|
11
|
+
compute_api_client/api/backend_types_api.py,sha256=TQ1uYewholbQzkZANuGwml8YFrhcGOawYZkMwRFtPLM,43038
|
|
7
12
|
compute_api_client/api/batch_jobs_api.py,sha256=V-HYrI6Lnrc6E7BhHNUwolZRLhLdTnSMZk3C9psQML8,84401
|
|
8
13
|
compute_api_client/api/commits_api.py,sha256=ETcosKPwE8EYr_wd3rZItlmJqLtuSu8E2CpJt0t5y_0,57560
|
|
9
14
|
compute_api_client/api/files_api.py,sha256=eItVegQVnni7AK2yyT_6Paj4WB01vUwM8fIwxwJEZuk,47862
|
|
@@ -20,9 +25,6 @@ compute_api_client/api/results_api.py,sha256=wRfdrg4W63y5R85s5dpjQJ_dM_WlBL29I3S
|
|
|
20
25
|
compute_api_client/api/teams_api.py,sha256=daGp9YTZF7I5NCAgm2_2xW4sOTh30oqpMZE0ppQs-fw,25747
|
|
21
26
|
compute_api_client/api/transactions_api.py,sha256=vQz7UvzTA1BGKUz08A1-8gz3975QnqLG87V9dsvsTs4,29950
|
|
22
27
|
compute_api_client/api/users_api.py,sha256=veol1D2YXX3NWs9Y_uljjdjG2PsEz8y1hSF-5jHmtt0,47705
|
|
23
|
-
compute_api_client/api_client.py,sha256=Fie1rugPyLJlXtZDfP7TC8ec9_JipjKxV0EB-RP9CFQ,25065
|
|
24
|
-
compute_api_client/api_response.py,sha256=A7O_XgliD6y7jEv82fgIaxR3T8KiwaOqHR6djpZyh_o,674
|
|
25
|
-
compute_api_client/configuration.py,sha256=pwBK6aXET054Y6XCLshR8mEWBPMfpekC3bAts4kSCKQ,15231
|
|
26
28
|
compute_api_client/docs/Algorithm.md,sha256=LThexsNa9FuuIyP9Hs2yjP2L-04VszC7AdfOJgJRj3s,992
|
|
27
29
|
compute_api_client/docs/AlgorithmIn.md,sha256=ikR6b3TyLjXyWxqlUDcS25ZCwyion5VCQ5D6RNWpuz4,1013
|
|
28
30
|
compute_api_client/docs/AlgorithmType.md,sha256=056KK2zjtdGqqTXkDsxg8mCzxr2sM8C37YmrR3txGVA,292
|
|
@@ -34,9 +36,9 @@ compute_api_client/docs/BackendApi.md,sha256=KWld3mvfxlP_ZiYNSHxNNCkMSwuSnbKy9aF
|
|
|
34
36
|
compute_api_client/docs/BackendIn.md,sha256=7_drRygOUPHFWjrvAJGo7WwmcyK6EeRnlSnA6WtTCu0,978
|
|
35
37
|
compute_api_client/docs/BackendPatch.md,sha256=xET1pnI8JStGhtHm7qT-1zv7RCuKl2CUIKtYueWq72U,927
|
|
36
38
|
compute_api_client/docs/BackendStatus.md,sha256=ofnS843IHCIxoywjJJ01GP90Gn1XedAm5xR8TONmUbk,292
|
|
37
|
-
compute_api_client/docs/BackendType.md,sha256=
|
|
38
|
-
compute_api_client/docs/BackendTypePatch.md,sha256=
|
|
39
|
-
compute_api_client/docs/BackendTypesApi.md,sha256=
|
|
39
|
+
compute_api_client/docs/BackendType.md,sha256=EJOPUUqnetJSYAEKtLeC9ow4wnZJfwpF69DL2KA2CHc,1430
|
|
40
|
+
compute_api_client/docs/BackendTypePatch.md,sha256=HxzKzCTPlzAct8O9yPJ7vT0wp57HyObJjFdFUCbBBME,1587
|
|
41
|
+
compute_api_client/docs/BackendTypesApi.md,sha256=C-3ApAjR_eN-hfSoxx0N-NnYLnc70tUmygaQ6o4Npkw,10678
|
|
40
42
|
compute_api_client/docs/BackendWithAuthentication.md,sha256=u9lZh4FusMtOuV53yc0QXHdnTas-4HNC06NyDh8E1Go,1256
|
|
41
43
|
compute_api_client/docs/BatchJob.md,sha256=IozaJI2zAL1zo_zmuI-RIKvLGK68KkyW53AH4jbIaIs,1210
|
|
42
44
|
compute_api_client/docs/BatchJobIn.md,sha256=9-nP1Xgnzd5tfvo8WmandUWR8IY-2pMeZyW0HveKZEU,847
|
|
@@ -58,9 +60,9 @@ compute_api_client/docs/HTTPBadRequestError.md,sha256=TtmChwzainHvcapRwqTjmZghUF
|
|
|
58
60
|
compute_api_client/docs/HTTPNotFoundError.md,sha256=1GluS5OAVTk1qNrQwBOb29eQiNMJnCXyJk-0oKf-Rlc,936
|
|
59
61
|
compute_api_client/docs/HTTPValidationError.md,sha256=MRdybtO0HOeFCN3Zk221Q6XH6fw1Qyg8J9KLPn38tI4,1006
|
|
60
62
|
compute_api_client/docs/HealthApi.md,sha256=K1eWpfCF0AIbMsi0mAvFnIW-xjnnJvoQoyDQf7vyKEE,1825
|
|
61
|
-
compute_api_client/docs/Job.md,sha256=
|
|
63
|
+
compute_api_client/docs/Job.md,sha256=fuIMH-fm2aqVBZTnC9wmsjRkhMmo5hSb3gdOXP7KFYE,1308
|
|
62
64
|
compute_api_client/docs/JobIn.md,sha256=inp79yDhGUJs5yaaoUEBFS5cso_Aop98yGkY7lq9ur4,914
|
|
63
|
-
compute_api_client/docs/JobPatch.md,sha256=
|
|
65
|
+
compute_api_client/docs/JobPatch.md,sha256=HxcbYUhire30Ug8mal9aFHlJxnysBilTeOAKhBoT2Ks,1183
|
|
64
66
|
compute_api_client/docs/JobStatus.md,sha256=BFKP4etVPMe37IOCI77TTxry-KfOcwhj_H5oNSfPkPA,288
|
|
65
67
|
compute_api_client/docs/JobsApi.md,sha256=2rpIQfnmxzU-0QyKEJn3hCLDrBFXyS-0au6PDGAbRZs,15816
|
|
66
68
|
compute_api_client/docs/Language.md,sha256=eHCpr4xEVei2MTA9zKu4DxBZamoSrSE3JOD36I7iDwU,847
|
|
@@ -69,24 +71,24 @@ compute_api_client/docs/LocationInner.md,sha256=Z1Z8_cF7hlrfoOGVKoWz-ZhSQ457HKDd
|
|
|
69
71
|
compute_api_client/docs/Member.md,sha256=Y1w2DLahBH71KkFN_pLZ_jK7OeuzZjEvKm9_uypkxis,892
|
|
70
72
|
compute_api_client/docs/MemberIn.md,sha256=9Qy8ZNV5_f04glvxGQ-Y8HGPS_pYsftCnZBt1635-hU,931
|
|
71
73
|
compute_api_client/docs/MembersApi.md,sha256=TDxBG-PCQ7YSvysFHajKlEiEJ-s7hdtY6oOQPUK0jyA,10524
|
|
72
|
-
compute_api_client/docs/PageAlgorithm.md,sha256=
|
|
73
|
-
compute_api_client/docs/PageBackend.md,sha256=
|
|
74
|
-
compute_api_client/docs/PageBackendType.md,sha256=
|
|
75
|
-
compute_api_client/docs/PageBatchJob.md,sha256=
|
|
76
|
-
compute_api_client/docs/PageCommit.md,sha256=
|
|
77
|
-
compute_api_client/docs/PageFile.md,sha256=
|
|
78
|
-
compute_api_client/docs/PageJob.md,sha256=
|
|
79
|
-
compute_api_client/docs/PageLanguage.md,sha256=
|
|
80
|
-
compute_api_client/docs/PageMember.md,sha256=
|
|
74
|
+
compute_api_client/docs/PageAlgorithm.md,sha256=rnsoYqRwKjYDT7BHGJ3ErWbQnNrYTikO2B5jr98g4hw,1021
|
|
75
|
+
compute_api_client/docs/PageBackend.md,sha256=D53xDCTXOm2X_XOn91hsVDzBX9xy9loLsz0Lbe11HMM,991
|
|
76
|
+
compute_api_client/docs/PageBackendType.md,sha256=tkrW6TDmCQLtlY5JLId_II-LhaqGd0GihD_NwFAiHv8,1058
|
|
77
|
+
compute_api_client/docs/PageBatchJob.md,sha256=aHiDyaUfQ7rgnKBqo71sIGyjbiIxQXWHH2AUImCeQuE,1013
|
|
78
|
+
compute_api_client/docs/PageCommit.md,sha256=dLMCiRFOtWUv4myJGjumxktii-Sktq3LfWGPcnrW3dg,976
|
|
79
|
+
compute_api_client/docs/PageFile.md,sha256=PRdYAKLklx8NubbFkKoohai90IqsspaTDa4_E48NCLg,946
|
|
80
|
+
compute_api_client/docs/PageJob.md,sha256=SZvEIINBjSsOUYu5yoBFki2Rt12_zNRvIwwhGc7_bpk,931
|
|
81
|
+
compute_api_client/docs/PageLanguage.md,sha256=998yoaLIqv-isWZM-CtzKGDEGZ7vhBoFKI0CFk9AD8c,1006
|
|
82
|
+
compute_api_client/docs/PageMember.md,sha256=ASYkk60LWF9eP6Klmgll1o0Tq9k99PXP2mWa5h9vsU8,976
|
|
81
83
|
compute_api_client/docs/PageMetadata.md,sha256=CPL3LTSh-_U_TaGwYZF6IGfdN4iYdDTsXrSjolHo9p8,995
|
|
82
|
-
compute_api_client/docs/PagePermission.md,sha256=
|
|
83
|
-
compute_api_client/docs/PagePermissionGroup.md,sha256=
|
|
84
|
-
compute_api_client/docs/PageProject.md,sha256=
|
|
85
|
-
compute_api_client/docs/PageReservation.md,sha256=
|
|
86
|
-
compute_api_client/docs/PageResult.md,sha256=
|
|
87
|
-
compute_api_client/docs/PageTeam.md,sha256=
|
|
88
|
-
compute_api_client/docs/PageTransaction.md,sha256=
|
|
89
|
-
compute_api_client/docs/PageUser.md,sha256=
|
|
84
|
+
compute_api_client/docs/PagePermission.md,sha256=Mc4MIX8PA88ylaB80OWkf0sabU0YbaQtQlVRZ-4anxo,1036
|
|
85
|
+
compute_api_client/docs/PagePermissionGroup.md,sha256=_pfNHDKJf3DYx9zgh5PyBAl2r0PeWnt_4KBc3p7VuPg,1118
|
|
86
|
+
compute_api_client/docs/PageProject.md,sha256=0RUrpTJpwkgab4lcvibNLfN9T4xlevwbHRqznWsaOsc,991
|
|
87
|
+
compute_api_client/docs/PageReservation.md,sha256=0hP9UJm1YaIfxuJ7tch1Q1zi2JCcG1ImmlM8TsoqWZc,1051
|
|
88
|
+
compute_api_client/docs/PageResult.md,sha256=NaL3DR5gy-a_IAjlCpEmGN4f2iIEgM-xyMkL19EuAcs,976
|
|
89
|
+
compute_api_client/docs/PageTeam.md,sha256=MucogC21LhFJeJMxNhe8qLnM8ecrlY7zXHJHyPf-ULY,946
|
|
90
|
+
compute_api_client/docs/PageTransaction.md,sha256=nXjGRmPi0oV1_oVE5VQO06cLClkuYYMAFh0-hat5wv0,1051
|
|
91
|
+
compute_api_client/docs/PageUser.md,sha256=GnXGTLAm2UZ9u8En2hsuC3Boe6q5-btAEVKEZviZoOE,946
|
|
90
92
|
compute_api_client/docs/Permission.md,sha256=gSRBHoPMcJEgGKRAHxSWLG921o6cnJQgeMyJgJHXieA,876
|
|
91
93
|
compute_api_client/docs/PermissionGroup.md,sha256=4gHLWGB9XHA7EoEk1M8ChffeNcF5v8zeBn3nklRkJJo,917
|
|
92
94
|
compute_api_client/docs/PermissionsApi.md,sha256=nbwcCQxM-iraXcpnJ2LMZU4RprW4w324Tq5QDSBRWGs,12035
|
|
@@ -110,7 +112,6 @@ compute_api_client/docs/User.md,sha256=oTsbbVs-VN8fFWiZCuu5OJmv97lQkZ2AAfdhLu2Hs
|
|
|
110
112
|
compute_api_client/docs/UserIn.md,sha256=xAPeVO5WTaNcbI151w0j_g6BEM-xYquMV5Nx6srJA4Q,1082
|
|
111
113
|
compute_api_client/docs/UsersApi.md,sha256=_i1dIB7AW349xb8JcFtGohvK4l6iovAEYUYKaY5DZYc,10802
|
|
112
114
|
compute_api_client/docs/ValidationError.md,sha256=NZSCUyM9u2fx4CFZfPF9cl_e6zDxQ9siBX-WtNHJyeA,978
|
|
113
|
-
compute_api_client/exceptions.py,sha256=SxnwGBUmd989OJ9knsPWbZ3v59nn3_kipRYzOQZztXE,5451
|
|
114
115
|
compute_api_client/models/__init__.py,sha256=E2MxQPZZmXf9JGKSRRFu042Ow7g8bPKZ6QdUD6Qz-lM,4532
|
|
115
116
|
compute_api_client/models/algorithm.py,sha256=eA77q4e5gi8VStOJplR0UF-E9gBr6VFkxsqt8Ohx1Yo,3190
|
|
116
117
|
compute_api_client/models/algorithm_in.py,sha256=-U2CoNZZSpAGBe6O7KFMJ9yIJAaOGEbPBdCTMIB3s2g,3148
|
|
@@ -120,8 +121,8 @@ compute_api_client/models/backend.py,sha256=cZ_q1zzW6t9hDF-Llu2Zm8bgVQLvef0qFWLI
|
|
|
120
121
|
compute_api_client/models/backend_in.py,sha256=9XK17112GvDxH2jAJpedX7z4kQ4oNr14EsCQ5dmGsEk,2957
|
|
121
122
|
compute_api_client/models/backend_patch.py,sha256=QMKRJkxMIRiIc4dFQscqIJFe5zgCU11cm_6d_rnKOaE,2556
|
|
122
123
|
compute_api_client/models/backend_status.py,sha256=kLo5B4ZGtYuzRRADnxAdxeurPJYD_0TzJq69rYAnWGA,918
|
|
123
|
-
compute_api_client/models/backend_type.py,sha256=
|
|
124
|
-
compute_api_client/models/backend_type_patch.py,sha256=
|
|
124
|
+
compute_api_client/models/backend_type.py,sha256=nUXQzM-e7Nz7A3hJYNYDQ9hD1Yp6WW4GCpfI3rHkG80,4212
|
|
125
|
+
compute_api_client/models/backend_type_patch.py,sha256=piDIi9afvfbQNOLIg-pwmjgyCwSA0UVWEww3a83aQEc,7749
|
|
125
126
|
compute_api_client/models/backend_with_authentication.py,sha256=Zc62u-GsghnQnWu8KYAqNcF9WA60uPYxqMnGtYeJkdc,3243
|
|
126
127
|
compute_api_client/models/batch_job.py,sha256=OWedWfSa23U5qDT9SELxtHdrQEuSlDbdhcMCC9bIa58,4388
|
|
127
128
|
compute_api_client/models/batch_job_in.py,sha256=K2HVli0JZyLf_sVQbP6J7b5PyQUAwM6TbFpPTEbEdmY,2391
|
|
@@ -138,9 +139,9 @@ compute_api_client/models/final_result_in.py,sha256=DHZmlmpxeX10jsasLGRJSNJb5LKV
|
|
|
138
139
|
compute_api_client/models/http_bad_request_error.py,sha256=3Bqvic3dc-xeClqdEgClwRIvIFzkScpwbNEvw34paQU,2391
|
|
139
140
|
compute_api_client/models/http_not_found_error.py,sha256=ZxTsaEc2MX_Sb6pyoqt-sEhnQ6uwzpd8uRTEklcfaSY,2383
|
|
140
141
|
compute_api_client/models/http_validation_error.py,sha256=x7kRxeYeaVlQ-ckHPfkeFlsWsxZPDMKcvfOCR7jOlao,2882
|
|
141
|
-
compute_api_client/models/job.py,sha256=
|
|
142
|
+
compute_api_client/models/job.py,sha256=IxKG_8bPls4yFfFuXrf1pUvVZAcAQQ-m3Wu-g_M-WEg,4576
|
|
142
143
|
compute_api_client/models/job_in.py,sha256=Ne6BfZcGSpzL3_6ELFYBJlTh1waOL3OdOUkKu69jC8U,3013
|
|
143
|
-
compute_api_client/models/job_patch.py,sha256=
|
|
144
|
+
compute_api_client/models/job_patch.py,sha256=FGSCcOCh9VsjOuhpTyIsPomKMhpup2so6TuJJFbFBQQ,3372
|
|
144
145
|
compute_api_client/models/job_status.py,sha256=axKdggJ8edmJGFMVVarPd_rZIae6B1Sn7yTKOgtq8cc,930
|
|
145
146
|
compute_api_client/models/language.py,sha256=rwSwzzxvpapfipAZYKpJ1bcgRzsvTVSnGCtPIs6X5Qs,2620
|
|
146
147
|
compute_api_client/models/location_inner.py,sha256=h2NaeDVOxZszCCG3rilEBBlPsFLckpZxCxrnvP0s_pw,4866
|
|
@@ -148,24 +149,24 @@ compute_api_client/models/member.py,sha256=axy5_qArwLJ0EWxXVRZLrJodHrx3CnWqZegp4
|
|
|
148
149
|
compute_api_client/models/member_in.py,sha256=JTASd1YdPfZY7Fe5OSafnDLP_ZSQEeYpH4twvNj4Dhs,2709
|
|
149
150
|
compute_api_client/models/metadata.py,sha256=igNeLm7Wlaclp5hRsOKWRUtgf21y02sLTJ8xrs9hOPY,2615
|
|
150
151
|
compute_api_client/models/metadata_in.py,sha256=LxBqiLnepqHj5t4nnx8gT55UeNjdV90WhwHuZEcP3vo,2699
|
|
151
|
-
compute_api_client/models/page_algorithm.py,sha256=
|
|
152
|
-
compute_api_client/models/page_backend.py,sha256=
|
|
153
|
-
compute_api_client/models/page_backend_type.py,sha256=
|
|
154
|
-
compute_api_client/models/page_batch_job.py,sha256=
|
|
155
|
-
compute_api_client/models/page_commit.py,sha256=
|
|
156
|
-
compute_api_client/models/page_file.py,sha256=
|
|
157
|
-
compute_api_client/models/page_job.py,sha256=
|
|
158
|
-
compute_api_client/models/page_language.py,sha256=
|
|
159
|
-
compute_api_client/models/page_member.py,sha256=
|
|
152
|
+
compute_api_client/models/page_algorithm.py,sha256=15EjNkk-zNRtNm-R7zZg7jQ6yaa2DXaRfdfmb7wvwIE,4124
|
|
153
|
+
compute_api_client/models/page_backend.py,sha256=KEjqJ5qt44QSjy7wJnsL_4pzlbVmKujVHIc-jAu6ID8,4108
|
|
154
|
+
compute_api_client/models/page_backend_type.py,sha256=pOoWP6OYdud1pcoTPrOoe7Q6RGvQ_CwRKOB95jd7m-M,4141
|
|
155
|
+
compute_api_client/models/page_batch_job.py,sha256=SHugp1sFT1HbrpbBcfbzsNzaC5UaCt6K1rRrnjvWQVk,4117
|
|
156
|
+
compute_api_client/models/page_commit.py,sha256=KcaW-_I6gUgQ7yh-KiwlqW7KxFC87-uCr8F4rcrqqwE,4100
|
|
157
|
+
compute_api_client/models/page_file.py,sha256=tGtTcx9lIqP1Gmd_E7onyMpIrbjga-v40yWdYZs7GQQ,4084
|
|
158
|
+
compute_api_client/models/page_job.py,sha256=sTUBu_WLU_iJCgIJ-Qzpz-DUivlaf3pMjzzKXy64VHk,4076
|
|
159
|
+
compute_api_client/models/page_language.py,sha256=kBVopOl1TDgci17zhvvWWHP7bVHWCuBFn5I_CTplXmY,4116
|
|
160
|
+
compute_api_client/models/page_member.py,sha256=LswKrXf6170RqIcb59mBt8MblsJc2OG3BBtCA5-Kg8E,4100
|
|
160
161
|
compute_api_client/models/page_metadata.py,sha256=d6ns0CKPHe-pwzYRIgLAdsDUSUyM2CLK5NAzFe1-V-s,4109
|
|
161
|
-
compute_api_client/models/page_permission.py,sha256=
|
|
162
|
-
compute_api_client/models/page_permission_group.py,sha256
|
|
163
|
-
compute_api_client/models/page_project.py,sha256=
|
|
164
|
-
compute_api_client/models/page_reservation.py,sha256=
|
|
165
|
-
compute_api_client/models/page_result.py,sha256=
|
|
166
|
-
compute_api_client/models/page_team.py,sha256=
|
|
167
|
-
compute_api_client/models/page_transaction.py,sha256=
|
|
168
|
-
compute_api_client/models/page_user.py,sha256=
|
|
162
|
+
compute_api_client/models/page_permission.py,sha256=SIj3WwiKbkHaaqGIvtVKJ8IQeFd1JSmV4SpC3XCdcv0,4132
|
|
163
|
+
compute_api_client/models/page_permission_group.py,sha256=-BjTqTAUP4wJxInwuLtH9kaYaQQjRgd51ASQ594WKpk,4173
|
|
164
|
+
compute_api_client/models/page_project.py,sha256=uo3TvWczeJEhnGQWZYWVGmYpZEjU5mOfJ5TI3JEuJ7g,4108
|
|
165
|
+
compute_api_client/models/page_reservation.py,sha256=yEaZYrFw-boL04nw6esdvMWhCc6gatZ3mGdmVZDpdQ8,4140
|
|
166
|
+
compute_api_client/models/page_result.py,sha256=VQjJLGdlNYBeEP3axUSNezZWihdoVOAMX-bwbK8j1G0,4100
|
|
167
|
+
compute_api_client/models/page_team.py,sha256=6sUDXZbPbsdKodFB9fEBVC-qDTU2o-7T_jSAasgjL74,4084
|
|
168
|
+
compute_api_client/models/page_transaction.py,sha256=pjnaWU3nYDD5sMcKk5Ggns6moTnes5W_a9dmSka7E3k,4140
|
|
169
|
+
compute_api_client/models/page_user.py,sha256=9nR1zHIwCCu_Oq7ihhsfwoagtlbnUmU3-udhsqYT-I8,4084
|
|
169
170
|
compute_api_client/models/permission.py,sha256=6sSGykW6ESMHERfsDJ8NGpk1IyrSAH3zYgMs2IBdDY0,2640
|
|
170
171
|
compute_api_client/models/permission_group.py,sha256=G5p9UQ7J4su3K4wG7T1RZUp18e3zdGBAF7jmELK9VfE,2531
|
|
171
172
|
compute_api_client/models/project.py,sha256=10fqFYKta9J8fhDojvSCC9BEx9G89XOLFkOrppz5a4w,2892
|
|
@@ -182,16 +183,15 @@ compute_api_client/models/transaction.py,sha256=BbO0gPlKFvvG94GI-SvuPszyB5Lx048w
|
|
|
182
183
|
compute_api_client/models/user.py,sha256=WD1QyiqRlyObnK61QRE2NUCyY5Oc9ejeNcOGopm6Nmg,3115
|
|
183
184
|
compute_api_client/models/user_in.py,sha256=gMWrBylb3ihoc-bm-K7AG9w3iWGn_ROV14wZnGlJU30,3330
|
|
184
185
|
compute_api_client/models/validation_error.py,sha256=HWliEU5aNn3CkND3c0MxJf0D8bUJmE3HKncfUCKDk5o,2941
|
|
185
|
-
compute_api_client/rest.py,sha256=-N7fantOYHH5Ot97NOHm2ouAUuw4kdqbnOvCtf25H7g,5836
|
|
186
186
|
qi2_shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
187
|
qi2_shared/authentication.py,sha256=_ZWb1oUo-avtp-yl0NANWAwzKfGhQjQnuvFqUZVPi9o,2551
|
|
188
188
|
qi2_shared/client.py,sha256=vK_VC5V9p2cy02GeVXh0lKxqhMrM3lzUSRtts1CvF-A,1591
|
|
189
|
-
qi2_shared/hybrid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
190
|
-
qi2_shared/hybrid/quantum_interface.py,sha256=3_XynjDHwt96fOqYKjuv30I5QU8DE2vU03pT0jVAqOg,1447
|
|
191
189
|
qi2_shared/pagination.py,sha256=sypb9tSsi_7A1D9WoaUEuo7Xyfci8gG2QCX8XSIb7rI,1844
|
|
192
190
|
qi2_shared/settings.py,sha256=x2wNv8nzftMFb-5K7wKvhfJVxQn0YYlZ_Guu6DHm_qU,2384
|
|
193
191
|
qi2_shared/utils.py,sha256=uD7Unuhoze3DWcz6NKvAmSMkiVO1vrlhO-zZEy1-89g,381
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
qi_compute_api_client-0.
|
|
197
|
-
qi_compute_api_client-0.
|
|
192
|
+
qi2_shared/hybrid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
193
|
+
qi2_shared/hybrid/quantum_interface.py,sha256=3_XynjDHwt96fOqYKjuv30I5QU8DE2vU03pT0jVAqOg,1447
|
|
194
|
+
qi_compute_api_client-0.52.0.dist-info/METADATA,sha256=OgoFZ-ibxyZn7OInGJ0Rn13p3-Q_REl3MDcPJ8yt9Hc,28528
|
|
195
|
+
qi_compute_api_client-0.52.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
196
|
+
qi_compute_api_client-0.52.0.dist-info/licenses/LICENSE.md,sha256=aNrwtY65Glxv8qK2ZkJ_V4zq7SyY8CfLa-vo9wBpTQY,10723
|
|
197
|
+
qi_compute_api_client-0.52.0.dist-info/RECORD,,
|
|
File without changes
|