cosmotech-api 3.3.4__py3-none-any.whl → 4.0.0.dev9__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cosmotech-api might be problematic. Click here for more details.

Files changed (259) hide show
  1. cosmotech_api/__init__.py +3 -49
  2. cosmotech_api/api/__init__.py +0 -3
  3. cosmotech_api/api/connector_api.py +7 -263
  4. cosmotech_api/api/dataset_api.py +65 -69
  5. cosmotech_api/api/organization_api.py +15 -882
  6. cosmotech_api/api/run_api.py +9 -11
  7. cosmotech_api/api/runner_api.py +20 -21
  8. cosmotech_api/api/scenario_api.py +121 -141
  9. cosmotech_api/api/scenariorun_api.py +66 -76
  10. cosmotech_api/api/scenariorunresult_api.py +1 -1
  11. cosmotech_api/api/solution_api.py +397 -1053
  12. cosmotech_api/api/twingraph_api.py +72 -83
  13. cosmotech_api/api/validator_api.py +1 -1
  14. cosmotech_api/api/workspace_api.py +14 -312
  15. cosmotech_api/api_client.py +1 -1
  16. cosmotech_api/configuration.py +5 -13
  17. cosmotech_api/exceptions.py +1 -1
  18. cosmotech_api/model/component_role_permissions.py +1 -1
  19. cosmotech_api/model/connector.py +1 -1
  20. cosmotech_api/model/connector_parameter.py +1 -1
  21. cosmotech_api/model/connector_parameter_group.py +1 -1
  22. cosmotech_api/model/container_resource_size_info.py +1 -1
  23. cosmotech_api/model/container_resource_sizing.py +1 -1
  24. cosmotech_api/model/dataset.py +1 -1
  25. cosmotech_api/model/dataset_access_control.py +1 -1
  26. cosmotech_api/model/dataset_compatibility.py +1 -1
  27. cosmotech_api/model/dataset_connector.py +1 -1
  28. cosmotech_api/model/dataset_copy_parameters.py +1 -1
  29. cosmotech_api/model/dataset_role.py +1 -1
  30. cosmotech_api/model/dataset_search.py +1 -1
  31. cosmotech_api/model/dataset_security.py +1 -1
  32. cosmotech_api/model/dataset_source_type.py +1 -1
  33. cosmotech_api/model/dataset_twin_graph_hash.py +1 -1
  34. cosmotech_api/model/dataset_twin_graph_info.py +1 -1
  35. cosmotech_api/model/dataset_twin_graph_query.py +1 -1
  36. cosmotech_api/model/delete_historical_data.py +1 -1
  37. cosmotech_api/model/file_upload_metadata.py +1 -1
  38. cosmotech_api/model/file_upload_validation.py +1 -1
  39. cosmotech_api/model/graph_properties.py +1 -1
  40. cosmotech_api/model/organization.py +1 -1
  41. cosmotech_api/model/organization_access_control.py +1 -1
  42. cosmotech_api/model/organization_role.py +1 -1
  43. cosmotech_api/model/organization_security.py +1 -1
  44. cosmotech_api/model/organization_service.py +1 -1
  45. cosmotech_api/model/organization_services.py +1 -1
  46. cosmotech_api/model/resource_size_info.py +1 -1
  47. cosmotech_api/model/run.py +1 -1
  48. cosmotech_api/model/run_container.py +1 -1
  49. cosmotech_api/model/run_container_artifact.py +1 -1
  50. cosmotech_api/model/run_container_logs.py +1 -1
  51. cosmotech_api/model/run_logs.py +1 -1
  52. cosmotech_api/model/run_resource_requested.py +1 -1
  53. cosmotech_api/model/run_search.py +1 -1
  54. cosmotech_api/model/run_start_containers.py +1 -1
  55. cosmotech_api/model/run_state.py +1 -1
  56. cosmotech_api/model/run_status.py +1 -1
  57. cosmotech_api/model/run_status_node.py +1 -1
  58. cosmotech_api/model/run_template.py +1 -1
  59. cosmotech_api/model/run_template_handler_id.py +1 -1
  60. cosmotech_api/model/run_template_orchestrator.py +1 -1
  61. cosmotech_api/model/run_template_parameter.py +1 -1
  62. cosmotech_api/model/run_template_parameter_group.py +1 -1
  63. cosmotech_api/model/run_template_parameter_value.py +1 -1
  64. cosmotech_api/model/run_template_resource_sizing.py +1 -1
  65. cosmotech_api/model/run_template_step_source.py +1 -1
  66. cosmotech_api/model/runner.py +1 -1
  67. cosmotech_api/model/runner_access_control.py +1 -1
  68. cosmotech_api/model/runner_changed_parameter_value.py +1 -1
  69. cosmotech_api/model/runner_comparison_result.py +1 -1
  70. cosmotech_api/model/runner_data_download_info.py +1 -1
  71. cosmotech_api/model/runner_data_download_job.py +1 -1
  72. cosmotech_api/model/runner_job_state.py +1 -1
  73. cosmotech_api/model/runner_last_run.py +1 -1
  74. cosmotech_api/model/runner_resource_sizing.py +1 -1
  75. cosmotech_api/model/runner_role.py +1 -1
  76. cosmotech_api/model/runner_run_template_parameter_value.py +1 -1
  77. cosmotech_api/model/runner_security.py +1 -1
  78. cosmotech_api/model/runner_validation_status.py +1 -1
  79. cosmotech_api/model/scenario.py +1 -1
  80. cosmotech_api/model/scenario_access_control.py +1 -1
  81. cosmotech_api/model/scenario_changed_parameter_value.py +1 -1
  82. cosmotech_api/model/scenario_comparison_result.py +1 -1
  83. cosmotech_api/model/scenario_data_download_info.py +1 -1
  84. cosmotech_api/model/scenario_data_download_job.py +1 -1
  85. cosmotech_api/model/scenario_job_state.py +1 -1
  86. cosmotech_api/model/scenario_last_run.py +1 -1
  87. cosmotech_api/model/scenario_resource_sizing.py +1 -1
  88. cosmotech_api/model/scenario_role.py +1 -1
  89. cosmotech_api/model/scenario_run.py +1 -1
  90. cosmotech_api/model/scenario_run_container.py +1 -1
  91. cosmotech_api/model/scenario_run_container_artifact.py +1 -1
  92. cosmotech_api/model/scenario_run_container_logs.py +1 -1
  93. cosmotech_api/model/scenario_run_logs.py +1 -1
  94. cosmotech_api/model/scenario_run_resource_requested.py +1 -1
  95. cosmotech_api/model/scenario_run_result.py +1 -1
  96. cosmotech_api/model/scenario_run_search.py +1 -1
  97. cosmotech_api/model/scenario_run_start_containers.py +1 -1
  98. cosmotech_api/model/scenario_run_state.py +1 -1
  99. cosmotech_api/model/scenario_run_status.py +1 -1
  100. cosmotech_api/model/scenario_run_status_node.py +1 -1
  101. cosmotech_api/model/scenario_run_template_parameter_value.py +1 -1
  102. cosmotech_api/model/scenario_security.py +1 -1
  103. cosmotech_api/model/scenario_validation_status.py +1 -1
  104. cosmotech_api/model/solution.py +1 -1
  105. cosmotech_api/model/solution_access_control.py +1 -1
  106. cosmotech_api/model/solution_role.py +1 -1
  107. cosmotech_api/model/solution_security.py +1 -1
  108. cosmotech_api/model/source_info.py +1 -1
  109. cosmotech_api/model/sub_dataset_graph_query.py +1 -1
  110. cosmotech_api/model/translated_labels.py +1 -1
  111. cosmotech_api/model/twin_graph_batch_result.py +1 -1
  112. cosmotech_api/model/twin_graph_hash.py +1 -1
  113. cosmotech_api/model/twin_graph_query.py +1 -1
  114. cosmotech_api/model/validator.py +1 -1
  115. cosmotech_api/model/validator_run.py +1 -1
  116. cosmotech_api/model/workspace.py +1 -1
  117. cosmotech_api/model/workspace_access_control.py +1 -1
  118. cosmotech_api/model/workspace_file.py +1 -1
  119. cosmotech_api/model/workspace_role.py +1 -1
  120. cosmotech_api/model/workspace_secret.py +1 -1
  121. cosmotech_api/model/workspace_security.py +1 -1
  122. cosmotech_api/model/workspace_solution.py +1 -1
  123. cosmotech_api/model/workspace_web_app.py +1 -1
  124. cosmotech_api/model_utils.py +1 -1
  125. cosmotech_api/models/__init__.py +3 -46
  126. cosmotech_api/models/component_role_permissions.py +1 -1
  127. cosmotech_api/models/connector.py +3 -7
  128. cosmotech_api/models/connector_parameter.py +1 -1
  129. cosmotech_api/models/connector_parameter_group.py +1 -1
  130. cosmotech_api/models/container_resource_size_info.py +1 -1
  131. cosmotech_api/models/container_resource_sizing.py +1 -1
  132. cosmotech_api/models/created_run.py +1 -1
  133. cosmotech_api/models/dataset.py +1 -1
  134. cosmotech_api/models/dataset_access_control.py +1 -1
  135. cosmotech_api/models/dataset_compatibility.py +1 -1
  136. cosmotech_api/models/dataset_connector.py +1 -1
  137. cosmotech_api/models/dataset_copy_parameters.py +1 -1
  138. cosmotech_api/models/dataset_role.py +1 -1
  139. cosmotech_api/models/dataset_search.py +1 -1
  140. cosmotech_api/models/dataset_security.py +1 -1
  141. cosmotech_api/models/dataset_source_type.py +1 -1
  142. cosmotech_api/models/dataset_twin_graph_hash.py +1 -1
  143. cosmotech_api/models/dataset_twin_graph_info.py +1 -1
  144. cosmotech_api/models/dataset_twin_graph_query.py +1 -1
  145. cosmotech_api/models/delete_historical_data.py +1 -1
  146. cosmotech_api/models/file_upload_metadata.py +1 -1
  147. cosmotech_api/models/file_upload_validation.py +1 -1
  148. cosmotech_api/models/graph_properties.py +1 -1
  149. cosmotech_api/models/ingestion_status_enum.py +1 -1
  150. cosmotech_api/models/io_types_enum.py +1 -1
  151. cosmotech_api/models/organization.py +2 -8
  152. cosmotech_api/models/organization_access_control.py +1 -1
  153. cosmotech_api/models/organization_role.py +1 -1
  154. cosmotech_api/models/organization_security.py +1 -1
  155. cosmotech_api/models/organization_service.py +7 -7
  156. cosmotech_api/models/organization_services.py +7 -7
  157. cosmotech_api/models/query_result.py +1 -1
  158. cosmotech_api/models/resource_size_info.py +1 -1
  159. cosmotech_api/models/run.py +1 -1
  160. cosmotech_api/models/run_container.py +3 -13
  161. cosmotech_api/models/run_container_artifact.py +7 -7
  162. cosmotech_api/models/run_container_logs.py +7 -7
  163. cosmotech_api/models/run_data.py +1 -1
  164. cosmotech_api/models/run_data_query.py +1 -1
  165. cosmotech_api/models/run_logs.py +16 -21
  166. cosmotech_api/models/run_logs_entry.py +1 -1
  167. cosmotech_api/models/run_resource_requested.py +1 -1
  168. cosmotech_api/models/run_search.py +7 -7
  169. cosmotech_api/models/run_search_state.py +1 -1
  170. cosmotech_api/models/run_start_containers.py +10 -10
  171. cosmotech_api/models/run_state.py +1 -1
  172. cosmotech_api/models/run_status.py +1 -1
  173. cosmotech_api/models/run_status_node.py +1 -1
  174. cosmotech_api/models/run_template.py +1 -1
  175. cosmotech_api/models/run_template_handler_id.py +1 -1
  176. cosmotech_api/models/run_template_orchestrator.py +1 -1
  177. cosmotech_api/models/run_template_parameter.py +1 -1
  178. cosmotech_api/models/run_template_parameter_group.py +1 -1
  179. cosmotech_api/models/run_template_parameter_value.py +1 -1
  180. cosmotech_api/models/run_template_resource_sizing.py +1 -1
  181. cosmotech_api/models/run_template_step_source.py +1 -1
  182. cosmotech_api/models/runner.py +5 -24
  183. cosmotech_api/models/runner_access_control.py +1 -1
  184. cosmotech_api/models/runner_changed_parameter_value.py +7 -7
  185. cosmotech_api/models/runner_comparison_result.py +10 -10
  186. cosmotech_api/models/runner_data_download_info.py +9 -12
  187. cosmotech_api/models/runner_data_download_job.py +7 -7
  188. cosmotech_api/models/runner_job_state.py +1 -1
  189. cosmotech_api/models/runner_last_run.py +7 -7
  190. cosmotech_api/models/runner_parent_last_run.py +7 -7
  191. cosmotech_api/models/runner_resource_sizing.py +1 -1
  192. cosmotech_api/models/runner_role.py +1 -1
  193. cosmotech_api/models/runner_root_last_run.py +7 -7
  194. cosmotech_api/models/runner_run_template_parameter_value.py +1 -1
  195. cosmotech_api/models/runner_security.py +1 -1
  196. cosmotech_api/models/runner_validation_status.py +1 -1
  197. cosmotech_api/models/scenario.py +10 -10
  198. cosmotech_api/models/scenario_access_control.py +7 -7
  199. cosmotech_api/models/scenario_changed_parameter_value.py +7 -7
  200. cosmotech_api/models/scenario_comparison_result.py +10 -10
  201. cosmotech_api/models/scenario_data_download_info.py +7 -7
  202. cosmotech_api/models/scenario_data_download_job.py +7 -7
  203. cosmotech_api/models/scenario_job_state.py +1 -1
  204. cosmotech_api/models/scenario_last_run.py +7 -7
  205. cosmotech_api/models/scenario_resource_sizing.py +7 -7
  206. cosmotech_api/models/scenario_role.py +7 -7
  207. cosmotech_api/models/scenario_run.py +13 -13
  208. cosmotech_api/models/scenario_run_container.py +10 -10
  209. cosmotech_api/models/scenario_run_container_artifact.py +7 -7
  210. cosmotech_api/models/scenario_run_container_logs.py +7 -7
  211. cosmotech_api/models/scenario_run_logs.py +10 -10
  212. cosmotech_api/models/scenario_run_resource_requested.py +7 -7
  213. cosmotech_api/models/scenario_run_search.py +7 -7
  214. cosmotech_api/models/scenario_run_search_state.py +1 -1
  215. cosmotech_api/models/scenario_run_start_containers.py +10 -10
  216. cosmotech_api/models/scenario_run_state.py +1 -1
  217. cosmotech_api/models/scenario_run_status.py +10 -10
  218. cosmotech_api/models/scenario_run_status_node.py +7 -7
  219. cosmotech_api/models/scenario_run_template_parameter_value.py +7 -7
  220. cosmotech_api/models/scenario_security.py +10 -10
  221. cosmotech_api/models/scenario_validation_status.py +1 -1
  222. cosmotech_api/models/send_run_data_request.py +1 -1
  223. cosmotech_api/models/solution.py +2 -2
  224. cosmotech_api/models/solution_access_control.py +1 -1
  225. cosmotech_api/models/solution_role.py +1 -1
  226. cosmotech_api/models/solution_security.py +1 -1
  227. cosmotech_api/models/source_info.py +1 -1
  228. cosmotech_api/models/sub_dataset_graph_query.py +1 -1
  229. cosmotech_api/models/twin_graph_batch_result.py +1 -1
  230. cosmotech_api/models/twin_graph_hash.py +7 -7
  231. cosmotech_api/models/twin_graph_query.py +7 -7
  232. cosmotech_api/models/twincache_status_enum.py +1 -1
  233. cosmotech_api/models/validator.py +7 -7
  234. cosmotech_api/models/workspace.py +2 -2
  235. cosmotech_api/models/workspace_access_control.py +1 -1
  236. cosmotech_api/models/workspace_file.py +1 -1
  237. cosmotech_api/models/workspace_role.py +1 -1
  238. cosmotech_api/models/workspace_secret.py +7 -7
  239. cosmotech_api/models/workspace_security.py +1 -1
  240. cosmotech_api/models/workspace_solution.py +1 -1
  241. cosmotech_api/models/workspace_web_app.py +1 -1
  242. cosmotech_api/rest.py +1 -1
  243. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev9.dist-info}/METADATA +5 -13
  244. cosmotech_api-4.0.0.dev9.dist-info/RECORD +262 -0
  245. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev9.dist-info}/WHEEL +1 -1
  246. cosmotech_api/api/meta_api.py +0 -281
  247. cosmotech_api/models/about_info.py +0 -92
  248. cosmotech_api/models/about_info_version.py +0 -100
  249. cosmotech_api/models/organization_create_request.py +0 -95
  250. cosmotech_api/models/organization_update_request.py +0 -89
  251. cosmotech_api/models/runner_create_request.py +0 -154
  252. cosmotech_api/models/runner_update_request.py +0 -123
  253. cosmotech_api/models/solution_create_request.py +0 -143
  254. cosmotech_api/models/solution_update_request.py +0 -107
  255. cosmotech_api/models/workspace_create_request.py +0 -117
  256. cosmotech_api/models/workspace_update_request.py +0 -109
  257. cosmotech_api-3.3.4.dist-info/RECORD +0 -273
  258. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev9.dist-info}/LICENSE +0 -0
  259. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev9.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,262 @@
1
+ cosmotech_api/__init__.py,sha256=oI2GvgmAWfdxvAbxZBYFOIDjZ2lPLaYO5IulQj04zP4,6184
2
+ cosmotech_api/api_client.py,sha256=-GRfy2v9hULIiGz4_9wzIwZcr7MAifoOyIsKuiwVL8Y,27045
3
+ cosmotech_api/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ cosmotech_api/configuration.py,sha256=IRi3ur2Wpf0lpXSg-MtTVOk1hfjWJwUeEqpJnII1ll8,15299
5
+ cosmotech_api/exceptions.py,sha256=EvhiAGZwnXKC_tf-JNrUP9fZSRaIEvVucIhpm7y_y94,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=3ju-IRRlo3SMWbmJPOl69YDiG_qh9OXUxg_MVbojuBg,9385
9
+ cosmotech_api/api/__init__.py,sha256=U7m1Ywto62wExCj1tmtHSlZ88qkSmgXHT4lGP5dTm-k,429
10
+ cosmotech_api/api/connector_api.py,sha256=ofeed6fDyX2rIA8CmltnL4CMK6Ki1OQUDpPWrtHwhfw,42002
11
+ cosmotech_api/api/dataset_api.py,sha256=9AGWkOaTMfYl-y4tFdb3UYD-ynbndJuzTxZhQGCHg9k,375788
12
+ cosmotech_api/api/organization_api.py,sha256=qjifsendDM8PuDmEEhn2SnjLeCGL1W7vnMeogeNI8sY,154476
13
+ cosmotech_api/api/run_api.py,sha256=XcZc_RoXhirK5iYT3uq3dYZo6gZs9bBGFtugsBt125U,90330
14
+ cosmotech_api/api/runner_api.py,sha256=AtpB0mv92hlkZqcoVkdtlfs6vL1-IMZs3bq772dxX7A,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=hlWvUoIR_Eb0iDuv8Ce0D1PlpV3FH1rT_H-HHoBAm0Q,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=al2BBYx68uEdIF3yXheHvGaNfweKOit-eswJkBTVv4M,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=coh5ziDOr1MHa7sI6-DpUA1K-uZNOfWHJfmEstNICJU,5268
140
+ cosmotech_api/models/component_role_permissions.py,sha256=nxiyZRtMM4bel5BESiaA1Z2SRHhce9Wf634rKSLZ4hE,2635
141
+ cosmotech_api/models/connector.py,sha256=6ACwHe4BtlColLNgTuta9dKat_nY-FhlaVPRkYSIP-U,5014
142
+ cosmotech_api/models/connector_parameter.py,sha256=0QTIHnLLyVpg423lMTGFkFPbMQXINC__1Ns8Bj44nmE,3360
143
+ cosmotech_api/models/connector_parameter_group.py,sha256=gKZHYAkGMB5PrslyWd0JNbYhxO9ZMXpAz0cCSEBUNUQ,3350
144
+ cosmotech_api/models/container_resource_size_info.py,sha256=QBuLbxORa8Ne0fx6Gghq1GM0gaHqQZsecYNcAtChReI,2656
145
+ cosmotech_api/models/container_resource_sizing.py,sha256=OfvJ89TA-JQsXRkJMb5gWFwI7dsiU6HN9k01WUlViHo,3243
146
+ cosmotech_api/models/created_run.py,sha256=Z9uzNnSQlbGYQ27Aq74F99j8WyMZJoFCFst5hKip6zs,2475
147
+ cosmotech_api/models/dataset.py,sha256=7WQqvR_erEAOSqe6RxFLd4cJcY4i8TL-niS7ylQfl2E,8877
148
+ cosmotech_api/models/dataset_access_control.py,sha256=gZdlCgQD5jLUEHG_-jQrMjZtOyRFLKx5I9pGEtdUNac,2616
149
+ cosmotech_api/models/dataset_compatibility.py,sha256=ymOL5N6aooAiIq5onMfIsKMxBEbSdXArUrocRN8b90o,3136
150
+ cosmotech_api/models/dataset_connector.py,sha256=I8fmwsgOqH8M9TnHOp9g9pC_P8lbCE4Jiu_OBgf3RdI,3013
151
+ cosmotech_api/models/dataset_copy_parameters.py,sha256=h6V6NdubHbljIspykJRPv9yG_-hz7P9fsPnefzXg08c,2942
152
+ cosmotech_api/models/dataset_role.py,sha256=QZoLK3HWMzDHQxLHu2T7F3G5C4QOywtaR0VGK2nQHEk,2490
153
+ cosmotech_api/models/dataset_search.py,sha256=nm6wdezqJlWVrX5RM7KIOcxwLQZeRFXC155Vgdave68,2568
154
+ cosmotech_api/models/dataset_security.py,sha256=JPl5TRRhXJu3zxuuGuJFfQepLrMkT5TfMOOsy0jL6i4,3390
155
+ cosmotech_api/models/dataset_source_type.py,sha256=BS9WnJXlHH1ObKx_mYPJlEFEaFjgF6Q3mnX1BrrLjy0,834
156
+ cosmotech_api/models/dataset_twin_graph_hash.py,sha256=fYCX17YTIoTXQ05CAD2kmoJe5jPlzvN0DMkT8n5chas,2557
157
+ cosmotech_api/models/dataset_twin_graph_info.py,sha256=4lM06n8ly9zask1yaWYAn2nTriG6wJnzYMAZ7bS2S40,2897
158
+ cosmotech_api/models/dataset_twin_graph_query.py,sha256=ev9Iyk0xQudTNADSaDViET_WmvcBc6GqbiGGD8FywHc,2557
159
+ cosmotech_api/models/delete_historical_data.py,sha256=SotBmBj8sS8uLJOJ-dyE38hpCQ8EZGGrLTpsBUbEo7c,3167
160
+ cosmotech_api/models/file_upload_metadata.py,sha256=v56bjIc8wwl1yu1ylu0TEQY-9vxW3p0i99RiYNY0_Xc,2586
161
+ cosmotech_api/models/file_upload_validation.py,sha256=tTC0cP1WzGAcxnRIHJ5FEHI5P8kPz8KQkdqKWJYK7iw,3636
162
+ cosmotech_api/models/graph_properties.py,sha256=S9eOvjU90JyPTA0gn-gnxN7IdpQgQacXcnWZBLdsHp0,3165
163
+ cosmotech_api/models/ingestion_status_enum.py,sha256=Qw8LfU1LHA6mSkqZ9CN2l07U31u7JD6bPEsta3ilFAM,799
164
+ cosmotech_api/models/io_types_enum.py,sha256=9H5GqIZy5ddau7BVhMZyha79GykERHHDnHAlAsoM-Qs,751
165
+ cosmotech_api/models/organization.py,sha256=Xsvq78BAhgavnbX7OhQvQslfMKNwQ634JacdiLethcE,3399
166
+ cosmotech_api/models/organization_access_control.py,sha256=r1NkKldfH3q06yLJAjn6UeOmbZ615CdM00QzVeo3hbI,2636
167
+ cosmotech_api/models/organization_role.py,sha256=nmcnGGevVO5gHy6O5Ys-b1t_LS9ABkZ34UXI0s-XmNo,2515
168
+ cosmotech_api/models/organization_security.py,sha256=joiLNSoeuZ5LX4L6rfnZBNc01DNtZ6lyEDj2sn9DqJs,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=kEnnBInPrPfAmcjiQWpmbExu3csovIQZukW3Cb5556U,2544
172
+ cosmotech_api/models/resource_size_info.py,sha256=XA5TacHkI0qwbDaejxnYZen87NP3LqKyUeuqe1IZ5mU,2629
173
+ cosmotech_api/models/run.py,sha256=bA-BKNKpBc8ASqmJgv5Yd04Tdqt2W5AxhdTQr6UJC1U,8214
174
+ cosmotech_api/models/run_container.py,sha256=Ahidv8JaeUhmGpUz2rc9TjQCnumdLSFidRZcGzcQ8aE,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=GHDHKIEJiMBG_80LGhXJtZcLqEm9wkQMv944cjOOs-8,2785
178
+ cosmotech_api/models/run_data_query.py,sha256=RD7ycbER_fgPpSKDRN1Ro02n5cXw_0c621OVY40dR_E,2507
179
+ cosmotech_api/models/run_logs.py,sha256=467FO5QR8Fy3P32fScPVMfp5CZlsZBGBWSDtLutL2qk,3229
180
+ cosmotech_api/models/run_logs_entry.py,sha256=_oYh3vAFOWdgQMLDSv8Tmh12SrZXg3YN3yc_wTth3Lk,2494
181
+ cosmotech_api/models/run_resource_requested.py,sha256=BjqYUB9ecSy6ui1W_0Z3SN4y41a3_Aby2KXJIT3mJrE,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=MAvZdi5rH4mPBwvlj31MS7aDlCh2YL1f9NKk48Glkcs,787
186
+ cosmotech_api/models/run_status.py,sha256=jUITqFPEBk8BSBsRasV1YTMBGmvLWuLekPCLzIomUD8,5327
187
+ cosmotech_api/models/run_status_node.py,sha256=s_2HGScTBXYv0RLVV591izku0ioesLa0a5hoB-88joA,5037
188
+ cosmotech_api/models/run_template.py,sha256=rWP7tWxkFaSkeHDfuNWjJAi8LngE1FHIaXUSNWL5Uuo,10891
189
+ cosmotech_api/models/run_template_handler_id.py,sha256=BJ1puoFki4g0E68GyCwrHqOj5cEw2DN7qaCTBBpVirU,915
190
+ cosmotech_api/models/run_template_orchestrator.py,sha256=n1ckq7prl5ARSXZbe-vKPQN9g6hbt0IF1keBSIiYzvg,793
191
+ cosmotech_api/models/run_template_parameter.py,sha256=gDnZBDiFRn8sbTpBTK6-xpRcDtlPYha4yNysgRRzBhI,3853
192
+ cosmotech_api/models/run_template_parameter_group.py,sha256=IIDbVLwWZ3xX96sxVuf2hwOHDeuJBmkzNX0ygPHQ8tY,3433
193
+ cosmotech_api/models/run_template_parameter_value.py,sha256=gGkBTOv1waVlbZ3cM0eX4ddPvyohOG8dCK8sfEAEfXY,2986
194
+ cosmotech_api/models/run_template_resource_sizing.py,sha256=Kl02Ss90u-EQgZgXTKWq0CyqgMTYH_qqGS3QLxBLEpY,3194
195
+ cosmotech_api/models/run_template_step_source.py,sha256=gUL_QxyCQ_5-qivtarDWEqLlC6d1Ib9vJV-cVndS-xA,812
196
+ cosmotech_api/models/runner.py,sha256=QG0AToKDUR2HBI0eMXXhsWcbwvtxsXQstUbAJpd2ZXY,8537
197
+ cosmotech_api/models/runner_access_control.py,sha256=D9HdzipiXIyQLNH2u6O5kHDJLoHEORKm4-sLn23Q9zo,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=-pSXWlEPJoxambH7c8ku9AaW9cctV6KGOdyVZMmHeyg,3179
206
+ cosmotech_api/models/runner_role.py,sha256=qSMJDP_PlyX62w42otuQRYTWFxZ-NxBFqkMjPwI2efs,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=KZ2i5t-AsIbNSRxqRbHql6b80abDpmm61Kh9ehJV70Q,3251
209
+ cosmotech_api/models/runner_security.py,sha256=ZMGpypnoVOYIghQOI8QyR1OTh9_XDAdAY4JPU9Wge-M,3381
210
+ cosmotech_api/models/runner_validation_status.py,sha256=txlOElZzp6ESkCCwngAPON-OgnN4-hSFoIzB4b8OukU,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=NTnjmDgF8zOYTVX5KrKJ4g8j8NJl2BtsuYEa4VK-cxM,2578
238
+ cosmotech_api/models/solution.py,sha256=xDXkxSp3DPTcAq2eUvQLVsQcnDd6k9ZNFsZkXfs17_c,7648
239
+ cosmotech_api/models/solution_access_control.py,sha256=_gfo_359GmWJ_uKz1uX7R5EvTmP0WaAiU_MqYsSsZ-I,2620
240
+ cosmotech_api/models/solution_role.py,sha256=AdE9KgxUX3L9BlhDCh7WEkyYf6nhT-sNR9NeRjjuoKo,2495
241
+ cosmotech_api/models/solution_security.py,sha256=qNDesg5Z5x0HIqafad34b3TfzEAfsqiNKhVM1BDfWaw,3399
242
+ cosmotech_api/models/source_info.py,sha256=4R9txEaoAkAa9C7oZfdtRrX4Bk_iXunrYB4jyZBQk28,3045
243
+ cosmotech_api/models/sub_dataset_graph_query.py,sha256=XVZuGji9Mgr_7owSQTnD1ZKyU84VlLIzGF0Cx5rYisg,3065
244
+ cosmotech_api/models/twin_graph_batch_result.py,sha256=Z4b_Tu9HGJ2oLkGHraC5Y65l9n5DlrwvAIP9zgoHvuY,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=Im3w2SxhGph3_av0Jp0i8yq25qy61S6i6vnEbGDZtME,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=ur_vMSCAtnKfmSho9Yutx80czStJDikuO_JU0wnWMHA,8816
251
+ cosmotech_api/models/workspace_access_control.py,sha256=rNj9EH0aHJ9Oexghrfw4Klyz1n2TpPa-_Hahri6QHnY,2624
252
+ cosmotech_api/models/workspace_file.py,sha256=WS6Dgn3YNODdaC1lrKs4qXr1T9ozI_VDfUcZkEtHYt0,2581
253
+ cosmotech_api/models/workspace_role.py,sha256=3Unce6flMzPsm2jP3ZFjSGpRYvMvdanvvw-Joe-K7vw,2500
254
+ cosmotech_api/models/workspace_secret.py,sha256=enKO5NH-BdFTIsekliRkorqJJqswzP76PruXgiH-SuM,2642
255
+ cosmotech_api/models/workspace_security.py,sha256=EkXA0M4x94USTMS1k_nP4kdMw8B9NTb2y8XlT0Rg3us,3408
256
+ cosmotech_api/models/workspace_solution.py,sha256=0GNlzKZVMroXRSrDWuB1Gp7rhsDLhgWU8tAsQLLmXbA,3195
257
+ cosmotech_api/models/workspace_web_app.py,sha256=yl84heSNL4A1DqtinARk_PlGAFmS_gzGbeF1ZqhenC0,2861
258
+ cosmotech_api-4.0.0.dev9.dist-info/LICENSE,sha256=3WIX4TWBzkdiuP1Yiuv4TzmgFUpd_Nu9R-C4a4U6ijo,1134
259
+ cosmotech_api-4.0.0.dev9.dist-info/METADATA,sha256=ZF2tj8cf3TUtguWDDnX95HCOBrkUtns5Jz_Mug0cxK4,479
260
+ cosmotech_api-4.0.0.dev9.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
261
+ cosmotech_api-4.0.0.dev9.dist-info/top_level.txt,sha256=wv9-Z7Kc5Uxdc-ZChExKN0TSbyrEU7FHipDjAyybBlw,14
262
+ cosmotech_api-4.0.0.dev9.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.0.0)
2
+ Generator: setuptools (74.1.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,281 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Cosmo Tech Platform API
5
-
6
- Cosmo Tech Platform API
7
-
8
- The version of the OpenAPI document: 4.0.1-SNAPSHOT
9
- Contact: platform@cosmotech.com
10
- Generated by OpenAPI Generator (https://openapi-generator.tech)
11
-
12
- Do not edit the class manually.
13
- """ # noqa: E501
14
-
15
- import warnings
16
- from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
17
- from typing import Any, Dict, List, Optional, Tuple, Union
18
- from typing_extensions import Annotated
19
-
20
- from cosmotech_api.models.about_info import AboutInfo
21
-
22
- from cosmotech_api.api_client import ApiClient, RequestSerialized
23
- from cosmotech_api.api_response import ApiResponse
24
- from cosmotech_api.rest import RESTResponseType
25
-
26
-
27
- class MetaApi:
28
- """NOTE: This class is auto generated by OpenAPI Generator
29
- Ref: https://openapi-generator.tech
30
-
31
- Do not edit the class manually.
32
- """
33
-
34
- def __init__(self, api_client=None) -> None:
35
- if api_client is None:
36
- api_client = ApiClient.get_default()
37
- self.api_client = api_client
38
-
39
-
40
- @validate_call
41
- def about(
42
- self,
43
- _request_timeout: Union[
44
- None,
45
- Annotated[StrictFloat, Field(gt=0)],
46
- Tuple[
47
- Annotated[StrictFloat, Field(gt=0)],
48
- Annotated[StrictFloat, Field(gt=0)]
49
- ]
50
- ] = None,
51
- _request_auth: Optional[Dict[StrictStr, Any]] = None,
52
- _content_type: Optional[StrictStr] = None,
53
- _headers: Optional[Dict[StrictStr, Any]] = None,
54
- _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
55
- ) -> AboutInfo:
56
- """Get various information about the API
57
-
58
-
59
- :param _request_timeout: timeout setting for this request. If one
60
- number provided, it will be total request
61
- timeout. It can also be a pair (tuple) of
62
- (connection, read) timeouts.
63
- :type _request_timeout: int, tuple(int, int), optional
64
- :param _request_auth: set to override the auth_settings for an a single
65
- request; this effectively ignores the
66
- authentication in the spec for a single request.
67
- :type _request_auth: dict, optional
68
- :param _content_type: force content-type for the request.
69
- :type _content_type: str, Optional
70
- :param _headers: set to override the headers for a single
71
- request; this effectively ignores the headers
72
- in the spec for a single request.
73
- :type _headers: dict, optional
74
- :param _host_index: set to override the host_index for a single
75
- request; this effectively ignores the host_index
76
- in the spec for a single request.
77
- :type _host_index: int, optional
78
- :return: Returns the result object.
79
- """ # noqa: E501
80
-
81
- _param = self._about_serialize(
82
- _request_auth=_request_auth,
83
- _content_type=_content_type,
84
- _headers=_headers,
85
- _host_index=_host_index
86
- )
87
-
88
- _response_types_map: Dict[str, Optional[str]] = {
89
- '200': "AboutInfo",
90
- }
91
- response_data = self.api_client.call_api(
92
- *_param,
93
- _request_timeout=_request_timeout
94
- )
95
- response_data.read()
96
- return self.api_client.response_deserialize(
97
- response_data=response_data,
98
- response_types_map=_response_types_map,
99
- ).data
100
-
101
-
102
- @validate_call
103
- def about_with_http_info(
104
- self,
105
- _request_timeout: Union[
106
- None,
107
- Annotated[StrictFloat, Field(gt=0)],
108
- Tuple[
109
- Annotated[StrictFloat, Field(gt=0)],
110
- Annotated[StrictFloat, Field(gt=0)]
111
- ]
112
- ] = None,
113
- _request_auth: Optional[Dict[StrictStr, Any]] = None,
114
- _content_type: Optional[StrictStr] = None,
115
- _headers: Optional[Dict[StrictStr, Any]] = None,
116
- _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
117
- ) -> ApiResponse[AboutInfo]:
118
- """Get various information about the API
119
-
120
-
121
- :param _request_timeout: timeout setting for this request. If one
122
- number provided, it will be total request
123
- timeout. It can also be a pair (tuple) of
124
- (connection, read) timeouts.
125
- :type _request_timeout: int, tuple(int, int), optional
126
- :param _request_auth: set to override the auth_settings for an a single
127
- request; this effectively ignores the
128
- authentication in the spec for a single request.
129
- :type _request_auth: dict, optional
130
- :param _content_type: force content-type for the request.
131
- :type _content_type: str, Optional
132
- :param _headers: set to override the headers for a single
133
- request; this effectively ignores the headers
134
- in the spec for a single request.
135
- :type _headers: dict, optional
136
- :param _host_index: set to override the host_index for a single
137
- request; this effectively ignores the host_index
138
- in the spec for a single request.
139
- :type _host_index: int, optional
140
- :return: Returns the result object.
141
- """ # noqa: E501
142
-
143
- _param = self._about_serialize(
144
- _request_auth=_request_auth,
145
- _content_type=_content_type,
146
- _headers=_headers,
147
- _host_index=_host_index
148
- )
149
-
150
- _response_types_map: Dict[str, Optional[str]] = {
151
- '200': "AboutInfo",
152
- }
153
- response_data = self.api_client.call_api(
154
- *_param,
155
- _request_timeout=_request_timeout
156
- )
157
- response_data.read()
158
- return self.api_client.response_deserialize(
159
- response_data=response_data,
160
- response_types_map=_response_types_map,
161
- )
162
-
163
-
164
- @validate_call
165
- def about_without_preload_content(
166
- self,
167
- _request_timeout: Union[
168
- None,
169
- Annotated[StrictFloat, Field(gt=0)],
170
- Tuple[
171
- Annotated[StrictFloat, Field(gt=0)],
172
- Annotated[StrictFloat, Field(gt=0)]
173
- ]
174
- ] = None,
175
- _request_auth: Optional[Dict[StrictStr, Any]] = None,
176
- _content_type: Optional[StrictStr] = None,
177
- _headers: Optional[Dict[StrictStr, Any]] = None,
178
- _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
179
- ) -> RESTResponseType:
180
- """Get various information about the API
181
-
182
-
183
- :param _request_timeout: timeout setting for this request. If one
184
- number provided, it will be total request
185
- timeout. It can also be a pair (tuple) of
186
- (connection, read) timeouts.
187
- :type _request_timeout: int, tuple(int, int), optional
188
- :param _request_auth: set to override the auth_settings for an a single
189
- request; this effectively ignores the
190
- authentication in the spec for a single request.
191
- :type _request_auth: dict, optional
192
- :param _content_type: force content-type for the request.
193
- :type _content_type: str, Optional
194
- :param _headers: set to override the headers for a single
195
- request; this effectively ignores the headers
196
- in the spec for a single request.
197
- :type _headers: dict, optional
198
- :param _host_index: set to override the host_index for a single
199
- request; this effectively ignores the host_index
200
- in the spec for a single request.
201
- :type _host_index: int, optional
202
- :return: Returns the result object.
203
- """ # noqa: E501
204
-
205
- _param = self._about_serialize(
206
- _request_auth=_request_auth,
207
- _content_type=_content_type,
208
- _headers=_headers,
209
- _host_index=_host_index
210
- )
211
-
212
- _response_types_map: Dict[str, Optional[str]] = {
213
- '200': "AboutInfo",
214
- }
215
- response_data = self.api_client.call_api(
216
- *_param,
217
- _request_timeout=_request_timeout
218
- )
219
- return response_data.response
220
-
221
-
222
- def _about_serialize(
223
- self,
224
- _request_auth,
225
- _content_type,
226
- _headers,
227
- _host_index,
228
- ) -> RequestSerialized:
229
-
230
- _host = None
231
-
232
- _collection_formats: Dict[str, str] = {
233
- }
234
-
235
- _path_params: Dict[str, str] = {}
236
- _query_params: List[Tuple[str, str]] = []
237
- _header_params: Dict[str, Optional[str]] = _headers or {}
238
- _form_params: List[Tuple[str, str]] = []
239
- _files: Dict[
240
- str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
241
- ] = {}
242
- _body_params: Optional[bytes] = None
243
-
244
- # process the path parameters
245
- # process the query parameters
246
- # process the header parameters
247
- # process the form parameters
248
- # process the body parameter
249
-
250
-
251
- # set the HTTP header `Accept`
252
- if 'Accept' not in _header_params:
253
- _header_params['Accept'] = self.api_client.select_header_accept(
254
- [
255
- 'application/json',
256
- 'application/yaml'
257
- ]
258
- )
259
-
260
-
261
- # authentication setting
262
- _auth_settings: List[str] = [
263
- 'oAuth2AuthCode'
264
- ]
265
-
266
- return self.api_client.param_serialize(
267
- method='GET',
268
- resource_path='/about',
269
- path_params=_path_params,
270
- query_params=_query_params,
271
- header_params=_header_params,
272
- body=_body_params,
273
- post_params=_form_params,
274
- files=_files,
275
- auth_settings=_auth_settings,
276
- collection_formats=_collection_formats,
277
- _host=_host,
278
- _request_auth=_request_auth
279
- )
280
-
281
-
@@ -1,92 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Cosmo Tech Platform API
5
-
6
- Cosmo Tech Platform API
7
-
8
- The version of the OpenAPI document: 4.0.1-SNAPSHOT
9
- Contact: platform@cosmotech.com
10
- Generated by OpenAPI Generator (https://openapi-generator.tech)
11
-
12
- Do not edit the class manually.
13
- """ # noqa: E501
14
-
15
-
16
- from __future__ import annotations
17
- import pprint
18
- import re # noqa: F401
19
- import json
20
-
21
- from pydantic import BaseModel, ConfigDict
22
- from typing import Any, ClassVar, Dict, List
23
- from cosmotech_api.models.about_info_version import AboutInfoVersion
24
- from typing import Optional, Set
25
- from typing_extensions import Self
26
-
27
- class AboutInfo(BaseModel):
28
- """
29
- Misc information about the api
30
- """ # noqa: E501
31
- version: AboutInfoVersion
32
- __properties: ClassVar[List[str]] = ["version"]
33
-
34
- model_config = ConfigDict(
35
- populate_by_name=True,
36
- validate_assignment=True,
37
- protected_namespaces=(),
38
- )
39
-
40
-
41
- def to_str(self) -> str:
42
- """Returns the string representation of the model using alias"""
43
- return pprint.pformat(self.model_dump(by_alias=True))
44
-
45
- def to_json(self) -> str:
46
- """Returns the JSON representation of the model using alias"""
47
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
- return json.dumps(self.to_dict())
49
-
50
- @classmethod
51
- def from_json(cls, json_str: str) -> Optional[Self]:
52
- """Create an instance of AboutInfo from a JSON string"""
53
- return cls.from_dict(json.loads(json_str))
54
-
55
- def to_dict(self) -> Dict[str, Any]:
56
- """Return the dictionary representation of the model using alias.
57
-
58
- This has the following differences from calling pydantic's
59
- `self.model_dump(by_alias=True)`:
60
-
61
- * `None` is only added to the output dict for nullable fields that
62
- were set at model initialization. Other fields with value `None`
63
- are ignored.
64
- """
65
- excluded_fields: Set[str] = set([
66
- ])
67
-
68
- _dict = self.model_dump(
69
- by_alias=True,
70
- exclude=excluded_fields,
71
- exclude_none=True,
72
- )
73
- # override the default output from pydantic by calling `to_dict()` of version
74
- if self.version:
75
- _dict['version'] = self.version.to_dict()
76
- return _dict
77
-
78
- @classmethod
79
- def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
80
- """Create an instance of AboutInfo from a dict"""
81
- if obj is None:
82
- return None
83
-
84
- if not isinstance(obj, dict):
85
- return cls.model_validate(obj)
86
-
87
- _obj = cls.model_validate({
88
- "version": AboutInfoVersion.from_dict(obj["version"]) if obj.get("version") is not None else None
89
- })
90
- return _obj
91
-
92
-