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.

Files changed (55) hide show
  1. compute_api_client/__init__.py +1 -0
  2. compute_api_client/api/algorithms_api.py +24 -0
  3. compute_api_client/api/backend_api.py +19 -15
  4. compute_api_client/api/backend_types_api.py +54 -0
  5. compute_api_client/api/batch_jobs_api.py +4 -0
  6. compute_api_client/api/commits_api.py +4 -0
  7. compute_api_client/api/files_api.py +4 -0
  8. compute_api_client/api/final_results_api.py +3 -0
  9. compute_api_client/api/jobs_api.py +5 -0
  10. compute_api_client/api/languages_api.py +2 -0
  11. compute_api_client/api/members_api.py +4 -0
  12. compute_api_client/api/metadata_api.py +2 -0
  13. compute_api_client/api/permissions_api.py +4 -0
  14. compute_api_client/api/projects_api.py +28 -3
  15. compute_api_client/api/reservations_api.py +4 -0
  16. compute_api_client/api/results_api.py +2 -0
  17. compute_api_client/api/teams_api.py +2 -0
  18. compute_api_client/api/transactions_api.py +2 -0
  19. compute_api_client/api/users_api.py +21 -0
  20. compute_api_client/configuration.py +7 -0
  21. compute_api_client/docs/AlgorithmsApi.md +24 -7
  22. compute_api_client/docs/BackendApi.md +17 -8
  23. compute_api_client/docs/BackendIn.md +32 -0
  24. compute_api_client/docs/BackendType.md +3 -0
  25. compute_api_client/docs/BackendTypesApi.md +17 -4
  26. compute_api_client/docs/BatchJobIn.md +0 -1
  27. compute_api_client/docs/BatchJobsApi.md +16 -4
  28. compute_api_client/docs/CommitsApi.md +16 -4
  29. compute_api_client/docs/FilesApi.md +16 -4
  30. compute_api_client/docs/FinalResultsApi.md +12 -3
  31. compute_api_client/docs/JobIn.md +0 -1
  32. compute_api_client/docs/JobsApi.md +20 -5
  33. compute_api_client/docs/LanguagesApi.md +8 -2
  34. compute_api_client/docs/MembersApi.md +16 -4
  35. compute_api_client/docs/MetadataApi.md +8 -2
  36. compute_api_client/docs/PermissionsApi.md +16 -4
  37. compute_api_client/docs/ProjectsApi.md +29 -9
  38. compute_api_client/docs/ReservationsApi.md +16 -4
  39. compute_api_client/docs/ResultsApi.md +8 -2
  40. compute_api_client/docs/TeamsApi.md +8 -2
  41. compute_api_client/docs/TransactionsApi.md +8 -2
  42. compute_api_client/docs/User.md +1 -0
  43. compute_api_client/docs/UserIn.md +1 -0
  44. compute_api_client/docs/UsersApi.md +20 -6
  45. compute_api_client/models/__init__.py +1 -0
  46. compute_api_client/models/backend_in.py +98 -0
  47. compute_api_client/models/backend_type.py +9 -2
  48. compute_api_client/models/batch_job_in.py +1 -3
  49. compute_api_client/models/job_in.py +1 -4
  50. compute_api_client/models/user.py +4 -2
  51. compute_api_client/models/user_in.py +4 -2
  52. {qi_compute_api_client-0.21.0.dist-info → qi_compute_api_client-0.27.0.dist-info}/METADATA +13 -3
  53. {qi_compute_api_client-0.21.0.dist-info → qi_compute_api_client-0.27.0.dist-info}/RECORD +55 -53
  54. {qi_compute_api_client-0.21.0.dist-info → qi_compute_api_client-0.27.0.dist-info}/LICENSE.md +0 -0
  55. {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 member.
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 member.
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 member 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
 
@@ -256,6 +265,7 @@ Read members.
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
@@ -277,6 +287,8 @@ configuration = compute_api_client.Configuration(
277
287
  # Examples for each auth method are provided below, use the example that
278
288
  # satisfies your auth use case.
279
289
 
290
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
291
+
280
292
  # Configure API key authorization: user
281
293
  configuration.api_key['user'] = os.environ["API_KEY"]
282
294
 
@@ -328,7 +340,7 @@ Name | Type | Description | Notes
328
340
 
329
341
  ### Authorization
330
342
 
331
- [user](../README.md#user)
343
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
332
344
 
333
345
  ### HTTP request headers
334
346
 
@@ -98,6 +98,7 @@ Get metadata by job ID.
98
98
 
99
99
  ### Example
100
100
 
101
+ * OAuth Authentication (user_bearer):
101
102
  * Api Key Authentication (user):
102
103
  ```python
103
104
  import time
@@ -118,6 +119,8 @@ configuration = compute_api_client.Configuration(
118
119
  # Examples for each auth method are provided below, use the example that
119
120
  # satisfies your auth use case.
120
121
 
122
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
123
+
121
124
  # Configure API key authorization: user
122
125
  configuration.api_key['user'] = os.environ["API_KEY"]
123
126
 
@@ -153,7 +156,7 @@ Name | Type | Description | Notes
153
156
 
154
157
  ### Authorization
155
158
 
156
- [user](../README.md#user)
159
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
157
160
 
158
161
  ### HTTP request headers
159
162
 
@@ -177,6 +180,7 @@ Get metadata by ID.
177
180
 
178
181
  ### Example
179
182
 
183
+ * OAuth Authentication (user_bearer):
180
184
  * Api Key Authentication (user):
181
185
  ```python
182
186
  import time
@@ -197,6 +201,8 @@ configuration = compute_api_client.Configuration(
197
201
  # Examples for each auth method are provided below, use the example that
198
202
  # satisfies your auth use case.
199
203
 
204
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
205
+
200
206
  # Configure API key authorization: user
201
207
  configuration.api_key['user'] = os.environ["API_KEY"]
202
208
 
@@ -232,7 +238,7 @@ Name | Type | Description | Notes
232
238
 
233
239
  ### Authorization
234
240
 
235
- [user](../README.md#user)
241
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
236
242
 
237
243
  ### HTTP request headers
238
244
 
@@ -19,6 +19,7 @@ Get permission group by ID.
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
@@ -39,6 +40,8 @@ configuration = compute_api_client.Configuration(
39
40
  # Examples for each auth method are provided below, use the example that
40
41
  # satisfies your auth use case.
41
42
 
43
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
44
+
42
45
  # Configure API key authorization: user
43
46
  configuration.api_key['user'] = os.environ["API_KEY"]
44
47
 
@@ -74,7 +77,7 @@ Name | Type | Description | Notes
74
77
 
75
78
  ### Authorization
76
79
 
77
- [user](../README.md#user)
80
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
78
81
 
79
82
  ### HTTP request headers
80
83
 
@@ -99,6 +102,7 @@ Read permissions groups.
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
@@ -119,6 +123,8 @@ configuration = compute_api_client.Configuration(
119
123
  # Examples for each auth method are provided below, use the example that
120
124
  # satisfies your auth use case.
121
125
 
126
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
127
+
122
128
  # Configure API key authorization: user
123
129
  configuration.api_key['user'] = os.environ["API_KEY"]
124
130
 
@@ -164,7 +170,7 @@ Name | Type | Description | Notes
164
170
 
165
171
  ### Authorization
166
172
 
167
- [user](../README.md#user)
173
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
168
174
 
169
175
  ### HTTP request headers
170
176
 
@@ -188,6 +194,7 @@ Get permission by ID.
188
194
 
189
195
  ### Example
190
196
 
197
+ * OAuth Authentication (user_bearer):
191
198
  * Api Key Authentication (user):
192
199
  ```python
193
200
  import time
@@ -208,6 +215,8 @@ configuration = compute_api_client.Configuration(
208
215
  # Examples for each auth method are provided below, use the example that
209
216
  # satisfies your auth use case.
210
217
 
218
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
219
+
211
220
  # Configure API key authorization: user
212
221
  configuration.api_key['user'] = os.environ["API_KEY"]
213
222
 
@@ -243,7 +252,7 @@ Name | Type | Description | Notes
243
252
 
244
253
  ### Authorization
245
254
 
246
- [user](../README.md#user)
255
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
247
256
 
248
257
  ### HTTP request headers
249
258
 
@@ -268,6 +277,7 @@ Read permissions.
268
277
 
269
278
  ### Example
270
279
 
280
+ * OAuth Authentication (user_bearer):
271
281
  * Api Key Authentication (user):
272
282
  ```python
273
283
  import time
@@ -288,6 +298,8 @@ configuration = compute_api_client.Configuration(
288
298
  # Examples for each auth method are provided below, use the example that
289
299
  # satisfies your auth use case.
290
300
 
301
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
302
+
291
303
  # Configure API key authorization: user
292
304
  configuration.api_key['user'] = os.environ["API_KEY"]
293
305
 
@@ -335,7 +347,7 @@ Name | Type | Description | Notes
335
347
 
336
348
  ### Authorization
337
349
 
338
- [user](../README.md#user)
350
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
339
351
 
340
352
  ### HTTP request headers
341
353
 
@@ -21,6 +21,7 @@ Create new project.
21
21
 
22
22
  ### Example
23
23
 
24
+ * OAuth Authentication (user_bearer):
24
25
  * Api Key Authentication (user):
25
26
  ```python
26
27
  import time
@@ -42,6 +43,8 @@ configuration = compute_api_client.Configuration(
42
43
  # Examples for each auth method are provided below, use the example that
43
44
  # satisfies your auth use case.
44
45
 
46
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
47
+
45
48
  # Configure API key authorization: user
46
49
  configuration.api_key['user'] = os.environ["API_KEY"]
47
50
 
@@ -77,7 +80,7 @@ Name | Type | Description | Notes
77
80
 
78
81
  ### Authorization
79
82
 
80
- [user](../README.md#user)
83
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
81
84
 
82
85
  ### HTTP request headers
83
86
 
@@ -101,6 +104,7 @@ Delete a project.
101
104
 
102
105
  ### Example
103
106
 
107
+ * OAuth Authentication (user_bearer):
104
108
  * Api Key Authentication (user):
105
109
  ```python
106
110
  import time
@@ -120,6 +124,8 @@ configuration = compute_api_client.Configuration(
120
124
  # Examples for each auth method are provided below, use the example that
121
125
  # satisfies your auth use case.
122
126
 
127
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
128
+
123
129
  # Configure API key authorization: user
124
130
  configuration.api_key['user'] = os.environ["API_KEY"]
125
131
 
@@ -153,7 +159,7 @@ void (empty response body)
153
159
 
154
160
  ### Authorization
155
161
 
156
- [user](../README.md#user)
162
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
157
163
 
158
164
  ### HTTP request headers
159
165
 
@@ -178,6 +184,7 @@ Partially update a project.
178
184
 
179
185
  ### Example
180
186
 
187
+ * OAuth Authentication (user_bearer):
181
188
  * Api Key Authentication (user):
182
189
  ```python
183
190
  import time
@@ -199,6 +206,8 @@ configuration = compute_api_client.Configuration(
199
206
  # Examples for each auth method are provided below, use the example that
200
207
  # satisfies your auth use case.
201
208
 
209
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
210
+
202
211
  # Configure API key authorization: user
203
212
  configuration.api_key['user'] = os.environ["API_KEY"]
204
213
 
@@ -236,7 +245,7 @@ Name | Type | Description | Notes
236
245
 
237
246
  ### Authorization
238
247
 
239
- [user](../README.md#user)
248
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
240
249
 
241
250
  ### HTTP request headers
242
251
 
@@ -261,6 +270,7 @@ Get project by ID.
261
270
 
262
271
  ### Example
263
272
 
273
+ * OAuth Authentication (user_bearer):
264
274
  * Api Key Authentication (user):
265
275
  ```python
266
276
  import time
@@ -281,6 +291,8 @@ configuration = compute_api_client.Configuration(
281
291
  # Examples for each auth method are provided below, use the example that
282
292
  # satisfies your auth use case.
283
293
 
294
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
295
+
284
296
  # Configure API key authorization: user
285
297
  configuration.api_key['user'] = os.environ["API_KEY"]
286
298
 
@@ -316,7 +328,7 @@ Name | Type | Description | Notes
316
328
 
317
329
  ### Authorization
318
330
 
319
- [user](../README.md#user)
331
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
320
332
 
321
333
  ### HTTP request headers
322
334
 
@@ -333,14 +345,15 @@ Name | Type | Description | Notes
333
345
  [[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)
334
346
 
335
347
  # **read_projects_projects_get**
336
- > List[Project] read_projects_projects_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, created_on=created_on, owner_id=owner_id, name=name, description=description, starred=starred)
348
+ > List[Project] read_projects_projects_get(search=search, latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, created_on=created_on, owner_id=owner_id, name=name, description=description, starred=starred)
337
349
 
338
350
  List projects
339
351
 
340
- List projects.
352
+ List projects. If the search parameter is provided, the list is filtered based on the condition that either the project name OR description contains the specified substring. The filter considers exact matches for other parameters provided. The final result is the logical AND of the substring match condition and any other provided exact match conditions.
341
353
 
342
354
  ### Example
343
355
 
356
+ * OAuth Authentication (user_bearer):
344
357
  * Api Key Authentication (user):
345
358
  ```python
346
359
  import time
@@ -361,6 +374,8 @@ configuration = compute_api_client.Configuration(
361
374
  # Examples for each auth method are provided below, use the example that
362
375
  # satisfies your auth use case.
363
376
 
377
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
378
+
364
379
  # Configure API key authorization: user
365
380
  configuration.api_key['user'] = os.environ["API_KEY"]
366
381
 
@@ -371,6 +386,7 @@ configuration.api_key['user'] = os.environ["API_KEY"]
371
386
  async with compute_api_client.ApiClient(configuration) as api_client:
372
387
  # Create an instance of the API class
373
388
  api_instance = compute_api_client.ProjectsApi(api_client)
389
+ search = 'search_example' # str | Substring search for project names or description (optional)
374
390
  latest = True # bool | (optional)
375
391
  sort_by = 'sort_by_example' # str | (optional)
376
392
  page_number = 56 # int | (optional)
@@ -384,7 +400,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
384
400
 
385
401
  try:
386
402
  # List projects
387
- api_response = await api_instance.read_projects_projects_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, created_on=created_on, owner_id=owner_id, name=name, description=description, starred=starred)
403
+ api_response = await api_instance.read_projects_projects_get(search=search, latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, created_on=created_on, owner_id=owner_id, name=name, description=description, starred=starred)
388
404
  print("The response of ProjectsApi->read_projects_projects_get:\n")
389
405
  pprint(api_response)
390
406
  except Exception as e:
@@ -397,6 +413,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
397
413
 
398
414
  Name | Type | Description | Notes
399
415
  ------------- | ------------- | ------------- | -------------
416
+ **search** | **str**| Substring search for project names or description | [optional]
400
417
  **latest** | **bool**| | [optional]
401
418
  **sort_by** | **str**| | [optional]
402
419
  **page_number** | **int**| | [optional]
@@ -414,7 +431,7 @@ Name | Type | Description | Notes
414
431
 
415
432
  ### Authorization
416
433
 
417
- [user](../README.md#user)
434
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
418
435
 
419
436
  ### HTTP request headers
420
437
 
@@ -438,6 +455,7 @@ Update a project.
438
455
 
439
456
  ### Example
440
457
 
458
+ * OAuth Authentication (user_bearer):
441
459
  * Api Key Authentication (user):
442
460
  ```python
443
461
  import time
@@ -459,6 +477,8 @@ configuration = compute_api_client.Configuration(
459
477
  # Examples for each auth method are provided below, use the example that
460
478
  # satisfies your auth use case.
461
479
 
480
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
481
+
462
482
  # Configure API key authorization: user
463
483
  configuration.api_key['user'] = os.environ["API_KEY"]
464
484
 
@@ -496,7 +516,7 @@ Name | Type | Description | Notes
496
516
 
497
517
  ### Authorization
498
518
 
499
- [user](../README.md#user)
519
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
500
520
 
501
521
  ### HTTP request headers
502
522
 
@@ -19,6 +19,7 @@ Create new reservation.
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 @@ Get reservation by ID.
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
@@ -119,6 +123,8 @@ configuration = compute_api_client.Configuration(
119
123
  # Examples for each auth method are provided below, use the example that
120
124
  # satisfies your auth use case.
121
125
 
126
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
127
+
122
128
  # Configure API key authorization: user
123
129
  configuration.api_key['user'] = os.environ["API_KEY"]
124
130
 
@@ -154,7 +160,7 @@ Name | Type | Description | Notes
154
160
 
155
161
  ### Authorization
156
162
 
157
- [user](../README.md#user)
163
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
158
164
 
159
165
  ### HTTP request headers
160
166
 
@@ -179,6 +185,7 @@ Read reservations.
179
185
 
180
186
  ### Example
181
187
 
188
+ * OAuth Authentication (user_bearer):
182
189
  * Api Key Authentication (user):
183
190
  ```python
184
191
  import time
@@ -199,6 +206,8 @@ configuration = compute_api_client.Configuration(
199
206
  # Examples for each auth method are provided below, use the example that
200
207
  # satisfies your auth use case.
201
208
 
209
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
210
+
202
211
  # Configure API key authorization: user
203
212
  configuration.api_key['user'] = os.environ["API_KEY"]
204
213
 
@@ -256,7 +265,7 @@ Name | Type | Description | Notes
256
265
 
257
266
  ### Authorization
258
267
 
259
- [user](../README.md#user)
268
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
260
269
 
261
270
  ### HTTP request headers
262
271
 
@@ -280,6 +289,7 @@ Terminate reservation by ID.
280
289
 
281
290
  ### Example
282
291
 
292
+ * OAuth Authentication (user_bearer):
283
293
  * Api Key Authentication (user):
284
294
  ```python
285
295
  import time
@@ -300,6 +310,8 @@ configuration = compute_api_client.Configuration(
300
310
  # Examples for each auth method are provided below, use the example that
301
311
  # satisfies your auth use case.
302
312
 
313
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
314
+
303
315
  # Configure API key authorization: user
304
316
  configuration.api_key['user'] = os.environ["API_KEY"]
305
317
 
@@ -335,7 +347,7 @@ Name | Type | Description | Notes
335
347
 
336
348
  ### Authorization
337
349
 
338
- [user](../README.md#user)
350
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
339
351
 
340
352
  ### HTTP request headers
341
353
 
@@ -176,6 +176,7 @@ Get result by ID.
176
176
 
177
177
  ### Example
178
178
 
179
+ * OAuth Authentication (user_bearer):
179
180
  * Api Key Authentication (user):
180
181
  ```python
181
182
  import time
@@ -196,6 +197,8 @@ configuration = compute_api_client.Configuration(
196
197
  # Examples for each auth method are provided below, use the example that
197
198
  # satisfies your auth use case.
198
199
 
200
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
201
+
199
202
  # Configure API key authorization: user
200
203
  configuration.api_key['user'] = os.environ["API_KEY"]
201
204
 
@@ -231,7 +234,7 @@ Name | Type | Description | Notes
231
234
 
232
235
  ### Authorization
233
236
 
234
- [user](../README.md#user)
237
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
235
238
 
236
239
  ### HTTP request headers
237
240
 
@@ -256,6 +259,7 @@ Get results by job ID.
256
259
 
257
260
  ### Example
258
261
 
262
+ * OAuth Authentication (user_bearer):
259
263
  * Api Key Authentication (user):
260
264
  ```python
261
265
  import time
@@ -276,6 +280,8 @@ configuration = compute_api_client.Configuration(
276
280
  # Examples for each auth method are provided below, use the example that
277
281
  # satisfies your auth use case.
278
282
 
283
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
284
+
279
285
  # Configure API key authorization: user
280
286
  configuration.api_key['user'] = os.environ["API_KEY"]
281
287
 
@@ -311,7 +317,7 @@ Name | Type | Description | Notes
311
317
 
312
318
  ### Authorization
313
319
 
314
- [user](../README.md#user)
320
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
315
321
 
316
322
  ### HTTP request headers
317
323
 
@@ -17,6 +17,7 @@ Get team by ID.
17
17
 
18
18
  ### Example
19
19
 
20
+ * OAuth Authentication (user_bearer):
20
21
  * Api Key Authentication (user):
21
22
  ```python
22
23
  import time
@@ -37,6 +38,8 @@ configuration = compute_api_client.Configuration(
37
38
  # Examples for each auth method are provided below, use the example that
38
39
  # satisfies your auth use case.
39
40
 
41
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
42
+
40
43
  # Configure API key authorization: user
41
44
  configuration.api_key['user'] = os.environ["API_KEY"]
42
45
 
@@ -72,7 +75,7 @@ Name | Type | Description | Notes
72
75
 
73
76
  ### Authorization
74
77
 
75
- [user](../README.md#user)
78
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
76
79
 
77
80
  ### HTTP request headers
78
81
 
@@ -97,6 +100,7 @@ Read teams.
97
100
 
98
101
  ### Example
99
102
 
103
+ * OAuth Authentication (user_bearer):
100
104
  * Api Key Authentication (user):
101
105
  ```python
102
106
  import time
@@ -117,6 +121,8 @@ configuration = compute_api_client.Configuration(
117
121
  # Examples for each auth method are provided below, use the example that
118
122
  # satisfies your auth use case.
119
123
 
124
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
125
+
120
126
  # Configure API key authorization: user
121
127
  configuration.api_key['user'] = os.environ["API_KEY"]
122
128
 
@@ -166,7 +172,7 @@ Name | Type | Description | Notes
166
172
 
167
173
  ### Authorization
168
174
 
169
- [user](../README.md#user)
175
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
170
176
 
171
177
  ### HTTP request headers
172
178
 
@@ -17,6 +17,7 @@ Get transaction by ID.
17
17
 
18
18
  ### Example
19
19
 
20
+ * OAuth Authentication (user_bearer):
20
21
  * Api Key Authentication (user):
21
22
  ```python
22
23
  import time
@@ -37,6 +38,8 @@ configuration = compute_api_client.Configuration(
37
38
  # Examples for each auth method are provided below, use the example that
38
39
  # satisfies your auth use case.
39
40
 
41
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
42
+
40
43
  # Configure API key authorization: user
41
44
  configuration.api_key['user'] = os.environ["API_KEY"]
42
45
 
@@ -72,7 +75,7 @@ Name | Type | Description | Notes
72
75
 
73
76
  ### Authorization
74
77
 
75
- [user](../README.md#user)
78
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
76
79
 
77
80
  ### HTTP request headers
78
81
 
@@ -97,6 +100,7 @@ Read transactions.
97
100
 
98
101
  ### Example
99
102
 
103
+ * OAuth Authentication (user_bearer):
100
104
  * Api Key Authentication (user):
101
105
  ```python
102
106
  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
 
@@ -179,7 +185,7 @@ Name | Type | Description | Notes
179
185
 
180
186
  ### Authorization
181
187
 
182
- [user](../README.md#user)
188
+ [user_bearer](../README.md#user_bearer), [user](../README.md#user)
183
189
 
184
190
  ### HTTP request headers
185
191
 
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
11
11
  **is_staff** | **bool** | |
12
12
  **is_active** | **bool** | |
13
13
  **is_confirmed** | **bool** | |
14
+ **oidc_sub** | **str** | |
14
15
 
15
16
  ## Example
16
17
 
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
10
10
  **is_staff** | **bool** | | [optional] [default to False]
11
11
  **is_active** | **bool** | | [optional] [default to False]
12
12
  **is_confirmed** | **bool** | | [optional] [default to False]
13
+ **oidc_sub** | **str** | |
13
14
 
14
15
  ## Example
15
16