cosmotech-api 3.2.6.dev2__py3-none-any.whl → 3.3.4__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 (258) hide show
  1. cosmotech_api/__init__.py +5 -1
  2. cosmotech_api/api/connector_api.py +31 -27
  3. cosmotech_api/api/dataset_api.py +255 -224
  4. cosmotech_api/api/meta_api.py +281 -0
  5. cosmotech_api/api/organization_api.py +120 -102
  6. cosmotech_api/api/run_api.py +49 -41
  7. cosmotech_api/api/runner_api.py +103 -89
  8. cosmotech_api/api/scenario_api.py +141 -121
  9. cosmotech_api/api/scenariorun_api.py +76 -66
  10. cosmotech_api/api/scenariorunresult_api.py +1 -1
  11. cosmotech_api/api/solution_api.py +127 -108
  12. cosmotech_api/api/twingraph_api.py +83 -72
  13. cosmotech_api/api/validator_api.py +1 -1
  14. cosmotech_api/api/workspace_api.py +132 -121
  15. cosmotech_api/api_client.py +59 -29
  16. cosmotech_api/configuration.py +18 -4
  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 +21 -5
  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 +11 -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 +5 -1
  126. cosmotech_api/models/about_info.py +92 -0
  127. cosmotech_api/models/about_info_version.py +100 -0
  128. cosmotech_api/models/component_role_permissions.py +7 -7
  129. cosmotech_api/models/connector.py +10 -10
  130. cosmotech_api/models/connector_parameter.py +7 -7
  131. cosmotech_api/models/connector_parameter_group.py +10 -10
  132. cosmotech_api/models/container_resource_size_info.py +7 -7
  133. cosmotech_api/models/container_resource_sizing.py +7 -7
  134. cosmotech_api/models/created_run.py +88 -0
  135. cosmotech_api/models/dataset.py +10 -10
  136. cosmotech_api/models/dataset_access_control.py +7 -7
  137. cosmotech_api/models/dataset_compatibility.py +7 -7
  138. cosmotech_api/models/dataset_connector.py +7 -7
  139. cosmotech_api/models/dataset_copy_parameters.py +7 -7
  140. cosmotech_api/models/dataset_role.py +7 -7
  141. cosmotech_api/models/dataset_search.py +7 -7
  142. cosmotech_api/models/dataset_security.py +10 -10
  143. cosmotech_api/models/dataset_source_type.py +1 -1
  144. cosmotech_api/models/dataset_twin_graph_hash.py +7 -7
  145. cosmotech_api/models/dataset_twin_graph_info.py +7 -7
  146. cosmotech_api/models/dataset_twin_graph_query.py +7 -7
  147. cosmotech_api/models/delete_historical_data.py +7 -7
  148. cosmotech_api/models/file_upload_metadata.py +7 -7
  149. cosmotech_api/models/file_upload_validation.py +13 -13
  150. cosmotech_api/models/graph_properties.py +7 -7
  151. cosmotech_api/models/ingestion_status_enum.py +1 -1
  152. cosmotech_api/models/io_types_enum.py +1 -1
  153. cosmotech_api/models/organization.py +7 -7
  154. cosmotech_api/models/organization_access_control.py +7 -7
  155. cosmotech_api/models/organization_create_request.py +95 -0
  156. cosmotech_api/models/organization_role.py +7 -7
  157. cosmotech_api/models/organization_security.py +10 -10
  158. cosmotech_api/models/organization_service.py +7 -7
  159. cosmotech_api/models/organization_services.py +7 -7
  160. cosmotech_api/models/organization_update_request.py +89 -0
  161. cosmotech_api/models/query_result.py +7 -7
  162. cosmotech_api/models/resource_size_info.py +7 -7
  163. cosmotech_api/models/run.py +13 -13
  164. cosmotech_api/models/run_container.py +10 -10
  165. cosmotech_api/models/run_container_artifact.py +7 -7
  166. cosmotech_api/models/run_container_logs.py +7 -7
  167. cosmotech_api/models/run_data.py +7 -7
  168. cosmotech_api/models/run_data_query.py +7 -7
  169. cosmotech_api/models/run_logs.py +10 -10
  170. cosmotech_api/models/run_logs_entry.py +88 -0
  171. cosmotech_api/models/run_resource_requested.py +7 -7
  172. cosmotech_api/models/run_search.py +7 -7
  173. cosmotech_api/models/run_search_state.py +1 -1
  174. cosmotech_api/models/run_start_containers.py +10 -10
  175. cosmotech_api/models/run_state.py +1 -1
  176. cosmotech_api/models/run_status.py +10 -10
  177. cosmotech_api/models/run_status_node.py +7 -7
  178. cosmotech_api/models/run_template.py +7 -7
  179. cosmotech_api/models/run_template_handler_id.py +1 -1
  180. cosmotech_api/models/run_template_orchestrator.py +1 -1
  181. cosmotech_api/models/run_template_parameter.py +7 -7
  182. cosmotech_api/models/run_template_parameter_group.py +7 -7
  183. cosmotech_api/models/run_template_parameter_value.py +7 -7
  184. cosmotech_api/models/run_template_resource_sizing.py +7 -7
  185. cosmotech_api/models/run_template_step_source.py +1 -1
  186. cosmotech_api/models/runner.py +32 -13
  187. cosmotech_api/models/runner_access_control.py +7 -7
  188. cosmotech_api/models/runner_changed_parameter_value.py +7 -7
  189. cosmotech_api/models/runner_comparison_result.py +10 -10
  190. cosmotech_api/models/runner_create_request.py +154 -0
  191. cosmotech_api/models/runner_data_download_info.py +12 -9
  192. cosmotech_api/models/runner_data_download_job.py +7 -7
  193. cosmotech_api/models/runner_job_state.py +1 -1
  194. cosmotech_api/models/runner_last_run.py +7 -7
  195. cosmotech_api/models/runner_parent_last_run.py +7 -7
  196. cosmotech_api/models/runner_resource_sizing.py +7 -7
  197. cosmotech_api/models/runner_role.py +7 -7
  198. cosmotech_api/models/runner_root_last_run.py +7 -7
  199. cosmotech_api/models/runner_run_template_parameter_value.py +7 -7
  200. cosmotech_api/models/runner_security.py +10 -10
  201. cosmotech_api/models/runner_update_request.py +123 -0
  202. cosmotech_api/models/runner_validation_status.py +1 -1
  203. cosmotech_api/models/scenario.py +11 -11
  204. cosmotech_api/models/scenario_access_control.py +7 -7
  205. cosmotech_api/models/scenario_changed_parameter_value.py +7 -7
  206. cosmotech_api/models/scenario_comparison_result.py +10 -10
  207. cosmotech_api/models/scenario_data_download_info.py +7 -7
  208. cosmotech_api/models/scenario_data_download_job.py +7 -7
  209. cosmotech_api/models/scenario_job_state.py +1 -1
  210. cosmotech_api/models/scenario_last_run.py +7 -7
  211. cosmotech_api/models/scenario_resource_sizing.py +7 -7
  212. cosmotech_api/models/scenario_role.py +7 -7
  213. cosmotech_api/models/scenario_run.py +13 -13
  214. cosmotech_api/models/scenario_run_container.py +10 -10
  215. cosmotech_api/models/scenario_run_container_artifact.py +7 -7
  216. cosmotech_api/models/scenario_run_container_logs.py +7 -7
  217. cosmotech_api/models/scenario_run_logs.py +10 -10
  218. cosmotech_api/models/scenario_run_resource_requested.py +7 -7
  219. cosmotech_api/models/scenario_run_search.py +7 -7
  220. cosmotech_api/models/scenario_run_search_state.py +1 -1
  221. cosmotech_api/models/scenario_run_start_containers.py +10 -10
  222. cosmotech_api/models/scenario_run_state.py +1 -1
  223. cosmotech_api/models/scenario_run_status.py +10 -10
  224. cosmotech_api/models/scenario_run_status_node.py +7 -7
  225. cosmotech_api/models/scenario_run_template_parameter_value.py +7 -7
  226. cosmotech_api/models/scenario_security.py +10 -10
  227. cosmotech_api/models/scenario_validation_status.py +1 -1
  228. cosmotech_api/models/send_run_data_request.py +7 -7
  229. cosmotech_api/models/solution.py +16 -16
  230. cosmotech_api/models/solution_access_control.py +7 -7
  231. cosmotech_api/models/solution_create_request.py +143 -0
  232. cosmotech_api/models/solution_role.py +7 -7
  233. cosmotech_api/models/solution_security.py +10 -10
  234. cosmotech_api/models/solution_update_request.py +107 -0
  235. cosmotech_api/models/source_info.py +7 -7
  236. cosmotech_api/models/sub_dataset_graph_query.py +7 -7
  237. cosmotech_api/models/twin_graph_batch_result.py +7 -7
  238. cosmotech_api/models/twin_graph_hash.py +7 -7
  239. cosmotech_api/models/twin_graph_query.py +7 -7
  240. cosmotech_api/models/twincache_status_enum.py +1 -1
  241. cosmotech_api/models/validator.py +7 -7
  242. cosmotech_api/models/workspace.py +7 -7
  243. cosmotech_api/models/workspace_access_control.py +7 -7
  244. cosmotech_api/models/workspace_create_request.py +117 -0
  245. cosmotech_api/models/workspace_file.py +7 -7
  246. cosmotech_api/models/workspace_role.py +7 -7
  247. cosmotech_api/models/workspace_secret.py +7 -7
  248. cosmotech_api/models/workspace_security.py +10 -10
  249. cosmotech_api/models/workspace_solution.py +7 -7
  250. cosmotech_api/models/workspace_update_request.py +109 -0
  251. cosmotech_api/models/workspace_web_app.py +7 -7
  252. cosmotech_api/rest.py +3 -1
  253. {cosmotech_api-3.2.6.dev2.dist-info → cosmotech_api-3.3.4.dist-info}/METADATA +13 -5
  254. cosmotech_api-3.3.4.dist-info/RECORD +273 -0
  255. {cosmotech_api-3.2.6.dev2.dist-info → cosmotech_api-3.3.4.dist-info}/WHEEL +1 -1
  256. cosmotech_api-3.2.6.dev2.dist-info/RECORD +0 -260
  257. {cosmotech_api-3.2.6.dev2.dist-info → cosmotech_api-3.3.4.dist-info}/LICENSE +0 -0
  258. {cosmotech_api-3.2.6.dev2.dist-info → cosmotech_api-3.3.4.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.2.6
8
+ The version of the OpenAPI document: 3.3.4
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -292,7 +292,7 @@ class SolutionApi:
292
292
  _query_params: List[Tuple[str, str]] = []
293
293
  _header_params: Dict[str, Optional[str]] = _headers or {}
294
294
  _form_params: List[Tuple[str, str]] = []
295
- _files: Dict[str, str] = {}
295
+ _files: Dict[str, Union[str, bytes]] = {}
296
296
  _body_params: Optional[bytes] = None
297
297
 
298
298
  # process the path parameters
@@ -309,11 +309,12 @@ class SolutionApi:
309
309
 
310
310
 
311
311
  # set the HTTP header `Accept`
312
- _header_params['Accept'] = self.api_client.select_header_accept(
313
- [
314
- 'application/json'
315
- ]
316
- )
312
+ if 'Accept' not in _header_params:
313
+ _header_params['Accept'] = self.api_client.select_header_accept(
314
+ [
315
+ 'application/json'
316
+ ]
317
+ )
317
318
 
318
319
  # set the HTTP header `Content-Type`
319
320
  if _content_type:
@@ -322,7 +323,8 @@ class SolutionApi:
322
323
  _default_content_type = (
323
324
  self.api_client.select_header_content_type(
324
325
  [
325
- 'application/json'
326
+ 'application/json',
327
+ 'application/yaml'
326
328
  ]
327
329
  )
328
330
  )
@@ -597,7 +599,7 @@ class SolutionApi:
597
599
  _query_params: List[Tuple[str, str]] = []
598
600
  _header_params: Dict[str, Optional[str]] = _headers or {}
599
601
  _form_params: List[Tuple[str, str]] = []
600
- _files: Dict[str, str] = {}
602
+ _files: Dict[str, Union[str, bytes]] = {}
601
603
  _body_params: Optional[bytes] = None
602
604
 
603
605
  # process the path parameters
@@ -614,11 +616,12 @@ class SolutionApi:
614
616
 
615
617
 
616
618
  # set the HTTP header `Accept`
617
- _header_params['Accept'] = self.api_client.select_header_accept(
618
- [
619
- 'application/json'
620
- ]
621
- )
619
+ if 'Accept' not in _header_params:
620
+ _header_params['Accept'] = self.api_client.select_header_accept(
621
+ [
622
+ 'application/json'
623
+ ]
624
+ )
622
625
 
623
626
  # set the HTTP header `Content-Type`
624
627
  if _content_type:
@@ -627,7 +630,8 @@ class SolutionApi:
627
630
  _default_content_type = (
628
631
  self.api_client.select_header_content_type(
629
632
  [
630
- 'application/json'
633
+ 'application/json',
634
+ 'application/yaml'
631
635
  ]
632
636
  )
633
637
  )
@@ -902,7 +906,7 @@ class SolutionApi:
902
906
  _query_params: List[Tuple[str, str]] = []
903
907
  _header_params: Dict[str, Optional[str]] = _headers or {}
904
908
  _form_params: List[Tuple[str, str]] = []
905
- _files: Dict[str, str] = {}
909
+ _files: Dict[str, Union[str, bytes]] = {}
906
910
  _body_params: Optional[bytes] = None
907
911
 
908
912
  # process the path parameters
@@ -919,11 +923,12 @@ class SolutionApi:
919
923
 
920
924
 
921
925
  # set the HTTP header `Accept`
922
- _header_params['Accept'] = self.api_client.select_header_accept(
923
- [
924
- 'application/json'
925
- ]
926
- )
926
+ if 'Accept' not in _header_params:
927
+ _header_params['Accept'] = self.api_client.select_header_accept(
928
+ [
929
+ 'application/json'
930
+ ]
931
+ )
927
932
 
928
933
  # set the HTTP header `Content-Type`
929
934
  if _content_type:
@@ -932,7 +937,8 @@ class SolutionApi:
932
937
  _default_content_type = (
933
938
  self.api_client.select_header_content_type(
934
939
  [
935
- 'application/json'
940
+ 'application/json',
941
+ 'application/yaml'
936
942
  ]
937
943
  )
938
944
  )
@@ -1203,7 +1209,7 @@ class SolutionApi:
1203
1209
  _query_params: List[Tuple[str, str]] = []
1204
1210
  _header_params: Dict[str, Optional[str]] = _headers or {}
1205
1211
  _form_params: List[Tuple[str, str]] = []
1206
- _files: Dict[str, str] = {}
1212
+ _files: Dict[str, Union[str, bytes]] = {}
1207
1213
  _body_params: Optional[bytes] = None
1208
1214
 
1209
1215
  # process the path parameters
@@ -1220,11 +1226,12 @@ class SolutionApi:
1220
1226
 
1221
1227
 
1222
1228
  # set the HTTP header `Accept`
1223
- _header_params['Accept'] = self.api_client.select_header_accept(
1224
- [
1225
- 'application/json'
1226
- ]
1227
- )
1229
+ if 'Accept' not in _header_params:
1230
+ _header_params['Accept'] = self.api_client.select_header_accept(
1231
+ [
1232
+ 'application/json'
1233
+ ]
1234
+ )
1228
1235
 
1229
1236
  # set the HTTP header `Content-Type`
1230
1237
  if _content_type:
@@ -1492,7 +1499,7 @@ class SolutionApi:
1492
1499
  _query_params: List[Tuple[str, str]] = []
1493
1500
  _header_params: Dict[str, Optional[str]] = _headers or {}
1494
1501
  _form_params: List[Tuple[str, str]] = []
1495
- _files: Dict[str, str] = {}
1502
+ _files: Dict[str, Union[str, bytes]] = {}
1496
1503
  _body_params: Optional[bytes] = None
1497
1504
 
1498
1505
  # process the path parameters
@@ -1507,11 +1514,12 @@ class SolutionApi:
1507
1514
 
1508
1515
 
1509
1516
  # set the HTTP header `Accept`
1510
- _header_params['Accept'] = self.api_client.select_header_accept(
1511
- [
1512
- 'application/json'
1513
- ]
1514
- )
1517
+ if 'Accept' not in _header_params:
1518
+ _header_params['Accept'] = self.api_client.select_header_accept(
1519
+ [
1520
+ 'application/json'
1521
+ ]
1522
+ )
1515
1523
 
1516
1524
  # set the HTTP header `Content-Type`
1517
1525
  if _content_type:
@@ -1779,7 +1787,7 @@ class SolutionApi:
1779
1787
  _query_params: List[Tuple[str, str]] = []
1780
1788
  _header_params: Dict[str, Optional[str]] = _headers or {}
1781
1789
  _form_params: List[Tuple[str, str]] = []
1782
- _files: Dict[str, str] = {}
1790
+ _files: Dict[str, Union[str, bytes]] = {}
1783
1791
  _body_params: Optional[bytes] = None
1784
1792
 
1785
1793
  # process the path parameters
@@ -2059,7 +2067,7 @@ class SolutionApi:
2059
2067
  _query_params: List[Tuple[str, str]] = []
2060
2068
  _header_params: Dict[str, Optional[str]] = _headers or {}
2061
2069
  _form_params: List[Tuple[str, str]] = []
2062
- _files: Dict[str, str] = {}
2070
+ _files: Dict[str, Union[str, bytes]] = {}
2063
2071
  _body_params: Optional[bytes] = None
2064
2072
 
2065
2073
  # process the path parameters
@@ -2354,7 +2362,7 @@ class SolutionApi:
2354
2362
  _query_params: List[Tuple[str, str]] = []
2355
2363
  _header_params: Dict[str, Optional[str]] = _headers or {}
2356
2364
  _form_params: List[Tuple[str, str]] = []
2357
- _files: Dict[str, str] = {}
2365
+ _files: Dict[str, Union[str, bytes]] = {}
2358
2366
  _body_params: Optional[bytes] = None
2359
2367
 
2360
2368
  # process the path parameters
@@ -2373,11 +2381,12 @@ class SolutionApi:
2373
2381
 
2374
2382
 
2375
2383
  # set the HTTP header `Accept`
2376
- _header_params['Accept'] = self.api_client.select_header_accept(
2377
- [
2378
- 'application/octet-stream'
2379
- ]
2380
- )
2384
+ if 'Accept' not in _header_params:
2385
+ _header_params['Accept'] = self.api_client.select_header_accept(
2386
+ [
2387
+ 'application/octet-stream'
2388
+ ]
2389
+ )
2381
2390
 
2382
2391
 
2383
2392
  # authentication setting
@@ -2641,7 +2650,7 @@ class SolutionApi:
2641
2650
  _query_params: List[Tuple[str, str]] = []
2642
2651
  _header_params: Dict[str, Optional[str]] = _headers or {}
2643
2652
  _form_params: List[Tuple[str, str]] = []
2644
- _files: Dict[str, str] = {}
2653
+ _files: Dict[str, Union[str, bytes]] = {}
2645
2654
  _body_params: Optional[bytes] = None
2646
2655
 
2647
2656
  # process the path parameters
@@ -2662,11 +2671,12 @@ class SolutionApi:
2662
2671
 
2663
2672
 
2664
2673
  # set the HTTP header `Accept`
2665
- _header_params['Accept'] = self.api_client.select_header_accept(
2666
- [
2667
- 'application/json'
2668
- ]
2669
- )
2674
+ if 'Accept' not in _header_params:
2675
+ _header_params['Accept'] = self.api_client.select_header_accept(
2676
+ [
2677
+ 'application/json'
2678
+ ]
2679
+ )
2670
2680
 
2671
2681
 
2672
2682
  # authentication setting
@@ -2920,7 +2930,7 @@ class SolutionApi:
2920
2930
  _query_params: List[Tuple[str, str]] = []
2921
2931
  _header_params: Dict[str, Optional[str]] = _headers or {}
2922
2932
  _form_params: List[Tuple[str, str]] = []
2923
- _files: Dict[str, str] = {}
2933
+ _files: Dict[str, Union[str, bytes]] = {}
2924
2934
  _body_params: Optional[bytes] = None
2925
2935
 
2926
2936
  # process the path parameters
@@ -2935,11 +2945,12 @@ class SolutionApi:
2935
2945
 
2936
2946
 
2937
2947
  # set the HTTP header `Accept`
2938
- _header_params['Accept'] = self.api_client.select_header_accept(
2939
- [
2940
- 'application/json'
2941
- ]
2942
- )
2948
+ if 'Accept' not in _header_params:
2949
+ _header_params['Accept'] = self.api_client.select_header_accept(
2950
+ [
2951
+ 'application/json'
2952
+ ]
2953
+ )
2943
2954
 
2944
2955
 
2945
2956
  # authentication setting
@@ -3206,7 +3217,7 @@ class SolutionApi:
3206
3217
  _query_params: List[Tuple[str, str]] = []
3207
3218
  _header_params: Dict[str, Optional[str]] = _headers or {}
3208
3219
  _form_params: List[Tuple[str, str]] = []
3209
- _files: Dict[str, str] = {}
3220
+ _files: Dict[str, Union[str, bytes]] = {}
3210
3221
  _body_params: Optional[bytes] = None
3211
3222
 
3212
3223
  # process the path parameters
@@ -3223,11 +3234,12 @@ class SolutionApi:
3223
3234
 
3224
3235
 
3225
3236
  # set the HTTP header `Accept`
3226
- _header_params['Accept'] = self.api_client.select_header_accept(
3227
- [
3228
- 'application/json'
3229
- ]
3230
- )
3237
+ if 'Accept' not in _header_params:
3238
+ _header_params['Accept'] = self.api_client.select_header_accept(
3239
+ [
3240
+ 'application/json'
3241
+ ]
3242
+ )
3231
3243
 
3232
3244
 
3233
3245
  # authentication setting
@@ -3481,7 +3493,7 @@ class SolutionApi:
3481
3493
  _query_params: List[Tuple[str, str]] = []
3482
3494
  _header_params: Dict[str, Optional[str]] = _headers or {}
3483
3495
  _form_params: List[Tuple[str, str]] = []
3484
- _files: Dict[str, str] = {}
3496
+ _files: Dict[str, Union[str, bytes]] = {}
3485
3497
  _body_params: Optional[bytes] = None
3486
3498
 
3487
3499
  # process the path parameters
@@ -3496,11 +3508,12 @@ class SolutionApi:
3496
3508
 
3497
3509
 
3498
3510
  # set the HTTP header `Accept`
3499
- _header_params['Accept'] = self.api_client.select_header_accept(
3500
- [
3501
- 'application/json'
3502
- ]
3503
- )
3511
+ if 'Accept' not in _header_params:
3512
+ _header_params['Accept'] = self.api_client.select_header_accept(
3513
+ [
3514
+ 'application/json'
3515
+ ]
3516
+ )
3504
3517
 
3505
3518
 
3506
3519
  # authentication setting
@@ -3754,7 +3767,7 @@ class SolutionApi:
3754
3767
  _query_params: List[Tuple[str, str]] = []
3755
3768
  _header_params: Dict[str, Optional[str]] = _headers or {}
3756
3769
  _form_params: List[Tuple[str, str]] = []
3757
- _files: Dict[str, str] = {}
3770
+ _files: Dict[str, Union[str, bytes]] = {}
3758
3771
  _body_params: Optional[bytes] = None
3759
3772
 
3760
3773
  # process the path parameters
@@ -3769,11 +3782,12 @@ class SolutionApi:
3769
3782
 
3770
3783
 
3771
3784
  # set the HTTP header `Accept`
3772
- _header_params['Accept'] = self.api_client.select_header_accept(
3773
- [
3774
- 'application/json'
3775
- ]
3776
- )
3785
+ if 'Accept' not in _header_params:
3786
+ _header_params['Accept'] = self.api_client.select_header_accept(
3787
+ [
3788
+ 'application/json'
3789
+ ]
3790
+ )
3777
3791
 
3778
3792
 
3779
3793
  # authentication setting
@@ -4027,7 +4041,7 @@ class SolutionApi:
4027
4041
  _query_params: List[Tuple[str, str]] = []
4028
4042
  _header_params: Dict[str, Optional[str]] = _headers or {}
4029
4043
  _form_params: List[Tuple[str, str]] = []
4030
- _files: Dict[str, str] = {}
4044
+ _files: Dict[str, Union[str, bytes]] = {}
4031
4045
  _body_params: Optional[bytes] = None
4032
4046
 
4033
4047
  # process the path parameters
@@ -4294,7 +4308,7 @@ class SolutionApi:
4294
4308
  _query_params: List[Tuple[str, str]] = []
4295
4309
  _header_params: Dict[str, Optional[str]] = _headers or {}
4296
4310
  _form_params: List[Tuple[str, str]] = []
4297
- _files: Dict[str, str] = {}
4311
+ _files: Dict[str, Union[str, bytes]] = {}
4298
4312
  _body_params: Optional[bytes] = None
4299
4313
 
4300
4314
  # process the path parameters
@@ -4561,7 +4575,7 @@ class SolutionApi:
4561
4575
  _query_params: List[Tuple[str, str]] = []
4562
4576
  _header_params: Dict[str, Optional[str]] = _headers or {}
4563
4577
  _form_params: List[Tuple[str, str]] = []
4564
- _files: Dict[str, str] = {}
4578
+ _files: Dict[str, Union[str, bytes]] = {}
4565
4579
  _body_params: Optional[bytes] = None
4566
4580
 
4567
4581
  # process the path parameters
@@ -4841,7 +4855,7 @@ class SolutionApi:
4841
4855
  _query_params: List[Tuple[str, str]] = []
4842
4856
  _header_params: Dict[str, Optional[str]] = _headers or {}
4843
4857
  _form_params: List[Tuple[str, str]] = []
4844
- _files: Dict[str, str] = {}
4858
+ _files: Dict[str, Union[str, bytes]] = {}
4845
4859
  _body_params: Optional[bytes] = None
4846
4860
 
4847
4861
  # process the path parameters
@@ -5123,7 +5137,7 @@ class SolutionApi:
5123
5137
  _query_params: List[Tuple[str, str]] = []
5124
5138
  _header_params: Dict[str, Optional[str]] = _headers or {}
5125
5139
  _form_params: List[Tuple[str, str]] = []
5126
- _files: Dict[str, str] = {}
5140
+ _files: Dict[str, Union[str, bytes]] = {}
5127
5141
  _body_params: Optional[bytes] = None
5128
5142
 
5129
5143
  # process the path parameters
@@ -5140,11 +5154,12 @@ class SolutionApi:
5140
5154
 
5141
5155
 
5142
5156
  # set the HTTP header `Accept`
5143
- _header_params['Accept'] = self.api_client.select_header_accept(
5144
- [
5145
- 'application/json'
5146
- ]
5147
- )
5157
+ if 'Accept' not in _header_params:
5158
+ _header_params['Accept'] = self.api_client.select_header_accept(
5159
+ [
5160
+ 'application/json'
5161
+ ]
5162
+ )
5148
5163
 
5149
5164
  # set the HTTP header `Content-Type`
5150
5165
  if _content_type:
@@ -5189,7 +5204,7 @@ class SolutionApi:
5189
5204
  self,
5190
5205
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
5191
5206
  solution_id: Annotated[StrictStr, Field(description="the Solution identifier")],
5192
- solution: Annotated[Solution, Field(description="the new Solution details. This endpoint can't be used to update security")],
5207
+ solution: Annotated[Solution, Field(description="the new Solution details. This endpoint can't be used to update : - id - runTemplates - security ")],
5193
5208
  _request_timeout: Union[
5194
5209
  None,
5195
5210
  Annotated[StrictFloat, Field(gt=0)],
@@ -5210,7 +5225,7 @@ class SolutionApi:
5210
5225
  :type organization_id: str
5211
5226
  :param solution_id: the Solution identifier (required)
5212
5227
  :type solution_id: str
5213
- :param solution: the new Solution details. This endpoint can't be used to update security (required)
5228
+ :param solution: the new Solution details. This endpoint can't be used to update : - id - runTemplates - security (required)
5214
5229
  :type solution: Solution
5215
5230
  :param _request_timeout: timeout setting for this request. If one
5216
5231
  number provided, it will be total request
@@ -5265,7 +5280,7 @@ class SolutionApi:
5265
5280
  self,
5266
5281
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
5267
5282
  solution_id: Annotated[StrictStr, Field(description="the Solution identifier")],
5268
- solution: Annotated[Solution, Field(description="the new Solution details. This endpoint can't be used to update security")],
5283
+ solution: Annotated[Solution, Field(description="the new Solution details. This endpoint can't be used to update : - id - runTemplates - security ")],
5269
5284
  _request_timeout: Union[
5270
5285
  None,
5271
5286
  Annotated[StrictFloat, Field(gt=0)],
@@ -5286,7 +5301,7 @@ class SolutionApi:
5286
5301
  :type organization_id: str
5287
5302
  :param solution_id: the Solution identifier (required)
5288
5303
  :type solution_id: str
5289
- :param solution: the new Solution details. This endpoint can't be used to update security (required)
5304
+ :param solution: the new Solution details. This endpoint can't be used to update : - id - runTemplates - security (required)
5290
5305
  :type solution: Solution
5291
5306
  :param _request_timeout: timeout setting for this request. If one
5292
5307
  number provided, it will be total request
@@ -5341,7 +5356,7 @@ class SolutionApi:
5341
5356
  self,
5342
5357
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
5343
5358
  solution_id: Annotated[StrictStr, Field(description="the Solution identifier")],
5344
- solution: Annotated[Solution, Field(description="the new Solution details. This endpoint can't be used to update security")],
5359
+ solution: Annotated[Solution, Field(description="the new Solution details. This endpoint can't be used to update : - id - runTemplates - security ")],
5345
5360
  _request_timeout: Union[
5346
5361
  None,
5347
5362
  Annotated[StrictFloat, Field(gt=0)],
@@ -5362,7 +5377,7 @@ class SolutionApi:
5362
5377
  :type organization_id: str
5363
5378
  :param solution_id: the Solution identifier (required)
5364
5379
  :type solution_id: str
5365
- :param solution: the new Solution details. This endpoint can't be used to update security (required)
5380
+ :param solution: the new Solution details. This endpoint can't be used to update : - id - runTemplates - security (required)
5366
5381
  :type solution: Solution
5367
5382
  :param _request_timeout: timeout setting for this request. If one
5368
5383
  number provided, it will be total request
@@ -5428,7 +5443,7 @@ class SolutionApi:
5428
5443
  _query_params: List[Tuple[str, str]] = []
5429
5444
  _header_params: Dict[str, Optional[str]] = _headers or {}
5430
5445
  _form_params: List[Tuple[str, str]] = []
5431
- _files: Dict[str, str] = {}
5446
+ _files: Dict[str, Union[str, bytes]] = {}
5432
5447
  _body_params: Optional[bytes] = None
5433
5448
 
5434
5449
  # process the path parameters
@@ -5445,11 +5460,12 @@ class SolutionApi:
5445
5460
 
5446
5461
 
5447
5462
  # set the HTTP header `Accept`
5448
- _header_params['Accept'] = self.api_client.select_header_accept(
5449
- [
5450
- 'application/json'
5451
- ]
5452
- )
5463
+ if 'Accept' not in _header_params:
5464
+ _header_params['Accept'] = self.api_client.select_header_accept(
5465
+ [
5466
+ 'application/json'
5467
+ ]
5468
+ )
5453
5469
 
5454
5470
  # set the HTTP header `Content-Type`
5455
5471
  if _content_type:
@@ -5743,7 +5759,7 @@ class SolutionApi:
5743
5759
  _query_params: List[Tuple[str, str]] = []
5744
5760
  _header_params: Dict[str, Optional[str]] = _headers or {}
5745
5761
  _form_params: List[Tuple[str, str]] = []
5746
- _files: Dict[str, str] = {}
5762
+ _files: Dict[str, Union[str, bytes]] = {}
5747
5763
  _body_params: Optional[bytes] = None
5748
5764
 
5749
5765
  # process the path parameters
@@ -5762,11 +5778,12 @@ class SolutionApi:
5762
5778
 
5763
5779
 
5764
5780
  # set the HTTP header `Accept`
5765
- _header_params['Accept'] = self.api_client.select_header_accept(
5766
- [
5767
- 'application/json'
5768
- ]
5769
- )
5781
+ if 'Accept' not in _header_params:
5782
+ _header_params['Accept'] = self.api_client.select_header_accept(
5783
+ [
5784
+ 'application/json'
5785
+ ]
5786
+ )
5770
5787
 
5771
5788
  # set the HTTP header `Content-Type`
5772
5789
  if _content_type:
@@ -5775,7 +5792,8 @@ class SolutionApi:
5775
5792
  _default_content_type = (
5776
5793
  self.api_client.select_header_content_type(
5777
5794
  [
5778
- 'application/json'
5795
+ 'application/json',
5796
+ 'application/yaml'
5779
5797
  ]
5780
5798
  )
5781
5799
  )
@@ -6062,7 +6080,7 @@ class SolutionApi:
6062
6080
  _query_params: List[Tuple[str, str]] = []
6063
6081
  _header_params: Dict[str, Optional[str]] = _headers or {}
6064
6082
  _form_params: List[Tuple[str, str]] = []
6065
- _files: Dict[str, str] = {}
6083
+ _files: Dict[str, Union[str, bytes]] = {}
6066
6084
  _body_params: Optional[bytes] = None
6067
6085
 
6068
6086
  # process the path parameters
@@ -6081,11 +6099,12 @@ class SolutionApi:
6081
6099
 
6082
6100
 
6083
6101
  # set the HTTP header `Accept`
6084
- _header_params['Accept'] = self.api_client.select_header_accept(
6085
- [
6086
- 'application/json'
6087
- ]
6088
- )
6102
+ if 'Accept' not in _header_params:
6103
+ _header_params['Accept'] = self.api_client.select_header_accept(
6104
+ [
6105
+ 'application/json'
6106
+ ]
6107
+ )
6089
6108
 
6090
6109
  # set the HTTP header `Content-Type`
6091
6110
  if _content_type:
@@ -6405,7 +6424,7 @@ class SolutionApi:
6405
6424
  _query_params: List[Tuple[str, str]] = []
6406
6425
  _header_params: Dict[str, Optional[str]] = _headers or {}
6407
6426
  _form_params: List[Tuple[str, str]] = []
6408
- _files: Dict[str, str] = {}
6427
+ _files: Dict[str, Union[str, bytes]] = {}
6409
6428
  _body_params: Optional[bytes] = None
6410
6429
 
6411
6430
  # process the path parameters