qi-compute-api-client 0.21.0__py3-none-any.whl → 0.27.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of qi-compute-api-client might be problematic. Click here for more details.
- compute_api_client/__init__.py +1 -0
- compute_api_client/api/algorithms_api.py +24 -0
- compute_api_client/api/backend_api.py +19 -15
- compute_api_client/api/backend_types_api.py +54 -0
- compute_api_client/api/batch_jobs_api.py +4 -0
- compute_api_client/api/commits_api.py +4 -0
- compute_api_client/api/files_api.py +4 -0
- compute_api_client/api/final_results_api.py +3 -0
- compute_api_client/api/jobs_api.py +5 -0
- compute_api_client/api/languages_api.py +2 -0
- compute_api_client/api/members_api.py +4 -0
- compute_api_client/api/metadata_api.py +2 -0
- compute_api_client/api/permissions_api.py +4 -0
- compute_api_client/api/projects_api.py +28 -3
- compute_api_client/api/reservations_api.py +4 -0
- compute_api_client/api/results_api.py +2 -0
- compute_api_client/api/teams_api.py +2 -0
- compute_api_client/api/transactions_api.py +2 -0
- compute_api_client/api/users_api.py +21 -0
- compute_api_client/configuration.py +7 -0
- compute_api_client/docs/AlgorithmsApi.md +24 -7
- compute_api_client/docs/BackendApi.md +17 -8
- compute_api_client/docs/BackendIn.md +32 -0
- compute_api_client/docs/BackendType.md +3 -0
- compute_api_client/docs/BackendTypesApi.md +17 -4
- compute_api_client/docs/BatchJobIn.md +0 -1
- compute_api_client/docs/BatchJobsApi.md +16 -4
- compute_api_client/docs/CommitsApi.md +16 -4
- compute_api_client/docs/FilesApi.md +16 -4
- compute_api_client/docs/FinalResultsApi.md +12 -3
- compute_api_client/docs/JobIn.md +0 -1
- compute_api_client/docs/JobsApi.md +20 -5
- compute_api_client/docs/LanguagesApi.md +8 -2
- compute_api_client/docs/MembersApi.md +16 -4
- compute_api_client/docs/MetadataApi.md +8 -2
- compute_api_client/docs/PermissionsApi.md +16 -4
- compute_api_client/docs/ProjectsApi.md +29 -9
- compute_api_client/docs/ReservationsApi.md +16 -4
- compute_api_client/docs/ResultsApi.md +8 -2
- compute_api_client/docs/TeamsApi.md +8 -2
- compute_api_client/docs/TransactionsApi.md +8 -2
- compute_api_client/docs/User.md +1 -0
- compute_api_client/docs/UserIn.md +1 -0
- compute_api_client/docs/UsersApi.md +20 -6
- compute_api_client/models/__init__.py +1 -0
- compute_api_client/models/backend_in.py +98 -0
- compute_api_client/models/backend_type.py +9 -2
- compute_api_client/models/batch_job_in.py +1 -3
- compute_api_client/models/job_in.py +1 -4
- compute_api_client/models/user.py +4 -2
- compute_api_client/models/user_in.py +4 -2
- {qi_compute_api_client-0.21.0.dist-info → qi_compute_api_client-0.27.0.dist-info}/METADATA +13 -3
- {qi_compute_api_client-0.21.0.dist-info → qi_compute_api_client-0.27.0.dist-info}/RECORD +55 -53
- {qi_compute_api_client-0.21.0.dist-info → qi_compute_api_client-0.27.0.dist-info}/LICENSE.md +0 -0
- {qi_compute_api_client-0.21.0.dist-info → qi_compute_api_client-0.27.0.dist-info}/WHEEL +0 -0
|
@@ -19,6 +19,7 @@ Create new user.
|
|
|
19
19
|
|
|
20
20
|
### Example
|
|
21
21
|
|
|
22
|
+
* OAuth Authentication (user_bearer):
|
|
22
23
|
* Api Key Authentication (user):
|
|
23
24
|
```python
|
|
24
25
|
import time
|
|
@@ -40,6 +41,8 @@ configuration = compute_api_client.Configuration(
|
|
|
40
41
|
# Examples for each auth method are provided below, use the example that
|
|
41
42
|
# satisfies your auth use case.
|
|
42
43
|
|
|
44
|
+
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
45
|
+
|
|
43
46
|
# Configure API key authorization: user
|
|
44
47
|
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
45
48
|
|
|
@@ -75,7 +78,7 @@ Name | Type | Description | Notes
|
|
|
75
78
|
|
|
76
79
|
### Authorization
|
|
77
80
|
|
|
78
|
-
[user](../README.md#user)
|
|
81
|
+
[user_bearer](../README.md#user_bearer), [user](../README.md#user)
|
|
79
82
|
|
|
80
83
|
### HTTP request headers
|
|
81
84
|
|
|
@@ -99,6 +102,7 @@ Delete a user.
|
|
|
99
102
|
|
|
100
103
|
### Example
|
|
101
104
|
|
|
105
|
+
* OAuth Authentication (user_bearer):
|
|
102
106
|
* Api Key Authentication (user):
|
|
103
107
|
```python
|
|
104
108
|
import time
|
|
@@ -118,6 +122,8 @@ configuration = compute_api_client.Configuration(
|
|
|
118
122
|
# Examples for each auth method are provided below, use the example that
|
|
119
123
|
# satisfies your auth use case.
|
|
120
124
|
|
|
125
|
+
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
126
|
+
|
|
121
127
|
# Configure API key authorization: user
|
|
122
128
|
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
123
129
|
|
|
@@ -151,7 +157,7 @@ void (empty response body)
|
|
|
151
157
|
|
|
152
158
|
### Authorization
|
|
153
159
|
|
|
154
|
-
[user](../README.md#user)
|
|
160
|
+
[user_bearer](../README.md#user_bearer), [user](../README.md#user)
|
|
155
161
|
|
|
156
162
|
### HTTP request headers
|
|
157
163
|
|
|
@@ -176,6 +182,7 @@ Get user by ID.
|
|
|
176
182
|
|
|
177
183
|
### Example
|
|
178
184
|
|
|
185
|
+
* OAuth Authentication (user_bearer):
|
|
179
186
|
* Api Key Authentication (user):
|
|
180
187
|
```python
|
|
181
188
|
import time
|
|
@@ -196,6 +203,8 @@ configuration = compute_api_client.Configuration(
|
|
|
196
203
|
# Examples for each auth method are provided below, use the example that
|
|
197
204
|
# satisfies your auth use case.
|
|
198
205
|
|
|
206
|
+
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
207
|
+
|
|
199
208
|
# Configure API key authorization: user
|
|
200
209
|
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
201
210
|
|
|
@@ -231,7 +240,7 @@ Name | Type | Description | Notes
|
|
|
231
240
|
|
|
232
241
|
### Authorization
|
|
233
242
|
|
|
234
|
-
[user](../README.md#user)
|
|
243
|
+
[user_bearer](../README.md#user_bearer), [user](../README.md#user)
|
|
235
244
|
|
|
236
245
|
### HTTP request headers
|
|
237
246
|
|
|
@@ -248,7 +257,7 @@ Name | Type | Description | Notes
|
|
|
248
257
|
[[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)
|
|
249
258
|
|
|
250
259
|
# **read_users_users_get**
|
|
251
|
-
> List[User] read_users_users_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, full_name=full_name, email=email, is_superuser=is_superuser, is_staff=is_staff, is_active=is_active, is_confirmed=is_confirmed)
|
|
260
|
+
> List[User] read_users_users_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, full_name=full_name, email=email, is_superuser=is_superuser, is_staff=is_staff, is_active=is_active, is_confirmed=is_confirmed, oidc_sub=oidc_sub)
|
|
252
261
|
|
|
253
262
|
List users
|
|
254
263
|
|
|
@@ -256,6 +265,7 @@ Read users.
|
|
|
256
265
|
|
|
257
266
|
### Example
|
|
258
267
|
|
|
268
|
+
* OAuth Authentication (user_bearer):
|
|
259
269
|
* Api Key Authentication (user):
|
|
260
270
|
```python
|
|
261
271
|
import time
|
|
@@ -276,6 +286,8 @@ configuration = compute_api_client.Configuration(
|
|
|
276
286
|
# Examples for each auth method are provided below, use the example that
|
|
277
287
|
# satisfies your auth use case.
|
|
278
288
|
|
|
289
|
+
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
290
|
+
|
|
279
291
|
# Configure API key authorization: user
|
|
280
292
|
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
281
293
|
|
|
@@ -297,10 +309,11 @@ async with compute_api_client.ApiClient(configuration) as api_client:
|
|
|
297
309
|
is_staff = True # bool | (optional)
|
|
298
310
|
is_active = True # bool | (optional)
|
|
299
311
|
is_confirmed = True # bool | (optional)
|
|
312
|
+
oidc_sub = 'oidc_sub_example' # str | (optional)
|
|
300
313
|
|
|
301
314
|
try:
|
|
302
315
|
# List users
|
|
303
|
-
api_response = await api_instance.read_users_users_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, full_name=full_name, email=email, is_superuser=is_superuser, is_staff=is_staff, is_active=is_active, is_confirmed=is_confirmed)
|
|
316
|
+
api_response = await api_instance.read_users_users_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, full_name=full_name, email=email, is_superuser=is_superuser, is_staff=is_staff, is_active=is_active, is_confirmed=is_confirmed, oidc_sub=oidc_sub)
|
|
304
317
|
print("The response of UsersApi->read_users_users_get:\n")
|
|
305
318
|
pprint(api_response)
|
|
306
319
|
except Exception as e:
|
|
@@ -324,6 +337,7 @@ Name | Type | Description | Notes
|
|
|
324
337
|
**is_staff** | **bool**| | [optional]
|
|
325
338
|
**is_active** | **bool**| | [optional]
|
|
326
339
|
**is_confirmed** | **bool**| | [optional]
|
|
340
|
+
**oidc_sub** | **str**| | [optional]
|
|
327
341
|
|
|
328
342
|
### Return type
|
|
329
343
|
|
|
@@ -331,7 +345,7 @@ Name | Type | Description | Notes
|
|
|
331
345
|
|
|
332
346
|
### Authorization
|
|
333
347
|
|
|
334
|
-
[user](../README.md#user)
|
|
348
|
+
[user_bearer](../README.md#user_bearer), [user](../README.md#user)
|
|
335
349
|
|
|
336
350
|
### HTTP request headers
|
|
337
351
|
|
|
@@ -18,6 +18,7 @@ from compute_api_client.models.algorithm import Algorithm
|
|
|
18
18
|
from compute_api_client.models.algorithm_in import AlgorithmIn
|
|
19
19
|
from compute_api_client.models.algorithm_type import AlgorithmType
|
|
20
20
|
from compute_api_client.models.backend import Backend
|
|
21
|
+
from compute_api_client.models.backend_in import BackendIn
|
|
21
22
|
from compute_api_client.models.backend_patch import BackendPatch
|
|
22
23
|
from compute_api_client.models.backend_status import BackendStatus
|
|
23
24
|
from compute_api_client.models.backend_type import BackendType
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Quantum Inspire 2
|
|
5
|
+
|
|
6
|
+
**Sorting and Pagination of list endpoints** The api provides sorting and pagination for list endpoints. The following parameters can be passed as query parameters to get sorted and paginated list. - `latest` - **Type**: Boolean. - **Description**: Get the most recently created object. Defaults to False. - `sort_by` - **Type**: String: - **Description**: The field / column name to sort on. To reverse sort provide the field with a \"-\" sign. E.g. \"created_on\" for ascending order while \"-created_on\" in descending order. Defaults to \"id\". - `page_number` - **Type**: Positive Integer - **Description**: The page number for pagination. Defaults to 1. - `items_per_page` - **Type**: Positive Integer. - **Description**: The number of items per page for pagination. Defaults to 50.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 0.1.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
from datetime import datetime
|
|
21
|
+
from typing import Any, ClassVar, Dict, List
|
|
22
|
+
from pydantic import BaseModel, StrictInt
|
|
23
|
+
from pydantic import Field
|
|
24
|
+
from typing_extensions import Annotated
|
|
25
|
+
from compute_api_client.models.backend_status import BackendStatus
|
|
26
|
+
try:
|
|
27
|
+
from typing import Self
|
|
28
|
+
except ImportError:
|
|
29
|
+
from typing_extensions import Self
|
|
30
|
+
|
|
31
|
+
class BackendIn(BaseModel):
|
|
32
|
+
"""
|
|
33
|
+
BackendIn
|
|
34
|
+
""" # noqa: E501
|
|
35
|
+
name: Annotated[str, Field(strict=True, max_length=32)]
|
|
36
|
+
location: Annotated[str, Field(strict=True, max_length=32)]
|
|
37
|
+
backend_type_id: StrictInt
|
|
38
|
+
status: BackendStatus
|
|
39
|
+
last_heartbeat: datetime
|
|
40
|
+
__properties: ClassVar[List[str]] = ["name", "location", "backend_type_id", "status", "last_heartbeat"]
|
|
41
|
+
|
|
42
|
+
model_config = {
|
|
43
|
+
"populate_by_name": True,
|
|
44
|
+
"validate_assignment": True
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def to_str(self) -> str:
|
|
49
|
+
"""Returns the string representation of the model using alias"""
|
|
50
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
51
|
+
|
|
52
|
+
def to_json(self) -> str:
|
|
53
|
+
"""Returns the JSON representation of the model using alias"""
|
|
54
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
55
|
+
return json.dumps(self.to_dict())
|
|
56
|
+
|
|
57
|
+
@classmethod
|
|
58
|
+
def from_json(cls, json_str: str) -> Self:
|
|
59
|
+
"""Create an instance of BackendIn from a JSON string"""
|
|
60
|
+
return cls.from_dict(json.loads(json_str))
|
|
61
|
+
|
|
62
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
63
|
+
"""Return the dictionary representation of the model using alias.
|
|
64
|
+
|
|
65
|
+
This has the following differences from calling pydantic's
|
|
66
|
+
`self.model_dump(by_alias=True)`:
|
|
67
|
+
|
|
68
|
+
* `None` is only added to the output dict for nullable fields that
|
|
69
|
+
were set at model initialization. Other fields with value `None`
|
|
70
|
+
are ignored.
|
|
71
|
+
"""
|
|
72
|
+
_dict = self.model_dump(
|
|
73
|
+
by_alias=True,
|
|
74
|
+
exclude={
|
|
75
|
+
},
|
|
76
|
+
exclude_none=True,
|
|
77
|
+
)
|
|
78
|
+
return _dict
|
|
79
|
+
|
|
80
|
+
@classmethod
|
|
81
|
+
def from_dict(cls, obj: Dict) -> Self:
|
|
82
|
+
"""Create an instance of BackendIn from a dict"""
|
|
83
|
+
if obj is None:
|
|
84
|
+
return None
|
|
85
|
+
|
|
86
|
+
if not isinstance(obj, dict):
|
|
87
|
+
return cls.model_validate(obj)
|
|
88
|
+
|
|
89
|
+
_obj = cls.model_validate({
|
|
90
|
+
"name": obj.get("name"),
|
|
91
|
+
"location": obj.get("location"),
|
|
92
|
+
"backend_type_id": obj.get("backend_type_id"),
|
|
93
|
+
"status": obj.get("status"),
|
|
94
|
+
"last_heartbeat": obj.get("last_heartbeat")
|
|
95
|
+
})
|
|
96
|
+
return _obj
|
|
97
|
+
|
|
98
|
+
|
|
@@ -22,6 +22,7 @@ from typing import Any, ClassVar, Dict, List, Union
|
|
|
22
22
|
from pydantic import BaseModel, StrictBool, StrictInt, StrictStr
|
|
23
23
|
from pydantic import Field
|
|
24
24
|
from typing_extensions import Annotated
|
|
25
|
+
from compute_api_client.models.backend_status import BackendStatus
|
|
25
26
|
try:
|
|
26
27
|
from typing import Self
|
|
27
28
|
except ImportError:
|
|
@@ -40,7 +41,10 @@ class BackendType(BaseModel):
|
|
|
40
41
|
features: List[StrictStr]
|
|
41
42
|
default_compiler_config: Union[str, Any]
|
|
42
43
|
native_gateset: Union[str, Any]
|
|
43
|
-
|
|
44
|
+
status: BackendStatus
|
|
45
|
+
default_number_of_shots: StrictInt
|
|
46
|
+
max_number_of_shots: StrictInt
|
|
47
|
+
__properties: ClassVar[List[str]] = ["id", "name", "infrastructure", "description", "image_id", "is_hardware", "features", "default_compiler_config", "native_gateset", "status", "default_number_of_shots", "max_number_of_shots"]
|
|
44
48
|
|
|
45
49
|
model_config = {
|
|
46
50
|
"populate_by_name": True,
|
|
@@ -98,7 +102,10 @@ class BackendType(BaseModel):
|
|
|
98
102
|
"is_hardware": obj.get("is_hardware"),
|
|
99
103
|
"features": obj.get("features"),
|
|
100
104
|
"default_compiler_config": obj.get("default_compiler_config"),
|
|
101
|
-
"native_gateset": obj.get("native_gateset")
|
|
105
|
+
"native_gateset": obj.get("native_gateset"),
|
|
106
|
+
"status": obj.get("status"),
|
|
107
|
+
"default_number_of_shots": obj.get("default_number_of_shots"),
|
|
108
|
+
"max_number_of_shots": obj.get("max_number_of_shots")
|
|
102
109
|
})
|
|
103
110
|
return _obj
|
|
104
111
|
|
|
@@ -29,9 +29,8 @@ class BatchJobIn(BaseModel):
|
|
|
29
29
|
"""
|
|
30
30
|
BatchJobIn
|
|
31
31
|
""" # noqa: E501
|
|
32
|
-
user_id: StrictInt
|
|
33
32
|
backend_type_id: StrictInt
|
|
34
|
-
__properties: ClassVar[List[str]] = ["
|
|
33
|
+
__properties: ClassVar[List[str]] = ["backend_type_id"]
|
|
35
34
|
|
|
36
35
|
model_config = {
|
|
37
36
|
"populate_by_name": True,
|
|
@@ -81,7 +80,6 @@ class BatchJobIn(BaseModel):
|
|
|
81
80
|
return cls.model_validate(obj)
|
|
82
81
|
|
|
83
82
|
_obj = cls.model_validate({
|
|
84
|
-
"user_id": obj.get("user_id"),
|
|
85
83
|
"backend_type_id": obj.get("backend_type_id")
|
|
86
84
|
})
|
|
87
85
|
return _obj
|
|
@@ -20,7 +20,6 @@ import json
|
|
|
20
20
|
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
22
|
from pydantic import BaseModel, StrictInt
|
|
23
|
-
from compute_api_client.models.job_status import JobStatus
|
|
24
23
|
try:
|
|
25
24
|
from typing import Self
|
|
26
25
|
except ImportError:
|
|
@@ -31,10 +30,9 @@ class JobIn(BaseModel):
|
|
|
31
30
|
JobIn
|
|
32
31
|
""" # noqa: E501
|
|
33
32
|
file_id: StrictInt
|
|
34
|
-
status: Optional[JobStatus] = None
|
|
35
33
|
batch_job_id: StrictInt
|
|
36
34
|
number_of_shots: Optional[StrictInt] = None
|
|
37
|
-
__properties: ClassVar[List[str]] = ["file_id", "
|
|
35
|
+
__properties: ClassVar[List[str]] = ["file_id", "batch_job_id", "number_of_shots"]
|
|
38
36
|
|
|
39
37
|
model_config = {
|
|
40
38
|
"populate_by_name": True,
|
|
@@ -90,7 +88,6 @@ class JobIn(BaseModel):
|
|
|
90
88
|
|
|
91
89
|
_obj = cls.model_validate({
|
|
92
90
|
"file_id": obj.get("file_id"),
|
|
93
|
-
"status": obj.get("status"),
|
|
94
91
|
"batch_job_id": obj.get("batch_job_id"),
|
|
95
92
|
"number_of_shots": obj.get("number_of_shots")
|
|
96
93
|
})
|
|
@@ -38,7 +38,8 @@ class User(BaseModel):
|
|
|
38
38
|
is_staff: StrictBool
|
|
39
39
|
is_active: StrictBool
|
|
40
40
|
is_confirmed: StrictBool
|
|
41
|
-
|
|
41
|
+
oidc_sub: Annotated[str, Field(strict=True, max_length=256)]
|
|
42
|
+
__properties: ClassVar[List[str]] = ["id", "full_name", "email", "is_superuser", "is_staff", "is_active", "is_confirmed", "oidc_sub"]
|
|
42
43
|
|
|
43
44
|
model_config = {
|
|
44
45
|
"populate_by_name": True,
|
|
@@ -94,7 +95,8 @@ class User(BaseModel):
|
|
|
94
95
|
"is_superuser": obj.get("is_superuser"),
|
|
95
96
|
"is_staff": obj.get("is_staff"),
|
|
96
97
|
"is_active": obj.get("is_active"),
|
|
97
|
-
"is_confirmed": obj.get("is_confirmed")
|
|
98
|
+
"is_confirmed": obj.get("is_confirmed"),
|
|
99
|
+
"oidc_sub": obj.get("oidc_sub")
|
|
98
100
|
})
|
|
99
101
|
return _obj
|
|
100
102
|
|
|
@@ -37,7 +37,8 @@ class UserIn(BaseModel):
|
|
|
37
37
|
is_staff: Optional[StrictBool] = False
|
|
38
38
|
is_active: Optional[StrictBool] = False
|
|
39
39
|
is_confirmed: Optional[StrictBool] = False
|
|
40
|
-
|
|
40
|
+
oidc_sub: Annotated[str, Field(strict=True, max_length=256)]
|
|
41
|
+
__properties: ClassVar[List[str]] = ["full_name", "email", "is_superuser", "is_staff", "is_active", "is_confirmed", "oidc_sub"]
|
|
41
42
|
|
|
42
43
|
model_config = {
|
|
43
44
|
"populate_by_name": True,
|
|
@@ -92,7 +93,8 @@ class UserIn(BaseModel):
|
|
|
92
93
|
"is_superuser": obj.get("is_superuser") if obj.get("is_superuser") is not None else False,
|
|
93
94
|
"is_staff": obj.get("is_staff") if obj.get("is_staff") is not None else False,
|
|
94
95
|
"is_active": obj.get("is_active") if obj.get("is_active") is not None else False,
|
|
95
|
-
"is_confirmed": obj.get("is_confirmed") if obj.get("is_confirmed") is not None else False
|
|
96
|
+
"is_confirmed": obj.get("is_confirmed") if obj.get("is_confirmed") is not None else False,
|
|
97
|
+
"oidc_sub": obj.get("oidc_sub")
|
|
96
98
|
})
|
|
97
99
|
return _obj
|
|
98
100
|
|
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qi-compute-api-client
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.27.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
|
|
7
7
|
Author: Quantum Inspire
|
|
8
8
|
Author-email: support@quantum-inspire.eu
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.8,<4.0
|
|
10
10
|
Classifier: Development Status :: 3 - Alpha
|
|
11
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.8
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.9
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -68,6 +67,8 @@ configuration = compute_api_client.Configuration(
|
|
|
68
67
|
# Examples for each auth method are provided below, use the example that
|
|
69
68
|
# satisfies your auth use case.
|
|
70
69
|
|
|
70
|
+
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
71
|
+
|
|
71
72
|
# Configure API key authorization: user
|
|
72
73
|
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
73
74
|
|
|
@@ -175,6 +176,7 @@ Class | Method | HTTP request | Description
|
|
|
175
176
|
- [AlgorithmIn](compute_api_client/docs/AlgorithmIn.md)
|
|
176
177
|
- [AlgorithmType](compute_api_client/docs/AlgorithmType.md)
|
|
177
178
|
- [Backend](compute_api_client/docs/Backend.md)
|
|
179
|
+
- [BackendIn](compute_api_client/docs/BackendIn.md)
|
|
178
180
|
- [BackendPatch](compute_api_client/docs/BackendPatch.md)
|
|
179
181
|
- [BackendStatus](compute_api_client/docs/BackendStatus.md)
|
|
180
182
|
- [BackendType](compute_api_client/docs/BackendType.md)
|
|
@@ -232,6 +234,14 @@ Authentication schemes defined for the API:
|
|
|
232
234
|
- **API key parameter name**: X-userid
|
|
233
235
|
- **Location**: HTTP header
|
|
234
236
|
|
|
237
|
+
<a id="user_bearer"></a>
|
|
238
|
+
### user_bearer
|
|
239
|
+
|
|
240
|
+
- **Type**: OAuth
|
|
241
|
+
- **Flow**: accessCode
|
|
242
|
+
- **Authorization URL**: https://auth.qi2.quantum-inspire.com/realms/oidc_staging/protocol/openid-connect/auth
|
|
243
|
+
- **Scopes**: N/A
|
|
244
|
+
|
|
235
245
|
<a id="backend"></a>
|
|
236
246
|
### backend
|
|
237
247
|
|
|
@@ -1,103 +1,105 @@
|
|
|
1
|
-
compute_api_client/__init__.py,sha256=
|
|
1
|
+
compute_api_client/__init__.py,sha256=KeEto58bau7Qh76zID_LwLD_mwwf6xnavcej5VT1X2w,5661
|
|
2
2
|
compute_api_client/api/__init__.py,sha256=t8rYBWV5wDVdZPLmo97F78Dfb_J6R5AxEIlnaX8MWA0,1143
|
|
3
|
-
compute_api_client/api/algorithms_api.py,sha256=
|
|
4
|
-
compute_api_client/api/backend_api.py,sha256=
|
|
5
|
-
compute_api_client/api/backend_types_api.py,sha256=
|
|
6
|
-
compute_api_client/api/batch_jobs_api.py,sha256=
|
|
7
|
-
compute_api_client/api/commits_api.py,sha256=
|
|
8
|
-
compute_api_client/api/files_api.py,sha256=
|
|
9
|
-
compute_api_client/api/final_results_api.py,sha256=
|
|
10
|
-
compute_api_client/api/jobs_api.py,sha256=
|
|
11
|
-
compute_api_client/api/languages_api.py,sha256=
|
|
12
|
-
compute_api_client/api/members_api.py,sha256=
|
|
13
|
-
compute_api_client/api/metadata_api.py,sha256=
|
|
14
|
-
compute_api_client/api/permissions_api.py,sha256=
|
|
15
|
-
compute_api_client/api/projects_api.py,sha256=
|
|
16
|
-
compute_api_client/api/reservations_api.py,sha256=
|
|
17
|
-
compute_api_client/api/results_api.py,sha256=
|
|
18
|
-
compute_api_client/api/teams_api.py,sha256=
|
|
19
|
-
compute_api_client/api/transactions_api.py,sha256=
|
|
20
|
-
compute_api_client/api/users_api.py,sha256=
|
|
3
|
+
compute_api_client/api/algorithms_api.py,sha256=IVoyKbP0Djlq2HaS1XGnrKbltGhCndVYEBeNkMC9lzE,59654
|
|
4
|
+
compute_api_client/api/backend_api.py,sha256=UozMtHSGFRPMYq2EStpCPKJcqtSzKmsqa96E1V2rXVI,57412
|
|
5
|
+
compute_api_client/api/backend_types_api.py,sha256=c6FqdbVcIRsyPIr388Zgo_64c345qAErqkPkynGt-qU,28973
|
|
6
|
+
compute_api_client/api/batch_jobs_api.py,sha256=HQ9slE4BxbH0E-FXT_VGtAw-dqO2c8ChRAjUSJuYuj4,83863
|
|
7
|
+
compute_api_client/api/commits_api.py,sha256=_Ta4lNyqbXhV-Ybtpul0-ARkNoX1UVibLVTcB21JQwo,46219
|
|
8
|
+
compute_api_client/api/files_api.py,sha256=HqLnjeGd4crNRi37RxCBD5o8ArpQkidWXVbyIhWqbG0,46289
|
|
9
|
+
compute_api_client/api/final_results_api.py,sha256=9UW5tYDwesOaAUL7jNCq9tZjvqmoGFzoiZXW8GZZ0j8,32675
|
|
10
|
+
compute_api_client/api/jobs_api.py,sha256=0vq0SoHTqKnPYC0Kb4poAZ3HpC6TM1jk8K3xtjOOwGM,62312
|
|
11
|
+
compute_api_client/api/languages_api.py,sha256=Zljz23x7UsSVnytgNl8flCn-PSqsxCyEmsV-eaZhm2Q,25187
|
|
12
|
+
compute_api_client/api/members_api.py,sha256=nuy_KOoEFLIYRHstTbC3mYsTcTF383EmJGExzXnG084,45666
|
|
13
|
+
compute_api_client/api/metadata_api.py,sha256=AgJWGhnTWt4RUuTgW8XD5tNuxBqxYAO_U52ZQ4h2D9I,32470
|
|
14
|
+
compute_api_client/api/permissions_api.py,sha256=VfXv2povKaFvnTEk48dXHfCJ8e9eqHiVwrYtWbbolSc,47784
|
|
15
|
+
compute_api_client/api/projects_api.py,sha256=ZZQH2gDLA1CeqjI6YtUVQHwAalSMa7HhDJm0US_i0hY,70696
|
|
16
|
+
compute_api_client/api/reservations_api.py,sha256=9ADL5m6zyksLhVNe6ssNdY6pG11vUIjO8XfFcVKcm2o,49660
|
|
17
|
+
compute_api_client/api/results_api.py,sha256=wWeIEwQ5Y_PDN79SfKXti6ablu1apiKpZF4IX4tdP1w,41964
|
|
18
|
+
compute_api_client/api/teams_api.py,sha256=KwzulM4fQwhmxf_X0b4CUxN5uL_rAcTaPrXJ3sP_JuI,25186
|
|
19
|
+
compute_api_client/api/transactions_api.py,sha256=FxYDE4oWFbb7tDO3E9n664xCL8g5Dot8SLqAWPa_bkc,29299
|
|
20
|
+
compute_api_client/api/users_api.py,sha256=MqcgF7q_X_RZWGprerTDNE_-e7ms8vJ-Vcv6B50oOHk,47186
|
|
21
21
|
compute_api_client/api_client.py,sha256=IiF79W0SMRSJhyDnCLHioOlpTDFnCdlBpwls5RDDQnU,25783
|
|
22
22
|
compute_api_client/api_response.py,sha256=A7O_XgliD6y7jEv82fgIaxR3T8KiwaOqHR6djpZyh_o,674
|
|
23
|
-
compute_api_client/configuration.py,sha256=
|
|
23
|
+
compute_api_client/configuration.py,sha256=vvqhHV-Lpe8vUzvxcylpHXqdSKL6TTcOf5zfDzWXl-A,16231
|
|
24
24
|
compute_api_client/docs/Algorithm.md,sha256=LThexsNa9FuuIyP9Hs2yjP2L-04VszC7AdfOJgJRj3s,992
|
|
25
25
|
compute_api_client/docs/AlgorithmIn.md,sha256=pbmzOOKqKx-0B93OfPOcGcPb63AprVUUrLPNxD0m2FQ,1024
|
|
26
26
|
compute_api_client/docs/AlgorithmType.md,sha256=056KK2zjtdGqqTXkDsxg8mCzxr2sM8C37YmrR3txGVA,292
|
|
27
|
-
compute_api_client/docs/AlgorithmsApi.md,sha256=
|
|
27
|
+
compute_api_client/docs/AlgorithmsApi.md,sha256=WHbQTvcNkwB8cn_mysNnUaWxpjD6i9L4jSw-nMHlf7M,15719
|
|
28
28
|
compute_api_client/docs/Backend.md,sha256=7xbvLaCTqqFzwcA2QONhY-QXa_Ts1fWiuBQBJegW50g,968
|
|
29
|
-
compute_api_client/docs/BackendApi.md,sha256=
|
|
29
|
+
compute_api_client/docs/BackendApi.md,sha256=yl6hC6zqTLUDxLpBM6EWYzz_RNl9p0ssWePWuHcGUy4,14533
|
|
30
|
+
compute_api_client/docs/BackendIn.md,sha256=7_drRygOUPHFWjrvAJGo7WwmcyK6EeRnlSnA6WtTCu0,978
|
|
30
31
|
compute_api_client/docs/BackendPatch.md,sha256=xET1pnI8JStGhtHm7qT-1zv7RCuKl2CUIKtYueWq72U,927
|
|
31
32
|
compute_api_client/docs/BackendStatus.md,sha256=ofnS843IHCIxoywjJJ01GP90Gn1XedAm5xR8TONmUbk,292
|
|
32
|
-
compute_api_client/docs/BackendType.md,sha256=
|
|
33
|
-
compute_api_client/docs/BackendTypesApi.md,sha256=
|
|
33
|
+
compute_api_client/docs/BackendType.md,sha256=X6Fi-eoTNo-Xldg_YEwC_-zyPqlMNXFYoiKin6mQ_8M,1255
|
|
34
|
+
compute_api_client/docs/BackendTypesApi.md,sha256=IXC0O6scF6QdaGkMQ3jRnciRTpZPLW82s6glFVo2BiU,7466
|
|
34
35
|
compute_api_client/docs/BackendWithAuthentication.md,sha256=u9lZh4FusMtOuV53yc0QXHdnTas-4HNC06NyDh8E1Go,1256
|
|
35
36
|
compute_api_client/docs/BatchJob.md,sha256=IozaJI2zAL1zo_zmuI-RIKvLGK68KkyW53AH4jbIaIs,1210
|
|
36
|
-
compute_api_client/docs/BatchJobIn.md,sha256=
|
|
37
|
+
compute_api_client/docs/BatchJobIn.md,sha256=9-nP1Xgnzd5tfvo8WmandUWR8IY-2pMeZyW0HveKZEU,847
|
|
37
38
|
compute_api_client/docs/BatchJobStatus.md,sha256=UQift_l9A3L0azzYjQtr7UnmYk6X36Ug3U7S-VTpx7A,293
|
|
38
|
-
compute_api_client/docs/BatchJobsApi.md,sha256=
|
|
39
|
+
compute_api_client/docs/BatchJobsApi.md,sha256=phcWWLudwhJ_z0YmmnHttMMt602RaxsIN9CG7E5Zq7M,21766
|
|
39
40
|
compute_api_client/docs/Commit.md,sha256=WI3TcSFBdLWRjvJ9OBKiAKSN5AX7gXHs7EZm-Zs77FE,894
|
|
40
41
|
compute_api_client/docs/CommitIn.md,sha256=tnd4OQ1brIRnNGAGkH3x_HRIQIg68CZTuAEJ2JDKK9w,843
|
|
41
|
-
compute_api_client/docs/CommitsApi.md,sha256=
|
|
42
|
+
compute_api_client/docs/CommitsApi.md,sha256=Ogs3fNDhqqGm3cikYOOVTLM-Kn2JL2dn30AJF8FY-XY,11798
|
|
42
43
|
compute_api_client/docs/CompileStage.md,sha256=-U9wb4fyD8b_cjV1-GBIBJfbquFulRlHFm3C0GFnGik,291
|
|
43
44
|
compute_api_client/docs/Domain.md,sha256=HONTAt17CX2vFhnkHOFqMpJEIJjPM8GTBBQriWA71UY,285
|
|
44
45
|
compute_api_client/docs/File.md,sha256=Sv44g-54NNYcZL-sJeruJhohCHVNmCaue0u-xfsAHLw,967
|
|
45
46
|
compute_api_client/docs/FileIn.md,sha256=yRMAH_chHNZo4YskPGdw_nx14-sPn6S_OPdfm4-ej_U,1006
|
|
46
|
-
compute_api_client/docs/FilesApi.md,sha256
|
|
47
|
+
compute_api_client/docs/FilesApi.md,sha256=ELxcxpB_loWIe06PMw_kqaJYMrWmEDMcGc6MydXpGOk,11779
|
|
47
48
|
compute_api_client/docs/FinalResult.md,sha256=sRCvqIH3TXruJvgaHp4s6zyfCEkuBReVoaqr2iHVkJU,939
|
|
48
49
|
compute_api_client/docs/FinalResultIn.md,sha256=9RSstFSQ08-we_4TtoEAP1_KIq6FBdftRyc-DDkAGLQ,913
|
|
49
|
-
compute_api_client/docs/FinalResultsApi.md,sha256=
|
|
50
|
+
compute_api_client/docs/FinalResultsApi.md,sha256=Kp2yNpPIrfT7IHumvZNhOA2d4rx7KD5vgzBrSJUyI2s,8998
|
|
50
51
|
compute_api_client/docs/HTTPNotFoundError.md,sha256=1GluS5OAVTk1qNrQwBOb29eQiNMJnCXyJk-0oKf-Rlc,936
|
|
51
52
|
compute_api_client/docs/HTTPValidationError.md,sha256=MRdybtO0HOeFCN3Zk221Q6XH6fw1Qyg8J9KLPn38tI4,1006
|
|
52
53
|
compute_api_client/docs/Job.md,sha256=gXYcbGXDIqOTNuf9kHJJqmK7d9IrWIdsqLznizkrBNk,1048
|
|
53
|
-
compute_api_client/docs/JobIn.md,sha256=
|
|
54
|
+
compute_api_client/docs/JobIn.md,sha256=zN8pXLT1iGJg0o--iOfTZCm8Qj3UWApejFaASJ5AM8s,847
|
|
54
55
|
compute_api_client/docs/JobPatch.md,sha256=YadPzV_CU2oygKaaw8FJuikEo4M6QqO5uR628w1bKf4,827
|
|
55
56
|
compute_api_client/docs/JobStatus.md,sha256=BFKP4etVPMe37IOCI77TTxry-KfOcwhj_H5oNSfPkPA,288
|
|
56
|
-
compute_api_client/docs/JobsApi.md,sha256=
|
|
57
|
+
compute_api_client/docs/JobsApi.md,sha256=5IaaqwpJC5VXOUFtdiff9gQ2P-SHUVcdcUesaGVhrrU,16228
|
|
57
58
|
compute_api_client/docs/Language.md,sha256=eHCpr4xEVei2MTA9zKu4DxBZamoSrSE3JOD36I7iDwU,847
|
|
58
|
-
compute_api_client/docs/LanguagesApi.md,sha256=
|
|
59
|
+
compute_api_client/docs/LanguagesApi.md,sha256=g060nu5JyGthV7cviGc8hS_8WNxdutdNQKFKx73O4do,6247
|
|
59
60
|
compute_api_client/docs/LocationInner.md,sha256=Z1Z8_cF7hlrfoOGVKoWz-ZhSQ457HKDdE_nXzZ9TPCA,843
|
|
60
61
|
compute_api_client/docs/Member.md,sha256=Y1w2DLahBH71KkFN_pLZ_jK7OeuzZjEvKm9_uypkxis,892
|
|
61
62
|
compute_api_client/docs/MemberIn.md,sha256=9Qy8ZNV5_f04glvxGQ-Y8HGPS_pYsftCnZBt1635-hU,931
|
|
62
|
-
compute_api_client/docs/MembersApi.md,sha256=
|
|
63
|
+
compute_api_client/docs/MembersApi.md,sha256=RCv5zjP6qR2NF0V0o4sCXaGpW0ESXoEGdI1SJE2TXJs,11458
|
|
63
64
|
compute_api_client/docs/Metadata.md,sha256=R5XBSvfG31CHzOEV8HtwaWDmrOOihS5Ky18woUfUlwE,889
|
|
64
|
-
compute_api_client/docs/MetadataApi.md,sha256=
|
|
65
|
+
compute_api_client/docs/MetadataApi.md,sha256=AEeeFCX9YZ22PPOwOsei_coTNjbRBuLM8uuabrxZJqM,8368
|
|
65
66
|
compute_api_client/docs/MetadataIn.md,sha256=PBzLjFfYDlZdF3xSFjoQ1uP_EayjI1EmgvmBxPdJ8uI,874
|
|
66
67
|
compute_api_client/docs/Permission.md,sha256=gSRBHoPMcJEgGKRAHxSWLG921o6cnJQgeMyJgJHXieA,876
|
|
67
68
|
compute_api_client/docs/PermissionGroup.md,sha256=4gHLWGB9XHA7EoEk1M8ChffeNcF5v8zeBn3nklRkJJo,917
|
|
68
|
-
compute_api_client/docs/PermissionsApi.md,sha256=
|
|
69
|
+
compute_api_client/docs/PermissionsApi.md,sha256=aaCrASF9EWuCK8S8c740k4OdYd0AfRc1_KVaiehNm6s,12575
|
|
69
70
|
compute_api_client/docs/Project.md,sha256=fC2w63y-I3Nfwf93Br6B0pbX2Sd7IH3MUpkLUSifdRY,932
|
|
70
71
|
compute_api_client/docs/ProjectIn.md,sha256=37DDbutsLHAURQzQaTL-O0nagNUO2AnS3aTqSf1vkEA,935
|
|
71
72
|
compute_api_client/docs/ProjectPatch.md,sha256=lSuCnJWbim0XPrmdXl5_h0WWGh3-Tr3R0G1RDXjAleQ,989
|
|
72
|
-
compute_api_client/docs/ProjectsApi.md,sha256=
|
|
73
|
+
compute_api_client/docs/ProjectsApi.md,sha256=AbmXp3Uol0R1BfJKpvSdqQywbRI9-rq6Dgp7HQlVdks,18043
|
|
73
74
|
compute_api_client/docs/Reservation.md,sha256=SX9xFwujAOl2yJBLO66CFM6JkxFquSNJQOBwkJAah5E,1035
|
|
74
75
|
compute_api_client/docs/ReservationIn.md,sha256=veTcJp5zNuApDCm76I6FawcWVjyLcvxGOubmmfvPJiw,979
|
|
75
|
-
compute_api_client/docs/ReservationsApi.md,sha256=
|
|
76
|
+
compute_api_client/docs/ReservationsApi.md,sha256=bKk2_luS4Xe1Y5e-VKTAFQ6shFi47JOGS4Fw0_mqsJc,12893
|
|
76
77
|
compute_api_client/docs/Result.md,sha256=X1vLj2mxJtC2cF8RnhoMvANiPFlVqxxysjwqOrGMsOM,1046
|
|
77
78
|
compute_api_client/docs/ResultIn.md,sha256=uvFB1Hwltwzf9oLlhcrE0pyaOigxYRkLaZc48nWlf2Q,1064
|
|
78
|
-
compute_api_client/docs/ResultsApi.md,sha256=
|
|
79
|
+
compute_api_client/docs/ResultsApi.md,sha256=2ltbV3XBN7GYDgMvXoox75cgM1mDdN1Y7ZOYDYvBp-M,10589
|
|
79
80
|
compute_api_client/docs/Role.md,sha256=WKRdBmGL1vHDgSxeIhUItEJnZJ-lMedQJoBEleQQou4,283
|
|
80
81
|
compute_api_client/docs/ShareType.md,sha256=AxfoQcU9wr9iU9r4unG1_miL8XT75FdAziZJzLDvQL0,288
|
|
81
82
|
compute_api_client/docs/Team.md,sha256=cGhzeDoJHyFX-offM414nz1lp1G9BslQUBGJejJMGWo,829
|
|
82
|
-
compute_api_client/docs/TeamsApi.md,sha256=
|
|
83
|
+
compute_api_client/docs/TeamsApi.md,sha256=X_Oc1035xqYRbTQ9vLAUKLzWmgbD9dD5GxWKzXkuJPc,6081
|
|
83
84
|
compute_api_client/docs/Transaction.md,sha256=8KudptRH-bUwOCnTGO4q2xXAHzEX_q_XdrmjFYVSrsI,1018
|
|
84
|
-
compute_api_client/docs/TransactionsApi.md,sha256=
|
|
85
|
-
compute_api_client/docs/User.md,sha256=
|
|
86
|
-
compute_api_client/docs/UserIn.md,sha256=
|
|
87
|
-
compute_api_client/docs/UsersApi.md,sha256=
|
|
85
|
+
compute_api_client/docs/TransactionsApi.md,sha256=Fnw3cVZGprndbsz4EMiFdDTcn_C8VgwalGwwGOnDMOg,7327
|
|
86
|
+
compute_api_client/docs/User.md,sha256=oTsbbVs-VN8fFWiZCuu5OJmv97lQkZ2AAfdhLu2HsQY,956
|
|
87
|
+
compute_api_client/docs/UserIn.md,sha256=xAPeVO5WTaNcbI151w0j_g6BEM-xYquMV5Nx6srJA4Q,1082
|
|
88
|
+
compute_api_client/docs/UsersApi.md,sha256=k2L7u1JlF7rLuvSev0rB65f1CYuBHCA0_N5oELc2wYU,11626
|
|
88
89
|
compute_api_client/docs/ValidationError.md,sha256=NZSCUyM9u2fx4CFZfPF9cl_e6zDxQ9siBX-WtNHJyeA,978
|
|
89
90
|
compute_api_client/exceptions.py,sha256=r_WbctDc5iMdSJj6wE5giPMTIEGxPNyIpC4OyGG0pKo,6169
|
|
90
|
-
compute_api_client/models/__init__.py,sha256=
|
|
91
|
+
compute_api_client/models/__init__.py,sha256=ge92V1cpzZGDgxHM1BWIkp5R6ouoZ9YLHAN7puqohKs,3986
|
|
91
92
|
compute_api_client/models/algorithm.py,sha256=GjN7OZB3nobRHGW2mIvT4EuDMCIgeVWj2dF_C8qM2gw,4117
|
|
92
93
|
compute_api_client/models/algorithm_in.py,sha256=Go7RDIRoKxbIJWBRWtfIwWHcJAttQEAUVdAP3zJ8cNk,4082
|
|
93
94
|
compute_api_client/models/algorithm_type.py,sha256=R7solTw587cOLgDSo7yYMKUha3-nOihnfAMP62k5pbE,1580
|
|
94
95
|
compute_api_client/models/backend.py,sha256=BILyAnLUqz1e3M45WUSb6Jhtg40OmA1ECnbOcamgsZ0,3724
|
|
96
|
+
compute_api_client/models/backend_in.py,sha256=vFK0gjdq3EC1NVpGc33keOg7R4BX8jQgAZNHq2JJe1c,3675
|
|
95
97
|
compute_api_client/models/backend_patch.py,sha256=XeWXiC9ANMW8ud3jq-jSFLR07NeRdsowoFhoHnPtlyI,3274
|
|
96
98
|
compute_api_client/models/backend_status.py,sha256=fS7ftKFUHFq3ZoHrc9RcwOVIZ9qx0AKZ_gynrVb71Fc,1636
|
|
97
|
-
compute_api_client/models/backend_type.py,sha256=
|
|
99
|
+
compute_api_client/models/backend_type.py,sha256=XSQBYyT-na0xLOv-QeZICfySi05h-w6mxPiOT_Xut40,4471
|
|
98
100
|
compute_api_client/models/backend_with_authentication.py,sha256=pirY3SSC2QmHtCYRGXHw7vvQ2wo_TN2sf5Iu6i78cVU,3961
|
|
99
101
|
compute_api_client/models/batch_job.py,sha256=d8h9yc-3uNDjA4OZVKGINwvqJBCVt0KnYqjrZ0Vp7-s,5106
|
|
100
|
-
compute_api_client/models/batch_job_in.py,sha256=
|
|
102
|
+
compute_api_client/models/batch_job_in.py,sha256=9MNquEio7amBpfHw5RNTer9hM34BpERCKj_7DPWbPOE,3109
|
|
101
103
|
compute_api_client/models/batch_job_status.py,sha256=_PLRvOApWIVvGGS8cebWsFlF4qZ7lcIcFjwrdG_qHQU,1659
|
|
102
104
|
compute_api_client/models/commit.py,sha256=GVycft5ST8xYPhvcz-4RkLUu5oYuko0oOWQP2JlTzMM,3531
|
|
103
105
|
compute_api_client/models/commit_in.py,sha256=VN_9IIgLjJbnPdk41s0NqzqUdzIXi07MJHsdPAmRAao,3193
|
|
@@ -110,7 +112,7 @@ compute_api_client/models/final_result_in.py,sha256=-gOrEVMY25wjK8W6Xe9-uSoCExl6
|
|
|
110
112
|
compute_api_client/models/http_not_found_error.py,sha256=311hmZBqvPjEdPqcsmWEtTRZ6pS_-xt5dvSCNNfgYao,3101
|
|
111
113
|
compute_api_client/models/http_validation_error.py,sha256=4Q0nrlpV6VKjY1SWXRF7xHPa2u3H3803pbFLpESbc2o,3600
|
|
112
114
|
compute_api_client/models/job.py,sha256=6ZPkFoMJx2JulYjsfEtkiETgZ1DByOg58hIgdaV26m8,4642
|
|
113
|
-
compute_api_client/models/job_in.py,sha256=
|
|
115
|
+
compute_api_client/models/job_in.py,sha256=KvGfUz7D9hOM8bM9Oin1MsNhZfPRBCjaqXeQ9hCCl9o,3533
|
|
114
116
|
compute_api_client/models/job_patch.py,sha256=84334GgkF6D6QfsPZ7AasgkLqvBEp4qXUD89uChM860,3113
|
|
115
117
|
compute_api_client/models/job_status.py,sha256=Wl45SIMUceSzOF5hW5SGYHPX_sMAy03o6VeRfMmB9tA,1648
|
|
116
118
|
compute_api_client/models/language.py,sha256=KTuUe2zBTCRw5EWzbGmKoNUy4AwkSDo3xSCed4o-AWk,3338
|
|
@@ -132,11 +134,11 @@ compute_api_client/models/role.py,sha256=N7VjEqPzp3VvuyseBxOT06XmylYELThbcmPe_Ru
|
|
|
132
134
|
compute_api_client/models/share_type.py,sha256=LaGOBjqNLEeAsZwB9DxAwm1YQyE3bCyl7bCJH4Il7iE,1592
|
|
133
135
|
compute_api_client/models/team.py,sha256=_n_6Jt7fICh8gkp9bBm5W25gSiHHcgYnzJqFlbu0Kls,3432
|
|
134
136
|
compute_api_client/models/transaction.py,sha256=aNFFKtM7s89209jqrx5aazPLu35RPEguOiWFSgxYyTc,4340
|
|
135
|
-
compute_api_client/models/user.py,sha256=
|
|
136
|
-
compute_api_client/models/user_in.py,sha256=
|
|
137
|
+
compute_api_client/models/user.py,sha256=TW-7kR_yB3VxDifuO6b0GZX-4sCoths_2rpm-uBigyY,3833
|
|
138
|
+
compute_api_client/models/user_in.py,sha256=EMgqmk1um288FsBQreY7oxenBIYMlAHtu_ETue8ucRY,4048
|
|
137
139
|
compute_api_client/models/validation_error.py,sha256=4FM61MT9_hFJCW8pRCcMT9f4vv57tLFwJ74dYmbwWa0,3659
|
|
138
140
|
compute_api_client/rest.py,sha256=wWoyNm8J7qvpgn5-VjXJPBSpDVPV_5aN6zbQW19mQZU,6554
|
|
139
|
-
qi_compute_api_client-0.
|
|
140
|
-
qi_compute_api_client-0.
|
|
141
|
-
qi_compute_api_client-0.
|
|
142
|
-
qi_compute_api_client-0.
|
|
141
|
+
qi_compute_api_client-0.27.0.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
142
|
+
qi_compute_api_client-0.27.0.dist-info/METADATA,sha256=QTKWXYtBzhpWuyb1kAyMWPGOR-7GrxaibQ_6VwIWWNU,19489
|
|
143
|
+
qi_compute_api_client-0.27.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
144
|
+
qi_compute_api_client-0.27.0.dist-info/RECORD,,
|
{qi_compute_api_client-0.21.0.dist-info → qi_compute_api_client-0.27.0.dist-info}/LICENSE.md
RENAMED
|
File without changes
|
|
File without changes
|