cosmotech-api 3.3.4__py3-none-any.whl → 4.0.0.dev8__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 cosmotech-api might be problematic. Click here for more details.

Files changed (259) hide show
  1. cosmotech_api/__init__.py +3 -49
  2. cosmotech_api/api/__init__.py +0 -3
  3. cosmotech_api/api/connector_api.py +7 -263
  4. cosmotech_api/api/dataset_api.py +65 -69
  5. cosmotech_api/api/organization_api.py +15 -882
  6. cosmotech_api/api/run_api.py +9 -11
  7. cosmotech_api/api/runner_api.py +20 -21
  8. cosmotech_api/api/scenario_api.py +121 -141
  9. cosmotech_api/api/scenariorun_api.py +66 -76
  10. cosmotech_api/api/scenariorunresult_api.py +1 -1
  11. cosmotech_api/api/solution_api.py +397 -1053
  12. cosmotech_api/api/twingraph_api.py +72 -83
  13. cosmotech_api/api/validator_api.py +1 -1
  14. cosmotech_api/api/workspace_api.py +14 -312
  15. cosmotech_api/api_client.py +1 -1
  16. cosmotech_api/configuration.py +5 -13
  17. cosmotech_api/exceptions.py +1 -1
  18. cosmotech_api/model/component_role_permissions.py +1 -1
  19. cosmotech_api/model/connector.py +1 -1
  20. cosmotech_api/model/connector_parameter.py +1 -1
  21. cosmotech_api/model/connector_parameter_group.py +1 -1
  22. cosmotech_api/model/container_resource_size_info.py +1 -1
  23. cosmotech_api/model/container_resource_sizing.py +1 -1
  24. cosmotech_api/model/dataset.py +1 -1
  25. cosmotech_api/model/dataset_access_control.py +1 -1
  26. cosmotech_api/model/dataset_compatibility.py +1 -1
  27. cosmotech_api/model/dataset_connector.py +1 -1
  28. cosmotech_api/model/dataset_copy_parameters.py +1 -1
  29. cosmotech_api/model/dataset_role.py +1 -1
  30. cosmotech_api/model/dataset_search.py +1 -1
  31. cosmotech_api/model/dataset_security.py +1 -1
  32. cosmotech_api/model/dataset_source_type.py +1 -1
  33. cosmotech_api/model/dataset_twin_graph_hash.py +1 -1
  34. cosmotech_api/model/dataset_twin_graph_info.py +1 -1
  35. cosmotech_api/model/dataset_twin_graph_query.py +1 -1
  36. cosmotech_api/model/delete_historical_data.py +1 -1
  37. cosmotech_api/model/file_upload_metadata.py +1 -1
  38. cosmotech_api/model/file_upload_validation.py +1 -1
  39. cosmotech_api/model/graph_properties.py +1 -1
  40. cosmotech_api/model/organization.py +1 -1
  41. cosmotech_api/model/organization_access_control.py +1 -1
  42. cosmotech_api/model/organization_role.py +1 -1
  43. cosmotech_api/model/organization_security.py +1 -1
  44. cosmotech_api/model/organization_service.py +1 -1
  45. cosmotech_api/model/organization_services.py +1 -1
  46. cosmotech_api/model/resource_size_info.py +1 -1
  47. cosmotech_api/model/run.py +1 -1
  48. cosmotech_api/model/run_container.py +1 -1
  49. cosmotech_api/model/run_container_artifact.py +1 -1
  50. cosmotech_api/model/run_container_logs.py +1 -1
  51. cosmotech_api/model/run_logs.py +1 -1
  52. cosmotech_api/model/run_resource_requested.py +1 -1
  53. cosmotech_api/model/run_search.py +1 -1
  54. cosmotech_api/model/run_start_containers.py +1 -1
  55. cosmotech_api/model/run_state.py +1 -1
  56. cosmotech_api/model/run_status.py +1 -1
  57. cosmotech_api/model/run_status_node.py +1 -1
  58. cosmotech_api/model/run_template.py +1 -1
  59. cosmotech_api/model/run_template_handler_id.py +1 -1
  60. cosmotech_api/model/run_template_orchestrator.py +1 -1
  61. cosmotech_api/model/run_template_parameter.py +1 -1
  62. cosmotech_api/model/run_template_parameter_group.py +1 -1
  63. cosmotech_api/model/run_template_parameter_value.py +1 -1
  64. cosmotech_api/model/run_template_resource_sizing.py +1 -1
  65. cosmotech_api/model/run_template_step_source.py +1 -1
  66. cosmotech_api/model/runner.py +1 -1
  67. cosmotech_api/model/runner_access_control.py +1 -1
  68. cosmotech_api/model/runner_changed_parameter_value.py +1 -1
  69. cosmotech_api/model/runner_comparison_result.py +1 -1
  70. cosmotech_api/model/runner_data_download_info.py +1 -1
  71. cosmotech_api/model/runner_data_download_job.py +1 -1
  72. cosmotech_api/model/runner_job_state.py +1 -1
  73. cosmotech_api/model/runner_last_run.py +1 -1
  74. cosmotech_api/model/runner_resource_sizing.py +1 -1
  75. cosmotech_api/model/runner_role.py +1 -1
  76. cosmotech_api/model/runner_run_template_parameter_value.py +1 -1
  77. cosmotech_api/model/runner_security.py +1 -1
  78. cosmotech_api/model/runner_validation_status.py +1 -1
  79. cosmotech_api/model/scenario.py +1 -1
  80. cosmotech_api/model/scenario_access_control.py +1 -1
  81. cosmotech_api/model/scenario_changed_parameter_value.py +1 -1
  82. cosmotech_api/model/scenario_comparison_result.py +1 -1
  83. cosmotech_api/model/scenario_data_download_info.py +1 -1
  84. cosmotech_api/model/scenario_data_download_job.py +1 -1
  85. cosmotech_api/model/scenario_job_state.py +1 -1
  86. cosmotech_api/model/scenario_last_run.py +1 -1
  87. cosmotech_api/model/scenario_resource_sizing.py +1 -1
  88. cosmotech_api/model/scenario_role.py +1 -1
  89. cosmotech_api/model/scenario_run.py +1 -1
  90. cosmotech_api/model/scenario_run_container.py +1 -1
  91. cosmotech_api/model/scenario_run_container_artifact.py +1 -1
  92. cosmotech_api/model/scenario_run_container_logs.py +1 -1
  93. cosmotech_api/model/scenario_run_logs.py +1 -1
  94. cosmotech_api/model/scenario_run_resource_requested.py +1 -1
  95. cosmotech_api/model/scenario_run_result.py +1 -1
  96. cosmotech_api/model/scenario_run_search.py +1 -1
  97. cosmotech_api/model/scenario_run_start_containers.py +1 -1
  98. cosmotech_api/model/scenario_run_state.py +1 -1
  99. cosmotech_api/model/scenario_run_status.py +1 -1
  100. cosmotech_api/model/scenario_run_status_node.py +1 -1
  101. cosmotech_api/model/scenario_run_template_parameter_value.py +1 -1
  102. cosmotech_api/model/scenario_security.py +1 -1
  103. cosmotech_api/model/scenario_validation_status.py +1 -1
  104. cosmotech_api/model/solution.py +1 -1
  105. cosmotech_api/model/solution_access_control.py +1 -1
  106. cosmotech_api/model/solution_role.py +1 -1
  107. cosmotech_api/model/solution_security.py +1 -1
  108. cosmotech_api/model/source_info.py +1 -1
  109. cosmotech_api/model/sub_dataset_graph_query.py +1 -1
  110. cosmotech_api/model/translated_labels.py +1 -1
  111. cosmotech_api/model/twin_graph_batch_result.py +1 -1
  112. cosmotech_api/model/twin_graph_hash.py +1 -1
  113. cosmotech_api/model/twin_graph_query.py +1 -1
  114. cosmotech_api/model/validator.py +1 -1
  115. cosmotech_api/model/validator_run.py +1 -1
  116. cosmotech_api/model/workspace.py +1 -1
  117. cosmotech_api/model/workspace_access_control.py +1 -1
  118. cosmotech_api/model/workspace_file.py +1 -1
  119. cosmotech_api/model/workspace_role.py +1 -1
  120. cosmotech_api/model/workspace_secret.py +1 -1
  121. cosmotech_api/model/workspace_security.py +1 -1
  122. cosmotech_api/model/workspace_solution.py +1 -1
  123. cosmotech_api/model/workspace_web_app.py +1 -1
  124. cosmotech_api/model_utils.py +1 -1
  125. cosmotech_api/models/__init__.py +3 -46
  126. cosmotech_api/models/component_role_permissions.py +1 -1
  127. cosmotech_api/models/connector.py +3 -7
  128. cosmotech_api/models/connector_parameter.py +1 -1
  129. cosmotech_api/models/connector_parameter_group.py +1 -1
  130. cosmotech_api/models/container_resource_size_info.py +1 -1
  131. cosmotech_api/models/container_resource_sizing.py +1 -1
  132. cosmotech_api/models/created_run.py +1 -1
  133. cosmotech_api/models/dataset.py +1 -1
  134. cosmotech_api/models/dataset_access_control.py +1 -1
  135. cosmotech_api/models/dataset_compatibility.py +1 -1
  136. cosmotech_api/models/dataset_connector.py +1 -1
  137. cosmotech_api/models/dataset_copy_parameters.py +1 -1
  138. cosmotech_api/models/dataset_role.py +1 -1
  139. cosmotech_api/models/dataset_search.py +1 -1
  140. cosmotech_api/models/dataset_security.py +1 -1
  141. cosmotech_api/models/dataset_source_type.py +1 -1
  142. cosmotech_api/models/dataset_twin_graph_hash.py +1 -1
  143. cosmotech_api/models/dataset_twin_graph_info.py +1 -1
  144. cosmotech_api/models/dataset_twin_graph_query.py +1 -1
  145. cosmotech_api/models/delete_historical_data.py +1 -1
  146. cosmotech_api/models/file_upload_metadata.py +1 -1
  147. cosmotech_api/models/file_upload_validation.py +1 -1
  148. cosmotech_api/models/graph_properties.py +1 -1
  149. cosmotech_api/models/ingestion_status_enum.py +1 -1
  150. cosmotech_api/models/io_types_enum.py +1 -1
  151. cosmotech_api/models/organization.py +2 -8
  152. cosmotech_api/models/organization_access_control.py +1 -1
  153. cosmotech_api/models/organization_role.py +1 -1
  154. cosmotech_api/models/organization_security.py +1 -1
  155. cosmotech_api/models/organization_service.py +7 -7
  156. cosmotech_api/models/organization_services.py +7 -7
  157. cosmotech_api/models/query_result.py +1 -1
  158. cosmotech_api/models/resource_size_info.py +1 -1
  159. cosmotech_api/models/run.py +1 -1
  160. cosmotech_api/models/run_container.py +3 -13
  161. cosmotech_api/models/run_container_artifact.py +7 -7
  162. cosmotech_api/models/run_container_logs.py +7 -7
  163. cosmotech_api/models/run_data.py +1 -1
  164. cosmotech_api/models/run_data_query.py +1 -1
  165. cosmotech_api/models/run_logs.py +16 -21
  166. cosmotech_api/models/run_logs_entry.py +1 -1
  167. cosmotech_api/models/run_resource_requested.py +1 -1
  168. cosmotech_api/models/run_search.py +7 -7
  169. cosmotech_api/models/run_search_state.py +1 -1
  170. cosmotech_api/models/run_start_containers.py +10 -10
  171. cosmotech_api/models/run_state.py +1 -1
  172. cosmotech_api/models/run_status.py +1 -1
  173. cosmotech_api/models/run_status_node.py +1 -1
  174. cosmotech_api/models/run_template.py +1 -1
  175. cosmotech_api/models/run_template_handler_id.py +1 -1
  176. cosmotech_api/models/run_template_orchestrator.py +1 -1
  177. cosmotech_api/models/run_template_parameter.py +1 -1
  178. cosmotech_api/models/run_template_parameter_group.py +1 -1
  179. cosmotech_api/models/run_template_parameter_value.py +1 -1
  180. cosmotech_api/models/run_template_resource_sizing.py +1 -1
  181. cosmotech_api/models/run_template_step_source.py +1 -1
  182. cosmotech_api/models/runner.py +5 -24
  183. cosmotech_api/models/runner_access_control.py +1 -1
  184. cosmotech_api/models/runner_changed_parameter_value.py +7 -7
  185. cosmotech_api/models/runner_comparison_result.py +10 -10
  186. cosmotech_api/models/runner_data_download_info.py +9 -12
  187. cosmotech_api/models/runner_data_download_job.py +7 -7
  188. cosmotech_api/models/runner_job_state.py +1 -1
  189. cosmotech_api/models/runner_last_run.py +7 -7
  190. cosmotech_api/models/runner_parent_last_run.py +7 -7
  191. cosmotech_api/models/runner_resource_sizing.py +1 -1
  192. cosmotech_api/models/runner_role.py +1 -1
  193. cosmotech_api/models/runner_root_last_run.py +7 -7
  194. cosmotech_api/models/runner_run_template_parameter_value.py +1 -1
  195. cosmotech_api/models/runner_security.py +1 -1
  196. cosmotech_api/models/runner_validation_status.py +1 -1
  197. cosmotech_api/models/scenario.py +10 -10
  198. cosmotech_api/models/scenario_access_control.py +7 -7
  199. cosmotech_api/models/scenario_changed_parameter_value.py +7 -7
  200. cosmotech_api/models/scenario_comparison_result.py +10 -10
  201. cosmotech_api/models/scenario_data_download_info.py +7 -7
  202. cosmotech_api/models/scenario_data_download_job.py +7 -7
  203. cosmotech_api/models/scenario_job_state.py +1 -1
  204. cosmotech_api/models/scenario_last_run.py +7 -7
  205. cosmotech_api/models/scenario_resource_sizing.py +7 -7
  206. cosmotech_api/models/scenario_role.py +7 -7
  207. cosmotech_api/models/scenario_run.py +13 -13
  208. cosmotech_api/models/scenario_run_container.py +10 -10
  209. cosmotech_api/models/scenario_run_container_artifact.py +7 -7
  210. cosmotech_api/models/scenario_run_container_logs.py +7 -7
  211. cosmotech_api/models/scenario_run_logs.py +10 -10
  212. cosmotech_api/models/scenario_run_resource_requested.py +7 -7
  213. cosmotech_api/models/scenario_run_search.py +7 -7
  214. cosmotech_api/models/scenario_run_search_state.py +1 -1
  215. cosmotech_api/models/scenario_run_start_containers.py +10 -10
  216. cosmotech_api/models/scenario_run_state.py +1 -1
  217. cosmotech_api/models/scenario_run_status.py +10 -10
  218. cosmotech_api/models/scenario_run_status_node.py +7 -7
  219. cosmotech_api/models/scenario_run_template_parameter_value.py +7 -7
  220. cosmotech_api/models/scenario_security.py +10 -10
  221. cosmotech_api/models/scenario_validation_status.py +1 -1
  222. cosmotech_api/models/send_run_data_request.py +1 -1
  223. cosmotech_api/models/solution.py +2 -2
  224. cosmotech_api/models/solution_access_control.py +1 -1
  225. cosmotech_api/models/solution_role.py +1 -1
  226. cosmotech_api/models/solution_security.py +1 -1
  227. cosmotech_api/models/source_info.py +1 -1
  228. cosmotech_api/models/sub_dataset_graph_query.py +1 -1
  229. cosmotech_api/models/twin_graph_batch_result.py +1 -1
  230. cosmotech_api/models/twin_graph_hash.py +7 -7
  231. cosmotech_api/models/twin_graph_query.py +7 -7
  232. cosmotech_api/models/twincache_status_enum.py +1 -1
  233. cosmotech_api/models/validator.py +7 -7
  234. cosmotech_api/models/workspace.py +2 -2
  235. cosmotech_api/models/workspace_access_control.py +1 -1
  236. cosmotech_api/models/workspace_file.py +1 -1
  237. cosmotech_api/models/workspace_role.py +1 -1
  238. cosmotech_api/models/workspace_secret.py +7 -7
  239. cosmotech_api/models/workspace_security.py +1 -1
  240. cosmotech_api/models/workspace_solution.py +1 -1
  241. cosmotech_api/models/workspace_web_app.py +1 -1
  242. cosmotech_api/rest.py +1 -1
  243. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev8.dist-info}/METADATA +5 -13
  244. cosmotech_api-4.0.0.dev8.dist-info/RECORD +262 -0
  245. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev8.dist-info}/WHEEL +1 -1
  246. cosmotech_api/api/meta_api.py +0 -281
  247. cosmotech_api/models/about_info.py +0 -92
  248. cosmotech_api/models/about_info_version.py +0 -100
  249. cosmotech_api/models/organization_create_request.py +0 -95
  250. cosmotech_api/models/organization_update_request.py +0 -89
  251. cosmotech_api/models/runner_create_request.py +0 -154
  252. cosmotech_api/models/runner_update_request.py +0 -123
  253. cosmotech_api/models/solution_create_request.py +0 -143
  254. cosmotech_api/models/solution_update_request.py +0 -107
  255. cosmotech_api/models/workspace_create_request.py +0 -117
  256. cosmotech_api/models/workspace_update_request.py +0 -109
  257. cosmotech_api-3.3.4.dist-info/RECORD +0 -273
  258. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev8.dist-info}/LICENSE +0 -0
  259. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev8.dist-info}/top_level.txt +0 -0
@@ -5,7 +5,7 @@
5
5
 
6
6
  Cosmo Tech Platform API
7
7
 
8
- The version of the OpenAPI document: 3.3.4
8
+ The version of the OpenAPI document: 4.0.0-onprem.8
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -1258,7 +1258,7 @@ class RunApi:
1258
1258
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
1259
1259
  workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
1260
1260
  runner_id: Annotated[StrictStr, Field(description="the Runner identifier")],
1261
- page: Annotated[Optional[StrictInt], Field(description="page number to query")] = None,
1261
+ page: Annotated[Optional[StrictInt], Field(description="page number to query (first page is at index 0)")] = None,
1262
1262
  size: Annotated[Optional[StrictInt], Field(description="amount of result by page")] = None,
1263
1263
  _request_timeout: Union[
1264
1264
  None,
@@ -1282,7 +1282,7 @@ class RunApi:
1282
1282
  :type workspace_id: str
1283
1283
  :param runner_id: the Runner identifier (required)
1284
1284
  :type runner_id: str
1285
- :param page: page number to query
1285
+ :param page: page number to query (first page is at index 0)
1286
1286
  :type page: int
1287
1287
  :param size: amount of result by page
1288
1288
  :type size: int
@@ -1340,7 +1340,7 @@ class RunApi:
1340
1340
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
1341
1341
  workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
1342
1342
  runner_id: Annotated[StrictStr, Field(description="the Runner identifier")],
1343
- page: Annotated[Optional[StrictInt], Field(description="page number to query")] = None,
1343
+ page: Annotated[Optional[StrictInt], Field(description="page number to query (first page is at index 0)")] = None,
1344
1344
  size: Annotated[Optional[StrictInt], Field(description="amount of result by page")] = None,
1345
1345
  _request_timeout: Union[
1346
1346
  None,
@@ -1364,7 +1364,7 @@ class RunApi:
1364
1364
  :type workspace_id: str
1365
1365
  :param runner_id: the Runner identifier (required)
1366
1366
  :type runner_id: str
1367
- :param page: page number to query
1367
+ :param page: page number to query (first page is at index 0)
1368
1368
  :type page: int
1369
1369
  :param size: amount of result by page
1370
1370
  :type size: int
@@ -1422,7 +1422,7 @@ class RunApi:
1422
1422
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
1423
1423
  workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
1424
1424
  runner_id: Annotated[StrictStr, Field(description="the Runner identifier")],
1425
- page: Annotated[Optional[StrictInt], Field(description="page number to query")] = None,
1425
+ page: Annotated[Optional[StrictInt], Field(description="page number to query (first page is at index 0)")] = None,
1426
1426
  size: Annotated[Optional[StrictInt], Field(description="amount of result by page")] = None,
1427
1427
  _request_timeout: Union[
1428
1428
  None,
@@ -1446,7 +1446,7 @@ class RunApi:
1446
1446
  :type workspace_id: str
1447
1447
  :param runner_id: the Runner identifier (required)
1448
1448
  :type runner_id: str
1449
- :param page: page number to query
1449
+ :param page: page number to query (first page is at index 0)
1450
1450
  :type page: int
1451
1451
  :param size: amount of result by page
1452
1452
  :type size: int
@@ -1871,8 +1871,7 @@ class RunApi:
1871
1871
  _default_content_type = (
1872
1872
  self.api_client.select_header_content_type(
1873
1873
  [
1874
- 'application/json',
1875
- 'application/yaml'
1874
+ 'application/json'
1876
1875
  ]
1877
1876
  )
1878
1877
  )
@@ -2204,8 +2203,7 @@ class RunApi:
2204
2203
  _default_content_type = (
2205
2204
  self.api_client.select_header_content_type(
2206
2205
  [
2207
- 'application/json',
2208
- 'application/yaml'
2206
+ 'application/json'
2209
2207
  ]
2210
2208
  )
2211
2209
  )
@@ -5,7 +5,7 @@
5
5
 
6
6
  Cosmo Tech Platform API
7
7
 
8
- The version of the OpenAPI document: 3.3.4
8
+ The version of the OpenAPI document: 4.0.0-onprem.8
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -20,9 +20,9 @@ from typing_extensions import Annotated
20
20
  from pydantic import Field, StrictInt, StrictStr
21
21
  from typing import List, Optional
22
22
  from typing_extensions import Annotated
23
+ from cosmotech_api.models.created_run import CreatedRun
23
24
  from cosmotech_api.models.runner import Runner
24
25
  from cosmotech_api.models.runner_access_control import RunnerAccessControl
25
- from cosmotech_api.models.runner_last_run import RunnerLastRun
26
26
  from cosmotech_api.models.runner_role import RunnerRole
27
27
  from cosmotech_api.models.runner_security import RunnerSecurity
28
28
 
@@ -2424,7 +2424,7 @@ class RunnerApi:
2424
2424
  self,
2425
2425
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
2426
2426
  workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
2427
- page: Annotated[Optional[StrictInt], Field(description="page number to query")] = None,
2427
+ page: Annotated[Optional[StrictInt], Field(description="page number to query (first page is at index 0)")] = None,
2428
2428
  size: Annotated[Optional[StrictInt], Field(description="amount of result by page")] = None,
2429
2429
  _request_timeout: Union[
2430
2430
  None,
@@ -2446,7 +2446,7 @@ class RunnerApi:
2446
2446
  :type organization_id: str
2447
2447
  :param workspace_id: the Workspace identifier (required)
2448
2448
  :type workspace_id: str
2449
- :param page: page number to query
2449
+ :param page: page number to query (first page is at index 0)
2450
2450
  :type page: int
2451
2451
  :param size: amount of result by page
2452
2452
  :type size: int
@@ -2502,7 +2502,7 @@ class RunnerApi:
2502
2502
  self,
2503
2503
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
2504
2504
  workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
2505
- page: Annotated[Optional[StrictInt], Field(description="page number to query")] = None,
2505
+ page: Annotated[Optional[StrictInt], Field(description="page number to query (first page is at index 0)")] = None,
2506
2506
  size: Annotated[Optional[StrictInt], Field(description="amount of result by page")] = None,
2507
2507
  _request_timeout: Union[
2508
2508
  None,
@@ -2524,7 +2524,7 @@ class RunnerApi:
2524
2524
  :type organization_id: str
2525
2525
  :param workspace_id: the Workspace identifier (required)
2526
2526
  :type workspace_id: str
2527
- :param page: page number to query
2527
+ :param page: page number to query (first page is at index 0)
2528
2528
  :type page: int
2529
2529
  :param size: amount of result by page
2530
2530
  :type size: int
@@ -2580,7 +2580,7 @@ class RunnerApi:
2580
2580
  self,
2581
2581
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
2582
2582
  workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
2583
- page: Annotated[Optional[StrictInt], Field(description="page number to query")] = None,
2583
+ page: Annotated[Optional[StrictInt], Field(description="page number to query (first page is at index 0)")] = None,
2584
2584
  size: Annotated[Optional[StrictInt], Field(description="amount of result by page")] = None,
2585
2585
  _request_timeout: Union[
2586
2586
  None,
@@ -2602,7 +2602,7 @@ class RunnerApi:
2602
2602
  :type organization_id: str
2603
2603
  :param workspace_id: the Workspace identifier (required)
2604
2604
  :type workspace_id: str
2605
- :param page: page number to query
2605
+ :param page: page number to query (first page is at index 0)
2606
2606
  :type page: int
2607
2607
  :param size: amount of result by page
2608
2608
  :type size: int
@@ -3357,7 +3357,7 @@ class RunnerApi:
3357
3357
  _content_type: Optional[StrictStr] = None,
3358
3358
  _headers: Optional[Dict[StrictStr, Any]] = None,
3359
3359
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3360
- ) -> RunnerLastRun:
3360
+ ) -> CreatedRun:
3361
3361
  """Start a run with runner parameters
3362
3362
 
3363
3363
 
@@ -3400,7 +3400,7 @@ class RunnerApi:
3400
3400
  )
3401
3401
 
3402
3402
  _response_types_map: Dict[str, Optional[str]] = {
3403
- '202': "RunnerLastRun",
3403
+ '202': "CreatedRun",
3404
3404
  '404': None,
3405
3405
  }
3406
3406
  response_data = self.api_client.call_api(
@@ -3432,7 +3432,7 @@ class RunnerApi:
3432
3432
  _content_type: Optional[StrictStr] = None,
3433
3433
  _headers: Optional[Dict[StrictStr, Any]] = None,
3434
3434
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3435
- ) -> ApiResponse[RunnerLastRun]:
3435
+ ) -> ApiResponse[CreatedRun]:
3436
3436
  """Start a run with runner parameters
3437
3437
 
3438
3438
 
@@ -3475,7 +3475,7 @@ class RunnerApi:
3475
3475
  )
3476
3476
 
3477
3477
  _response_types_map: Dict[str, Optional[str]] = {
3478
- '202': "RunnerLastRun",
3478
+ '202': "CreatedRun",
3479
3479
  '404': None,
3480
3480
  }
3481
3481
  response_data = self.api_client.call_api(
@@ -3550,7 +3550,7 @@ class RunnerApi:
3550
3550
  )
3551
3551
 
3552
3552
  _response_types_map: Dict[str, Optional[str]] = {
3553
- '202': "RunnerLastRun",
3553
+ '202': "CreatedRun",
3554
3554
  '404': None,
3555
3555
  }
3556
3556
  response_data = self.api_client.call_api(
@@ -3916,7 +3916,7 @@ class RunnerApi:
3916
3916
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
3917
3917
  workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
3918
3918
  runner_id: Annotated[StrictStr, Field(description="the Runner identifier")],
3919
- runner: Annotated[Runner, Field(description="The new Runner details. This endpoint can't be used to update : - id - ownerId - organizationId - workspaceId - creationDate - security ")],
3919
+ runner: Annotated[Runner, Field(description="the new Runner details. This endpoint can't be used to update security")],
3920
3920
  _request_timeout: Union[
3921
3921
  None,
3922
3922
  Annotated[StrictFloat, Field(gt=0)],
@@ -3939,7 +3939,7 @@ class RunnerApi:
3939
3939
  :type workspace_id: str
3940
3940
  :param runner_id: the Runner identifier (required)
3941
3941
  :type runner_id: str
3942
- :param runner: The new Runner details. This endpoint can't be used to update : - id - ownerId - organizationId - workspaceId - creationDate - security (required)
3942
+ :param runner: the new Runner details. This endpoint can't be used to update security (required)
3943
3943
  :type runner: Runner
3944
3944
  :param _request_timeout: timeout setting for this request. If one
3945
3945
  number provided, it will be total request
@@ -3996,7 +3996,7 @@ class RunnerApi:
3996
3996
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
3997
3997
  workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
3998
3998
  runner_id: Annotated[StrictStr, Field(description="the Runner identifier")],
3999
- runner: Annotated[Runner, Field(description="The new Runner details. This endpoint can't be used to update : - id - ownerId - organizationId - workspaceId - creationDate - security ")],
3999
+ runner: Annotated[Runner, Field(description="the new Runner details. This endpoint can't be used to update security")],
4000
4000
  _request_timeout: Union[
4001
4001
  None,
4002
4002
  Annotated[StrictFloat, Field(gt=0)],
@@ -4019,7 +4019,7 @@ class RunnerApi:
4019
4019
  :type workspace_id: str
4020
4020
  :param runner_id: the Runner identifier (required)
4021
4021
  :type runner_id: str
4022
- :param runner: The new Runner details. This endpoint can't be used to update : - id - ownerId - organizationId - workspaceId - creationDate - security (required)
4022
+ :param runner: the new Runner details. This endpoint can't be used to update security (required)
4023
4023
  :type runner: Runner
4024
4024
  :param _request_timeout: timeout setting for this request. If one
4025
4025
  number provided, it will be total request
@@ -4076,7 +4076,7 @@ class RunnerApi:
4076
4076
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
4077
4077
  workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
4078
4078
  runner_id: Annotated[StrictStr, Field(description="the Runner identifier")],
4079
- runner: Annotated[Runner, Field(description="The new Runner details. This endpoint can't be used to update : - id - ownerId - organizationId - workspaceId - creationDate - security ")],
4079
+ runner: Annotated[Runner, Field(description="the new Runner details. This endpoint can't be used to update security")],
4080
4080
  _request_timeout: Union[
4081
4081
  None,
4082
4082
  Annotated[StrictFloat, Field(gt=0)],
@@ -4099,7 +4099,7 @@ class RunnerApi:
4099
4099
  :type workspace_id: str
4100
4100
  :param runner_id: the Runner identifier (required)
4101
4101
  :type runner_id: str
4102
- :param runner: The new Runner details. This endpoint can't be used to update : - id - ownerId - organizationId - workspaceId - creationDate - security (required)
4102
+ :param runner: the new Runner details. This endpoint can't be used to update security (required)
4103
4103
  :type runner: Runner
4104
4104
  :param _request_timeout: timeout setting for this request. If one
4105
4105
  number provided, it will be total request
@@ -4533,8 +4533,7 @@ class RunnerApi:
4533
4533
  _default_content_type = (
4534
4534
  self.api_client.select_header_content_type(
4535
4535
  [
4536
- 'application/json',
4537
- 'application/yaml'
4536
+ 'application/json'
4538
4537
  ]
4539
4538
  )
4540
4539
  )