qi-compute-api-client 0.27.0__py3-none-any.whl → 0.32.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/algorithms_api.py +5 -27
- compute_api_client/api/backend_api.py +3 -6
- compute_api_client/api/backend_types_api.py +2 -4
- compute_api_client/api/batch_jobs_api.py +4 -25
- compute_api_client/api/commits_api.py +4 -8
- compute_api_client/api/files_api.py +4 -8
- compute_api_client/api/final_results_api.py +3 -6
- compute_api_client/api/jobs_api.py +5 -10
- compute_api_client/api/languages_api.py +2 -4
- compute_api_client/api/members_api.py +4 -25
- compute_api_client/api/metadata_api.py +2 -4
- compute_api_client/api/permissions_api.py +4 -8
- compute_api_client/api/projects_api.py +6 -12
- compute_api_client/api/reservations_api.py +4 -8
- compute_api_client/api/results_api.py +549 -6
- compute_api_client/api/teams_api.py +2 -4
- compute_api_client/api/transactions_api.py +32 -34
- compute_api_client/api/users_api.py +4 -8
- compute_api_client/configuration.py +0 -9
- compute_api_client/docs/AlgorithmIn.md +1 -1
- compute_api_client/docs/AlgorithmsApi.md +7 -44
- compute_api_client/docs/BackendApi.md +3 -24
- compute_api_client/docs/BackendTypesApi.md +2 -16
- compute_api_client/docs/BatchJobsApi.md +6 -36
- compute_api_client/docs/CommitsApi.md +4 -32
- compute_api_client/docs/FilesApi.md +4 -32
- compute_api_client/docs/FinalResultsApi.md +3 -24
- compute_api_client/docs/JobsApi.md +5 -40
- compute_api_client/docs/LanguagesApi.md +2 -16
- compute_api_client/docs/MembersApi.md +6 -36
- compute_api_client/docs/MetadataApi.md +2 -16
- compute_api_client/docs/PermissionsApi.md +4 -32
- compute_api_client/docs/ProjectsApi.md +6 -48
- compute_api_client/docs/ReservationsApi.md +4 -32
- compute_api_client/docs/Result.md +0 -1
- compute_api_client/docs/ResultIn.md +0 -1
- compute_api_client/docs/ResultsApi.md +109 -16
- compute_api_client/docs/TeamsApi.md +2 -16
- compute_api_client/docs/Transaction.md +1 -1
- compute_api_client/docs/TransactionsApi.md +8 -22
- compute_api_client/docs/UsersApi.md +4 -32
- compute_api_client/models/algorithm.py +1 -6
- compute_api_client/models/algorithm_in.py +1 -6
- compute_api_client/models/result.py +1 -5
- compute_api_client/models/result_in.py +1 -5
- compute_api_client/models/transaction.py +6 -6
- {qi_compute_api_client-0.27.0.dist-info → qi_compute_api_client-0.32.0.dist-info}/METADATA +3 -14
- {qi_compute_api_client-0.27.0.dist-info → qi_compute_api_client-0.32.0.dist-info}/RECORD +50 -50
- {qi_compute_api_client-0.27.0.dist-info → qi_compute_api_client-0.32.0.dist-info}/WHEEL +1 -1
- {qi_compute_api_client-0.27.0.dist-info → qi_compute_api_client-0.32.0.dist-info}/LICENSE.md +0 -0
|
@@ -23,7 +23,6 @@ Create new batch job.
|
|
|
23
23
|
### Example
|
|
24
24
|
|
|
25
25
|
* OAuth Authentication (user_bearer):
|
|
26
|
-
* Api Key Authentication (user):
|
|
27
26
|
```python
|
|
28
27
|
import time
|
|
29
28
|
import os
|
|
@@ -46,12 +45,6 @@ configuration = compute_api_client.Configuration(
|
|
|
46
45
|
|
|
47
46
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
48
47
|
|
|
49
|
-
# Configure API key authorization: user
|
|
50
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
51
|
-
|
|
52
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
53
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
54
|
-
|
|
55
48
|
# Enter a context with an instance of the API client
|
|
56
49
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
57
50
|
# Create an instance of the API class
|
|
@@ -81,7 +74,7 @@ Name | Type | Description | Notes
|
|
|
81
74
|
|
|
82
75
|
### Authorization
|
|
83
76
|
|
|
84
|
-
[user_bearer](../README.md#user_bearer)
|
|
77
|
+
[user_bearer](../README.md#user_bearer)
|
|
85
78
|
|
|
86
79
|
### HTTP request headers
|
|
87
80
|
|
|
@@ -106,7 +99,6 @@ Enqueue batch job for execution.
|
|
|
106
99
|
### Example
|
|
107
100
|
|
|
108
101
|
* OAuth Authentication (user_bearer):
|
|
109
|
-
* Api Key Authentication (user):
|
|
110
102
|
```python
|
|
111
103
|
import time
|
|
112
104
|
import os
|
|
@@ -128,12 +120,6 @@ configuration = compute_api_client.Configuration(
|
|
|
128
120
|
|
|
129
121
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
130
122
|
|
|
131
|
-
# Configure API key authorization: user
|
|
132
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
133
|
-
|
|
134
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
135
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
136
|
-
|
|
137
123
|
# Enter a context with an instance of the API client
|
|
138
124
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
139
125
|
# Create an instance of the API class
|
|
@@ -163,7 +149,7 @@ Name | Type | Description | Notes
|
|
|
163
149
|
|
|
164
150
|
### Authorization
|
|
165
151
|
|
|
166
|
-
[user_bearer](../README.md#user_bearer)
|
|
152
|
+
[user_bearer](../README.md#user_bearer)
|
|
167
153
|
|
|
168
154
|
### HTTP request headers
|
|
169
155
|
|
|
@@ -190,7 +176,6 @@ Finish batch job.
|
|
|
190
176
|
|
|
191
177
|
* OAuth Authentication (user_bearer):
|
|
192
178
|
* Api Key Authentication (backend):
|
|
193
|
-
* Api Key Authentication (user):
|
|
194
179
|
```python
|
|
195
180
|
import time
|
|
196
181
|
import os
|
|
@@ -218,12 +203,6 @@ configuration.api_key['backend'] = os.environ["API_KEY"]
|
|
|
218
203
|
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
219
204
|
# configuration.api_key_prefix['backend'] = 'Bearer'
|
|
220
205
|
|
|
221
|
-
# Configure API key authorization: user
|
|
222
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
223
|
-
|
|
224
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
225
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
226
|
-
|
|
227
206
|
# Enter a context with an instance of the API client
|
|
228
207
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
229
208
|
# Create an instance of the API class
|
|
@@ -253,7 +232,7 @@ Name | Type | Description | Notes
|
|
|
253
232
|
|
|
254
233
|
### Authorization
|
|
255
234
|
|
|
256
|
-
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
235
|
+
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
257
236
|
|
|
258
237
|
### HTTP request headers
|
|
259
238
|
|
|
@@ -424,7 +403,7 @@ This endpoint does not need any parameter.
|
|
|
424
403
|
[[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)
|
|
425
404
|
|
|
426
405
|
# **read_batch_jobs_batch_jobs_get**
|
|
427
|
-
> List[BatchJob] read_batch_jobs_batch_jobs_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, created_on=created_on, status=status,
|
|
406
|
+
> List[BatchJob] read_batch_jobs_batch_jobs_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, created_on=created_on, status=status, backend_type_id=backend_type_id, backend_id__isnull=backend_id__isnull, backend_id=backend_id, queued_at__isnull=queued_at__isnull, queued_at=queued_at, reserved_at__isnull=reserved_at__isnull, reserved_at=reserved_at, finished_at__isnull=finished_at__isnull, finished_at=finished_at, aggregated_algorithm_type=aggregated_algorithm_type)
|
|
428
407
|
|
|
429
408
|
List batch jobs
|
|
430
409
|
|
|
@@ -433,7 +412,6 @@ List batch jobs.
|
|
|
433
412
|
### Example
|
|
434
413
|
|
|
435
414
|
* OAuth Authentication (user_bearer):
|
|
436
|
-
* Api Key Authentication (user):
|
|
437
415
|
```python
|
|
438
416
|
import time
|
|
439
417
|
import os
|
|
@@ -457,12 +435,6 @@ configuration = compute_api_client.Configuration(
|
|
|
457
435
|
|
|
458
436
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
459
437
|
|
|
460
|
-
# Configure API key authorization: user
|
|
461
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
462
|
-
|
|
463
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
464
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
465
|
-
|
|
466
438
|
# Enter a context with an instance of the API client
|
|
467
439
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
468
440
|
# Create an instance of the API class
|
|
@@ -474,7 +446,6 @@ async with compute_api_client.ApiClient(configuration) as api_client:
|
|
|
474
446
|
id = 56 # int | (optional)
|
|
475
447
|
created_on = '2013-10-20T19:20:30+01:00' # datetime | (optional)
|
|
476
448
|
status = compute_api_client.BatchJobStatus() # BatchJobStatus | (optional)
|
|
477
|
-
user_id = 56 # int | (optional)
|
|
478
449
|
backend_type_id = 56 # int | (optional)
|
|
479
450
|
backend_id__isnull = True # bool | (optional)
|
|
480
451
|
backend_id = 56 # int | (optional)
|
|
@@ -488,7 +459,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
|
|
|
488
459
|
|
|
489
460
|
try:
|
|
490
461
|
# List batch jobs
|
|
491
|
-
api_response = await api_instance.read_batch_jobs_batch_jobs_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, created_on=created_on, status=status,
|
|
462
|
+
api_response = await api_instance.read_batch_jobs_batch_jobs_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, created_on=created_on, status=status, backend_type_id=backend_type_id, backend_id__isnull=backend_id__isnull, backend_id=backend_id, queued_at__isnull=queued_at__isnull, queued_at=queued_at, reserved_at__isnull=reserved_at__isnull, reserved_at=reserved_at, finished_at__isnull=finished_at__isnull, finished_at=finished_at, aggregated_algorithm_type=aggregated_algorithm_type)
|
|
492
463
|
print("The response of BatchJobsApi->read_batch_jobs_batch_jobs_get:\n")
|
|
493
464
|
pprint(api_response)
|
|
494
465
|
except Exception as e:
|
|
@@ -508,7 +479,6 @@ Name | Type | Description | Notes
|
|
|
508
479
|
**id** | **int**| | [optional]
|
|
509
480
|
**created_on** | **datetime**| | [optional]
|
|
510
481
|
**status** | [**BatchJobStatus**](.md)| | [optional]
|
|
511
|
-
**user_id** | **int**| | [optional]
|
|
512
482
|
**backend_type_id** | **int**| | [optional]
|
|
513
483
|
**backend_id__isnull** | **bool**| | [optional]
|
|
514
484
|
**backend_id** | **int**| | [optional]
|
|
@@ -526,7 +496,7 @@ Name | Type | Description | Notes
|
|
|
526
496
|
|
|
527
497
|
### Authorization
|
|
528
498
|
|
|
529
|
-
[user_bearer](../README.md#user_bearer)
|
|
499
|
+
[user_bearer](../README.md#user_bearer)
|
|
530
500
|
|
|
531
501
|
### HTTP request headers
|
|
532
502
|
|
|
@@ -20,7 +20,6 @@ Create new commit.
|
|
|
20
20
|
### Example
|
|
21
21
|
|
|
22
22
|
* OAuth Authentication (user_bearer):
|
|
23
|
-
* Api Key Authentication (user):
|
|
24
23
|
```python
|
|
25
24
|
import time
|
|
26
25
|
import os
|
|
@@ -43,12 +42,6 @@ configuration = compute_api_client.Configuration(
|
|
|
43
42
|
|
|
44
43
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
45
44
|
|
|
46
|
-
# Configure API key authorization: user
|
|
47
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
48
|
-
|
|
49
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
50
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
51
|
-
|
|
52
45
|
# Enter a context with an instance of the API client
|
|
53
46
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
54
47
|
# Create an instance of the API class
|
|
@@ -78,7 +71,7 @@ Name | Type | Description | Notes
|
|
|
78
71
|
|
|
79
72
|
### Authorization
|
|
80
73
|
|
|
81
|
-
[user_bearer](../README.md#user_bearer)
|
|
74
|
+
[user_bearer](../README.md#user_bearer)
|
|
82
75
|
|
|
83
76
|
### HTTP request headers
|
|
84
77
|
|
|
@@ -103,7 +96,6 @@ Delete a commit.
|
|
|
103
96
|
### Example
|
|
104
97
|
|
|
105
98
|
* OAuth Authentication (user_bearer):
|
|
106
|
-
* Api Key Authentication (user):
|
|
107
99
|
```python
|
|
108
100
|
import time
|
|
109
101
|
import os
|
|
@@ -124,12 +116,6 @@ configuration = compute_api_client.Configuration(
|
|
|
124
116
|
|
|
125
117
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
126
118
|
|
|
127
|
-
# Configure API key authorization: user
|
|
128
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
129
|
-
|
|
130
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
131
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
132
|
-
|
|
133
119
|
# Enter a context with an instance of the API client
|
|
134
120
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
135
121
|
# Create an instance of the API class
|
|
@@ -157,7 +143,7 @@ void (empty response body)
|
|
|
157
143
|
|
|
158
144
|
### Authorization
|
|
159
145
|
|
|
160
|
-
[user_bearer](../README.md#user_bearer)
|
|
146
|
+
[user_bearer](../README.md#user_bearer)
|
|
161
147
|
|
|
162
148
|
### HTTP request headers
|
|
163
149
|
|
|
@@ -184,7 +170,6 @@ Get commit by ID.
|
|
|
184
170
|
|
|
185
171
|
* OAuth Authentication (user_bearer):
|
|
186
172
|
* Api Key Authentication (backend):
|
|
187
|
-
* Api Key Authentication (user):
|
|
188
173
|
```python
|
|
189
174
|
import time
|
|
190
175
|
import os
|
|
@@ -212,12 +197,6 @@ configuration.api_key['backend'] = os.environ["API_KEY"]
|
|
|
212
197
|
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
213
198
|
# configuration.api_key_prefix['backend'] = 'Bearer'
|
|
214
199
|
|
|
215
|
-
# Configure API key authorization: user
|
|
216
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
217
|
-
|
|
218
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
219
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
220
|
-
|
|
221
200
|
# Enter a context with an instance of the API client
|
|
222
201
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
223
202
|
# Create an instance of the API class
|
|
@@ -247,7 +226,7 @@ Name | Type | Description | Notes
|
|
|
247
226
|
|
|
248
227
|
### Authorization
|
|
249
228
|
|
|
250
|
-
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
229
|
+
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
251
230
|
|
|
252
231
|
### HTTP request headers
|
|
253
232
|
|
|
@@ -273,7 +252,6 @@ List commits.
|
|
|
273
252
|
### Example
|
|
274
253
|
|
|
275
254
|
* OAuth Authentication (user_bearer):
|
|
276
|
-
* Api Key Authentication (user):
|
|
277
255
|
```python
|
|
278
256
|
import time
|
|
279
257
|
import os
|
|
@@ -295,12 +273,6 @@ configuration = compute_api_client.Configuration(
|
|
|
295
273
|
|
|
296
274
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
297
275
|
|
|
298
|
-
# Configure API key authorization: user
|
|
299
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
300
|
-
|
|
301
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
302
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
303
|
-
|
|
304
276
|
# Enter a context with an instance of the API client
|
|
305
277
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
306
278
|
# Create an instance of the API class
|
|
@@ -346,7 +318,7 @@ Name | Type | Description | Notes
|
|
|
346
318
|
|
|
347
319
|
### Authorization
|
|
348
320
|
|
|
349
|
-
[user_bearer](../README.md#user_bearer)
|
|
321
|
+
[user_bearer](../README.md#user_bearer)
|
|
350
322
|
|
|
351
323
|
### HTTP request headers
|
|
352
324
|
|
|
@@ -20,7 +20,6 @@ Create new file.
|
|
|
20
20
|
### Example
|
|
21
21
|
|
|
22
22
|
* OAuth Authentication (user_bearer):
|
|
23
|
-
* Api Key Authentication (user):
|
|
24
23
|
```python
|
|
25
24
|
import time
|
|
26
25
|
import os
|
|
@@ -43,12 +42,6 @@ configuration = compute_api_client.Configuration(
|
|
|
43
42
|
|
|
44
43
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
45
44
|
|
|
46
|
-
# Configure API key authorization: user
|
|
47
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
48
|
-
|
|
49
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
50
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
51
|
-
|
|
52
45
|
# Enter a context with an instance of the API client
|
|
53
46
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
54
47
|
# Create an instance of the API class
|
|
@@ -78,7 +71,7 @@ Name | Type | Description | Notes
|
|
|
78
71
|
|
|
79
72
|
### Authorization
|
|
80
73
|
|
|
81
|
-
[user_bearer](../README.md#user_bearer)
|
|
74
|
+
[user_bearer](../README.md#user_bearer)
|
|
82
75
|
|
|
83
76
|
### HTTP request headers
|
|
84
77
|
|
|
@@ -103,7 +96,6 @@ Delete a file.
|
|
|
103
96
|
### Example
|
|
104
97
|
|
|
105
98
|
* OAuth Authentication (user_bearer):
|
|
106
|
-
* Api Key Authentication (user):
|
|
107
99
|
```python
|
|
108
100
|
import time
|
|
109
101
|
import os
|
|
@@ -124,12 +116,6 @@ configuration = compute_api_client.Configuration(
|
|
|
124
116
|
|
|
125
117
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
126
118
|
|
|
127
|
-
# Configure API key authorization: user
|
|
128
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
129
|
-
|
|
130
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
131
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
132
|
-
|
|
133
119
|
# Enter a context with an instance of the API client
|
|
134
120
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
135
121
|
# Create an instance of the API class
|
|
@@ -157,7 +143,7 @@ void (empty response body)
|
|
|
157
143
|
|
|
158
144
|
### Authorization
|
|
159
145
|
|
|
160
|
-
[user_bearer](../README.md#user_bearer)
|
|
146
|
+
[user_bearer](../README.md#user_bearer)
|
|
161
147
|
|
|
162
148
|
### HTTP request headers
|
|
163
149
|
|
|
@@ -184,7 +170,6 @@ Get file by ID.
|
|
|
184
170
|
|
|
185
171
|
* OAuth Authentication (user_bearer):
|
|
186
172
|
* Api Key Authentication (backend):
|
|
187
|
-
* Api Key Authentication (user):
|
|
188
173
|
```python
|
|
189
174
|
import time
|
|
190
175
|
import os
|
|
@@ -212,12 +197,6 @@ configuration.api_key['backend'] = os.environ["API_KEY"]
|
|
|
212
197
|
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
213
198
|
# configuration.api_key_prefix['backend'] = 'Bearer'
|
|
214
199
|
|
|
215
|
-
# Configure API key authorization: user
|
|
216
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
217
|
-
|
|
218
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
219
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
220
|
-
|
|
221
200
|
# Enter a context with an instance of the API client
|
|
222
201
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
223
202
|
# Create an instance of the API class
|
|
@@ -247,7 +226,7 @@ Name | Type | Description | Notes
|
|
|
247
226
|
|
|
248
227
|
### Authorization
|
|
249
228
|
|
|
250
|
-
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
229
|
+
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
251
230
|
|
|
252
231
|
### HTTP request headers
|
|
253
232
|
|
|
@@ -273,7 +252,6 @@ List files.
|
|
|
273
252
|
### Example
|
|
274
253
|
|
|
275
254
|
* OAuth Authentication (user_bearer):
|
|
276
|
-
* Api Key Authentication (user):
|
|
277
255
|
```python
|
|
278
256
|
import time
|
|
279
257
|
import os
|
|
@@ -296,12 +274,6 @@ configuration = compute_api_client.Configuration(
|
|
|
296
274
|
|
|
297
275
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
298
276
|
|
|
299
|
-
# Configure API key authorization: user
|
|
300
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
301
|
-
|
|
302
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
303
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
304
|
-
|
|
305
277
|
# Enter a context with an instance of the API client
|
|
306
278
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
307
279
|
# Create an instance of the API class
|
|
@@ -349,7 +321,7 @@ Name | Type | Description | Notes
|
|
|
349
321
|
|
|
350
322
|
### Authorization
|
|
351
323
|
|
|
352
|
-
[user_bearer](../README.md#user_bearer)
|
|
324
|
+
[user_bearer](../README.md#user_bearer)
|
|
353
325
|
|
|
354
326
|
### HTTP request headers
|
|
355
327
|
|
|
@@ -20,7 +20,6 @@ Create new final result.
|
|
|
20
20
|
|
|
21
21
|
* OAuth Authentication (user_bearer):
|
|
22
22
|
* Api Key Authentication (backend):
|
|
23
|
-
* Api Key Authentication (user):
|
|
24
23
|
```python
|
|
25
24
|
import time
|
|
26
25
|
import os
|
|
@@ -49,12 +48,6 @@ configuration.api_key['backend'] = os.environ["API_KEY"]
|
|
|
49
48
|
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
50
49
|
# configuration.api_key_prefix['backend'] = 'Bearer'
|
|
51
50
|
|
|
52
|
-
# Configure API key authorization: user
|
|
53
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
54
|
-
|
|
55
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
56
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
57
|
-
|
|
58
51
|
# Enter a context with an instance of the API client
|
|
59
52
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
60
53
|
# Create an instance of the API class
|
|
@@ -84,7 +77,7 @@ Name | Type | Description | Notes
|
|
|
84
77
|
|
|
85
78
|
### Authorization
|
|
86
79
|
|
|
87
|
-
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
80
|
+
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
88
81
|
|
|
89
82
|
### HTTP request headers
|
|
90
83
|
|
|
@@ -109,7 +102,6 @@ Get final result by job ID.
|
|
|
109
102
|
### Example
|
|
110
103
|
|
|
111
104
|
* OAuth Authentication (user_bearer):
|
|
112
|
-
* Api Key Authentication (user):
|
|
113
105
|
```python
|
|
114
106
|
import time
|
|
115
107
|
import os
|
|
@@ -131,12 +123,6 @@ configuration = compute_api_client.Configuration(
|
|
|
131
123
|
|
|
132
124
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
133
125
|
|
|
134
|
-
# Configure API key authorization: user
|
|
135
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
136
|
-
|
|
137
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
138
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
139
|
-
|
|
140
126
|
# Enter a context with an instance of the API client
|
|
141
127
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
142
128
|
# Create an instance of the API class
|
|
@@ -166,7 +152,7 @@ Name | Type | Description | Notes
|
|
|
166
152
|
|
|
167
153
|
### Authorization
|
|
168
154
|
|
|
169
|
-
[user_bearer](../README.md#user_bearer)
|
|
155
|
+
[user_bearer](../README.md#user_bearer)
|
|
170
156
|
|
|
171
157
|
### HTTP request headers
|
|
172
158
|
|
|
@@ -191,7 +177,6 @@ Get final result by ID.
|
|
|
191
177
|
### Example
|
|
192
178
|
|
|
193
179
|
* OAuth Authentication (user_bearer):
|
|
194
|
-
* Api Key Authentication (user):
|
|
195
180
|
```python
|
|
196
181
|
import time
|
|
197
182
|
import os
|
|
@@ -213,12 +198,6 @@ configuration = compute_api_client.Configuration(
|
|
|
213
198
|
|
|
214
199
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
215
200
|
|
|
216
|
-
# Configure API key authorization: user
|
|
217
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
218
|
-
|
|
219
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
220
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
221
|
-
|
|
222
201
|
# Enter a context with an instance of the API client
|
|
223
202
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
224
203
|
# Create an instance of the API class
|
|
@@ -248,7 +227,7 @@ Name | Type | Description | Notes
|
|
|
248
227
|
|
|
249
228
|
### Authorization
|
|
250
229
|
|
|
251
|
-
[user_bearer](../README.md#user_bearer)
|
|
230
|
+
[user_bearer](../README.md#user_bearer)
|
|
252
231
|
|
|
253
232
|
### HTTP request headers
|
|
254
233
|
|
|
@@ -21,7 +21,6 @@ Create new job.
|
|
|
21
21
|
### Example
|
|
22
22
|
|
|
23
23
|
* OAuth Authentication (user_bearer):
|
|
24
|
-
* Api Key Authentication (user):
|
|
25
24
|
```python
|
|
26
25
|
import time
|
|
27
26
|
import os
|
|
@@ -44,12 +43,6 @@ configuration = compute_api_client.Configuration(
|
|
|
44
43
|
|
|
45
44
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
46
45
|
|
|
47
|
-
# Configure API key authorization: user
|
|
48
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
49
|
-
|
|
50
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
51
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
52
|
-
|
|
53
46
|
# Enter a context with an instance of the API client
|
|
54
47
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
55
48
|
# Create an instance of the API class
|
|
@@ -79,7 +72,7 @@ Name | Type | Description | Notes
|
|
|
79
72
|
|
|
80
73
|
### Authorization
|
|
81
74
|
|
|
82
|
-
[user_bearer](../README.md#user_bearer)
|
|
75
|
+
[user_bearer](../README.md#user_bearer)
|
|
83
76
|
|
|
84
77
|
### HTTP request headers
|
|
85
78
|
|
|
@@ -104,7 +97,6 @@ Delete a job.
|
|
|
104
97
|
### Example
|
|
105
98
|
|
|
106
99
|
* OAuth Authentication (user_bearer):
|
|
107
|
-
* Api Key Authentication (user):
|
|
108
100
|
```python
|
|
109
101
|
import time
|
|
110
102
|
import os
|
|
@@ -125,12 +117,6 @@ configuration = compute_api_client.Configuration(
|
|
|
125
117
|
|
|
126
118
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
127
119
|
|
|
128
|
-
# Configure API key authorization: user
|
|
129
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
130
|
-
|
|
131
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
132
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
133
|
-
|
|
134
120
|
# Enter a context with an instance of the API client
|
|
135
121
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
136
122
|
# Create an instance of the API class
|
|
@@ -158,7 +144,7 @@ void (empty response body)
|
|
|
158
144
|
|
|
159
145
|
### Authorization
|
|
160
146
|
|
|
161
|
-
[user_bearer](../README.md#user_bearer)
|
|
147
|
+
[user_bearer](../README.md#user_bearer)
|
|
162
148
|
|
|
163
149
|
### HTTP request headers
|
|
164
150
|
|
|
@@ -185,7 +171,6 @@ Get job by ID.
|
|
|
185
171
|
|
|
186
172
|
* OAuth Authentication (user_bearer):
|
|
187
173
|
* Api Key Authentication (backend):
|
|
188
|
-
* Api Key Authentication (user):
|
|
189
174
|
```python
|
|
190
175
|
import time
|
|
191
176
|
import os
|
|
@@ -213,12 +198,6 @@ configuration.api_key['backend'] = os.environ["API_KEY"]
|
|
|
213
198
|
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
214
199
|
# configuration.api_key_prefix['backend'] = 'Bearer'
|
|
215
200
|
|
|
216
|
-
# Configure API key authorization: user
|
|
217
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
218
|
-
|
|
219
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
220
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
221
|
-
|
|
222
201
|
# Enter a context with an instance of the API client
|
|
223
202
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
224
203
|
# Create an instance of the API class
|
|
@@ -248,7 +227,7 @@ Name | Type | Description | Notes
|
|
|
248
227
|
|
|
249
228
|
### Authorization
|
|
250
229
|
|
|
251
|
-
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
230
|
+
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
252
231
|
|
|
253
232
|
### HTTP request headers
|
|
254
233
|
|
|
@@ -275,7 +254,6 @@ List jobs.
|
|
|
275
254
|
|
|
276
255
|
* OAuth Authentication (user_bearer):
|
|
277
256
|
* Api Key Authentication (backend):
|
|
278
|
-
* Api Key Authentication (user):
|
|
279
257
|
```python
|
|
280
258
|
import time
|
|
281
259
|
import os
|
|
@@ -305,12 +283,6 @@ configuration.api_key['backend'] = os.environ["API_KEY"]
|
|
|
305
283
|
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
306
284
|
# configuration.api_key_prefix['backend'] = 'Bearer'
|
|
307
285
|
|
|
308
|
-
# Configure API key authorization: user
|
|
309
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
310
|
-
|
|
311
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
312
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
313
|
-
|
|
314
286
|
# Enter a context with an instance of the API client
|
|
315
287
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
316
288
|
# Create an instance of the API class
|
|
@@ -370,7 +342,7 @@ Name | Type | Description | Notes
|
|
|
370
342
|
|
|
371
343
|
### Authorization
|
|
372
344
|
|
|
373
|
-
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
345
|
+
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
374
346
|
|
|
375
347
|
### HTTP request headers
|
|
376
348
|
|
|
@@ -396,7 +368,6 @@ Update status of a job.
|
|
|
396
368
|
|
|
397
369
|
* OAuth Authentication (user_bearer):
|
|
398
370
|
* Api Key Authentication (backend):
|
|
399
|
-
* Api Key Authentication (user):
|
|
400
371
|
```python
|
|
401
372
|
import time
|
|
402
373
|
import os
|
|
@@ -425,12 +396,6 @@ configuration.api_key['backend'] = os.environ["API_KEY"]
|
|
|
425
396
|
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
426
397
|
# configuration.api_key_prefix['backend'] = 'Bearer'
|
|
427
398
|
|
|
428
|
-
# Configure API key authorization: user
|
|
429
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
430
|
-
|
|
431
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
432
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
433
|
-
|
|
434
399
|
# Enter a context with an instance of the API client
|
|
435
400
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
436
401
|
# Create an instance of the API class
|
|
@@ -462,7 +427,7 @@ Name | Type | Description | Notes
|
|
|
462
427
|
|
|
463
428
|
### Authorization
|
|
464
429
|
|
|
465
|
-
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
430
|
+
[user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
|
|
466
431
|
|
|
467
432
|
### HTTP request headers
|
|
468
433
|
|
|
@@ -18,7 +18,6 @@ Get language by ID.
|
|
|
18
18
|
### Example
|
|
19
19
|
|
|
20
20
|
* OAuth Authentication (user_bearer):
|
|
21
|
-
* Api Key Authentication (user):
|
|
22
21
|
```python
|
|
23
22
|
import time
|
|
24
23
|
import os
|
|
@@ -40,12 +39,6 @@ configuration = compute_api_client.Configuration(
|
|
|
40
39
|
|
|
41
40
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
42
41
|
|
|
43
|
-
# Configure API key authorization: user
|
|
44
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
45
|
-
|
|
46
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
47
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
48
|
-
|
|
49
42
|
# Enter a context with an instance of the API client
|
|
50
43
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
51
44
|
# Create an instance of the API class
|
|
@@ -75,7 +68,7 @@ Name | Type | Description | Notes
|
|
|
75
68
|
|
|
76
69
|
### Authorization
|
|
77
70
|
|
|
78
|
-
[user_bearer](../README.md#user_bearer)
|
|
71
|
+
[user_bearer](../README.md#user_bearer)
|
|
79
72
|
|
|
80
73
|
### HTTP request headers
|
|
81
74
|
|
|
@@ -101,7 +94,6 @@ List languages.
|
|
|
101
94
|
### Example
|
|
102
95
|
|
|
103
96
|
* OAuth Authentication (user_bearer):
|
|
104
|
-
* Api Key Authentication (user):
|
|
105
97
|
```python
|
|
106
98
|
import time
|
|
107
99
|
import os
|
|
@@ -123,12 +115,6 @@ configuration = compute_api_client.Configuration(
|
|
|
123
115
|
|
|
124
116
|
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
125
117
|
|
|
126
|
-
# Configure API key authorization: user
|
|
127
|
-
configuration.api_key['user'] = os.environ["API_KEY"]
|
|
128
|
-
|
|
129
|
-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
130
|
-
# configuration.api_key_prefix['user'] = 'Bearer'
|
|
131
|
-
|
|
132
118
|
# Enter a context with an instance of the API client
|
|
133
119
|
async with compute_api_client.ApiClient(configuration) as api_client:
|
|
134
120
|
# Create an instance of the API class
|
|
@@ -172,7 +158,7 @@ Name | Type | Description | Notes
|
|
|
172
158
|
|
|
173
159
|
### Authorization
|
|
174
160
|
|
|
175
|
-
[user_bearer](../README.md#user_bearer)
|
|
161
|
+
[user_bearer](../README.md#user_bearer)
|
|
176
162
|
|
|
177
163
|
### HTTP request headers
|
|
178
164
|
|