qi-compute-api-client 0.32.0__py3-none-any.whl → 0.35.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 (134) hide show
  1. compute_api_client/__init__.py +20 -1
  2. compute_api_client/api/__init__.py +1 -0
  3. compute_api_client/api/algorithms_api.py +76 -75
  4. compute_api_client/api/backend_api.py +78 -75
  5. compute_api_client/api/backend_types_api.py +95 -75
  6. compute_api_client/api/batch_jobs_api.py +77 -74
  7. compute_api_client/api/commits_api.py +78 -75
  8. compute_api_client/api/files_api.py +78 -75
  9. compute_api_client/api/final_results_api.py +1 -1
  10. compute_api_client/api/health_api.py +290 -0
  11. compute_api_client/api/jobs_api.py +78 -75
  12. compute_api_client/api/languages_api.py +76 -73
  13. compute_api_client/api/members_api.py +78 -75
  14. compute_api_client/api/metadata_api.py +79 -8
  15. compute_api_client/api/permissions_api.py +146 -142
  16. compute_api_client/api/projects_api.py +76 -75
  17. compute_api_client/api/reservations_api.py +78 -75
  18. compute_api_client/api/results_api.py +151 -80
  19. compute_api_client/api/teams_api.py +78 -75
  20. compute_api_client/api/transactions_api.py +78 -75
  21. compute_api_client/api/users_api.py +78 -75
  22. compute_api_client/api_client.py +1 -1
  23. compute_api_client/configuration.py +1 -1
  24. compute_api_client/docs/AlgorithmsApi.md +12 -12
  25. compute_api_client/docs/BackendApi.md +12 -12
  26. compute_api_client/docs/BackendType.md +3 -1
  27. compute_api_client/docs/BackendTypesApi.md +14 -12
  28. compute_api_client/docs/BatchJobsApi.md +12 -12
  29. compute_api_client/docs/CommitsApi.md +12 -12
  30. compute_api_client/docs/FilesApi.md +12 -12
  31. compute_api_client/docs/HealthApi.md +71 -0
  32. compute_api_client/docs/JobsApi.md +12 -12
  33. compute_api_client/docs/LanguagesApi.md +12 -12
  34. compute_api_client/docs/MembersApi.md +12 -12
  35. compute_api_client/docs/MetadataApi.md +12 -4
  36. compute_api_client/docs/PageAlgorithm.md +32 -0
  37. compute_api_client/docs/PageBackend.md +32 -0
  38. compute_api_client/docs/PageBackendType.md +32 -0
  39. compute_api_client/docs/PageBatchJob.md +32 -0
  40. compute_api_client/docs/PageCommit.md +32 -0
  41. compute_api_client/docs/PageFile.md +32 -0
  42. compute_api_client/docs/PageJob.md +32 -0
  43. compute_api_client/docs/PageLanguage.md +32 -0
  44. compute_api_client/docs/PageMember.md +32 -0
  45. compute_api_client/docs/PageMetadata.md +32 -0
  46. compute_api_client/docs/PagePermission.md +32 -0
  47. compute_api_client/docs/PagePermissionGroup.md +32 -0
  48. compute_api_client/docs/PageProject.md +32 -0
  49. compute_api_client/docs/PageReservation.md +32 -0
  50. compute_api_client/docs/PageResult.md +32 -0
  51. compute_api_client/docs/PageTeam.md +32 -0
  52. compute_api_client/docs/PageTransaction.md +32 -0
  53. compute_api_client/docs/PageUser.md +32 -0
  54. compute_api_client/docs/PermissionsApi.md +24 -24
  55. compute_api_client/docs/ProjectsApi.md +12 -12
  56. compute_api_client/docs/ReservationsApi.md +12 -12
  57. compute_api_client/docs/ResultsApi.md +24 -16
  58. compute_api_client/docs/TeamsApi.md +12 -12
  59. compute_api_client/docs/TransactionsApi.md +12 -12
  60. compute_api_client/docs/UsersApi.md +12 -12
  61. compute_api_client/exceptions.py +1 -1
  62. compute_api_client/models/__init__.py +19 -1
  63. compute_api_client/models/algorithm.py +1 -1
  64. compute_api_client/models/algorithm_in.py +1 -1
  65. compute_api_client/models/algorithm_type.py +1 -1
  66. compute_api_client/models/backend.py +1 -1
  67. compute_api_client/models/backend_in.py +1 -1
  68. compute_api_client/models/backend_patch.py +1 -1
  69. compute_api_client/models/backend_status.py +1 -1
  70. compute_api_client/models/backend_type.py +8 -4
  71. compute_api_client/models/backend_with_authentication.py +1 -1
  72. compute_api_client/models/batch_job.py +1 -1
  73. compute_api_client/models/batch_job_in.py +1 -1
  74. compute_api_client/models/batch_job_status.py +1 -1
  75. compute_api_client/models/commit.py +1 -1
  76. compute_api_client/models/commit_in.py +1 -1
  77. compute_api_client/models/compile_stage.py +1 -1
  78. compute_api_client/models/domain.py +1 -1
  79. compute_api_client/models/file.py +1 -1
  80. compute_api_client/models/file_in.py +1 -1
  81. compute_api_client/models/final_result.py +1 -1
  82. compute_api_client/models/final_result_in.py +1 -1
  83. compute_api_client/models/http_not_found_error.py +1 -1
  84. compute_api_client/models/http_validation_error.py +1 -1
  85. compute_api_client/models/job.py +1 -1
  86. compute_api_client/models/job_in.py +1 -1
  87. compute_api_client/models/job_patch.py +1 -1
  88. compute_api_client/models/job_status.py +1 -1
  89. compute_api_client/models/language.py +1 -1
  90. compute_api_client/models/location_inner.py +1 -1
  91. compute_api_client/models/member.py +1 -1
  92. compute_api_client/models/member_in.py +1 -1
  93. compute_api_client/models/metadata.py +1 -1
  94. compute_api_client/models/metadata_in.py +1 -1
  95. compute_api_client/models/page_algorithm.py +125 -0
  96. compute_api_client/models/page_backend.py +125 -0
  97. compute_api_client/models/page_backend_type.py +125 -0
  98. compute_api_client/models/page_batch_job.py +125 -0
  99. compute_api_client/models/page_commit.py +125 -0
  100. compute_api_client/models/page_file.py +125 -0
  101. compute_api_client/models/page_job.py +125 -0
  102. compute_api_client/models/page_language.py +125 -0
  103. compute_api_client/models/page_member.py +125 -0
  104. compute_api_client/models/page_metadata.py +125 -0
  105. compute_api_client/models/page_permission.py +125 -0
  106. compute_api_client/models/page_permission_group.py +125 -0
  107. compute_api_client/models/page_project.py +125 -0
  108. compute_api_client/models/page_reservation.py +125 -0
  109. compute_api_client/models/page_result.py +125 -0
  110. compute_api_client/models/page_team.py +125 -0
  111. compute_api_client/models/page_transaction.py +125 -0
  112. compute_api_client/models/page_user.py +125 -0
  113. compute_api_client/models/permission.py +1 -1
  114. compute_api_client/models/permission_group.py +1 -1
  115. compute_api_client/models/project.py +1 -1
  116. compute_api_client/models/project_in.py +1 -1
  117. compute_api_client/models/project_patch.py +1 -1
  118. compute_api_client/models/reservation.py +1 -1
  119. compute_api_client/models/reservation_in.py +1 -1
  120. compute_api_client/models/result.py +1 -1
  121. compute_api_client/models/result_in.py +1 -1
  122. compute_api_client/models/role.py +1 -1
  123. compute_api_client/models/share_type.py +1 -1
  124. compute_api_client/models/team.py +1 -1
  125. compute_api_client/models/transaction.py +1 -1
  126. compute_api_client/models/user.py +1 -1
  127. compute_api_client/models/user_in.py +1 -1
  128. compute_api_client/models/validation_error.py +1 -1
  129. compute_api_client/rest.py +1 -1
  130. {qi_compute_api_client-0.32.0.dist-info → qi_compute_api_client-0.35.0.dist-info}/METADATA +22 -3
  131. qi_compute_api_client-0.35.0.dist-info/RECORD +182 -0
  132. qi_compute_api_client-0.32.0.dist-info/RECORD +0 -144
  133. {qi_compute_api_client-0.32.0.dist-info → qi_compute_api_client-0.35.0.dist-info}/LICENSE.md +0 -0
  134. {qi_compute_api_client-0.32.0.dist-info → qi_compute_api_client-0.35.0.dist-info}/WHEEL +0 -0
@@ -317,7 +317,7 @@ Name | Type | Description | Notes
317
317
  [[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)
318
318
 
319
319
  # **read_projects_projects_get**
320
- > 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)
320
+ > PageProject read_projects_projects_get(search=search, id=id, created_on=created_on, owner_id=owner_id, name=name, description=description, starred=starred, sort_by=sort_by, latest=latest, page=page, size=size)
321
321
 
322
322
  List projects
323
323
 
@@ -330,7 +330,7 @@ List projects. If the search parameter is provided, the list is filtered based
330
330
  import time
331
331
  import os
332
332
  import compute_api_client
333
- from compute_api_client.models.project import Project
333
+ from compute_api_client.models.page_project import PageProject
334
334
  from compute_api_client.rest import ApiException
335
335
  from pprint import pprint
336
336
 
@@ -352,20 +352,20 @@ async with compute_api_client.ApiClient(configuration) as api_client:
352
352
  # Create an instance of the API class
353
353
  api_instance = compute_api_client.ProjectsApi(api_client)
354
354
  search = 'search_example' # str | Substring search for project names or description (optional)
355
- latest = True # bool | (optional)
356
- sort_by = 'sort_by_example' # str | (optional)
357
- page_number = 56 # int | (optional)
358
- items_per_page = 56 # int | (optional)
359
355
  id = 56 # int | (optional)
360
356
  created_on = '2013-10-20T19:20:30+01:00' # datetime | (optional)
361
357
  owner_id = 56 # int | (optional)
362
358
  name = 'name_example' # str | (optional)
363
359
  description = 'description_example' # str | (optional)
364
360
  starred = True # bool | (optional)
361
+ sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
362
+ latest = True # bool | If True gets the most recently created object. (optional)
363
+ page = 1 # int | Page number (optional) (default to 1)
364
+ size = 50 # int | Page size (optional) (default to 50)
365
365
 
366
366
  try:
367
367
  # List projects
368
- 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)
368
+ api_response = await api_instance.read_projects_projects_get(search=search, id=id, created_on=created_on, owner_id=owner_id, name=name, description=description, starred=starred, sort_by=sort_by, latest=latest, page=page, size=size)
369
369
  print("The response of ProjectsApi->read_projects_projects_get:\n")
370
370
  pprint(api_response)
371
371
  except Exception as e:
@@ -379,20 +379,20 @@ async with compute_api_client.ApiClient(configuration) as api_client:
379
379
  Name | Type | Description | Notes
380
380
  ------------- | ------------- | ------------- | -------------
381
381
  **search** | **str**| Substring search for project names or description | [optional]
382
- **latest** | **bool**| | [optional]
383
- **sort_by** | **str**| | [optional]
384
- **page_number** | **int**| | [optional]
385
- **items_per_page** | **int**| | [optional]
386
382
  **id** | **int**| | [optional]
387
383
  **created_on** | **datetime**| | [optional]
388
384
  **owner_id** | **int**| | [optional]
389
385
  **name** | **str**| | [optional]
390
386
  **description** | **str**| | [optional]
391
387
  **starred** | **bool**| | [optional]
388
+ **sort_by** | **str**| The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional]
389
+ **latest** | **bool**| If True gets the most recently created object. | [optional]
390
+ **page** | **int**| Page number | [optional] [default to 1]
391
+ **size** | **int**| Page size | [optional] [default to 50]
392
392
 
393
393
  ### Return type
394
394
 
395
- [**List[Project]**](Project.md)
395
+ [**PageProject**](PageProject.md)
396
396
 
397
397
  ### Authorization
398
398
 
@@ -163,7 +163,7 @@ Name | Type | Description | Notes
163
163
  [[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)
164
164
 
165
165
  # **read_reservations_reservations_get**
166
- > List[Reservation] read_reservations_reservations_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, member_id=member_id, start_time=start_time, end_time=end_time, backend_type_id=backend_type_id, backend_id__isnull=backend_id__isnull, backend_id=backend_id, is_terminated=is_terminated)
166
+ > PageReservation read_reservations_reservations_get(id=id, member_id=member_id, start_time=start_time, end_time=end_time, backend_type_id=backend_type_id, backend_id__isnull=backend_id__isnull, backend_id=backend_id, is_terminated=is_terminated, sort_by=sort_by, latest=latest, page=page, size=size)
167
167
 
168
168
  List reservations
169
169
 
@@ -176,7 +176,7 @@ Read reservations.
176
176
  import time
177
177
  import os
178
178
  import compute_api_client
179
- from compute_api_client.models.reservation import Reservation
179
+ from compute_api_client.models.page_reservation import PageReservation
180
180
  from compute_api_client.rest import ApiException
181
181
  from pprint import pprint
182
182
 
@@ -197,10 +197,6 @@ configuration.access_token = os.environ["ACCESS_TOKEN"]
197
197
  async with compute_api_client.ApiClient(configuration) as api_client:
198
198
  # Create an instance of the API class
199
199
  api_instance = compute_api_client.ReservationsApi(api_client)
200
- latest = True # bool | (optional)
201
- sort_by = 'sort_by_example' # str | (optional)
202
- page_number = 56 # int | (optional)
203
- items_per_page = 56 # int | (optional)
204
200
  id = 56 # int | (optional)
205
201
  member_id = 56 # int | (optional)
206
202
  start_time = '2013-10-20T19:20:30+01:00' # datetime | (optional)
@@ -209,10 +205,14 @@ async with compute_api_client.ApiClient(configuration) as api_client:
209
205
  backend_id__isnull = True # bool | (optional)
210
206
  backend_id = 56 # int | (optional)
211
207
  is_terminated = True # bool | (optional)
208
+ sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
209
+ latest = True # bool | If True gets the most recently created object. (optional)
210
+ page = 1 # int | Page number (optional) (default to 1)
211
+ size = 50 # int | Page size (optional) (default to 50)
212
212
 
213
213
  try:
214
214
  # List reservations
215
- api_response = await api_instance.read_reservations_reservations_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, member_id=member_id, start_time=start_time, end_time=end_time, backend_type_id=backend_type_id, backend_id__isnull=backend_id__isnull, backend_id=backend_id, is_terminated=is_terminated)
215
+ api_response = await api_instance.read_reservations_reservations_get(id=id, member_id=member_id, start_time=start_time, end_time=end_time, backend_type_id=backend_type_id, backend_id__isnull=backend_id__isnull, backend_id=backend_id, is_terminated=is_terminated, sort_by=sort_by, latest=latest, page=page, size=size)
216
216
  print("The response of ReservationsApi->read_reservations_reservations_get:\n")
217
217
  pprint(api_response)
218
218
  except Exception as e:
@@ -225,10 +225,6 @@ async with compute_api_client.ApiClient(configuration) as api_client:
225
225
 
226
226
  Name | Type | Description | Notes
227
227
  ------------- | ------------- | ------------- | -------------
228
- **latest** | **bool**| | [optional]
229
- **sort_by** | **str**| | [optional]
230
- **page_number** | **int**| | [optional]
231
- **items_per_page** | **int**| | [optional]
232
228
  **id** | **int**| | [optional]
233
229
  **member_id** | **int**| | [optional]
234
230
  **start_time** | **datetime**| | [optional]
@@ -237,10 +233,14 @@ Name | Type | Description | Notes
237
233
  **backend_id__isnull** | **bool**| | [optional]
238
234
  **backend_id** | **int**| | [optional]
239
235
  **is_terminated** | **bool**| | [optional]
236
+ **sort_by** | **str**| The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional]
237
+ **latest** | **bool**| If True gets the most recently created object. | [optional]
238
+ **page** | **int**| Page number | [optional] [default to 1]
239
+ **size** | **int**| Page size | [optional] [default to 50]
240
240
 
241
241
  ### Return type
242
242
 
243
- [**List[Reservation]**](Reservation.md)
243
+ [**PageReservation**](PageReservation.md)
244
244
 
245
245
  ### Authorization
246
246
 
@@ -245,7 +245,7 @@ Name | Type | Description | Notes
245
245
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
246
246
 
247
247
  # **read_results_by_algorithm_id_results_algorithm_algorithm_id_get**
248
- > List[Result] read_results_by_algorithm_id_results_algorithm_algorithm_id_get(algorithm_id, latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, created_on=created_on, job_id=job_id, metadata_id=metadata_id, execution_time_in_seconds=execution_time_in_seconds, shots_requested__isnull=shots_requested__isnull, shots_requested=shots_requested, shots_done__isnull=shots_done__isnull, shots_done=shots_done, results__isnull=results__isnull, body=body)
248
+ > PageResult read_results_by_algorithm_id_results_algorithm_algorithm_id_get(algorithm_id, id=id, created_on=created_on, job_id=job_id, metadata_id=metadata_id, execution_time_in_seconds=execution_time_in_seconds, shots_requested__isnull=shots_requested__isnull, shots_requested=shots_requested, shots_done__isnull=shots_done__isnull, shots_done=shots_done, results__isnull=results__isnull, sort_by=sort_by, latest=latest, page=page, size=size, body=body)
249
249
 
250
250
  Retrieve results by algorithm ID
251
251
 
@@ -258,7 +258,7 @@ Get results by algorithm ID.
258
258
  import time
259
259
  import os
260
260
  import compute_api_client
261
- from compute_api_client.models.result import Result
261
+ from compute_api_client.models.page_result import PageResult
262
262
  from compute_api_client.rest import ApiException
263
263
  from pprint import pprint
264
264
 
@@ -280,10 +280,6 @@ async with compute_api_client.ApiClient(configuration) as api_client:
280
280
  # Create an instance of the API class
281
281
  api_instance = compute_api_client.ResultsApi(api_client)
282
282
  algorithm_id = 56 # int |
283
- latest = True # bool | (optional)
284
- sort_by = 'sort_by_example' # str | (optional)
285
- page_number = 56 # int | (optional)
286
- items_per_page = 56 # int | (optional)
287
283
  id = 56 # int | (optional)
288
284
  created_on = '2013-10-20T19:20:30+01:00' # datetime | (optional)
289
285
  job_id = 56 # int | (optional)
@@ -294,11 +290,15 @@ async with compute_api_client.ApiClient(configuration) as api_client:
294
290
  shots_done__isnull = True # bool | (optional)
295
291
  shots_done = 56 # int | (optional)
296
292
  results__isnull = True # bool | (optional)
293
+ sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
294
+ latest = True # bool | If True gets the most recently created object. (optional)
295
+ page = 1 # int | Page number (optional) (default to 1)
296
+ size = 50 # int | Page size (optional) (default to 50)
297
297
  body = None # object | (optional)
298
298
 
299
299
  try:
300
300
  # Retrieve results by algorithm ID
301
- api_response = await api_instance.read_results_by_algorithm_id_results_algorithm_algorithm_id_get(algorithm_id, latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, created_on=created_on, job_id=job_id, metadata_id=metadata_id, execution_time_in_seconds=execution_time_in_seconds, shots_requested__isnull=shots_requested__isnull, shots_requested=shots_requested, shots_done__isnull=shots_done__isnull, shots_done=shots_done, results__isnull=results__isnull, body=body)
301
+ api_response = await api_instance.read_results_by_algorithm_id_results_algorithm_algorithm_id_get(algorithm_id, id=id, created_on=created_on, job_id=job_id, metadata_id=metadata_id, execution_time_in_seconds=execution_time_in_seconds, shots_requested__isnull=shots_requested__isnull, shots_requested=shots_requested, shots_done__isnull=shots_done__isnull, shots_done=shots_done, results__isnull=results__isnull, sort_by=sort_by, latest=latest, page=page, size=size, body=body)
302
302
  print("The response of ResultsApi->read_results_by_algorithm_id_results_algorithm_algorithm_id_get:\n")
303
303
  pprint(api_response)
304
304
  except Exception as e:
@@ -312,10 +312,6 @@ async with compute_api_client.ApiClient(configuration) as api_client:
312
312
  Name | Type | Description | Notes
313
313
  ------------- | ------------- | ------------- | -------------
314
314
  **algorithm_id** | **int**| |
315
- **latest** | **bool**| | [optional]
316
- **sort_by** | **str**| | [optional]
317
- **page_number** | **int**| | [optional]
318
- **items_per_page** | **int**| | [optional]
319
315
  **id** | **int**| | [optional]
320
316
  **created_on** | **datetime**| | [optional]
321
317
  **job_id** | **int**| | [optional]
@@ -326,11 +322,15 @@ Name | Type | Description | Notes
326
322
  **shots_done__isnull** | **bool**| | [optional]
327
323
  **shots_done** | **int**| | [optional]
328
324
  **results__isnull** | **bool**| | [optional]
325
+ **sort_by** | **str**| The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional]
326
+ **latest** | **bool**| If True gets the most recently created object. | [optional]
327
+ **page** | **int**| Page number | [optional] [default to 1]
328
+ **size** | **int**| Page size | [optional] [default to 50]
329
329
  **body** | **object**| | [optional]
330
330
 
331
331
  ### Return type
332
332
 
333
- [**List[Result]**](Result.md)
333
+ [**PageResult**](PageResult.md)
334
334
 
335
335
  ### Authorization
336
336
 
@@ -351,7 +351,7 @@ Name | Type | Description | Notes
351
351
  [[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)
352
352
 
353
353
  # **read_results_by_job_id_results_job_job_id_get**
354
- > List[Result] read_results_by_job_id_results_job_job_id_get(job_id)
354
+ > PageResult read_results_by_job_id_results_job_job_id_get(job_id, page=page, size=size, sort_by=sort_by, latest=latest)
355
355
 
356
356
  Retrieve results by job ID
357
357
 
@@ -364,7 +364,7 @@ Get results by job ID.
364
364
  import time
365
365
  import os
366
366
  import compute_api_client
367
- from compute_api_client.models.result import Result
367
+ from compute_api_client.models.page_result import PageResult
368
368
  from compute_api_client.rest import ApiException
369
369
  from pprint import pprint
370
370
 
@@ -386,10 +386,14 @@ async with compute_api_client.ApiClient(configuration) as api_client:
386
386
  # Create an instance of the API class
387
387
  api_instance = compute_api_client.ResultsApi(api_client)
388
388
  job_id = 56 # int |
389
+ page = 1 # int | Page number (optional) (default to 1)
390
+ size = 50 # int | Page size (optional) (default to 50)
391
+ sort_by = 'sort_by_example' # str | (optional)
392
+ latest = True # bool | (optional)
389
393
 
390
394
  try:
391
395
  # Retrieve results by job ID
392
- api_response = await api_instance.read_results_by_job_id_results_job_job_id_get(job_id)
396
+ api_response = await api_instance.read_results_by_job_id_results_job_job_id_get(job_id, page=page, size=size, sort_by=sort_by, latest=latest)
393
397
  print("The response of ResultsApi->read_results_by_job_id_results_job_job_id_get:\n")
394
398
  pprint(api_response)
395
399
  except Exception as e:
@@ -403,10 +407,14 @@ async with compute_api_client.ApiClient(configuration) as api_client:
403
407
  Name | Type | Description | Notes
404
408
  ------------- | ------------- | ------------- | -------------
405
409
  **job_id** | **int**| |
410
+ **page** | **int**| Page number | [optional] [default to 1]
411
+ **size** | **int**| Page size | [optional] [default to 50]
412
+ **sort_by** | **str**| | [optional]
413
+ **latest** | **bool**| | [optional]
406
414
 
407
415
  ### Return type
408
416
 
409
- [**List[Result]**](Result.md)
417
+ [**PageResult**](PageResult.md)
410
418
 
411
419
  ### Authorization
412
420
 
@@ -85,7 +85,7 @@ Name | Type | Description | Notes
85
85
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
86
86
 
87
87
  # **read_teams_teams_get**
88
- > List[Team] read_teams_teams_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, name=name, slug=slug, individual_user=individual_user)
88
+ > PageTeam read_teams_teams_get(id=id, name=name, slug=slug, individual_user=individual_user, sort_by=sort_by, latest=latest, page=page, size=size)
89
89
 
90
90
  List teams
91
91
 
@@ -98,7 +98,7 @@ Read teams.
98
98
  import time
99
99
  import os
100
100
  import compute_api_client
101
- from compute_api_client.models.team import Team
101
+ from compute_api_client.models.page_team import PageTeam
102
102
  from compute_api_client.rest import ApiException
103
103
  from pprint import pprint
104
104
 
@@ -119,18 +119,18 @@ configuration.access_token = os.environ["ACCESS_TOKEN"]
119
119
  async with compute_api_client.ApiClient(configuration) as api_client:
120
120
  # Create an instance of the API class
121
121
  api_instance = compute_api_client.TeamsApi(api_client)
122
- latest = True # bool | (optional)
123
- sort_by = 'sort_by_example' # str | (optional)
124
- page_number = 56 # int | (optional)
125
- items_per_page = 56 # int | (optional)
126
122
  id = 56 # int | (optional)
127
123
  name = 'name_example' # str | (optional)
128
124
  slug = 'slug_example' # str | (optional)
129
125
  individual_user = True # bool | (optional)
126
+ sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
127
+ latest = True # bool | If True gets the most recently created object. (optional)
128
+ page = 1 # int | Page number (optional) (default to 1)
129
+ size = 50 # int | Page size (optional) (default to 50)
130
130
 
131
131
  try:
132
132
  # List teams
133
- api_response = await api_instance.read_teams_teams_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, name=name, slug=slug, individual_user=individual_user)
133
+ api_response = await api_instance.read_teams_teams_get(id=id, name=name, slug=slug, individual_user=individual_user, sort_by=sort_by, latest=latest, page=page, size=size)
134
134
  print("The response of TeamsApi->read_teams_teams_get:\n")
135
135
  pprint(api_response)
136
136
  except Exception as e:
@@ -143,18 +143,18 @@ async with compute_api_client.ApiClient(configuration) as api_client:
143
143
 
144
144
  Name | Type | Description | Notes
145
145
  ------------- | ------------- | ------------- | -------------
146
- **latest** | **bool**| | [optional]
147
- **sort_by** | **str**| | [optional]
148
- **page_number** | **int**| | [optional]
149
- **items_per_page** | **int**| | [optional]
150
146
  **id** | **int**| | [optional]
151
147
  **name** | **str**| | [optional]
152
148
  **slug** | **str**| | [optional]
153
149
  **individual_user** | **bool**| | [optional]
150
+ **sort_by** | **str**| The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional]
151
+ **latest** | **bool**| If True gets the most recently created object. | [optional]
152
+ **page** | **int**| Page number | [optional] [default to 1]
153
+ **size** | **int**| Page size | [optional] [default to 50]
154
154
 
155
155
  ### Return type
156
156
 
157
- [**List[Team]**](Team.md)
157
+ [**PageTeam**](PageTeam.md)
158
158
 
159
159
  ### Authorization
160
160
 
@@ -85,7 +85,7 @@ Name | Type | Description | Notes
85
85
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
86
86
 
87
87
  # **read_transactions_transactions_get**
88
- > List[Transaction] read_transactions_transactions_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, domain__isnull=domain__isnull, domain=domain, job__isnull=job__isnull, job=job, team_id=team_id, member_id__isnull=member_id__isnull, member_id=member_id, change=change, timestamp=timestamp)
88
+ > PageTransaction read_transactions_transactions_get(id=id, domain__isnull=domain__isnull, domain=domain, job__isnull=job__isnull, job=job, team_id=team_id, member_id__isnull=member_id__isnull, member_id=member_id, change=change, timestamp=timestamp, sort_by=sort_by, latest=latest, page=page, size=size)
89
89
 
90
90
  List transactions
91
91
 
@@ -99,7 +99,7 @@ import time
99
99
  import os
100
100
  import compute_api_client
101
101
  from compute_api_client.models.domain import Domain
102
- from compute_api_client.models.transaction import Transaction
102
+ from compute_api_client.models.page_transaction import PageTransaction
103
103
  from compute_api_client.rest import ApiException
104
104
  from pprint import pprint
105
105
 
@@ -120,10 +120,6 @@ configuration.access_token = os.environ["ACCESS_TOKEN"]
120
120
  async with compute_api_client.ApiClient(configuration) as api_client:
121
121
  # Create an instance of the API class
122
122
  api_instance = compute_api_client.TransactionsApi(api_client)
123
- latest = True # bool | (optional)
124
- sort_by = 'sort_by_example' # str | (optional)
125
- page_number = 56 # int | (optional)
126
- items_per_page = 56 # int | (optional)
127
123
  id = 56 # int | (optional)
128
124
  domain__isnull = True # bool | (optional)
129
125
  domain = compute_api_client.Domain() # Domain | (optional)
@@ -134,10 +130,14 @@ async with compute_api_client.ApiClient(configuration) as api_client:
134
130
  member_id = 56 # int | (optional)
135
131
  change = 56 # int | (optional)
136
132
  timestamp = '2013-10-20T19:20:30+01:00' # datetime | (optional)
133
+ sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
134
+ latest = True # bool | If True gets the most recently created object. (optional)
135
+ page = 1 # int | Page number (optional) (default to 1)
136
+ size = 50 # int | Page size (optional) (default to 50)
137
137
 
138
138
  try:
139
139
  # List transactions
140
- api_response = await api_instance.read_transactions_transactions_get(latest=latest, sort_by=sort_by, page_number=page_number, items_per_page=items_per_page, id=id, domain__isnull=domain__isnull, domain=domain, job__isnull=job__isnull, job=job, team_id=team_id, member_id__isnull=member_id__isnull, member_id=member_id, change=change, timestamp=timestamp)
140
+ api_response = await api_instance.read_transactions_transactions_get(id=id, domain__isnull=domain__isnull, domain=domain, job__isnull=job__isnull, job=job, team_id=team_id, member_id__isnull=member_id__isnull, member_id=member_id, change=change, timestamp=timestamp, sort_by=sort_by, latest=latest, page=page, size=size)
141
141
  print("The response of TransactionsApi->read_transactions_transactions_get:\n")
142
142
  pprint(api_response)
143
143
  except Exception as e:
@@ -150,10 +150,6 @@ async with compute_api_client.ApiClient(configuration) as api_client:
150
150
 
151
151
  Name | Type | Description | Notes
152
152
  ------------- | ------------- | ------------- | -------------
153
- **latest** | **bool**| | [optional]
154
- **sort_by** | **str**| | [optional]
155
- **page_number** | **int**| | [optional]
156
- **items_per_page** | **int**| | [optional]
157
153
  **id** | **int**| | [optional]
158
154
  **domain__isnull** | **bool**| | [optional]
159
155
  **domain** | [**Domain**](.md)| | [optional]
@@ -164,10 +160,14 @@ Name | Type | Description | Notes
164
160
  **member_id** | **int**| | [optional]
165
161
  **change** | **int**| | [optional]
166
162
  **timestamp** | **datetime**| | [optional]
163
+ **sort_by** | **str**| The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional]
164
+ **latest** | **bool**| If True gets the most recently created object. | [optional]
165
+ **page** | **int**| Page number | [optional] [default to 1]
166
+ **size** | **int**| Page size | [optional] [default to 50]
167
167
 
168
168
  ### Return type
169
169
 
170
- [**List[Transaction]**](Transaction.md)
170
+ [**PageTransaction**](PageTransaction.md)
171
171
 
172
172
  ### Authorization
173
173
 
@@ -236,7 +236,7 @@ Name | Type | Description | Notes
236
236
  [[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)
237
237
 
238
238
  # **read_users_users_get**
239
- > 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)
239
+ > PageUser read_users_users_get(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, sort_by=sort_by, latest=latest, page=page, size=size)
240
240
 
241
241
  List users
242
242
 
@@ -249,7 +249,7 @@ Read users.
249
249
  import time
250
250
  import os
251
251
  import compute_api_client
252
- from compute_api_client.models.user import User
252
+ from compute_api_client.models.page_user import PageUser
253
253
  from compute_api_client.rest import ApiException
254
254
  from pprint import pprint
255
255
 
@@ -270,10 +270,6 @@ configuration.access_token = os.environ["ACCESS_TOKEN"]
270
270
  async with compute_api_client.ApiClient(configuration) as api_client:
271
271
  # Create an instance of the API class
272
272
  api_instance = compute_api_client.UsersApi(api_client)
273
- latest = True # bool | (optional)
274
- sort_by = 'sort_by_example' # str | (optional)
275
- page_number = 56 # int | (optional)
276
- items_per_page = 56 # int | (optional)
277
273
  id = 56 # int | (optional)
278
274
  full_name = 'full_name_example' # str | (optional)
279
275
  email = 'email_example' # str | (optional)
@@ -282,10 +278,14 @@ async with compute_api_client.ApiClient(configuration) as api_client:
282
278
  is_active = True # bool | (optional)
283
279
  is_confirmed = True # bool | (optional)
284
280
  oidc_sub = 'oidc_sub_example' # str | (optional)
281
+ sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
282
+ latest = True # bool | If True gets the most recently created object. (optional)
283
+ page = 1 # int | Page number (optional) (default to 1)
284
+ size = 50 # int | Page size (optional) (default to 50)
285
285
 
286
286
  try:
287
287
  # List users
288
- 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)
288
+ api_response = await api_instance.read_users_users_get(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, sort_by=sort_by, latest=latest, page=page, size=size)
289
289
  print("The response of UsersApi->read_users_users_get:\n")
290
290
  pprint(api_response)
291
291
  except Exception as e:
@@ -298,10 +298,6 @@ async with compute_api_client.ApiClient(configuration) as api_client:
298
298
 
299
299
  Name | Type | Description | Notes
300
300
  ------------- | ------------- | ------------- | -------------
301
- **latest** | **bool**| | [optional]
302
- **sort_by** | **str**| | [optional]
303
- **page_number** | **int**| | [optional]
304
- **items_per_page** | **int**| | [optional]
305
301
  **id** | **int**| | [optional]
306
302
  **full_name** | **str**| | [optional]
307
303
  **email** | **str**| | [optional]
@@ -310,10 +306,14 @@ Name | Type | Description | Notes
310
306
  **is_active** | **bool**| | [optional]
311
307
  **is_confirmed** | **bool**| | [optional]
312
308
  **oidc_sub** | **str**| | [optional]
309
+ **sort_by** | **str**| The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional]
310
+ **latest** | **bool**| If True gets the most recently created object. | [optional]
311
+ **page** | **int**| Page number | [optional] [default to 1]
312
+ **size** | **int**| Page size | [optional] [default to 50]
313
313
 
314
314
  ### Return type
315
315
 
316
- [**List[User]**](User.md)
316
+ [**PageUser**](PageUser.md)
317
317
 
318
318
  ### Authorization
319
319
 
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
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.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -4,7 +4,7 @@
4
4
  """
5
5
  Quantum Inspire 2
6
6
 
7
- **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
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
8
8
 
9
9
  The version of the OpenAPI document: 0.1.0
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -46,6 +46,24 @@ from compute_api_client.models.member import Member
46
46
  from compute_api_client.models.member_in import MemberIn
47
47
  from compute_api_client.models.metadata import Metadata
48
48
  from compute_api_client.models.metadata_in import MetadataIn
49
+ from compute_api_client.models.page_algorithm import PageAlgorithm
50
+ from compute_api_client.models.page_backend import PageBackend
51
+ from compute_api_client.models.page_backend_type import PageBackendType
52
+ from compute_api_client.models.page_batch_job import PageBatchJob
53
+ from compute_api_client.models.page_commit import PageCommit
54
+ from compute_api_client.models.page_file import PageFile
55
+ from compute_api_client.models.page_job import PageJob
56
+ from compute_api_client.models.page_language import PageLanguage
57
+ from compute_api_client.models.page_member import PageMember
58
+ from compute_api_client.models.page_metadata import PageMetadata
59
+ from compute_api_client.models.page_permission import PagePermission
60
+ from compute_api_client.models.page_permission_group import PagePermissionGroup
61
+ from compute_api_client.models.page_project import PageProject
62
+ from compute_api_client.models.page_reservation import PageReservation
63
+ from compute_api_client.models.page_result import PageResult
64
+ from compute_api_client.models.page_team import PageTeam
65
+ from compute_api_client.models.page_transaction import PageTransaction
66
+ from compute_api_client.models.page_user import PageUser
49
67
  from compute_api_client.models.permission import Permission
50
68
  from compute_api_client.models.permission_group import PermissionGroup
51
69
  from compute_api_client.models.project import Project
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
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.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
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.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
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.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
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.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
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.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
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.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
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.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)