cosmotech-api 4.0.0.dev8__py3-none-any.whl → 5.0.0b3__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 (280) hide show
  1. cosmotech_api/__init__.py +32 -27
  2. cosmotech_api/api/__init__.py +1 -1
  3. cosmotech_api/api/connector_api.py +19 -8
  4. cosmotech_api/api/dataset_api.py +1496 -4126
  5. cosmotech_api/api/meta_api.py +281 -0
  6. cosmotech_api/api/organization_api.py +605 -562
  7. cosmotech_api/api/run_api.py +42 -22
  8. cosmotech_api/api/runner_api.py +512 -467
  9. cosmotech_api/api/scenario_api.py +141 -121
  10. cosmotech_api/api/scenariorun_api.py +76 -66
  11. cosmotech_api/api/scenariorunresult_api.py +1 -1
  12. cosmotech_api/api/solution_api.py +2980 -795
  13. cosmotech_api/api/twingraph_api.py +83 -72
  14. cosmotech_api/api/validator_api.py +1 -1
  15. cosmotech_api/api/workspace_api.py +795 -1331
  16. cosmotech_api/api_client.py +14 -5
  17. cosmotech_api/configuration.py +167 -40
  18. cosmotech_api/exceptions.py +18 -1
  19. cosmotech_api/model/component_role_permissions.py +1 -1
  20. cosmotech_api/model/connector.py +1 -1
  21. cosmotech_api/model/connector_parameter.py +1 -1
  22. cosmotech_api/model/connector_parameter_group.py +1 -1
  23. cosmotech_api/model/container_resource_size_info.py +1 -1
  24. cosmotech_api/model/container_resource_sizing.py +1 -1
  25. cosmotech_api/model/dataset.py +1 -1
  26. cosmotech_api/model/dataset_access_control.py +1 -1
  27. cosmotech_api/model/dataset_compatibility.py +1 -1
  28. cosmotech_api/model/dataset_connector.py +1 -1
  29. cosmotech_api/model/dataset_copy_parameters.py +1 -1
  30. cosmotech_api/model/dataset_role.py +1 -1
  31. cosmotech_api/model/dataset_search.py +1 -1
  32. cosmotech_api/model/dataset_security.py +1 -1
  33. cosmotech_api/model/dataset_source_type.py +1 -1
  34. cosmotech_api/model/dataset_twin_graph_hash.py +1 -1
  35. cosmotech_api/model/dataset_twin_graph_info.py +1 -1
  36. cosmotech_api/model/dataset_twin_graph_query.py +1 -1
  37. cosmotech_api/model/delete_historical_data.py +1 -1
  38. cosmotech_api/model/file_upload_metadata.py +1 -1
  39. cosmotech_api/model/file_upload_validation.py +1 -1
  40. cosmotech_api/model/graph_properties.py +1 -1
  41. cosmotech_api/model/organization.py +1 -1
  42. cosmotech_api/model/organization_access_control.py +1 -1
  43. cosmotech_api/model/organization_role.py +1 -1
  44. cosmotech_api/model/organization_security.py +1 -1
  45. cosmotech_api/model/organization_service.py +1 -1
  46. cosmotech_api/model/organization_services.py +1 -1
  47. cosmotech_api/model/resource_size_info.py +1 -1
  48. cosmotech_api/model/run.py +1 -1
  49. cosmotech_api/model/run_container.py +1 -1
  50. cosmotech_api/model/run_container_artifact.py +1 -1
  51. cosmotech_api/model/run_container_logs.py +1 -1
  52. cosmotech_api/model/run_logs.py +1 -1
  53. cosmotech_api/model/run_resource_requested.py +1 -1
  54. cosmotech_api/model/run_search.py +1 -1
  55. cosmotech_api/model/run_start_containers.py +1 -1
  56. cosmotech_api/model/run_state.py +1 -1
  57. cosmotech_api/model/run_status.py +1 -1
  58. cosmotech_api/model/run_status_node.py +1 -1
  59. cosmotech_api/model/run_template.py +1 -1
  60. cosmotech_api/model/run_template_handler_id.py +1 -1
  61. cosmotech_api/model/run_template_orchestrator.py +1 -1
  62. cosmotech_api/model/run_template_parameter.py +1 -1
  63. cosmotech_api/model/run_template_parameter_group.py +1 -1
  64. cosmotech_api/model/run_template_parameter_value.py +1 -1
  65. cosmotech_api/model/run_template_resource_sizing.py +1 -1
  66. cosmotech_api/model/run_template_step_source.py +1 -1
  67. cosmotech_api/model/runner.py +1 -1
  68. cosmotech_api/model/runner_access_control.py +1 -1
  69. cosmotech_api/model/runner_changed_parameter_value.py +1 -1
  70. cosmotech_api/model/runner_comparison_result.py +1 -1
  71. cosmotech_api/model/runner_data_download_info.py +1 -1
  72. cosmotech_api/model/runner_data_download_job.py +1 -1
  73. cosmotech_api/model/runner_job_state.py +1 -1
  74. cosmotech_api/model/runner_last_run.py +1 -1
  75. cosmotech_api/model/runner_resource_sizing.py +1 -1
  76. cosmotech_api/model/runner_role.py +1 -1
  77. cosmotech_api/model/runner_run_template_parameter_value.py +1 -1
  78. cosmotech_api/model/runner_security.py +1 -1
  79. cosmotech_api/model/runner_validation_status.py +1 -1
  80. cosmotech_api/model/scenario.py +1 -1
  81. cosmotech_api/model/scenario_access_control.py +1 -1
  82. cosmotech_api/model/scenario_changed_parameter_value.py +1 -1
  83. cosmotech_api/model/scenario_comparison_result.py +1 -1
  84. cosmotech_api/model/scenario_data_download_info.py +1 -1
  85. cosmotech_api/model/scenario_data_download_job.py +1 -1
  86. cosmotech_api/model/scenario_job_state.py +1 -1
  87. cosmotech_api/model/scenario_last_run.py +1 -1
  88. cosmotech_api/model/scenario_resource_sizing.py +1 -1
  89. cosmotech_api/model/scenario_role.py +1 -1
  90. cosmotech_api/model/scenario_run.py +1 -1
  91. cosmotech_api/model/scenario_run_container.py +1 -1
  92. cosmotech_api/model/scenario_run_container_artifact.py +1 -1
  93. cosmotech_api/model/scenario_run_container_logs.py +1 -1
  94. cosmotech_api/model/scenario_run_logs.py +1 -1
  95. cosmotech_api/model/scenario_run_resource_requested.py +1 -1
  96. cosmotech_api/model/scenario_run_result.py +1 -1
  97. cosmotech_api/model/scenario_run_search.py +1 -1
  98. cosmotech_api/model/scenario_run_start_containers.py +1 -1
  99. cosmotech_api/model/scenario_run_state.py +1 -1
  100. cosmotech_api/model/scenario_run_status.py +1 -1
  101. cosmotech_api/model/scenario_run_status_node.py +1 -1
  102. cosmotech_api/model/scenario_run_template_parameter_value.py +1 -1
  103. cosmotech_api/model/scenario_security.py +1 -1
  104. cosmotech_api/model/scenario_validation_status.py +1 -1
  105. cosmotech_api/model/solution.py +1 -1
  106. cosmotech_api/model/solution_access_control.py +1 -1
  107. cosmotech_api/model/solution_role.py +1 -1
  108. cosmotech_api/model/solution_security.py +1 -1
  109. cosmotech_api/model/source_info.py +1 -1
  110. cosmotech_api/model/sub_dataset_graph_query.py +1 -1
  111. cosmotech_api/model/translated_labels.py +1 -1
  112. cosmotech_api/model/twin_graph_batch_result.py +1 -1
  113. cosmotech_api/model/twin_graph_hash.py +1 -1
  114. cosmotech_api/model/twin_graph_query.py +1 -1
  115. cosmotech_api/model/validator.py +1 -1
  116. cosmotech_api/model/validator_run.py +1 -1
  117. cosmotech_api/model/workspace.py +1 -1
  118. cosmotech_api/model/workspace_access_control.py +1 -1
  119. cosmotech_api/model/workspace_file.py +1 -1
  120. cosmotech_api/model/workspace_role.py +1 -1
  121. cosmotech_api/model/workspace_secret.py +1 -1
  122. cosmotech_api/model/workspace_security.py +1 -1
  123. cosmotech_api/model/workspace_solution.py +1 -1
  124. cosmotech_api/model/workspace_web_app.py +1 -1
  125. cosmotech_api/model_utils.py +1 -1
  126. cosmotech_api/models/__init__.py +31 -26
  127. cosmotech_api/models/about_info.py +92 -0
  128. cosmotech_api/models/about_info_version.py +100 -0
  129. cosmotech_api/models/component_role_permissions.py +5 -5
  130. cosmotech_api/models/connector.py +1 -1
  131. cosmotech_api/models/connector_parameter.py +1 -1
  132. cosmotech_api/models/connector_parameter_group.py +1 -1
  133. cosmotech_api/models/container_resource_size_info.py +1 -1
  134. cosmotech_api/models/container_resource_sizing.py +1 -1
  135. cosmotech_api/models/create_info.py +103 -0
  136. cosmotech_api/models/created_run.py +2 -2
  137. cosmotech_api/models/dataset.py +42 -81
  138. cosmotech_api/models/dataset_access_control.py +1 -1
  139. cosmotech_api/models/dataset_compatibility.py +1 -1
  140. cosmotech_api/models/dataset_connector.py +1 -1
  141. cosmotech_api/models/dataset_copy_parameters.py +1 -1
  142. cosmotech_api/models/dataset_create_request.py +121 -0
  143. cosmotech_api/models/dataset_part.py +130 -0
  144. cosmotech_api/models/dataset_part_create_request.py +98 -0
  145. cosmotech_api/models/dataset_part_type_enum.py +38 -0
  146. cosmotech_api/models/dataset_part_update_request.py +90 -0
  147. cosmotech_api/models/dataset_role.py +1 -1
  148. cosmotech_api/models/dataset_search.py +1 -1
  149. cosmotech_api/models/dataset_security.py +1 -1
  150. cosmotech_api/models/dataset_source_type.py +1 -1
  151. cosmotech_api/models/dataset_twin_graph_hash.py +1 -1
  152. cosmotech_api/models/dataset_twin_graph_info.py +1 -1
  153. cosmotech_api/models/dataset_twin_graph_query.py +1 -1
  154. cosmotech_api/models/dataset_update_request.py +109 -0
  155. cosmotech_api/models/delete_historical_data.py +1 -1
  156. cosmotech_api/models/edit_info.py +90 -0
  157. cosmotech_api/models/file_upload_metadata.py +1 -1
  158. cosmotech_api/models/file_upload_validation.py +1 -1
  159. cosmotech_api/models/graph_properties.py +1 -1
  160. cosmotech_api/models/ingestion_status_enum.py +1 -1
  161. cosmotech_api/models/io_types_enum.py +1 -1
  162. cosmotech_api/models/last_run_info.py +100 -0
  163. cosmotech_api/models/organization.py +18 -11
  164. cosmotech_api/models/organization_access_control.py +4 -4
  165. cosmotech_api/models/organization_create_request.py +95 -0
  166. cosmotech_api/models/organization_edit_info.py +90 -0
  167. cosmotech_api/models/organization_role.py +3 -3
  168. cosmotech_api/models/organization_security.py +4 -4
  169. cosmotech_api/models/organization_service.py +7 -7
  170. cosmotech_api/models/organization_services.py +7 -7
  171. cosmotech_api/models/organization_update_request.py +89 -0
  172. cosmotech_api/models/query_result.py +1 -1
  173. cosmotech_api/models/resource_size_info.py +1 -1
  174. cosmotech_api/models/run.py +8 -10
  175. cosmotech_api/models/run_container.py +1 -1
  176. cosmotech_api/models/run_container_artifact.py +7 -7
  177. cosmotech_api/models/run_container_logs.py +7 -7
  178. cosmotech_api/models/run_data.py +2 -2
  179. cosmotech_api/models/run_data_query.py +1 -1
  180. cosmotech_api/models/run_edit_info.py +90 -0
  181. cosmotech_api/models/run_logs.py +1 -1
  182. cosmotech_api/models/run_logs_entry.py +1 -1
  183. cosmotech_api/models/run_resource_requested.py +1 -1
  184. cosmotech_api/models/run_search.py +7 -7
  185. cosmotech_api/models/run_search_state.py +1 -1
  186. cosmotech_api/models/run_start_containers.py +10 -10
  187. cosmotech_api/models/run_state.py +2 -1
  188. cosmotech_api/models/run_status.py +8 -2
  189. cosmotech_api/models/run_status_node.py +1 -1
  190. cosmotech_api/models/run_template.py +14 -69
  191. cosmotech_api/models/run_template_create_request.py +109 -0
  192. cosmotech_api/models/run_template_handler_id.py +1 -1
  193. cosmotech_api/models/run_template_orchestrator.py +1 -1
  194. cosmotech_api/models/run_template_parameter.py +14 -11
  195. cosmotech_api/models/run_template_parameter_create_request.py +105 -0
  196. cosmotech_api/models/run_template_parameter_group.py +12 -9
  197. cosmotech_api/models/run_template_parameter_group_create_request.py +101 -0
  198. cosmotech_api/models/run_template_parameter_group_update_request.py +98 -0
  199. cosmotech_api/models/run_template_parameter_update_request.py +103 -0
  200. cosmotech_api/models/run_template_parameter_value.py +1 -1
  201. cosmotech_api/models/run_template_resource_sizing.py +2 -2
  202. cosmotech_api/models/run_template_step_source.py +1 -1
  203. cosmotech_api/models/run_template_update_request.py +107 -0
  204. cosmotech_api/models/runner.py +31 -28
  205. cosmotech_api/models/runner_access_control.py +1 -1
  206. cosmotech_api/models/runner_changed_parameter_value.py +7 -7
  207. cosmotech_api/models/runner_comparison_result.py +10 -10
  208. cosmotech_api/models/runner_create_request.py +154 -0
  209. cosmotech_api/models/runner_data_download_info.py +12 -9
  210. cosmotech_api/models/runner_data_download_job.py +7 -7
  211. cosmotech_api/models/runner_edit_info.py +90 -0
  212. cosmotech_api/models/runner_job_state.py +1 -1
  213. cosmotech_api/models/runner_last_run.py +7 -7
  214. cosmotech_api/models/runner_parent_last_run.py +7 -7
  215. cosmotech_api/models/runner_resource_sizing.py +1 -1
  216. cosmotech_api/models/runner_role.py +1 -1
  217. cosmotech_api/models/runner_root_last_run.py +7 -7
  218. cosmotech_api/models/runner_run_template_parameter_value.py +1 -1
  219. cosmotech_api/models/runner_security.py +1 -1
  220. cosmotech_api/models/runner_update_request.py +123 -0
  221. cosmotech_api/models/runner_validation_status.py +1 -1
  222. cosmotech_api/models/scenario.py +10 -10
  223. cosmotech_api/models/scenario_access_control.py +7 -7
  224. cosmotech_api/models/scenario_changed_parameter_value.py +7 -7
  225. cosmotech_api/models/scenario_comparison_result.py +10 -10
  226. cosmotech_api/models/scenario_data_download_info.py +7 -7
  227. cosmotech_api/models/scenario_data_download_job.py +7 -7
  228. cosmotech_api/models/scenario_job_state.py +1 -1
  229. cosmotech_api/models/scenario_last_run.py +7 -7
  230. cosmotech_api/models/scenario_resource_sizing.py +7 -7
  231. cosmotech_api/models/scenario_role.py +7 -7
  232. cosmotech_api/models/scenario_run.py +13 -13
  233. cosmotech_api/models/scenario_run_container.py +10 -10
  234. cosmotech_api/models/scenario_run_container_artifact.py +7 -7
  235. cosmotech_api/models/scenario_run_container_logs.py +7 -7
  236. cosmotech_api/models/scenario_run_logs.py +10 -10
  237. cosmotech_api/models/scenario_run_resource_requested.py +7 -7
  238. cosmotech_api/models/scenario_run_search.py +7 -7
  239. cosmotech_api/models/scenario_run_search_state.py +1 -1
  240. cosmotech_api/models/scenario_run_start_containers.py +10 -10
  241. cosmotech_api/models/scenario_run_state.py +1 -1
  242. cosmotech_api/models/scenario_run_status.py +10 -10
  243. cosmotech_api/models/scenario_run_status_node.py +7 -7
  244. cosmotech_api/models/scenario_run_template_parameter_value.py +7 -7
  245. cosmotech_api/models/scenario_security.py +10 -10
  246. cosmotech_api/models/scenario_validation_status.py +1 -1
  247. cosmotech_api/models/send_run_data_request.py +5 -5
  248. cosmotech_api/models/solution.py +45 -29
  249. cosmotech_api/models/solution_access_control.py +4 -4
  250. cosmotech_api/models/solution_create_request.py +139 -0
  251. cosmotech_api/models/solution_edit_info.py +90 -0
  252. cosmotech_api/models/solution_role.py +3 -3
  253. cosmotech_api/models/solution_security.py +4 -4
  254. cosmotech_api/models/solution_update_request.py +133 -0
  255. cosmotech_api/models/source_info.py +1 -1
  256. cosmotech_api/models/sub_dataset_graph_query.py +1 -1
  257. cosmotech_api/models/twin_graph_batch_result.py +1 -1
  258. cosmotech_api/models/twin_graph_hash.py +7 -7
  259. cosmotech_api/models/twin_graph_query.py +7 -7
  260. cosmotech_api/models/twincache_status_enum.py +1 -1
  261. cosmotech_api/models/validator.py +7 -7
  262. cosmotech_api/models/workspace.py +38 -30
  263. cosmotech_api/models/workspace_access_control.py +4 -4
  264. cosmotech_api/models/workspace_create_request.py +117 -0
  265. cosmotech_api/models/workspace_edit_info.py +90 -0
  266. cosmotech_api/models/workspace_file.py +4 -4
  267. cosmotech_api/models/workspace_role.py +3 -3
  268. cosmotech_api/models/workspace_secret.py +7 -7
  269. cosmotech_api/models/workspace_security.py +4 -4
  270. cosmotech_api/models/workspace_solution.py +14 -6
  271. cosmotech_api/models/workspace_update_request.py +109 -0
  272. cosmotech_api/models/workspace_web_app.py +4 -4
  273. cosmotech_api/rest.py +3 -2
  274. cosmotech_api-5.0.0b3.dist-info/METADATA +27 -0
  275. cosmotech_api-5.0.0b3.dist-info/RECORD +293 -0
  276. {cosmotech_api-4.0.0.dev8.dist-info → cosmotech_api-5.0.0b3.dist-info}/WHEEL +1 -1
  277. {cosmotech_api-4.0.0.dev8.dist-info → cosmotech_api-5.0.0b3.dist-info/licenses}/LICENSE +1 -1
  278. cosmotech_api-4.0.0.dev8.dist-info/METADATA +0 -18
  279. cosmotech_api-4.0.0.dev8.dist-info/RECORD +0 -262
  280. {cosmotech_api-4.0.0.dev8.dist-info → cosmotech_api-5.0.0b3.dist-info}/top_level.txt +0 -0
@@ -1,262 +0,0 @@
1
- cosmotech_api/__init__.py,sha256=IYt5ftwa1cUDHm93xN65Y636pED67kHLv776_6jhuAw,6184
2
- cosmotech_api/api_client.py,sha256=tc83pWQGgwpqWpETO3BxMsovtyP2mUvyFwhe9z6qhCo,27045
3
- cosmotech_api/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- cosmotech_api/configuration.py,sha256=I2aY3EsauLn4gwaUQwirJpLhIjyKm2Bzc8m0YgXoFaA,15299
5
- cosmotech_api/exceptions.py,sha256=SVG8kRNOAUumhU8YDDkH-ynw4NcTIJxIOdcQGwtPdQM,5950
6
- cosmotech_api/model_utils.py,sha256=fIyvJUYPWUO_9AvrfYVyN0XjkZ646zcA9MKryhm7LQ8,82063
7
- cosmotech_api/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- cosmotech_api/rest.py,sha256=VNqteHVVeimgGtj0q5q6ehPbIb_kv6kk0tkYwYbPrjU,9385
9
- cosmotech_api/api/__init__.py,sha256=U7m1Ywto62wExCj1tmtHSlZ88qkSmgXHT4lGP5dTm-k,429
10
- cosmotech_api/api/connector_api.py,sha256=b98_ZbxS3WDnZh66vO0z_pO_JsFXD3p6wFxuPQXFROo,42002
11
- cosmotech_api/api/dataset_api.py,sha256=T2z7i1CY6pHgoYuHGUXtaQH_snUXwA8G-RJLuKS5xsM,375788
12
- cosmotech_api/api/organization_api.py,sha256=gWrEb9P0MMV5QAJYRFkmRPzYi_4vg9lxS0OoZ2hJs1Q,154476
13
- cosmotech_api/api/run_api.py,sha256=sk2G2FSgGUN49MRFrwISRH8SgIfi_5iBu2kDVEJtmsQ,90330
14
- cosmotech_api/api/runner_api.py,sha256=HL2O4YftvN4lVHmPOEgcHUTIP8dt2Sq2mHtU-CnXowA,186532
15
- cosmotech_api/api/scenario_api.py,sha256=FpPRgtkHvd0BwhtFKGN-ypxgdIbMPRO5RAJD79tx9yA,285580
16
- cosmotech_api/api/scenariorun_api.py,sha256=fBvJA7_ImTxMe-xgZ_Y3ytsocLirvS3eulmJORn6j6E,170683
17
- cosmotech_api/api/scenariorunresult_api.py,sha256=l3eR-SxnJfaU6v41cUTbpKW9ThJQphvrceIN9AwwdzM,14187
18
- cosmotech_api/api/solution_api.py,sha256=PBwnFdtJ0wIvXPesscHmZWeRlXUM3R3FhRdR3zHI73o,238492
19
- cosmotech_api/api/twingraph_api.py,sha256=4IX4sAdWJxBWULGuSx5_gKZIf3aiToFyeZqpdc-_q_U,173276
20
- cosmotech_api/api/user_api.py,sha256=zSWOMck8FivYJEKFQgm9svV3F7poQbqPK0muNRB6gWA,46554
21
- cosmotech_api/api/validator_api.py,sha256=oKLh7kQGLI6wt1wc0FG1-nFRD7ZMBrk8jeACGN_HvFY,48787
22
- cosmotech_api/api/workspace_api.py,sha256=8I9BXxvA69H_JxdKYwxD19WEQtfDCHWCF4805-Hh110,237385
23
- cosmotech_api/apis/__init__.py,sha256=wm-t-B_k8CX6sba_LInXbT6nIpTvQF8Qqr7O-xU6kTY,1101
24
- cosmotech_api/model/__init__.py,sha256=N49d9K35V_Hd5lOHWcMeVRl0Iy_-L-03rZgfKXwlESM,348
25
- cosmotech_api/model/component_role_permissions.py,sha256=z6qEQpOcoL7TYR9FIKSdaIR6mEF8MqDZeNnYadcWVM0,11281
26
- cosmotech_api/model/connector.py,sha256=D73KERT3M5uvy5K0T_mpxjg_oduDP3WPT-qdQWybiYw,15374
27
- cosmotech_api/model/connector_parameter.py,sha256=wEQVGTm5jR1GymvCoAFmLjXmqa92ECvydVi3mbwVbRg,12487
28
- cosmotech_api/model/connector_parameter_group.py,sha256=V2seeHiUixXyJ3FvqE5u-nWTN-T3E7BSqm6-rqmH440,11962
29
- cosmotech_api/model/container_resource_size_info.py,sha256=ldT4czQrpKwhJafBmHJzkfaD8CeuD7BsuJScwzPlh9M,11357
30
- cosmotech_api/model/container_resource_sizing.py,sha256=vVAE8z4yZ1l9z_4e-L0b9rG1MdljXkU1jGqyekfArH4,11690
31
- cosmotech_api/model/dataset.py,sha256=vaMDCinAJnC3B4nAr_l0XE6EpDFG53kPX7r20TcB5kA,18444
32
- cosmotech_api/model/dataset_access_control.py,sha256=ifqszwNZqtja7Ecj80Eh-8eth6cnyoEeRbtvNM3Mr7s,11281
33
- cosmotech_api/model/dataset_compatibility.py,sha256=d5Q6cEgMMnP3rqAiL3xHawquilOVYNWZnkXLzW5mSBc,11964
34
- cosmotech_api/model/dataset_connector.py,sha256=OCEDj_jR8IfFcOJunmMy6KoCF4as-YHAVHuD3kgbt8Q,11768
35
- cosmotech_api/model/dataset_copy_parameters.py,sha256=ut_1CFAO-FUE9q-2Af2hcbg-gmgg6H-aMXEczt641uc,11817
36
- cosmotech_api/model/dataset_role.py,sha256=FaUVT9SWk9JBQvaSrVXPPOoqjmSQKppZ6sHwLlzmoFk,11074
37
- cosmotech_api/model/dataset_search.py,sha256=sFS4UhL1bWEvg3XAVVIyfTxDeUt09Ae4oerDhVIxyLU,11201
38
- cosmotech_api/model/dataset_security.py,sha256=DzbJbd98IAqE6Ya4CA4if-Hzg3lbzr0-Tjh90LJF05A,11900
39
- cosmotech_api/model/dataset_source_type.py,sha256=742KT4NVpwRc72xHN2HfBeKSVaZIKZu-KHKfF_7K_jM,11916
40
- cosmotech_api/model/dataset_twin_graph_hash.py,sha256=GnK9lRE9oPUrcVwXJGGUCD2zvnPEDr16U-YxKaba3JE,11071
41
- cosmotech_api/model/dataset_twin_graph_info.py,sha256=_9OpTg578I_cKvSP4ibwje0qB9vUgpuOyNX-vDdIiuw,11535
42
- cosmotech_api/model/dataset_twin_graph_query.py,sha256=qe3AUfR7pkF0o07WjnFt22l1HUYDxubv9lvi4dlAPSs,11139
43
- cosmotech_api/model/delete_historical_data.py,sha256=hiYlLcsZb9z0AiFWLHT-PfO9hvO6MYRrkVKdX93biys,12166
44
- cosmotech_api/model/file_upload_metadata.py,sha256=xQUnjp9GZbdtG8Z6d6JBQKTCYnJnTYi5-R5wO4FSAp8,11197
45
- cosmotech_api/model/file_upload_validation.py,sha256=qocCKPtE1jb0xXUcSVmKOVZAFaeyKbqolJvSH7Y9Qos,11672
46
- cosmotech_api/model/graph_properties.py,sha256=39121rrv-QHQwbNxaJ2MYIF2fww6dBca0AeKrI88_OE,12112
47
- cosmotech_api/model/organization.py,sha256=BPh3LuaKRsOMomS1lPhN8bQgXGrg1xDpu5TYKWpgnWY,12546
48
- cosmotech_api/model/organization_access_control.py,sha256=0aVVajwchrwbokxxywcvRQD6C2-ZNWzD_BExefmMlLM,11296
49
- cosmotech_api/model/organization_role.py,sha256=ZmFeSu4dpjM9mLJyDPmS7FUqunVLwNxqeeXigP7VKjk,11099
50
- cosmotech_api/model/organization_security.py,sha256=Vkwjan3TSpqmji6gHkQAmggDVaLmvctRZfXUKvBU_SA,11960
51
- cosmotech_api/model/organization_service.py,sha256=MthDY8nTo9RxDMfNAq7-cd_lrvXYFG-tJpsmlasOsuM,12590
52
- cosmotech_api/model/organization_services.py,sha256=drjoQH1FQTxEmwqVh2PbU-hjRYl8kn8_q97Ej4NfS7Q,12269
53
- cosmotech_api/model/organization_user.py,sha256=uEbQkV3aAIHNuUt1MXZnc3lWnwGJou6C3kg0fJ_0m7c,11802
54
- cosmotech_api/model/resource_size_info.py,sha256=1ubVLlU6Mh0vfl_M6jZksseY9shiResrpqfjzw_oUd8,11330
55
- cosmotech_api/model/run.py,sha256=gXiFcvc-MaQgcyscpv7jKGfHICvJhVEjvB1sC0c_5xc,17485
56
- cosmotech_api/model/run_container.py,sha256=HnpAcaG0JaUMYOP3PAY9CpJtGd0ra9DzGsxKNAwVZMc,14618
57
- cosmotech_api/model/run_container_artifact.py,sha256=Qfw5HjPSAPDbPV-sEElttpVZ-YmjN7F191pE9kbfldA,11337
58
- cosmotech_api/model/run_container_logs.py,sha256=xzRyi63M9xo8TLKeQ2MsmGV-GKKyKKbEOEKL8NPfwtY,12013
59
- cosmotech_api/model/run_logs.py,sha256=dJx16hlh1KDF29iuPboUEEGH0iqLx0VG1dv_Ra-R27o,11607
60
- cosmotech_api/model/run_resource_requested.py,sha256=hhxHhPSwO-50e1HuOOpKu7zW1i1NqTJkuYoMPqlOjM0,11290
61
- cosmotech_api/model/run_search.py,sha256=evFrMp04mAilh-PEhrddyiovNrAWk1qxOIxTvJ38YLQ,13579
62
- cosmotech_api/model/run_start_containers.py,sha256=BuEG5YplVkxGUacqdwWwORHWjeNw6YI9Mna-4wixhUE,12584
63
- cosmotech_api/model/run_state.py,sha256=njXEUkSasOovVYAawaqZeHITk1UQ5xAZxJaz_0lMz70,11791
64
- cosmotech_api/model/run_status.py,sha256=rFHNFnqWnEnFOWv3G1NQIUkKBKQMK1cylOTXAaJhnjQ,14880
65
- cosmotech_api/model/run_status_node.py,sha256=jNs3tgNTUlOjy9CtzaZXydsE_ovFeOrp94ur3XgM3gs,14444
66
- cosmotech_api/model/run_template.py,sha256=609TmbbpD3UMMYoZlO_0lbmDOYRHYENPT6oYos2sFWA,23324
67
- cosmotech_api/model/run_template_handler_id.py,sha256=ojbDSei8ux4qpuezjx-HFLvuN2IYp3ylPZlbW9V7m5Q,12191
68
- cosmotech_api/model/run_template_orchestrator.py,sha256=UI1pZO4mdSKy1B5_buBiQBLtkzDFOL-qPzCyPa7Ef-I,11772
69
- cosmotech_api/model/run_template_parameter.py,sha256=ph4TpDZ-c0eXx03YMGFhonfkizNZ84VS2V3AsjdJQKY,13427
70
- cosmotech_api/model/run_template_parameter_group.py,sha256=f4_T2w4w_3C-grTi_IK5uyEuk06FlaSFYwPyejr-PSs,12782
71
- cosmotech_api/model/run_template_parameter_value.py,sha256=8LO-320kWJrQif6QOhNYS_KzLgJb-5HzO74jDdcbHJg,11727
72
- cosmotech_api/model/run_template_resource_sizing.py,sha256=ZizeXRhfpFmtEeNF0e8KL_U97ikBWPTCVV6FBAX8a58,11605
73
- cosmotech_api/model/run_template_step_source.py,sha256=W0ljl8IddXSz-wsE5xsmOu8epk0LNTXRts8WoPOt50g,11844
74
- cosmotech_api/model/runner.py,sha256=Sg3hbiDCbO5LYR-I0dLYc_LkbLdU5wOzhqhIA07uUfY,19620
75
- cosmotech_api/model/runner_access_control.py,sha256=2hTYGVEuOJk8CIzgT9V5B6I6HZ4gwptRUmolqA5A_q8,11278
76
- cosmotech_api/model/runner_changed_parameter_value.py,sha256=HJednP5O6bi19oNPAclgld8pf4nLli4n5Fu1d6hjRTE,12145
77
- cosmotech_api/model/runner_comparison_result.py,sha256=GcPZ5O3CESCMIFb1R1_GZyYyz9kyRqS1_ueErRhAJIk,12261
78
- cosmotech_api/model/runner_data_download_info.py,sha256=zFWWsGc-nCS123MjaHcmTe8PKCrK7sCjsx64zJKRCj0,11512
79
- cosmotech_api/model/runner_data_download_job.py,sha256=_neVWQl7vdO7t_7fVBiq4_NdNpQDVXaYsURWCPfUXjQ,11128
80
- cosmotech_api/model/runner_job_state.py,sha256=MLxHJ9P9v8fxuN7gYOb4jFMax1bnkua8AsxDP6RgR2o,12045
81
- cosmotech_api/model/runner_last_run.py,sha256=ee_yw87rY8RlNoJ1h7TrPBvt6newHycmWSiRC83ssl0,11945
82
- cosmotech_api/model/runner_resource_sizing.py,sha256=iwyHWqPTlYk278qc1Tabyd7Ujaf2I1RR-w-cVIuhCU8,11590
83
- cosmotech_api/model/runner_role.py,sha256=LgHMN3IedQBSxrzVL7sADTkfQ_pqYQA0pL9bUpsEEo4,11069
84
- cosmotech_api/model/runner_run_template_parameter_value.py,sha256=ZQdPwpBdzy6xp_2fjjBadY_5yBpN6BYH9XhjWhIKHcY,12107
85
- cosmotech_api/model/runner_security.py,sha256=3nY7biCIxaruWt6hjV2fVO4VIXUO9LsTjYP4vWv8g6Q,11888
86
- cosmotech_api/model/runner_validation_status.py,sha256=74utOR0pS4vZdzcE7dQx3BVU76ksyQu-_8uE6IkVQqE,11871
87
- cosmotech_api/model/scenario.py,sha256=3Q5hVjUD-TKZjecTFGLYaP-1pXzKr_j3oQfIfMeEoYI,19740
88
- cosmotech_api/model/scenario_access_control.py,sha256=uhzK18-EHlyMwiioZoFoPskuS6AYxfueN_OpSF5vJ9w,11284
89
- cosmotech_api/model/scenario_changed_parameter_value.py,sha256=AlOthsn-dDrKaPmZ3fZMFYMi-IHYOQx30S62MhKI39M,12159
90
- cosmotech_api/model/scenario_comparison_result.py,sha256=0AR5inpcevqJ-MTwS2kjDOtgaMVBYt-nVuz7WLfb4wY,12317
91
- cosmotech_api/model/scenario_data_download_info.py,sha256=gHxqCbGx8lHY13QtQ7OvK0qfSEg8y-Flfj6xqXuLFTQ,11536
92
- cosmotech_api/model/scenario_data_download_job.py,sha256=rG8hhA_jwXRYtNo5386CvfPWCu3tXCl32gkYaWP9WHc,11138
93
- cosmotech_api/model/scenario_job_state.py,sha256=Ti0Uy9JMyVvgi3FfhUNty3HswQRfonnkGgs2Z0-m90k,12059
94
- cosmotech_api/model/scenario_last_run.py,sha256=XJWrwLO31WA03gpE-xnh5h3F5uSA4j9nTNu2BMRWh2s,11965
95
- cosmotech_api/model/scenario_resource_sizing.py,sha256=xg3_r0wOHTh9V3SHjC1wamNU1aTjZRgM8qZGMh0DjcA,11596
96
- cosmotech_api/model/scenario_role.py,sha256=1XrCWXtklo0zZjXg98xyF0fDxRJozW4rgqlHU3dK3Ms,11079
97
- cosmotech_api/model/scenario_run.py,sha256=OxmlnQB65UrnMAnzYYZb4bdSCsSIZgDOkMZZl_xL5ds,19807
98
- cosmotech_api/model/scenario_run_container.py,sha256=W4EJTAoZ3wnyjdBnQwPZ2qlmyGX8PQl-z4SzRPzh8YM,14699
99
- cosmotech_api/model/scenario_run_container_artifact.py,sha256=dUSHRvgWqeBS9RPUc_eynSPV1EOG3MkdaUgkycWNSzQ,11361
100
- cosmotech_api/model/scenario_run_container_logs.py,sha256=IajNonx2uJ6pQzGS0QCGYVmy5hllAn0Wa2LIB9SykOY,12037
101
- cosmotech_api/model/scenario_run_logs.py,sha256=dKYoLw5-ea4X9SYzytg2sbQPBoQ0koO5fRbe-KJ7DIk,11752
102
- cosmotech_api/model/scenario_run_resource_requested.py,sha256=3z4UOqvFIOPtX0X4jWzIrWBH3vPiKy6kwgKP59YTO8k,11314
103
- cosmotech_api/model/scenario_run_result.py,sha256=PvOsh7RqqKheB0p9_DyUgd-dMHAEtZiH0cv0TtjfPxQ,11235
104
- cosmotech_api/model/scenario_run_search.py,sha256=wDihbQNX3EyzWRrVCLVm6jn9aMovWoEgc-aWWS62SzM,13617
105
- cosmotech_api/model/scenario_run_start_containers.py,sha256=3OxBKvZ88yrsEfesMaiRPz7sRNIO_m1Qr3YYi0OGJjw,12665
106
- cosmotech_api/model/scenario_run_state.py,sha256=Hl0TM56JaXSPh6VmNF_KLQb2CJYrWuSa5H_TekRvIMo,12177
107
- cosmotech_api/model/scenario_run_status.py,sha256=E3GkYQ4FN4gGxAT8D1GHr--xTllQ0PkDPI6U55fULZE,14595
108
- cosmotech_api/model/scenario_run_status_node.py,sha256=FB8YWb0mhAJngjSnJRF1Yjcjise_gLANcAPahBmFDPo,14541
109
- cosmotech_api/model/scenario_run_template_parameter_value.py,sha256=ZqxYWV4znoE5xTvgL5qnLlCgPE5C6QphT1NolJ4C9Ug,12113
110
- cosmotech_api/model/scenario_security.py,sha256=MNLNdGukXSdNGiyW2RGUe_sIAUrkKBf3w78QG2nbrz0,11912
111
- cosmotech_api/model/scenario_user.py,sha256=fwUoU4KrUuE-1b9SHcds92ZfnLdYdwZ5S7oA6DPrvtA,11622
112
- cosmotech_api/model/scenario_validation_status.py,sha256=nxY2zRBMr1iOUMLsY48Ruha9-Ws5u1alOzUSGmh4SJI,11885
113
- cosmotech_api/model/solution.py,sha256=nYcgLXrpW_hkPFl6TJtcXblCgdrmYOjDWShpj2a37f0,16772
114
- cosmotech_api/model/solution_access_control.py,sha256=Jlbmun2UMKNnZm0J_nUEXnQeK2El1yxmSsLxH47X3d8,11284
115
- cosmotech_api/model/solution_role.py,sha256=l5tYFoN9Q-BIcpLewpAwQ3Nhl5UjvV17XtWh-kxjWno,11079
116
- cosmotech_api/model/solution_security.py,sha256=_3L5ScdtqvSsek0AELj9-gaVD0BUNJJTnrNpHPlcx6k,11912
117
- cosmotech_api/model/source_info.py,sha256=yaQMDX0dQ_4ptY7ptsbEc__KKblHbfolCvrzSJquIkU,11990
118
- cosmotech_api/model/sub_dataset_graph_query.py,sha256=UrP6kWRXOKejmom6o9MXHsHeyPNFmMqUsW-WSmBZNBA,11856
119
- cosmotech_api/model/translated_labels.py,sha256=Tim_atRtvhNScuWWU5WK7W5Yqghf8VFw29Bzam6vNhk,10778
120
- cosmotech_api/model/twin_graph_batch_result.py,sha256=tpG4J7yypnk77rSSxOXpU48Qzk3FFVjoiAkItMT3teQ,11671
121
- cosmotech_api/model/twin_graph_hash.py,sha256=Aej0w0PyZXrCTHHWGX1xy_BqxdecwQTUXlbqnDqIsSo,11050
122
- cosmotech_api/model/twin_graph_import.py,sha256=jhuv_xpqwps5EKS6NMp_eF0F9-4co0tVtFMvUrfzXDU,12029
123
- cosmotech_api/model/twin_graph_import_info.py,sha256=P4-_Cb70Z0gNgndpe2ytnxnRnxRJNPLhZFz1O3UROUQ,11318
124
- cosmotech_api/model/twin_graph_query.py,sha256=SuGldM8q4oUUOSq9-lSP4lS75VH7lQX1gSjDVRmetgM,11351
125
- cosmotech_api/model/user.py,sha256=NkkHMv-FEo0D-L4VneZb4dzHcb-QKGRVdZWsDkSOCAg,12199
126
- cosmotech_api/model/user_organization.py,sha256=yaaHDVUGfQfRXZui0g_-WD-II6flJL6PTPYp2uQIyYg,12060
127
- cosmotech_api/model/user_workspace.py,sha256=ygM6s0cPOxtcN_TyoVD3kTW1ktkVkVsiWgl-G7WhZZc,11575
128
- cosmotech_api/model/validator.py,sha256=xidYirhhScls8GtdlZWSBQKge1WWaqSoNLXiWuj77ig,13038
129
- cosmotech_api/model/validator_run.py,sha256=mM8Uhyoseb6H7jZLZGZtEe7e2cIzqSMu0RK9EhNR9pU,13291
130
- cosmotech_api/model/workspace.py,sha256=5PnKfubZnFuqDFaGoS8GZmcwbjYnNdj7qipvQU5qrxw,20330
131
- cosmotech_api/model/workspace_access_control.py,sha256=O-m6HJcj7VTCdwVw60AseWoTScGA76H0bzGFOnxGIIk,11287
132
- cosmotech_api/model/workspace_file.py,sha256=na0G4ScIkomascvf-buXHkpff5w_gpHUu8qPa3s_eQc,11078
133
- cosmotech_api/model/workspace_role.py,sha256=_sGn-yNFSJtnC-rJ5GZKSzdmrUHlenQy0Ru1DYFuqtY,11084
134
- cosmotech_api/model/workspace_secret.py,sha256=1dMJvjj4y0pkPvUhdkM728bGEu46iNiJEfMD1W-sy-A,11188
135
- cosmotech_api/model/workspace_security.py,sha256=3wZrP3xMB7ApKqJ4V3y5D16FC7m7ZW2LV9tlitJorNw,11924
136
- cosmotech_api/model/workspace_solution.py,sha256=jRh2XVEa0-Zlo8g3g08qvyRgkOZGkcvT7FmdI0k72mU,12140
137
- cosmotech_api/model/workspace_user.py,sha256=mXozfwgXUZQ62TVezLi66J_escMGOJzR3brKz_Kay6I,11653
138
- cosmotech_api/model/workspace_web_app.py,sha256=v8HGKY7E36aGT4tOw154sZg4w9Vql92qbJC_bt8l5U8,12029
139
- cosmotech_api/models/__init__.py,sha256=aqPM0zbQoYGzpdJFub3QCg6ymVRIK3lav9VFMYJEV0Q,5268
140
- cosmotech_api/models/component_role_permissions.py,sha256=3xbAgBjWQW5KbZjV1LYC1zLOZKGiamrgHscmJXFxv0E,2635
141
- cosmotech_api/models/connector.py,sha256=EMbkukUcrcipHlgBP0ODY3fMNQzn9S366TCrr7eCxEs,5014
142
- cosmotech_api/models/connector_parameter.py,sha256=UNMW_tdWp05lYbKz0KnB4I88eifE04vwQed-dCG8D8I,3360
143
- cosmotech_api/models/connector_parameter_group.py,sha256=0V_9pVtgauapMCGK62jIAdusfx84IsGR1ub4ZDNO9AU,3350
144
- cosmotech_api/models/container_resource_size_info.py,sha256=zsikym5le6asFygb-RRJ222hIe2G4o2zXq-SGY9xAZ8,2656
145
- cosmotech_api/models/container_resource_sizing.py,sha256=trWY6ykMuLeEPMTr2d_NLqE65sAi9qVdaSfUt-69AcY,3243
146
- cosmotech_api/models/created_run.py,sha256=AJVypAqwmcPuPcohMC4n4b5AOj_Gh5JzZMyaGURKqSQ,2475
147
- cosmotech_api/models/dataset.py,sha256=0gc5GkkdGbV3zH_PecmksG-N2rwwldGqyJFTtN31Jn4,8877
148
- cosmotech_api/models/dataset_access_control.py,sha256=RuiRYJm2EOisoFDdZJZ9OoG7nIRUiEBDzKym5p8zMLs,2616
149
- cosmotech_api/models/dataset_compatibility.py,sha256=ESASd-qgW23PRJD-HJKwCK6yIu2t7hyEpgYe_Bh3w-0,3136
150
- cosmotech_api/models/dataset_connector.py,sha256=Ynio253FRLOMhkIKZQdVGnp41dWiw7cvxgn-F4w4Mpo,3013
151
- cosmotech_api/models/dataset_copy_parameters.py,sha256=j5LGfaWvz4nepAH_emdMslBy6JAEg_NEqlKNhBrbS4w,2942
152
- cosmotech_api/models/dataset_role.py,sha256=jTaiKl-YNdCblIABHyGryPTwB3f11Kr_boz2CT-ESgo,2490
153
- cosmotech_api/models/dataset_search.py,sha256=cUwkGTINm9LbP1E8P_Mzl8izWK6RI_p3i-WwyelaGZo,2568
154
- cosmotech_api/models/dataset_security.py,sha256=GHiwALXIEI2pWERK7pAqq6CEyfD6crz22fwQhpEISGY,3390
155
- cosmotech_api/models/dataset_source_type.py,sha256=qOP75UqsKDblgbLY2tqFm857F4XmMq41GTE5F2bY6SY,834
156
- cosmotech_api/models/dataset_twin_graph_hash.py,sha256=u1IqNz2ej5JhN44qU5LcbDb4qcaRdWqF2QfbtgQ0qUs,2557
157
- cosmotech_api/models/dataset_twin_graph_info.py,sha256=ldnKlYFR7j3kWuVo5dDTPZgfz1_i-vbynhQhxYlZ-98,2897
158
- cosmotech_api/models/dataset_twin_graph_query.py,sha256=aftL5euQsq5yi7kyykLWD2MCzFupu7ABKHAAht9lKS0,2557
159
- cosmotech_api/models/delete_historical_data.py,sha256=asRhmRDYxJT5VVSAgqUQnKmKYG9daFy97YGCa46nfSI,3167
160
- cosmotech_api/models/file_upload_metadata.py,sha256=ZuFw7vgptCmvp7JNLHG6Lrj0Pf3Q3tcKm7J09g8VJk0,2586
161
- cosmotech_api/models/file_upload_validation.py,sha256=mJt7CJLJ6Fo6FbSmUdvX_9xhDBwdhNL2wx2U5QBhpek,3636
162
- cosmotech_api/models/graph_properties.py,sha256=yGKLDbk6yLTvL2tWlCbeq2iJWF7Ad7wp-sQBrlS90vo,3165
163
- cosmotech_api/models/ingestion_status_enum.py,sha256=cw_Ssip0sr4MfTlw5VPJ4uLhHdTky3CfKM8aQTKMqLM,799
164
- cosmotech_api/models/io_types_enum.py,sha256=SMfHWh8N0uBYTftWW9CA1XNcknUGHqiA5uCPYMKrYdk,751
165
- cosmotech_api/models/organization.py,sha256=Ilui-OsqlgJ3cI2YMaq-fK7Em8p3X-ODRGfqD-31zsY,3399
166
- cosmotech_api/models/organization_access_control.py,sha256=OuIHfCq1jwIOMrWHTE2_woZlfACp1v90RLxevHxgoHk,2636
167
- cosmotech_api/models/organization_role.py,sha256=1JkF-wIMB8-4bbUa93_A5cqrLsX9jA6r5MsxX9i5LPY,2515
168
- cosmotech_api/models/organization_security.py,sha256=oa6inLwBSjNglKMrD6ehUMW62YCQco042ED7ZPy-cQ4,3435
169
- cosmotech_api/models/organization_service.py,sha256=QoOtKr2ctNm1Yt3vOWpIUs1P2fK0hxeGiDVu3IhIx2E,3430
170
- cosmotech_api/models/organization_services.py,sha256=YoAyVfF3v_w_8-dtGwN24IX4k3t_nmJwgreW9nL58kA,3697
171
- cosmotech_api/models/query_result.py,sha256=x4rYPhHJh_oqJ50GQCg_od5pkMpvjEqleLsc3rKELGM,2544
172
- cosmotech_api/models/resource_size_info.py,sha256=iLYOUu5K7qWgaxtdHCoobsebEyqalluHCbYaWprRZJA,2629
173
- cosmotech_api/models/run.py,sha256=C57SDu8fqfY-you6VpyEIxixqa5r-GN8JVFMaUGgQ2Q,8214
174
- cosmotech_api/models/run_container.py,sha256=gufmZVVzuav8dympmaOYu70JN7uuWT-MDUUbu5xTQHs,4732
175
- cosmotech_api/models/run_container_artifact.py,sha256=zX7p20oSop25fkY4Blae9K787cQq7PIqbRBMpXWcXvI,2705
176
- cosmotech_api/models/run_container_logs.py,sha256=lkSuJcNoDmy_iKKiNN-y4emVR758T6C9z2jcvGBiLK8,3367
177
- cosmotech_api/models/run_data.py,sha256=KumSvX1qJFjcQM2F_BO3w0gksJte5gvMGcNiYiU7XJ0,2785
178
- cosmotech_api/models/run_data_query.py,sha256=zQ7zweNprYnSNwTQgiaF5XBCafvFsl7Z0nQJ1TBIiEE,2507
179
- cosmotech_api/models/run_logs.py,sha256=IvY-oOomFeoyCY6cMro9a1LdMDaqftaH61E_N3ySVq4,3229
180
- cosmotech_api/models/run_logs_entry.py,sha256=n43es1KlC4miyMw200Ey7uTVqnRl-zPnvJJ0DDUnUkA,2494
181
- cosmotech_api/models/run_resource_requested.py,sha256=vordP-WDIkrxjLgelhUGtEE_0_-rJeNCINDNt2or8O4,2712
182
- cosmotech_api/models/run_search.py,sha256=w-rCZJUAPlD7YyXtnUZdGuC4niOjSZqMBIdLYUXL9yA,3874
183
- cosmotech_api/models/run_search_state.py,sha256=8so0jGJHVTh2Ig4EaJGKmIsRVd8MqXXBwlS6RTb5dQc,1100
184
- cosmotech_api/models/run_start_containers.py,sha256=wXn5QpwAJcPAgBJkKHj5D0nxXN8BiOd6678Tjj9vI_c,3749
185
- cosmotech_api/models/run_state.py,sha256=2Qq6iaEtufq_-M1vgzKD0YWzL42M3Qc7LPwKdFk-7UE,787
186
- cosmotech_api/models/run_status.py,sha256=G-WPfJ17bqNLgc93LdcRReOWV4XUa8k5KLHMl3w8SAo,5327
187
- cosmotech_api/models/run_status_node.py,sha256=TdP3ce357gCLmQLAxFlEQ060cEn6RFhulH4hNDoVbbA,5037
188
- cosmotech_api/models/run_template.py,sha256=zoeK83D37eAFoDc86AsozsqcA_h_QoqVYUrBbzU1XYc,10891
189
- cosmotech_api/models/run_template_handler_id.py,sha256=BJ1puoFki4g0E68GyCwrHqOj5cEw2DN7qaCTBBpVirU,915
190
- cosmotech_api/models/run_template_orchestrator.py,sha256=H6RKNu5BDZpCPT7dcsxDw8B3yhunUE7yfkmKjzp7cOo,793
191
- cosmotech_api/models/run_template_parameter.py,sha256=eiTopdOMHzESojO_iiMH6Wh-2xsn1XgSOMMmN8BtSDc,3853
192
- cosmotech_api/models/run_template_parameter_group.py,sha256=rd2YtDpyh-9YppgoP680grADu0vSRqZmBO0ZWvX0Tvg,3433
193
- cosmotech_api/models/run_template_parameter_value.py,sha256=x8nBNBvhMh6EZ-CDroJM9I5VpU3P2POYdi8bqV18KYc,2986
194
- cosmotech_api/models/run_template_resource_sizing.py,sha256=YuOFeIatU-lG1_r0VRc28cZXTZlPl6OAtCazgWAqpjg,3194
195
- cosmotech_api/models/run_template_step_source.py,sha256=jJcg25GJwOu7x2PEqFo3XP1VZ0lJ9V-n47TEVaKlIt8,812
196
- cosmotech_api/models/runner.py,sha256=lxGD6zBd9yAWmYKxIWNZaoq82EGwzxVK6ckDLO9I7KA,8537
197
- cosmotech_api/models/runner_access_control.py,sha256=DCKRDbxueNW0zAUD2lt1t0K_xxfajv1ZzLGbdG_BQNc,2612
198
- cosmotech_api/models/runner_changed_parameter_value.py,sha256=CMwj9MzSIn838LotB0zl04RRvWNNX3oiwkSj74THN2M,3500
199
- cosmotech_api/models/runner_comparison_result.py,sha256=YtO3872se4uR-sNbVywLCW_46iU28eKuxIh470UXgqU,3882
200
- cosmotech_api/models/runner_data_download_info.py,sha256=-G0OsoXKVP26H1FvxZUuhboxn0LV6c2jmKSk9ZzyI5Y,2626
201
- cosmotech_api/models/runner_data_download_job.py,sha256=uSXgtdk8yQXuZtXeBJOoxutLHF4Fk7iVgDaY7cUT1_Q,2624
202
- cosmotech_api/models/runner_job_state.py,sha256=SxZL-6h3Oxe1OHb9GGzQNzysOc54kwK3_vRAl74-TRw,875
203
- cosmotech_api/models/runner_last_run.py,sha256=UO6Asi1RgD1KDaVC80ZnPZJhgajSXYX0Eoe7Ah1cOJo,3165
204
- cosmotech_api/models/runner_parent_last_run.py,sha256=2eusGiCqzVf2a6tBZecyKWD2dP2v-PaprO6E1XwczAU,3189
205
- cosmotech_api/models/runner_resource_sizing.py,sha256=qLjJ7fcQRzE8XZ-nGGHb8UrCbiN9Ycu2hVSw42G88oQ,3179
206
- cosmotech_api/models/runner_role.py,sha256=Rw2uy7_35xIcKtJs4iDW9L4k9S_-hDJGK8vem2nFXmk,2485
207
- cosmotech_api/models/runner_root_last_run.py,sha256=YoTf6QeKCbrUTGF9G_fO1H0JOMzMlFyXts_jaht5V9Q,3181
208
- cosmotech_api/models/runner_run_template_parameter_value.py,sha256=HP1PzZQwikiXLPzyCJnWMfVjLp96KKfpKEYBT9LY1ok,3251
209
- cosmotech_api/models/runner_security.py,sha256=TYleLcfx4L3q9c1cD9tEoH478gg5sf_SSv984NGosIg,3381
210
- cosmotech_api/models/runner_validation_status.py,sha256=Rttldy9LTMQPnsYxJaKfVwItAeAMTrYdd3K6kJkMbSE,824
211
- cosmotech_api/models/scenario.py,sha256=L2hlnK1TRU4Fppfn4GRah4hid39ZFXca37hd6KS0ip8,9804
212
- cosmotech_api/models/scenario_access_control.py,sha256=FViC4-6Pfm2V4eUFTF5grvYRq_wqy7iGzj17Q1YYV3k,2599
213
- cosmotech_api/models/scenario_changed_parameter_value.py,sha256=9mMOO2ztbDzUNQXtsh1AUvYMGzUNbJKsJiYOOD9-6IQ,3510
214
- cosmotech_api/models/scenario_comparison_result.py,sha256=73Q9ofafEmiwIup9r2El_5DxV_kvB5AKd_XphJihY-Q,3928
215
- cosmotech_api/models/scenario_data_download_info.py,sha256=s5bObks9EwRNPn8SG3S4AeNjYMECaLBdj3_p0JhqL9A,2798
216
- cosmotech_api/models/scenario_data_download_job.py,sha256=jKDeJbMeZBmHDbmlulCsopBnkqRwmuKGSCu9Bxm7owQ,2634
217
- cosmotech_api/models/scenario_job_state.py,sha256=bkW-jx90tkGMHlZJIPJmzvTz1oU_VBqaXCO08nqPvvM,873
218
- cosmotech_api/models/scenario_last_run.py,sha256=y7xt-NhBHOK4USdNIMxBdoWvChYmKhND2Uk1mmupscY,3177
219
- cosmotech_api/models/scenario_resource_sizing.py,sha256=ApvjiY7RhBMoOclW10QMHODwTauR31CsfxNrXgnLofU,3164
220
- cosmotech_api/models/scenario_role.py,sha256=4U-RtDMwpIkDhb2mlcEkbkPtBrV6ZfFPfNPFDYJ-0aM,2474
221
- cosmotech_api/models/scenario_run.py,sha256=W7tA_VPHZJWSorIYViyC7e9ZXWMIjzH24jHvqSWcB-A,9776
222
- cosmotech_api/models/scenario_run_container.py,sha256=rjpOTSeOqraOB_Qq-L9xgMfOEctpVeMY7aNFepAVovI,5432
223
- cosmotech_api/models/scenario_run_container_artifact.py,sha256=czpKtxEu1Zzs7tecHj96prXgxkNlLRNfF5VQYl6JPuU,2731
224
- cosmotech_api/models/scenario_run_container_logs.py,sha256=tauVI2wddAr7JVHmFkrOq4IrxgXZ6Eamk_zki4h8vNc,3391
225
- cosmotech_api/models/scenario_run_logs.py,sha256=NTsZj0t-6CjWBlgWi880P3jE9V6wcAV_Wf2IwSwPVPs,3588
226
- cosmotech_api/models/scenario_run_resource_requested.py,sha256=R4nsdkYVS9MVbWBzU5nZGAlz2e4HsODlc8sOVaGgTGE,2715
227
- cosmotech_api/models/scenario_run_result.py,sha256=Uh01C67xNYyuuuSL9y0OzJ2VI1mX_9V8KZILyexmVbw,2613
228
- cosmotech_api/models/scenario_run_search.py,sha256=klptuh8uMUcFncwFC7ckxJV_Az4Lx9soUWmvdStLwXk,3935
229
- cosmotech_api/models/scenario_run_search_state.py,sha256=Vr3hjfMiq8UYvsdWhfOLxiwjQYgnXmnQTkHGUvd2uww,1116
230
- cosmotech_api/models/scenario_run_start_containers.py,sha256=lwZHPrPMplhQmIZcdZM66ysjnWaxvDK_FRL1UwpXhJs,3806
231
- cosmotech_api/models/scenario_run_state.py,sha256=S0olBM-V85nt0MI5sSMd7tGq4um5gP_oAW2Xp06zdac,909
232
- cosmotech_api/models/scenario_run_status.py,sha256=yDuL35PO-XtTylWjcYavTKewt8UujLbh9VF0BNF1I9M,5069
233
- cosmotech_api/models/scenario_run_status_node.py,sha256=FjqFEB7-GA8lCRDMwrfixLx6E1YA2N7al2tXZjUmIu4,5089
234
- cosmotech_api/models/scenario_run_template_parameter_value.py,sha256=a-s4L2sVViIN97aNIMtWINzxFFsQ6BGi3jCLBsaOqgg,3238
235
- cosmotech_api/models/scenario_security.py,sha256=6Zv2aQzXHOzt4MYZ3_pRsGcZvl6VNnQ2mnUsWoz2Wdc,3318
236
- cosmotech_api/models/scenario_validation_status.py,sha256=tqgHRYDWLGM57yCDFuNAsh-yQqLC5sV7xXjMGdYLuNg,822
237
- cosmotech_api/models/send_run_data_request.py,sha256=MQiPeomHAtrImXhxW696qDaBOQL83mOsGEnTmuFtXTY,2578
238
- cosmotech_api/models/solution.py,sha256=BKbjWKjiMcVmXDZU6khdCbBPMxfbQFm0BP15q1_7CUI,7648
239
- cosmotech_api/models/solution_access_control.py,sha256=qAEjixDsuG5rNpQIiwqAnMF_Ervmdq1Jj2yadqYX4Ls,2620
240
- cosmotech_api/models/solution_role.py,sha256=azvortwm6lViyuoy8GFE0M9H8h_GYdj2mcCzsvBN9GI,2495
241
- cosmotech_api/models/solution_security.py,sha256=0YgdBFbIJqmgjmeoO9ZVpkCUxzvnaNnBrMfh4iIi9bU,3399
242
- cosmotech_api/models/source_info.py,sha256=198NtqhUIi_n9A430Jcs_Xc91l44CIDG6L9seqD3keQ,3045
243
- cosmotech_api/models/sub_dataset_graph_query.py,sha256=fTDpEuCM2BGPnJsosrZTZsV9fMbvYnYI2WCdUoi5l6w,3065
244
- cosmotech_api/models/twin_graph_batch_result.py,sha256=z0ducIdwKGS1-uSkRDSiEMo-a6OlZbebF0YeAhyqGCs,2759
245
- cosmotech_api/models/twin_graph_hash.py,sha256=gvxfYyQNZjNWtBg4oNoyhzLIFhp_C5e0cCDGCj4ojiI,2515
246
- cosmotech_api/models/twin_graph_query.py,sha256=0X3BlDPCVysQ0nY3TAxx-SVYcE2gir6Ydhe5LYVkskY,2668
247
- cosmotech_api/models/twincache_status_enum.py,sha256=96_7hx-pf9_8-zOdHSC2AIW6JJQPkT57RS86m9KR76M,748
248
- cosmotech_api/models/validator.py,sha256=nxkGO33Q7UiXt13433F5lfnuupj7XnQxT26hLFeYsPs,3714
249
- cosmotech_api/models/validator_run.py,sha256=OPZ2DUHjb716kXLgHhzny5BA9eRredK_EoFivhJxjYI,4561
250
- cosmotech_api/models/workspace.py,sha256=APRxF6i-ObE7fV0k8DSo7DuaUQqXQ6eDLfa_vndi_AM,8816
251
- cosmotech_api/models/workspace_access_control.py,sha256=eew0qqukrxv193p-CGIIJsjzxU0caho6LrjLHRqNG9E,2624
252
- cosmotech_api/models/workspace_file.py,sha256=WJWItg3SRmdAmhw98Y45hsS9jIhhzyYuQ8Cunlz4eD4,2581
253
- cosmotech_api/models/workspace_role.py,sha256=BpsS9wqD26P7zw4hxzsFvNCppVXvLa-nmxEVL-SNslE,2500
254
- cosmotech_api/models/workspace_secret.py,sha256=enKO5NH-BdFTIsekliRkorqJJqswzP76PruXgiH-SuM,2642
255
- cosmotech_api/models/workspace_security.py,sha256=DYp7A0WhZzctfjMVHT4XumTl_ZSGHdv2RuUAmso_OSE,3408
256
- cosmotech_api/models/workspace_solution.py,sha256=2WiOkCFIiE0IlULfThqk_8dmI6TzfGWDbT1aZqCAEik,3195
257
- cosmotech_api/models/workspace_web_app.py,sha256=Gm6dkdosTMBnfO48CrQjWNEA_RH9fvj024jYX5YGAJM,2861
258
- cosmotech_api-4.0.0.dev8.dist-info/LICENSE,sha256=3WIX4TWBzkdiuP1Yiuv4TzmgFUpd_Nu9R-C4a4U6ijo,1134
259
- cosmotech_api-4.0.0.dev8.dist-info/METADATA,sha256=ORs3cDFjVI927XDjU_6WlssloNqNCtZtSNmRVoexwGE,479
260
- cosmotech_api-4.0.0.dev8.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
261
- cosmotech_api-4.0.0.dev8.dist-info/top_level.txt,sha256=wv9-Z7Kc5Uxdc-ZChExKN0TSbyrEU7FHipDjAyybBlw,14
262
- cosmotech_api-4.0.0.dev8.dist-info/RECORD,,