cosmotech-api 3.3.4__py3-none-any.whl → 4.0.0.dev9__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.dev9.dist-info}/METADATA +5 -13
  244. cosmotech_api-4.0.0.dev9.dist-info/RECORD +262 -0
  245. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev9.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.dev9.dist-info}/LICENSE +0 -0
  259. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev9.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: 3.2.10
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -309,7 +309,7 @@ class ScenarioApi:
309
309
  _query_params: List[Tuple[str, str]] = []
310
310
  _header_params: Dict[str, Optional[str]] = _headers or {}
311
311
  _form_params: List[Tuple[str, str]] = []
312
- _files: Dict[str, Union[str, bytes]] = {}
312
+ _files: Dict[str, str] = {}
313
313
  _body_params: Optional[bytes] = None
314
314
 
315
315
  # process the path parameters
@@ -328,12 +328,11 @@ class ScenarioApi:
328
328
 
329
329
 
330
330
  # set the HTTP header `Accept`
331
- if 'Accept' not in _header_params:
332
- _header_params['Accept'] = self.api_client.select_header_accept(
333
- [
334
- 'application/json'
335
- ]
336
- )
331
+ _header_params['Accept'] = self.api_client.select_header_accept(
332
+ [
333
+ 'application/json'
334
+ ]
335
+ )
337
336
 
338
337
  # set the HTTP header `Content-Type`
339
338
  if _content_type:
@@ -342,8 +341,7 @@ class ScenarioApi:
342
341
  _default_content_type = (
343
342
  self.api_client.select_header_content_type(
344
343
  [
345
- 'application/json',
346
- 'application/yaml'
344
+ 'application/json'
347
345
  ]
348
346
  )
349
347
  )
@@ -630,7 +628,7 @@ class ScenarioApi:
630
628
  _query_params: List[Tuple[str, str]] = []
631
629
  _header_params: Dict[str, Optional[str]] = _headers or {}
632
630
  _form_params: List[Tuple[str, str]] = []
633
- _files: Dict[str, Union[str, bytes]] = {}
631
+ _files: Dict[str, str] = {}
634
632
  _body_params: Optional[bytes] = None
635
633
 
636
634
  # process the path parameters
@@ -649,12 +647,11 @@ class ScenarioApi:
649
647
 
650
648
 
651
649
  # set the HTTP header `Accept`
652
- if 'Accept' not in _header_params:
653
- _header_params['Accept'] = self.api_client.select_header_accept(
654
- [
655
- 'application/json'
656
- ]
657
- )
650
+ _header_params['Accept'] = self.api_client.select_header_accept(
651
+ [
652
+ 'application/json'
653
+ ]
654
+ )
658
655
 
659
656
  # set the HTTP header `Content-Type`
660
657
  if _content_type:
@@ -951,7 +948,7 @@ class ScenarioApi:
951
948
  _query_params: List[Tuple[str, str]] = []
952
949
  _header_params: Dict[str, Optional[str]] = _headers or {}
953
950
  _form_params: List[Tuple[str, str]] = []
954
- _files: Dict[str, Union[str, bytes]] = {}
951
+ _files: Dict[str, str] = {}
955
952
  _body_params: Optional[bytes] = None
956
953
 
957
954
  # process the path parameters
@@ -970,12 +967,11 @@ class ScenarioApi:
970
967
 
971
968
 
972
969
  # set the HTTP header `Accept`
973
- if 'Accept' not in _header_params:
974
- _header_params['Accept'] = self.api_client.select_header_accept(
975
- [
976
- 'application/json'
977
- ]
978
- )
970
+ _header_params['Accept'] = self.api_client.select_header_accept(
971
+ [
972
+ 'application/json'
973
+ ]
974
+ )
979
975
 
980
976
 
981
977
  # authentication setting
@@ -1245,7 +1241,7 @@ class ScenarioApi:
1245
1241
  _query_params: List[Tuple[str, str]] = []
1246
1242
  _header_params: Dict[str, Optional[str]] = _headers or {}
1247
1243
  _form_params: List[Tuple[str, str]] = []
1248
- _files: Dict[str, Union[str, bytes]] = {}
1244
+ _files: Dict[str, str] = {}
1249
1245
  _body_params: Optional[bytes] = None
1250
1246
 
1251
1247
  # process the path parameters
@@ -1262,12 +1258,11 @@ class ScenarioApi:
1262
1258
 
1263
1259
 
1264
1260
  # set the HTTP header `Accept`
1265
- if 'Accept' not in _header_params:
1266
- _header_params['Accept'] = self.api_client.select_header_accept(
1267
- [
1268
- 'application/json'
1269
- ]
1270
- )
1261
+ _header_params['Accept'] = self.api_client.select_header_accept(
1262
+ [
1263
+ 'application/json'
1264
+ ]
1265
+ )
1271
1266
 
1272
1267
  # set the HTTP header `Content-Type`
1273
1268
  if _content_type:
@@ -1538,7 +1533,7 @@ class ScenarioApi:
1538
1533
  _query_params: List[Tuple[str, str]] = []
1539
1534
  _header_params: Dict[str, Optional[str]] = _headers or {}
1540
1535
  _form_params: List[Tuple[str, str]] = []
1541
- _files: Dict[str, Union[str, bytes]] = {}
1536
+ _files: Dict[str, str] = {}
1542
1537
  _body_params: Optional[bytes] = None
1543
1538
 
1544
1539
  # process the path parameters
@@ -1821,7 +1816,7 @@ class ScenarioApi:
1821
1816
  _query_params: List[Tuple[str, str]] = []
1822
1817
  _header_params: Dict[str, Optional[str]] = _headers or {}
1823
1818
  _form_params: List[Tuple[str, str]] = []
1824
- _files: Dict[str, Union[str, bytes]] = {}
1819
+ _files: Dict[str, str] = {}
1825
1820
  _body_params: Optional[bytes] = None
1826
1821
 
1827
1822
  # process the path parameters
@@ -2106,7 +2101,7 @@ class ScenarioApi:
2106
2101
  _query_params: List[Tuple[str, str]] = []
2107
2102
  _header_params: Dict[str, Optional[str]] = _headers or {}
2108
2103
  _form_params: List[Tuple[str, str]] = []
2109
- _files: Dict[str, Union[str, bytes]] = {}
2104
+ _files: Dict[str, str] = {}
2110
2105
  _body_params: Optional[bytes] = None
2111
2106
 
2112
2107
  # process the path parameters
@@ -2123,12 +2118,11 @@ class ScenarioApi:
2123
2118
 
2124
2119
 
2125
2120
  # set the HTTP header `Accept`
2126
- if 'Accept' not in _header_params:
2127
- _header_params['Accept'] = self.api_client.select_header_accept(
2128
- [
2129
- 'application/json'
2130
- ]
2131
- )
2121
+ _header_params['Accept'] = self.api_client.select_header_accept(
2122
+ [
2123
+ 'application/json'
2124
+ ]
2125
+ )
2132
2126
 
2133
2127
 
2134
2128
  # authentication setting
@@ -2408,7 +2402,7 @@ class ScenarioApi:
2408
2402
  _query_params: List[Tuple[str, str]] = []
2409
2403
  _header_params: Dict[str, Optional[str]] = _headers or {}
2410
2404
  _form_params: List[Tuple[str, str]] = []
2411
- _files: Dict[str, Union[str, bytes]] = {}
2405
+ _files: Dict[str, str] = {}
2412
2406
  _body_params: Optional[bytes] = None
2413
2407
 
2414
2408
  # process the path parameters
@@ -2431,12 +2425,11 @@ class ScenarioApi:
2431
2425
 
2432
2426
 
2433
2427
  # set the HTTP header `Accept`
2434
- if 'Accept' not in _header_params:
2435
- _header_params['Accept'] = self.api_client.select_header_accept(
2436
- [
2437
- 'application/json'
2438
- ]
2439
- )
2428
+ _header_params['Accept'] = self.api_client.select_header_accept(
2429
+ [
2430
+ 'application/json'
2431
+ ]
2432
+ )
2440
2433
 
2441
2434
 
2442
2435
  # authentication setting
@@ -2729,7 +2722,7 @@ class ScenarioApi:
2729
2722
  _query_params: List[Tuple[str, str]] = []
2730
2723
  _header_params: Dict[str, Optional[str]] = _headers or {}
2731
2724
  _form_params: List[Tuple[str, str]] = []
2732
- _files: Dict[str, Union[str, bytes]] = {}
2725
+ _files: Dict[str, str] = {}
2733
2726
  _body_params: Optional[bytes] = None
2734
2727
 
2735
2728
  # process the path parameters
@@ -2754,12 +2747,11 @@ class ScenarioApi:
2754
2747
 
2755
2748
 
2756
2749
  # set the HTTP header `Accept`
2757
- if 'Accept' not in _header_params:
2758
- _header_params['Accept'] = self.api_client.select_header_accept(
2759
- [
2760
- 'application/json'
2761
- ]
2762
- )
2750
+ _header_params['Accept'] = self.api_client.select_header_accept(
2751
+ [
2752
+ 'application/json'
2753
+ ]
2754
+ )
2763
2755
 
2764
2756
 
2765
2757
  # authentication setting
@@ -3029,7 +3021,7 @@ class ScenarioApi:
3029
3021
  _query_params: List[Tuple[str, str]] = []
3030
3022
  _header_params: Dict[str, Optional[str]] = _headers or {}
3031
3023
  _form_params: List[Tuple[str, str]] = []
3032
- _files: Dict[str, Union[str, bytes]] = {}
3024
+ _files: Dict[str, str] = {}
3033
3025
  _body_params: Optional[bytes] = None
3034
3026
 
3035
3027
  # process the path parameters
@@ -3046,12 +3038,11 @@ class ScenarioApi:
3046
3038
 
3047
3039
 
3048
3040
  # set the HTTP header `Accept`
3049
- if 'Accept' not in _header_params:
3050
- _header_params['Accept'] = self.api_client.select_header_accept(
3051
- [
3052
- 'application/json'
3053
- ]
3054
- )
3041
+ _header_params['Accept'] = self.api_client.select_header_accept(
3042
+ [
3043
+ 'application/json'
3044
+ ]
3045
+ )
3055
3046
 
3056
3047
 
3057
3048
  # authentication setting
@@ -3334,7 +3325,7 @@ class ScenarioApi:
3334
3325
  _query_params: List[Tuple[str, str]] = []
3335
3326
  _header_params: Dict[str, Optional[str]] = _headers or {}
3336
3327
  _form_params: List[Tuple[str, str]] = []
3337
- _files: Dict[str, Union[str, bytes]] = {}
3328
+ _files: Dict[str, str] = {}
3338
3329
  _body_params: Optional[bytes] = None
3339
3330
 
3340
3331
  # process the path parameters
@@ -3353,12 +3344,11 @@ class ScenarioApi:
3353
3344
 
3354
3345
 
3355
3346
  # set the HTTP header `Accept`
3356
- if 'Accept' not in _header_params:
3357
- _header_params['Accept'] = self.api_client.select_header_accept(
3358
- [
3359
- 'application/json'
3360
- ]
3361
- )
3347
+ _header_params['Accept'] = self.api_client.select_header_accept(
3348
+ [
3349
+ 'application/json'
3350
+ ]
3351
+ )
3362
3352
 
3363
3353
 
3364
3354
  # authentication setting
@@ -3641,7 +3631,7 @@ class ScenarioApi:
3641
3631
  _query_params: List[Tuple[str, str]] = []
3642
3632
  _header_params: Dict[str, Optional[str]] = _headers or {}
3643
3633
  _form_params: List[Tuple[str, str]] = []
3644
- _files: Dict[str, Union[str, bytes]] = {}
3634
+ _files: Dict[str, str] = {}
3645
3635
  _body_params: Optional[bytes] = None
3646
3636
 
3647
3637
  # process the path parameters
@@ -3660,12 +3650,11 @@ class ScenarioApi:
3660
3650
 
3661
3651
 
3662
3652
  # set the HTTP header `Accept`
3663
- if 'Accept' not in _header_params:
3664
- _header_params['Accept'] = self.api_client.select_header_accept(
3665
- [
3666
- 'application/json'
3667
- ]
3668
- )
3653
+ _header_params['Accept'] = self.api_client.select_header_accept(
3654
+ [
3655
+ 'application/json'
3656
+ ]
3657
+ )
3669
3658
 
3670
3659
 
3671
3660
  # authentication setting
@@ -3945,7 +3934,7 @@ class ScenarioApi:
3945
3934
  _query_params: List[Tuple[str, str]] = []
3946
3935
  _header_params: Dict[str, Optional[str]] = _headers or {}
3947
3936
  _form_params: List[Tuple[str, str]] = []
3948
- _files: Dict[str, Union[str, bytes]] = {}
3937
+ _files: Dict[str, str] = {}
3949
3938
  _body_params: Optional[bytes] = None
3950
3939
 
3951
3940
  # process the path parameters
@@ -3964,12 +3953,11 @@ class ScenarioApi:
3964
3953
 
3965
3954
 
3966
3955
  # set the HTTP header `Accept`
3967
- if 'Accept' not in _header_params:
3968
- _header_params['Accept'] = self.api_client.select_header_accept(
3969
- [
3970
- 'application/json'
3971
- ]
3972
- )
3956
+ _header_params['Accept'] = self.api_client.select_header_accept(
3957
+ [
3958
+ 'application/json'
3959
+ ]
3960
+ )
3973
3961
 
3974
3962
 
3975
3963
  # authentication setting
@@ -4239,7 +4227,7 @@ class ScenarioApi:
4239
4227
  _query_params: List[Tuple[str, str]] = []
4240
4228
  _header_params: Dict[str, Optional[str]] = _headers or {}
4241
4229
  _form_params: List[Tuple[str, str]] = []
4242
- _files: Dict[str, Union[str, bytes]] = {}
4230
+ _files: Dict[str, str] = {}
4243
4231
  _body_params: Optional[bytes] = None
4244
4232
 
4245
4233
  # process the path parameters
@@ -4256,12 +4244,11 @@ class ScenarioApi:
4256
4244
 
4257
4245
 
4258
4246
  # set the HTTP header `Accept`
4259
- if 'Accept' not in _header_params:
4260
- _header_params['Accept'] = self.api_client.select_header_accept(
4261
- [
4262
- 'application/json'
4263
- ]
4264
- )
4247
+ _header_params['Accept'] = self.api_client.select_header_accept(
4248
+ [
4249
+ 'application/json'
4250
+ ]
4251
+ )
4265
4252
 
4266
4253
 
4267
4254
  # authentication setting
@@ -4531,7 +4518,7 @@ class ScenarioApi:
4531
4518
  _query_params: List[Tuple[str, str]] = []
4532
4519
  _header_params: Dict[str, Optional[str]] = _headers or {}
4533
4520
  _form_params: List[Tuple[str, str]] = []
4534
- _files: Dict[str, Union[str, bytes]] = {}
4521
+ _files: Dict[str, str] = {}
4535
4522
  _body_params: Optional[bytes] = None
4536
4523
 
4537
4524
  # process the path parameters
@@ -4548,12 +4535,11 @@ class ScenarioApi:
4548
4535
 
4549
4536
 
4550
4537
  # set the HTTP header `Accept`
4551
- if 'Accept' not in _header_params:
4552
- _header_params['Accept'] = self.api_client.select_header_accept(
4553
- [
4554
- 'application/json'
4555
- ]
4556
- )
4538
+ _header_params['Accept'] = self.api_client.select_header_accept(
4539
+ [
4540
+ 'application/json'
4541
+ ]
4542
+ )
4557
4543
 
4558
4544
 
4559
4545
  # authentication setting
@@ -4820,7 +4806,7 @@ class ScenarioApi:
4820
4806
  _query_params: List[Tuple[str, str]] = []
4821
4807
  _header_params: Dict[str, Optional[str]] = _headers or {}
4822
4808
  _form_params: List[Tuple[str, str]] = []
4823
- _files: Dict[str, Union[str, bytes]] = {}
4809
+ _files: Dict[str, str] = {}
4824
4810
  _body_params: Optional[bytes] = None
4825
4811
 
4826
4812
  # process the path parameters
@@ -4837,12 +4823,11 @@ class ScenarioApi:
4837
4823
 
4838
4824
 
4839
4825
  # set the HTTP header `Accept`
4840
- if 'Accept' not in _header_params:
4841
- _header_params['Accept'] = self.api_client.select_header_accept(
4842
- [
4843
- 'application/json'
4844
- ]
4845
- )
4826
+ _header_params['Accept'] = self.api_client.select_header_accept(
4827
+ [
4828
+ 'application/json'
4829
+ ]
4830
+ )
4846
4831
 
4847
4832
 
4848
4833
  # authentication setting
@@ -5096,7 +5081,7 @@ class ScenarioApi:
5096
5081
  _query_params: List[Tuple[str, str]] = []
5097
5082
  _header_params: Dict[str, Optional[str]] = _headers or {}
5098
5083
  _form_params: List[Tuple[str, str]] = []
5099
- _files: Dict[str, Union[str, bytes]] = {}
5084
+ _files: Dict[str, str] = {}
5100
5085
  _body_params: Optional[bytes] = None
5101
5086
 
5102
5087
  # process the path parameters
@@ -5111,12 +5096,11 @@ class ScenarioApi:
5111
5096
 
5112
5097
 
5113
5098
  # set the HTTP header `Accept`
5114
- if 'Accept' not in _header_params:
5115
- _header_params['Accept'] = self.api_client.select_header_accept(
5116
- [
5117
- 'application/json'
5118
- ]
5119
- )
5099
+ _header_params['Accept'] = self.api_client.select_header_accept(
5100
+ [
5101
+ 'application/json'
5102
+ ]
5103
+ )
5120
5104
 
5121
5105
 
5122
5106
  # authentication setting
@@ -5386,7 +5370,7 @@ class ScenarioApi:
5386
5370
  _query_params: List[Tuple[str, str]] = []
5387
5371
  _header_params: Dict[str, Optional[str]] = _headers or {}
5388
5372
  _form_params: List[Tuple[str, str]] = []
5389
- _files: Dict[str, Union[str, bytes]] = {}
5373
+ _files: Dict[str, str] = {}
5390
5374
  _body_params: Optional[bytes] = None
5391
5375
 
5392
5376
  # process the path parameters
@@ -5684,7 +5668,7 @@ class ScenarioApi:
5684
5668
  _query_params: List[Tuple[str, str]] = []
5685
5669
  _header_params: Dict[str, Optional[str]] = _headers or {}
5686
5670
  _form_params: List[Tuple[str, str]] = []
5687
- _files: Dict[str, Union[str, bytes]] = {}
5671
+ _files: Dict[str, str] = {}
5688
5672
  _body_params: Optional[bytes] = None
5689
5673
 
5690
5674
  # process the path parameters
@@ -5984,7 +5968,7 @@ class ScenarioApi:
5984
5968
  _query_params: List[Tuple[str, str]] = []
5985
5969
  _header_params: Dict[str, Optional[str]] = _headers or {}
5986
5970
  _form_params: List[Tuple[str, str]] = []
5987
- _files: Dict[str, Union[str, bytes]] = {}
5971
+ _files: Dict[str, str] = {}
5988
5972
  _body_params: Optional[bytes] = None
5989
5973
 
5990
5974
  # process the path parameters
@@ -6003,12 +5987,11 @@ class ScenarioApi:
6003
5987
 
6004
5988
 
6005
5989
  # set the HTTP header `Accept`
6006
- if 'Accept' not in _header_params:
6007
- _header_params['Accept'] = self.api_client.select_header_accept(
6008
- [
6009
- 'application/json'
6010
- ]
6011
- )
5990
+ _header_params['Accept'] = self.api_client.select_header_accept(
5991
+ [
5992
+ 'application/json'
5993
+ ]
5994
+ )
6012
5995
 
6013
5996
  # set the HTTP header `Content-Type`
6014
5997
  if _content_type:
@@ -6054,7 +6037,7 @@ class ScenarioApi:
6054
6037
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
6055
6038
  workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
6056
6039
  scenario_id: Annotated[StrictStr, Field(description="the Scenario identifier")],
6057
- scenario: Annotated[Scenario, Field(description="The new Scenario details. This endpoint can't be used to update : - id - ownerId - datasetList - solutionId - runTemplateId - parametersValues - security ")],
6040
+ scenario: Annotated[Scenario, Field(description="the new Scenario details. This endpoint can't be used to update security")],
6058
6041
  _request_timeout: Union[
6059
6042
  None,
6060
6043
  Annotated[StrictFloat, Field(gt=0)],
@@ -6077,7 +6060,7 @@ class ScenarioApi:
6077
6060
  :type workspace_id: str
6078
6061
  :param scenario_id: the Scenario identifier (required)
6079
6062
  :type scenario_id: str
6080
- :param scenario: The new Scenario details. This endpoint can't be used to update : - id - ownerId - datasetList - solutionId - runTemplateId - parametersValues - security (required)
6063
+ :param scenario: the new Scenario details. This endpoint can't be used to update security (required)
6081
6064
  :type scenario: Scenario
6082
6065
  :param _request_timeout: timeout setting for this request. If one
6083
6066
  number provided, it will be total request
@@ -6135,7 +6118,7 @@ class ScenarioApi:
6135
6118
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
6136
6119
  workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
6137
6120
  scenario_id: Annotated[StrictStr, Field(description="the Scenario identifier")],
6138
- scenario: Annotated[Scenario, Field(description="The new Scenario details. This endpoint can't be used to update : - id - ownerId - datasetList - solutionId - runTemplateId - parametersValues - security ")],
6121
+ scenario: Annotated[Scenario, Field(description="the new Scenario details. This endpoint can't be used to update security")],
6139
6122
  _request_timeout: Union[
6140
6123
  None,
6141
6124
  Annotated[StrictFloat, Field(gt=0)],
@@ -6158,7 +6141,7 @@ class ScenarioApi:
6158
6141
  :type workspace_id: str
6159
6142
  :param scenario_id: the Scenario identifier (required)
6160
6143
  :type scenario_id: str
6161
- :param scenario: The new Scenario details. This endpoint can't be used to update : - id - ownerId - datasetList - solutionId - runTemplateId - parametersValues - security (required)
6144
+ :param scenario: the new Scenario details. This endpoint can't be used to update security (required)
6162
6145
  :type scenario: Scenario
6163
6146
  :param _request_timeout: timeout setting for this request. If one
6164
6147
  number provided, it will be total request
@@ -6216,7 +6199,7 @@ class ScenarioApi:
6216
6199
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
6217
6200
  workspace_id: Annotated[StrictStr, Field(description="the Workspace identifier")],
6218
6201
  scenario_id: Annotated[StrictStr, Field(description="the Scenario identifier")],
6219
- scenario: Annotated[Scenario, Field(description="The new Scenario details. This endpoint can't be used to update : - id - ownerId - datasetList - solutionId - runTemplateId - parametersValues - security ")],
6202
+ scenario: Annotated[Scenario, Field(description="the new Scenario details. This endpoint can't be used to update security")],
6220
6203
  _request_timeout: Union[
6221
6204
  None,
6222
6205
  Annotated[StrictFloat, Field(gt=0)],
@@ -6239,7 +6222,7 @@ class ScenarioApi:
6239
6222
  :type workspace_id: str
6240
6223
  :param scenario_id: the Scenario identifier (required)
6241
6224
  :type scenario_id: str
6242
- :param scenario: The new Scenario details. This endpoint can't be used to update : - id - ownerId - datasetList - solutionId - runTemplateId - parametersValues - security (required)
6225
+ :param scenario: the new Scenario details. This endpoint can't be used to update security (required)
6243
6226
  :type scenario: Scenario
6244
6227
  :param _request_timeout: timeout setting for this request. If one
6245
6228
  number provided, it will be total request
@@ -6308,7 +6291,7 @@ class ScenarioApi:
6308
6291
  _query_params: List[Tuple[str, str]] = []
6309
6292
  _header_params: Dict[str, Optional[str]] = _headers or {}
6310
6293
  _form_params: List[Tuple[str, str]] = []
6311
- _files: Dict[str, Union[str, bytes]] = {}
6294
+ _files: Dict[str, str] = {}
6312
6295
  _body_params: Optional[bytes] = None
6313
6296
 
6314
6297
  # process the path parameters
@@ -6327,12 +6310,11 @@ class ScenarioApi:
6327
6310
 
6328
6311
 
6329
6312
  # set the HTTP header `Accept`
6330
- if 'Accept' not in _header_params:
6331
- _header_params['Accept'] = self.api_client.select_header_accept(
6332
- [
6333
- 'application/json'
6334
- ]
6335
- )
6313
+ _header_params['Accept'] = self.api_client.select_header_accept(
6314
+ [
6315
+ 'application/json'
6316
+ ]
6317
+ )
6336
6318
 
6337
6319
  # set the HTTP header `Content-Type`
6338
6320
  if _content_type:
@@ -6642,7 +6624,7 @@ class ScenarioApi:
6642
6624
  _query_params: List[Tuple[str, str]] = []
6643
6625
  _header_params: Dict[str, Optional[str]] = _headers or {}
6644
6626
  _form_params: List[Tuple[str, str]] = []
6645
- _files: Dict[str, Union[str, bytes]] = {}
6627
+ _files: Dict[str, str] = {}
6646
6628
  _body_params: Optional[bytes] = None
6647
6629
 
6648
6630
  # process the path parameters
@@ -6663,12 +6645,11 @@ class ScenarioApi:
6663
6645
 
6664
6646
 
6665
6647
  # set the HTTP header `Accept`
6666
- if 'Accept' not in _header_params:
6667
- _header_params['Accept'] = self.api_client.select_header_accept(
6668
- [
6669
- 'application/json'
6670
- ]
6671
- )
6648
+ _header_params['Accept'] = self.api_client.select_header_accept(
6649
+ [
6650
+ 'application/json'
6651
+ ]
6652
+ )
6672
6653
 
6673
6654
  # set the HTTP header `Content-Type`
6674
6655
  if _content_type:
@@ -6677,8 +6658,7 @@ class ScenarioApi:
6677
6658
  _default_content_type = (
6678
6659
  self.api_client.select_header_content_type(
6679
6660
  [
6680
- 'application/json',
6681
- 'application/yaml'
6661
+ 'application/json'
6682
6662
  ]
6683
6663
  )
6684
6664
  )