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
 
@@ -18,7 +18,7 @@ from typing import Any, Dict, List, Optional, Tuple, Union
18
18
  from typing_extensions import Annotated
19
19
 
20
20
  from pydantic import Field, StrictInt, StrictStr
21
- from typing import Any, Dict, Optional
21
+ from typing import Any, Dict, List, Optional
22
22
  from typing_extensions import Annotated
23
23
  from cosmotech_api.models.component_role_permissions import ComponentRolePermissions
24
24
  from cosmotech_api.models.organization import Organization
@@ -273,7 +273,7 @@ class OrganizationApi:
273
273
  _query_params: List[Tuple[str, str]] = []
274
274
  _header_params: Dict[str, Optional[str]] = _headers or {}
275
275
  _form_params: List[Tuple[str, str]] = []
276
- _files: Dict[str, str] = {}
276
+ _files: Dict[str, Union[str, bytes]] = {}
277
277
  _body_params: Optional[bytes] = None
278
278
 
279
279
  # process the path parameters
@@ -288,11 +288,12 @@ class OrganizationApi:
288
288
 
289
289
 
290
290
  # set the HTTP header `Accept`
291
- _header_params['Accept'] = self.api_client.select_header_accept(
292
- [
293
- 'application/json'
294
- ]
295
- )
291
+ if 'Accept' not in _header_params:
292
+ _header_params['Accept'] = self.api_client.select_header_accept(
293
+ [
294
+ 'application/json'
295
+ ]
296
+ )
296
297
 
297
298
  # set the HTTP header `Content-Type`
298
299
  if _content_type:
@@ -557,7 +558,7 @@ class OrganizationApi:
557
558
  _query_params: List[Tuple[str, str]] = []
558
559
  _header_params: Dict[str, Optional[str]] = _headers or {}
559
560
  _form_params: List[Tuple[str, str]] = []
560
- _files: Dict[str, str] = {}
561
+ _files: Dict[str, Union[str, bytes]] = {}
561
562
  _body_params: Optional[bytes] = None
562
563
 
563
564
  # process the path parameters
@@ -576,11 +577,12 @@ class OrganizationApi:
576
577
 
577
578
 
578
579
  # set the HTTP header `Accept`
579
- _header_params['Accept'] = self.api_client.select_header_accept(
580
- [
581
- 'application/json'
582
- ]
583
- )
580
+ if 'Accept' not in _header_params:
581
+ _header_params['Accept'] = self.api_client.select_header_accept(
582
+ [
583
+ 'application/json'
584
+ ]
585
+ )
584
586
 
585
587
 
586
588
  # authentication setting
@@ -821,7 +823,7 @@ class OrganizationApi:
821
823
  _query_params: List[Tuple[str, str]] = []
822
824
  _header_params: Dict[str, Optional[str]] = _headers or {}
823
825
  _form_params: List[Tuple[str, str]] = []
824
- _files: Dict[str, str] = {}
826
+ _files: Dict[str, Union[str, bytes]] = {}
825
827
  _body_params: Optional[bytes] = None
826
828
 
827
829
  # process the path parameters
@@ -834,11 +836,12 @@ class OrganizationApi:
834
836
 
835
837
 
836
838
  # set the HTTP header `Accept`
837
- _header_params['Accept'] = self.api_client.select_header_accept(
838
- [
839
- 'application/json'
840
- ]
841
- )
839
+ if 'Accept' not in _header_params:
840
+ _header_params['Accept'] = self.api_client.select_header_accept(
841
+ [
842
+ 'application/json'
843
+ ]
844
+ )
842
845
 
843
846
 
844
847
  # authentication setting
@@ -1063,7 +1066,7 @@ class OrganizationApi:
1063
1066
  _query_params: List[Tuple[str, str]] = []
1064
1067
  _header_params: Dict[str, Optional[str]] = _headers or {}
1065
1068
  _form_params: List[Tuple[str, str]] = []
1066
- _files: Dict[str, str] = {}
1069
+ _files: Dict[str, Union[str, bytes]] = {}
1067
1070
  _body_params: Optional[bytes] = None
1068
1071
 
1069
1072
  # process the path parameters
@@ -1074,11 +1077,12 @@ class OrganizationApi:
1074
1077
 
1075
1078
 
1076
1079
  # set the HTTP header `Accept`
1077
- _header_params['Accept'] = self.api_client.select_header_accept(
1078
- [
1079
- 'application/json'
1080
- ]
1081
- )
1080
+ if 'Accept' not in _header_params:
1081
+ _header_params['Accept'] = self.api_client.select_header_accept(
1082
+ [
1083
+ 'application/json'
1084
+ ]
1085
+ )
1082
1086
 
1083
1087
 
1084
1088
  # authentication setting
@@ -1332,7 +1336,7 @@ class OrganizationApi:
1332
1336
  _query_params: List[Tuple[str, str]] = []
1333
1337
  _header_params: Dict[str, Optional[str]] = _headers or {}
1334
1338
  _form_params: List[Tuple[str, str]] = []
1335
- _files: Dict[str, str] = {}
1339
+ _files: Dict[str, Union[str, bytes]] = {}
1336
1340
  _body_params: Optional[bytes] = None
1337
1341
 
1338
1342
  # process the path parameters
@@ -1347,11 +1351,12 @@ class OrganizationApi:
1347
1351
 
1348
1352
 
1349
1353
  # set the HTTP header `Accept`
1350
- _header_params['Accept'] = self.api_client.select_header_accept(
1351
- [
1352
- 'application/json'
1353
- ]
1354
- )
1354
+ if 'Accept' not in _header_params:
1355
+ _header_params['Accept'] = self.api_client.select_header_accept(
1356
+ [
1357
+ 'application/json'
1358
+ ]
1359
+ )
1355
1360
 
1356
1361
 
1357
1362
  # authentication setting
@@ -1602,7 +1607,7 @@ class OrganizationApi:
1602
1607
  _query_params: List[Tuple[str, str]] = []
1603
1608
  _header_params: Dict[str, Optional[str]] = _headers or {}
1604
1609
  _form_params: List[Tuple[str, str]] = []
1605
- _files: Dict[str, str] = {}
1610
+ _files: Dict[str, Union[str, bytes]] = {}
1606
1611
  _body_params: Optional[bytes] = None
1607
1612
 
1608
1613
  # process the path parameters
@@ -1617,11 +1622,12 @@ class OrganizationApi:
1617
1622
 
1618
1623
 
1619
1624
  # set the HTTP header `Accept`
1620
- _header_params['Accept'] = self.api_client.select_header_accept(
1621
- [
1622
- 'application/json'
1623
- ]
1624
- )
1625
+ if 'Accept' not in _header_params:
1626
+ _header_params['Accept'] = self.api_client.select_header_accept(
1627
+ [
1628
+ 'application/json'
1629
+ ]
1630
+ )
1625
1631
 
1626
1632
 
1627
1633
  # authentication setting
@@ -1862,7 +1868,7 @@ class OrganizationApi:
1862
1868
  _query_params: List[Tuple[str, str]] = []
1863
1869
  _header_params: Dict[str, Optional[str]] = _headers or {}
1864
1870
  _form_params: List[Tuple[str, str]] = []
1865
- _files: Dict[str, str] = {}
1871
+ _files: Dict[str, Union[str, bytes]] = {}
1866
1872
  _body_params: Optional[bytes] = None
1867
1873
 
1868
1874
  # process the path parameters
@@ -1875,11 +1881,12 @@ class OrganizationApi:
1875
1881
 
1876
1882
 
1877
1883
  # set the HTTP header `Accept`
1878
- _header_params['Accept'] = self.api_client.select_header_accept(
1879
- [
1880
- 'application/json'
1881
- ]
1882
- )
1884
+ if 'Accept' not in _header_params:
1885
+ _header_params['Accept'] = self.api_client.select_header_accept(
1886
+ [
1887
+ 'application/json'
1888
+ ]
1889
+ )
1883
1890
 
1884
1891
 
1885
1892
  # authentication setting
@@ -2120,7 +2127,7 @@ class OrganizationApi:
2120
2127
  _query_params: List[Tuple[str, str]] = []
2121
2128
  _header_params: Dict[str, Optional[str]] = _headers or {}
2122
2129
  _form_params: List[Tuple[str, str]] = []
2123
- _files: Dict[str, str] = {}
2130
+ _files: Dict[str, Union[str, bytes]] = {}
2124
2131
  _body_params: Optional[bytes] = None
2125
2132
 
2126
2133
  # process the path parameters
@@ -2133,11 +2140,12 @@ class OrganizationApi:
2133
2140
 
2134
2141
 
2135
2142
  # set the HTTP header `Accept`
2136
- _header_params['Accept'] = self.api_client.select_header_accept(
2137
- [
2138
- 'application/json'
2139
- ]
2140
- )
2143
+ if 'Accept' not in _header_params:
2144
+ _header_params['Accept'] = self.api_client.select_header_accept(
2145
+ [
2146
+ 'application/json'
2147
+ ]
2148
+ )
2141
2149
 
2142
2150
 
2143
2151
  # authentication setting
@@ -2378,7 +2386,7 @@ class OrganizationApi:
2378
2386
  _query_params: List[Tuple[str, str]] = []
2379
2387
  _header_params: Dict[str, Optional[str]] = _headers or {}
2380
2388
  _form_params: List[Tuple[str, str]] = []
2381
- _files: Dict[str, str] = {}
2389
+ _files: Dict[str, Union[str, bytes]] = {}
2382
2390
  _body_params: Optional[bytes] = None
2383
2391
 
2384
2392
  # process the path parameters
@@ -2391,11 +2399,12 @@ class OrganizationApi:
2391
2399
 
2392
2400
 
2393
2401
  # set the HTTP header `Accept`
2394
- _header_params['Accept'] = self.api_client.select_header_accept(
2395
- [
2396
- 'application/json'
2397
- ]
2398
- )
2402
+ if 'Accept' not in _header_params:
2403
+ _header_params['Accept'] = self.api_client.select_header_accept(
2404
+ [
2405
+ 'application/json'
2406
+ ]
2407
+ )
2399
2408
 
2400
2409
  # set the HTTP header `Content-Type`
2401
2410
  if _content_type:
@@ -2663,7 +2672,7 @@ class OrganizationApi:
2663
2672
  _query_params: List[Tuple[str, str]] = []
2664
2673
  _header_params: Dict[str, Optional[str]] = _headers or {}
2665
2674
  _form_params: List[Tuple[str, str]] = []
2666
- _files: Dict[str, str] = {}
2675
+ _files: Dict[str, Union[str, bytes]] = {}
2667
2676
  _body_params: Optional[bytes] = None
2668
2677
 
2669
2678
  # process the path parameters
@@ -2930,7 +2939,7 @@ class OrganizationApi:
2930
2939
  _query_params: List[Tuple[str, str]] = []
2931
2940
  _header_params: Dict[str, Optional[str]] = _headers or {}
2932
2941
  _form_params: List[Tuple[str, str]] = []
2933
- _files: Dict[str, str] = {}
2942
+ _files: Dict[str, Union[str, bytes]] = {}
2934
2943
  _body_params: Optional[bytes] = None
2935
2944
 
2936
2945
  # process the path parameters
@@ -2945,11 +2954,12 @@ class OrganizationApi:
2945
2954
 
2946
2955
 
2947
2956
  # set the HTTP header `Accept`
2948
- _header_params['Accept'] = self.api_client.select_header_accept(
2949
- [
2950
- 'application/json'
2951
- ]
2952
- )
2957
+ if 'Accept' not in _header_params:
2958
+ _header_params['Accept'] = self.api_client.select_header_accept(
2959
+ [
2960
+ 'application/json'
2961
+ ]
2962
+ )
2953
2963
 
2954
2964
  # set the HTTP header `Content-Type`
2955
2965
  if _content_type:
@@ -3204,7 +3214,7 @@ class OrganizationApi:
3204
3214
  _query_params: List[Tuple[str, str]] = []
3205
3215
  _header_params: Dict[str, Optional[str]] = _headers or {}
3206
3216
  _form_params: List[Tuple[str, str]] = []
3207
- _files: Dict[str, str] = {}
3217
+ _files: Dict[str, Union[str, bytes]] = {}
3208
3218
  _body_params: Optional[bytes] = None
3209
3219
 
3210
3220
  # process the path parameters
@@ -3245,7 +3255,7 @@ class OrganizationApi:
3245
3255
  def update_organization(
3246
3256
  self,
3247
3257
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
3248
- organization: Annotated[Organization, Field(description="the new Organization details. This endpoint can't be used to update security")],
3258
+ organization: Annotated[Organization, Field(description="The new Organization details. This endpoint can't be used to update : - id - ownerId - security ")],
3249
3259
  _request_timeout: Union[
3250
3260
  None,
3251
3261
  Annotated[StrictFloat, Field(gt=0)],
@@ -3264,7 +3274,7 @@ class OrganizationApi:
3264
3274
 
3265
3275
  :param organization_id: the Organization identifier (required)
3266
3276
  :type organization_id: str
3267
- :param organization: the new Organization details. This endpoint can't be used to update security (required)
3277
+ :param organization: The new Organization details. This endpoint can't be used to update : - id - ownerId - security (required)
3268
3278
  :type organization: Organization
3269
3279
  :param _request_timeout: timeout setting for this request. If one
3270
3280
  number provided, it will be total request
@@ -3317,7 +3327,7 @@ class OrganizationApi:
3317
3327
  def update_organization_with_http_info(
3318
3328
  self,
3319
3329
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
3320
- organization: Annotated[Organization, Field(description="the new Organization details. This endpoint can't be used to update security")],
3330
+ organization: Annotated[Organization, Field(description="The new Organization details. This endpoint can't be used to update : - id - ownerId - security ")],
3321
3331
  _request_timeout: Union[
3322
3332
  None,
3323
3333
  Annotated[StrictFloat, Field(gt=0)],
@@ -3336,7 +3346,7 @@ class OrganizationApi:
3336
3346
 
3337
3347
  :param organization_id: the Organization identifier (required)
3338
3348
  :type organization_id: str
3339
- :param organization: the new Organization details. This endpoint can't be used to update security (required)
3349
+ :param organization: The new Organization details. This endpoint can't be used to update : - id - ownerId - security (required)
3340
3350
  :type organization: Organization
3341
3351
  :param _request_timeout: timeout setting for this request. If one
3342
3352
  number provided, it will be total request
@@ -3389,7 +3399,7 @@ class OrganizationApi:
3389
3399
  def update_organization_without_preload_content(
3390
3400
  self,
3391
3401
  organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
3392
- organization: Annotated[Organization, Field(description="the new Organization details. This endpoint can't be used to update security")],
3402
+ organization: Annotated[Organization, Field(description="The new Organization details. This endpoint can't be used to update : - id - ownerId - security ")],
3393
3403
  _request_timeout: Union[
3394
3404
  None,
3395
3405
  Annotated[StrictFloat, Field(gt=0)],
@@ -3408,7 +3418,7 @@ class OrganizationApi:
3408
3418
 
3409
3419
  :param organization_id: the Organization identifier (required)
3410
3420
  :type organization_id: str
3411
- :param organization: the new Organization details. This endpoint can't be used to update security (required)
3421
+ :param organization: The new Organization details. This endpoint can't be used to update : - id - ownerId - security (required)
3412
3422
  :type organization: Organization
3413
3423
  :param _request_timeout: timeout setting for this request. If one
3414
3424
  number provided, it will be total request
@@ -3472,7 +3482,7 @@ class OrganizationApi:
3472
3482
  _query_params: List[Tuple[str, str]] = []
3473
3483
  _header_params: Dict[str, Optional[str]] = _headers or {}
3474
3484
  _form_params: List[Tuple[str, str]] = []
3475
- _files: Dict[str, str] = {}
3485
+ _files: Dict[str, Union[str, bytes]] = {}
3476
3486
  _body_params: Optional[bytes] = None
3477
3487
 
3478
3488
  # process the path parameters
@@ -3487,11 +3497,12 @@ class OrganizationApi:
3487
3497
 
3488
3498
 
3489
3499
  # set the HTTP header `Accept`
3490
- _header_params['Accept'] = self.api_client.select_header_accept(
3491
- [
3492
- 'application/json'
3493
- ]
3494
- )
3500
+ if 'Accept' not in _header_params:
3501
+ _header_params['Accept'] = self.api_client.select_header_accept(
3502
+ [
3503
+ 'application/json'
3504
+ ]
3505
+ )
3495
3506
 
3496
3507
  # set the HTTP header `Content-Type`
3497
3508
  if _content_type:
@@ -3772,7 +3783,7 @@ class OrganizationApi:
3772
3783
  _query_params: List[Tuple[str, str]] = []
3773
3784
  _header_params: Dict[str, Optional[str]] = _headers or {}
3774
3785
  _form_params: List[Tuple[str, str]] = []
3775
- _files: Dict[str, str] = {}
3786
+ _files: Dict[str, Union[str, bytes]] = {}
3776
3787
  _body_params: Optional[bytes] = None
3777
3788
 
3778
3789
  # process the path parameters
@@ -3789,11 +3800,12 @@ class OrganizationApi:
3789
3800
 
3790
3801
 
3791
3802
  # set the HTTP header `Accept`
3792
- _header_params['Accept'] = self.api_client.select_header_accept(
3793
- [
3794
- 'application/json'
3795
- ]
3796
- )
3803
+ if 'Accept' not in _header_params:
3804
+ _header_params['Accept'] = self.api_client.select_header_accept(
3805
+ [
3806
+ 'application/json'
3807
+ ]
3808
+ )
3797
3809
 
3798
3810
  # set the HTTP header `Content-Type`
3799
3811
  if _content_type:
@@ -3802,7 +3814,8 @@ class OrganizationApi:
3802
3814
  _default_content_type = (
3803
3815
  self.api_client.select_header_content_type(
3804
3816
  [
3805
- 'application/json'
3817
+ 'application/json',
3818
+ 'application/yaml'
3806
3819
  ]
3807
3820
  )
3808
3821
  )
@@ -4060,7 +4073,7 @@ class OrganizationApi:
4060
4073
  _query_params: List[Tuple[str, str]] = []
4061
4074
  _header_params: Dict[str, Optional[str]] = _headers or {}
4062
4075
  _form_params: List[Tuple[str, str]] = []
4063
- _files: Dict[str, str] = {}
4076
+ _files: Dict[str, Union[str, bytes]] = {}
4064
4077
  _body_params: Optional[bytes] = None
4065
4078
 
4066
4079
  # process the path parameters
@@ -4075,11 +4088,12 @@ class OrganizationApi:
4075
4088
 
4076
4089
 
4077
4090
  # set the HTTP header `Accept`
4078
- _header_params['Accept'] = self.api_client.select_header_accept(
4079
- [
4080
- 'application/json'
4081
- ]
4082
- )
4091
+ if 'Accept' not in _header_params:
4092
+ _header_params['Accept'] = self.api_client.select_header_accept(
4093
+ [
4094
+ 'application/json'
4095
+ ]
4096
+ )
4083
4097
 
4084
4098
  # set the HTTP header `Content-Type`
4085
4099
  if _content_type:
@@ -4347,7 +4361,7 @@ class OrganizationApi:
4347
4361
  _query_params: List[Tuple[str, str]] = []
4348
4362
  _header_params: Dict[str, Optional[str]] = _headers or {}
4349
4363
  _form_params: List[Tuple[str, str]] = []
4350
- _files: Dict[str, str] = {}
4364
+ _files: Dict[str, Union[str, bytes]] = {}
4351
4365
  _body_params: Optional[bytes] = None
4352
4366
 
4353
4367
  # process the path parameters
@@ -4362,11 +4376,12 @@ class OrganizationApi:
4362
4376
 
4363
4377
 
4364
4378
  # set the HTTP header `Accept`
4365
- _header_params['Accept'] = self.api_client.select_header_accept(
4366
- [
4367
- 'application/json'
4368
- ]
4369
- )
4379
+ if 'Accept' not in _header_params:
4380
+ _header_params['Accept'] = self.api_client.select_header_accept(
4381
+ [
4382
+ 'application/json'
4383
+ ]
4384
+ )
4370
4385
 
4371
4386
  # set the HTTP header `Content-Type`
4372
4387
  if _content_type:
@@ -4634,7 +4649,7 @@ class OrganizationApi:
4634
4649
  _query_params: List[Tuple[str, str]] = []
4635
4650
  _header_params: Dict[str, Optional[str]] = _headers or {}
4636
4651
  _form_params: List[Tuple[str, str]] = []
4637
- _files: Dict[str, str] = {}
4652
+ _files: Dict[str, Union[str, bytes]] = {}
4638
4653
  _body_params: Optional[bytes] = None
4639
4654
 
4640
4655
  # process the path parameters
@@ -4649,11 +4664,13 @@ class OrganizationApi:
4649
4664
 
4650
4665
 
4651
4666
  # set the HTTP header `Accept`
4652
- _header_params['Accept'] = self.api_client.select_header_accept(
4653
- [
4654
- 'application/json'
4655
- ]
4656
- )
4667
+ if 'Accept' not in _header_params:
4668
+ _header_params['Accept'] = self.api_client.select_header_accept(
4669
+ [
4670
+ 'application/json',
4671
+ 'application/yaml'
4672
+ ]
4673
+ )
4657
4674
 
4658
4675
  # set the HTTP header `Content-Type`
4659
4676
  if _content_type:
@@ -4662,7 +4679,8 @@ class OrganizationApi:
4662
4679
  _default_content_type = (
4663
4680
  self.api_client.select_header_content_type(
4664
4681
  [
4665
- 'application/json'
4682
+ 'application/json',
4683
+ 'application/yaml'
4666
4684
  ]
4667
4685
  )
4668
4686
  )