cosmotech-api 4.0.0.dev9__tar.gz → 5.0.0b3__tar.gz

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 (849) hide show
  1. cosmotech_api-5.0.0b3/LICENSE +17 -0
  2. cosmotech_api-5.0.0b3/PKG-INFO +27 -0
  3. cosmotech_api-5.0.0b3/README.md +300 -0
  4. cosmotech_api-5.0.0b3/cosmotech_api/__init__.py +116 -0
  5. cosmotech_api-5.0.0b3/cosmotech_api/api/__init__.py +11 -0
  6. cosmotech_api-5.0.0b3/cosmotech_api/api/connector_api.py +1110 -0
  7. cosmotech_api-5.0.0b3/cosmotech_api/api/dataset_api.py +6545 -0
  8. cosmotech_api-5.0.0b3/cosmotech_api/api/meta_api.py +281 -0
  9. cosmotech_api-5.0.0b3/cosmotech_api/api/organization_api.py +3886 -0
  10. cosmotech_api-5.0.0b3/cosmotech_api/api/run_api.py +2253 -0
  11. cosmotech_api-5.0.0b3/cosmotech_api/api/runner_api.py +4608 -0
  12. cosmotech_api-5.0.0b3/cosmotech_api/api/scenario_api.py +6708 -0
  13. cosmotech_api-5.0.0b3/cosmotech_api/api/scenariorun_api.py +4102 -0
  14. cosmotech_api-5.0.0b3/cosmotech_api/api/scenariorunresult_api.py +386 -0
  15. cosmotech_api-5.0.0b3/cosmotech_api/api/solution_api.py +8020 -0
  16. cosmotech_api-5.0.0b3/cosmotech_api/api/twingraph_api.py +4212 -0
  17. cosmotech_api-5.0.0b3/cosmotech_api/api/validator_api.py +1314 -0
  18. cosmotech_api-5.0.0b3/cosmotech_api/api/workspace_api.py +5300 -0
  19. cosmotech_api-5.0.0b3/cosmotech_api/api_client.py +798 -0
  20. cosmotech_api-5.0.0b3/cosmotech_api/configuration.py +586 -0
  21. cosmotech_api-5.0.0b3/cosmotech_api/exceptions.py +217 -0
  22. cosmotech_api-5.0.0b3/cosmotech_api/model/component_role_permissions.py +260 -0
  23. cosmotech_api-5.0.0b3/cosmotech_api/model/connector.py +330 -0
  24. cosmotech_api-5.0.0b3/cosmotech_api/model/connector_parameter.py +284 -0
  25. cosmotech_api-5.0.0b3/cosmotech_api/model/connector_parameter_group.py +280 -0
  26. cosmotech_api-5.0.0b3/cosmotech_api/model/container_resource_size_info.py +268 -0
  27. cosmotech_api-5.0.0b3/cosmotech_api/model/container_resource_sizing.py +274 -0
  28. cosmotech_api-5.0.0b3/cosmotech_api/model/dataset.py +376 -0
  29. cosmotech_api-5.0.0b3/cosmotech_api/model/dataset_access_control.py +268 -0
  30. cosmotech_api-5.0.0b3/cosmotech_api/model/dataset_compatibility.py +270 -0
  31. cosmotech_api-5.0.0b3/cosmotech_api/model/dataset_connector.py +268 -0
  32. cosmotech_api-5.0.0b3/cosmotech_api/model/dataset_copy_parameters.py +264 -0
  33. cosmotech_api-5.0.0b3/cosmotech_api/model/dataset_role.py +262 -0
  34. cosmotech_api-5.0.0b3/cosmotech_api/model/dataset_search.py +262 -0
  35. cosmotech_api-5.0.0b3/cosmotech_api/model/dataset_security.py +274 -0
  36. cosmotech_api-5.0.0b3/cosmotech_api/model/dataset_source_type.py +287 -0
  37. cosmotech_api-5.0.0b3/cosmotech_api/model/dataset_twin_graph_hash.py +256 -0
  38. cosmotech_api-5.0.0b3/cosmotech_api/model/dataset_twin_graph_info.py +264 -0
  39. cosmotech_api-5.0.0b3/cosmotech_api/model/dataset_twin_graph_query.py +262 -0
  40. cosmotech_api-5.0.0b3/cosmotech_api/model/delete_historical_data.py +272 -0
  41. cosmotech_api-5.0.0b3/cosmotech_api/model/file_upload_metadata.py +260 -0
  42. cosmotech_api-5.0.0b3/cosmotech_api/model/file_upload_validation.py +266 -0
  43. cosmotech_api-5.0.0b3/cosmotech_api/model/graph_properties.py +272 -0
  44. cosmotech_api-5.0.0b3/cosmotech_api/model/organization.py +282 -0
  45. cosmotech_api-5.0.0b3/cosmotech_api/model/organization_access_control.py +268 -0
  46. cosmotech_api-5.0.0b3/cosmotech_api/model/organization_role.py +262 -0
  47. cosmotech_api-5.0.0b3/cosmotech_api/model/organization_security.py +274 -0
  48. cosmotech_api-5.0.0b3/cosmotech_api/model/organization_service.py +272 -0
  49. cosmotech_api-5.0.0b3/cosmotech_api/model/organization_services.py +270 -0
  50. cosmotech_api-5.0.0b3/cosmotech_api/model/resource_size_info.py +268 -0
  51. cosmotech_api-5.0.0b3/cosmotech_api/model/run.py +351 -0
  52. cosmotech_api-5.0.0b3/cosmotech_api/model/run_container.py +318 -0
  53. cosmotech_api-5.0.0b3/cosmotech_api/model/run_container_artifact.py +260 -0
  54. cosmotech_api-5.0.0b3/cosmotech_api/model/run_container_logs.py +272 -0
  55. cosmotech_api-5.0.0b3/cosmotech_api/model/run_logs.py +268 -0
  56. cosmotech_api-5.0.0b3/cosmotech_api/model/run_resource_requested.py +260 -0
  57. cosmotech_api-5.0.0b3/cosmotech_api/model/run_search.py +296 -0
  58. cosmotech_api-5.0.0b3/cosmotech_api/model/run_start_containers.py +286 -0
  59. cosmotech_api-5.0.0b3/cosmotech_api/model/run_state.py +285 -0
  60. cosmotech_api-5.0.0b3/cosmotech_api/model/run_status.py +316 -0
  61. cosmotech_api-5.0.0b3/cosmotech_api/model/run_status_node.py +307 -0
  62. cosmotech_api-5.0.0b3/cosmotech_api/model/run_template.py +408 -0
  63. cosmotech_api-5.0.0b3/cosmotech_api/model/run_template_handler_id.py +287 -0
  64. cosmotech_api-5.0.0b3/cosmotech_api/model/run_template_orchestrator.py +283 -0
  65. cosmotech_api-5.0.0b3/cosmotech_api/model/run_template_parameter.py +296 -0
  66. cosmotech_api-5.0.0b3/cosmotech_api/model/run_template_parameter_group.py +288 -0
  67. cosmotech_api-5.0.0b3/cosmotech_api/model/run_template_parameter_value.py +273 -0
  68. cosmotech_api-5.0.0b3/cosmotech_api/model/run_template_resource_sizing.py +274 -0
  69. cosmotech_api-5.0.0b3/cosmotech_api/model/run_template_step_source.py +285 -0
  70. cosmotech_api-5.0.0b3/cosmotech_api/model/runner.py +379 -0
  71. cosmotech_api-5.0.0b3/cosmotech_api/model/runner_access_control.py +268 -0
  72. cosmotech_api-5.0.0b3/cosmotech_api/model/runner_changed_parameter_value.py +272 -0
  73. cosmotech_api-5.0.0b3/cosmotech_api/model/runner_comparison_result.py +273 -0
  74. cosmotech_api-5.0.0b3/cosmotech_api/model/runner_data_download_info.py +267 -0
  75. cosmotech_api-5.0.0b3/cosmotech_api/model/runner_data_download_job.py +257 -0
  76. cosmotech_api-5.0.0b3/cosmotech_api/model/runner_job_state.py +287 -0
  77. cosmotech_api-5.0.0b3/cosmotech_api/model/runner_last_run.py +268 -0
  78. cosmotech_api-5.0.0b3/cosmotech_api/model/runner_resource_sizing.py +274 -0
  79. cosmotech_api-5.0.0b3/cosmotech_api/model/runner_role.py +262 -0
  80. cosmotech_api-5.0.0b3/cosmotech_api/model/runner_run_template_parameter_value.py +277 -0
  81. cosmotech_api-5.0.0b3/cosmotech_api/model/runner_security.py +274 -0
  82. cosmotech_api-5.0.0b3/cosmotech_api/model/runner_validation_status.py +285 -0
  83. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario.py +379 -0
  84. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_access_control.py +268 -0
  85. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_changed_parameter_value.py +272 -0
  86. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_comparison_result.py +273 -0
  87. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_data_download_info.py +267 -0
  88. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_data_download_job.py +257 -0
  89. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_job_state.py +287 -0
  90. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_last_run.py +268 -0
  91. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_resource_sizing.py +274 -0
  92. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_role.py +262 -0
  93. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run.py +369 -0
  94. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run_container.py +318 -0
  95. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run_container_artifact.py +260 -0
  96. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run_container_logs.py +272 -0
  97. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run_logs.py +268 -0
  98. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run_resource_requested.py +260 -0
  99. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run_result.py +260 -0
  100. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run_search.py +296 -0
  101. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run_start_containers.py +286 -0
  102. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run_state.py +287 -0
  103. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run_status.py +308 -0
  104. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run_status_node.py +307 -0
  105. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_run_template_parameter_value.py +277 -0
  106. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_security.py +274 -0
  107. cosmotech_api-5.0.0b3/cosmotech_api/model/scenario_validation_status.py +285 -0
  108. cosmotech_api-5.0.0b3/cosmotech_api/model/solution.py +335 -0
  109. cosmotech_api-5.0.0b3/cosmotech_api/model/solution_access_control.py +268 -0
  110. cosmotech_api-5.0.0b3/cosmotech_api/model/solution_role.py +262 -0
  111. cosmotech_api-5.0.0b3/cosmotech_api/model/solution_security.py +274 -0
  112. cosmotech_api-5.0.0b3/cosmotech_api/model/source_info.py +274 -0
  113. cosmotech_api-5.0.0b3/cosmotech_api/model/sub_dataset_graph_query.py +268 -0
  114. cosmotech_api-5.0.0b3/cosmotech_api/model/translated_labels.py +252 -0
  115. cosmotech_api-5.0.0b3/cosmotech_api/model/twin_graph_batch_result.py +274 -0
  116. cosmotech_api-5.0.0b3/cosmotech_api/model/twin_graph_hash.py +256 -0
  117. cosmotech_api-5.0.0b3/cosmotech_api/model/twin_graph_query.py +266 -0
  118. cosmotech_api-5.0.0b3/cosmotech_api/model/validator.py +295 -0
  119. cosmotech_api-5.0.0b3/cosmotech_api/model/validator_run.py +302 -0
  120. cosmotech_api-5.0.0b3/cosmotech_api/model/workspace.py +351 -0
  121. cosmotech_api-5.0.0b3/cosmotech_api/model/workspace_access_control.py +268 -0
  122. cosmotech_api-5.0.0b3/cosmotech_api/model/workspace_file.py +256 -0
  123. cosmotech_api-5.0.0b3/cosmotech_api/model/workspace_role.py +262 -0
  124. cosmotech_api-5.0.0b3/cosmotech_api/model/workspace_secret.py +256 -0
  125. cosmotech_api-5.0.0b3/cosmotech_api/model/workspace_security.py +274 -0
  126. cosmotech_api-5.0.0b3/cosmotech_api/model/workspace_solution.py +264 -0
  127. cosmotech_api-5.0.0b3/cosmotech_api/model/workspace_web_app.py +270 -0
  128. cosmotech_api-5.0.0b3/cosmotech_api/model_utils.py +2038 -0
  129. cosmotech_api-5.0.0b3/cosmotech_api/models/__init__.py +93 -0
  130. cosmotech_api-5.0.0b3/cosmotech_api/models/about_info.py +92 -0
  131. cosmotech_api-5.0.0b3/cosmotech_api/models/about_info_version.py +100 -0
  132. cosmotech_api-5.0.0b3/cosmotech_api/models/component_role_permissions.py +90 -0
  133. cosmotech_api-5.0.0b3/cosmotech_api/models/connector.py +121 -0
  134. cosmotech_api-5.0.0b3/cosmotech_api/models/connector_parameter.py +98 -0
  135. cosmotech_api-5.0.0b3/cosmotech_api/models/connector_parameter_group.py +100 -0
  136. cosmotech_api-5.0.0b3/cosmotech_api/models/container_resource_size_info.py +90 -0
  137. cosmotech_api-5.0.0b3/cosmotech_api/models/container_resource_sizing.py +97 -0
  138. cosmotech_api-5.0.0b3/cosmotech_api/models/create_info.py +103 -0
  139. cosmotech_api-5.0.0b3/cosmotech_api/models/created_run.py +88 -0
  140. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset.py +138 -0
  141. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_access_control.py +90 -0
  142. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_compatibility.py +92 -0
  143. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_connector.py +94 -0
  144. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_copy_parameters.py +92 -0
  145. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_create_request.py +121 -0
  146. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_part.py +130 -0
  147. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_part_create_request.py +98 -0
  148. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_part_type_enum.py +38 -0
  149. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_part_update_request.py +90 -0
  150. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_role.py +88 -0
  151. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_search.py +88 -0
  152. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_security.py +98 -0
  153. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_source_type.py +42 -0
  154. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_twin_graph_hash.py +88 -0
  155. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_twin_graph_info.py +92 -0
  156. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_twin_graph_query.py +88 -0
  157. cosmotech_api-5.0.0b3/cosmotech_api/models/dataset_update_request.py +109 -0
  158. cosmotech_api-5.0.0b3/cosmotech_api/models/delete_historical_data.py +92 -0
  159. cosmotech_api-5.0.0b3/cosmotech_api/models/edit_info.py +90 -0
  160. cosmotech_api-5.0.0b3/cosmotech_api/models/file_upload_metadata.py +90 -0
  161. cosmotech_api-5.0.0b3/cosmotech_api/models/file_upload_validation.py +105 -0
  162. cosmotech_api-5.0.0b3/cosmotech_api/models/graph_properties.py +96 -0
  163. cosmotech_api-5.0.0b3/cosmotech_api/models/ingestion_status_enum.py +40 -0
  164. cosmotech_api-5.0.0b3/cosmotech_api/models/io_types_enum.py +38 -0
  165. cosmotech_api-5.0.0b3/cosmotech_api/models/last_run_info.py +100 -0
  166. cosmotech_api-5.0.0b3/cosmotech_api/models/organization.py +109 -0
  167. cosmotech_api-5.0.0b3/cosmotech_api/models/organization_access_control.py +90 -0
  168. cosmotech_api-5.0.0b3/cosmotech_api/models/organization_create_request.py +95 -0
  169. cosmotech_api-5.0.0b3/cosmotech_api/models/organization_edit_info.py +90 -0
  170. cosmotech_api-5.0.0b3/cosmotech_api/models/organization_role.py +88 -0
  171. cosmotech_api-5.0.0b3/cosmotech_api/models/organization_security.py +98 -0
  172. cosmotech_api-5.0.0b3/cosmotech_api/models/organization_service.py +96 -0
  173. cosmotech_api-5.0.0b3/cosmotech_api/models/organization_services.py +99 -0
  174. cosmotech_api-5.0.0b3/cosmotech_api/models/organization_update_request.py +89 -0
  175. cosmotech_api-5.0.0b3/cosmotech_api/models/query_result.py +88 -0
  176. cosmotech_api-5.0.0b3/cosmotech_api/models/resource_size_info.py +90 -0
  177. cosmotech_api-5.0.0b3/cosmotech_api/models/run.py +165 -0
  178. cosmotech_api-5.0.0b3/cosmotech_api/models/run_container.py +116 -0
  179. cosmotech_api-5.0.0b3/cosmotech_api/models/run_container_artifact.py +90 -0
  180. cosmotech_api-5.0.0b3/cosmotech_api/models/run_container_logs.py +102 -0
  181. cosmotech_api-5.0.0b3/cosmotech_api/models/run_data.py +92 -0
  182. cosmotech_api-5.0.0b3/cosmotech_api/models/run_data_query.py +88 -0
  183. cosmotech_api-5.0.0b3/cosmotech_api/models/run_edit_info.py +90 -0
  184. cosmotech_api-5.0.0b3/cosmotech_api/models/run_logs.py +102 -0
  185. cosmotech_api-5.0.0b3/cosmotech_api/models/run_logs_entry.py +88 -0
  186. cosmotech_api-5.0.0b3/cosmotech_api/models/run_resource_requested.py +90 -0
  187. cosmotech_api-5.0.0b3/cosmotech_api/models/run_search.py +103 -0
  188. cosmotech_api-5.0.0b3/cosmotech_api/models/run_search_state.py +46 -0
  189. cosmotech_api-5.0.0b3/cosmotech_api/models/run_start_containers.py +104 -0
  190. cosmotech_api-5.0.0b3/cosmotech_api/models/run_state.py +41 -0
  191. cosmotech_api-5.0.0b3/cosmotech_api/models/run_status.py +129 -0
  192. cosmotech_api-5.0.0b3/cosmotech_api/models/run_status_node.py +116 -0
  193. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template.py +109 -0
  194. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_create_request.py +109 -0
  195. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_handler_id.py +42 -0
  196. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_orchestrator.py +38 -0
  197. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_parameter.py +105 -0
  198. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_parameter_create_request.py +105 -0
  199. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_parameter_group.py +101 -0
  200. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_parameter_group_create_request.py +101 -0
  201. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_parameter_group_update_request.py +98 -0
  202. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_parameter_update_request.py +103 -0
  203. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_parameter_value.py +94 -0
  204. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_resource_sizing.py +97 -0
  205. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_step_source.py +40 -0
  206. cosmotech_api-5.0.0b3/cosmotech_api/models/run_template_update_request.py +107 -0
  207. cosmotech_api-5.0.0b3/cosmotech_api/models/runner.py +172 -0
  208. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_access_control.py +90 -0
  209. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_changed_parameter_value.py +102 -0
  210. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_comparison_result.py +106 -0
  211. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_create_request.py +154 -0
  212. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_data_download_info.py +93 -0
  213. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_data_download_job.py +90 -0
  214. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_edit_info.py +90 -0
  215. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_job_state.py +42 -0
  216. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_last_run.py +94 -0
  217. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_parent_last_run.py +94 -0
  218. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_resource_sizing.py +97 -0
  219. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_role.py +88 -0
  220. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_root_last_run.py +94 -0
  221. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_run_template_parameter_value.py +96 -0
  222. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_security.py +98 -0
  223. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_update_request.py +123 -0
  224. cosmotech_api-5.0.0b3/cosmotech_api/models/runner_validation_status.py +40 -0
  225. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario.py +186 -0
  226. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_access_control.py +90 -0
  227. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_changed_parameter_value.py +102 -0
  228. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_comparison_result.py +106 -0
  229. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_data_download_info.py +93 -0
  230. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_data_download_job.py +90 -0
  231. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_job_state.py +42 -0
  232. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_last_run.py +94 -0
  233. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_resource_sizing.py +97 -0
  234. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_role.py +88 -0
  235. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run.py +179 -0
  236. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run_container.py +126 -0
  237. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run_container_artifact.py +90 -0
  238. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run_container_logs.py +102 -0
  239. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run_logs.py +107 -0
  240. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run_resource_requested.py +90 -0
  241. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run_search.py +103 -0
  242. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run_search_state.py +46 -0
  243. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run_start_containers.py +104 -0
  244. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run_state.py +42 -0
  245. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run_status.py +119 -0
  246. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run_status_node.py +116 -0
  247. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_run_template_parameter_value.py +96 -0
  248. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_security.py +98 -0
  249. cosmotech_api-5.0.0b3/cosmotech_api/models/scenario_validation_status.py +40 -0
  250. cosmotech_api-5.0.0b3/cosmotech_api/models/send_run_data_request.py +90 -0
  251. cosmotech_api-5.0.0b3/cosmotech_api/models/solution.py +170 -0
  252. cosmotech_api-5.0.0b3/cosmotech_api/models/solution_access_control.py +90 -0
  253. cosmotech_api-5.0.0b3/cosmotech_api/models/solution_create_request.py +139 -0
  254. cosmotech_api-5.0.0b3/cosmotech_api/models/solution_edit_info.py +90 -0
  255. cosmotech_api-5.0.0b3/cosmotech_api/models/solution_role.py +88 -0
  256. cosmotech_api-5.0.0b3/cosmotech_api/models/solution_security.py +98 -0
  257. cosmotech_api-5.0.0b3/cosmotech_api/models/solution_update_request.py +133 -0
  258. cosmotech_api-5.0.0b3/cosmotech_api/models/source_info.py +94 -0
  259. cosmotech_api-5.0.0b3/cosmotech_api/models/sub_dataset_graph_query.py +94 -0
  260. cosmotech_api-5.0.0b3/cosmotech_api/models/twin_graph_batch_result.py +92 -0
  261. cosmotech_api-5.0.0b3/cosmotech_api/models/twin_graph_hash.py +88 -0
  262. cosmotech_api-5.0.0b3/cosmotech_api/models/twin_graph_query.py +90 -0
  263. cosmotech_api-5.0.0b3/cosmotech_api/models/twincache_status_enum.py +38 -0
  264. cosmotech_api-5.0.0b3/cosmotech_api/models/validator.py +106 -0
  265. cosmotech_api-5.0.0b3/cosmotech_api/models/workspace.py +150 -0
  266. cosmotech_api-5.0.0b3/cosmotech_api/models/workspace_access_control.py +90 -0
  267. cosmotech_api-5.0.0b3/cosmotech_api/models/workspace_create_request.py +117 -0
  268. cosmotech_api-5.0.0b3/cosmotech_api/models/workspace_edit_info.py +90 -0
  269. cosmotech_api-5.0.0b3/cosmotech_api/models/workspace_file.py +88 -0
  270. cosmotech_api-5.0.0b3/cosmotech_api/models/workspace_role.py +88 -0
  271. cosmotech_api-5.0.0b3/cosmotech_api/models/workspace_secret.py +88 -0
  272. cosmotech_api-5.0.0b3/cosmotech_api/models/workspace_security.py +98 -0
  273. cosmotech_api-5.0.0b3/cosmotech_api/models/workspace_solution.py +100 -0
  274. cosmotech_api-5.0.0b3/cosmotech_api/models/workspace_update_request.py +109 -0
  275. cosmotech_api-5.0.0b3/cosmotech_api/models/workspace_web_app.py +92 -0
  276. cosmotech_api-5.0.0b3/cosmotech_api/rest.py +259 -0
  277. cosmotech_api-5.0.0b3/cosmotech_api.egg-info/PKG-INFO +27 -0
  278. cosmotech_api-5.0.0b3/cosmotech_api.egg-info/SOURCES.txt +466 -0
  279. cosmotech_api-5.0.0b3/cosmotech_api.egg-info/requires.txt +4 -0
  280. cosmotech_api-5.0.0b3/pyproject.toml +89 -0
  281. cosmotech_api-5.0.0b3/setup.py +51 -0
  282. cosmotech_api-5.0.0b3/test/test_about_info.py +67 -0
  283. cosmotech_api-5.0.0b3/test/test_about_info_version.py +65 -0
  284. cosmotech_api-5.0.0b3/test/test_component_role_permissions.py +63 -0
  285. cosmotech_api-5.0.0b3/test/test_connector.py +81 -0
  286. cosmotech_api-5.0.0b3/test/test_connector_api.py +60 -0
  287. cosmotech_api-5.0.0b3/test/test_connector_parameter.py +61 -0
  288. cosmotech_api-5.0.0b3/test/test_connector_parameter_group.py +77 -0
  289. cosmotech_api-5.0.0b3/test/test_container_resource_size_info.py +55 -0
  290. cosmotech_api-5.0.0b3/test/test_container_resource_sizing.py +63 -0
  291. cosmotech_api-5.0.0b3/test/test_create_info.py +56 -0
  292. cosmotech_api-5.0.0b3/test/test_created_run.py +53 -0
  293. cosmotech_api-5.0.0b3/test/test_dataset.py +126 -0
  294. cosmotech_api-5.0.0b3/test/test_dataset_access_control.py +55 -0
  295. cosmotech_api-5.0.0b3/test/test_dataset_api.py +172 -0
  296. cosmotech_api-5.0.0b3/test/test_dataset_compatibility.py +55 -0
  297. cosmotech_api-5.0.0b3/test/test_dataset_connector.py +57 -0
  298. cosmotech_api-5.0.0b3/test/test_dataset_copy_parameters.py +54 -0
  299. cosmotech_api-5.0.0b3/test/test_dataset_create_request.py +75 -0
  300. cosmotech_api-5.0.0b3/test/test_dataset_part.py +84 -0
  301. cosmotech_api-5.0.0b3/test/test_dataset_part_create_request.py +60 -0
  302. cosmotech_api-5.0.0b3/test/test_dataset_part_type_enum.py +34 -0
  303. cosmotech_api-5.0.0b3/test/test_dataset_part_update_request.py +55 -0
  304. cosmotech_api-5.0.0b3/test/test_dataset_role.py +53 -0
  305. cosmotech_api-5.0.0b3/test/test_dataset_search.py +57 -0
  306. cosmotech_api-5.0.0b3/test/test_dataset_security.py +63 -0
  307. cosmotech_api-5.0.0b3/test/test_dataset_source_type.py +34 -0
  308. cosmotech_api-5.0.0b3/test/test_dataset_twin_graph_hash.py +52 -0
  309. cosmotech_api-5.0.0b3/test/test_dataset_twin_graph_info.py +54 -0
  310. cosmotech_api-5.0.0b3/test/test_dataset_twin_graph_query.py +53 -0
  311. cosmotech_api-5.0.0b3/test/test_dataset_update_request.py +73 -0
  312. cosmotech_api-5.0.0b3/test/test_delete_historical_data.py +55 -0
  313. cosmotech_api-5.0.0b3/test/test_edit_info.py +55 -0
  314. cosmotech_api-5.0.0b3/test/test_file_upload_metadata.py +53 -0
  315. cosmotech_api-5.0.0b3/test/test_file_upload_validation.py +61 -0
  316. cosmotech_api-5.0.0b3/test/test_graph_properties.py +56 -0
  317. cosmotech_api-5.0.0b3/test/test_ingestion_status_enum.py +34 -0
  318. cosmotech_api-5.0.0b3/test/test_io_types_enum.py +34 -0
  319. cosmotech_api-5.0.0b3/test/test_last_run_info.py +53 -0
  320. cosmotech_api-5.0.0b3/test/test_meta_api.py +39 -0
  321. cosmotech_api-5.0.0b3/test/test_organization.py +81 -0
  322. cosmotech_api-5.0.0b3/test/test_organization_access_control.py +55 -0
  323. cosmotech_api-5.0.0b3/test/test_organization_api.py +130 -0
  324. cosmotech_api-5.0.0b3/test/test_organization_create_request.py +60 -0
  325. cosmotech_api-5.0.0b3/test/test_organization_edit_info.py +55 -0
  326. cosmotech_api-5.0.0b3/test/test_organization_role.py +53 -0
  327. cosmotech_api-5.0.0b3/test/test_organization_security.py +63 -0
  328. cosmotech_api-5.0.0b3/test/test_organization_service.py +56 -0
  329. cosmotech_api-5.0.0b3/test/test_organization_services.py +64 -0
  330. cosmotech_api-5.0.0b3/test/test_organization_update_request.py +52 -0
  331. cosmotech_api-5.0.0b3/test/test_query_result.py +54 -0
  332. cosmotech_api-5.0.0b3/test/test_resource_size_info.py +55 -0
  333. cosmotech_api-5.0.0b3/test/test_run.py +108 -0
  334. cosmotech_api-5.0.0b3/test/test_run_api.py +81 -0
  335. cosmotech_api-5.0.0b3/test/test_run_container.py +78 -0
  336. cosmotech_api-5.0.0b3/test/test_run_container_artifact.py +53 -0
  337. cosmotech_api-5.0.0b3/test/test_run_container_logs.py +57 -0
  338. cosmotech_api-5.0.0b3/test/test_run_data.py +56 -0
  339. cosmotech_api-5.0.0b3/test/test_run_data_query.py +53 -0
  340. cosmotech_api-5.0.0b3/test/test_run_edit_info.py +55 -0
  341. cosmotech_api-5.0.0b3/test/test_run_logs.py +61 -0
  342. cosmotech_api-5.0.0b3/test/test_run_logs_entry.py +53 -0
  343. cosmotech_api-5.0.0b3/test/test_run_resource_requested.py +53 -0
  344. cosmotech_api-5.0.0b3/test/test_run_search.py +59 -0
  345. cosmotech_api-5.0.0b3/test/test_run_search_state.py +34 -0
  346. cosmotech_api-5.0.0b3/test/test_run_start_containers.py +124 -0
  347. cosmotech_api-5.0.0b3/test/test_run_state.py +34 -0
  348. cosmotech_api-5.0.0b3/test/test_run_status.py +86 -0
  349. cosmotech_api-5.0.0b3/test/test_run_status_node.py +67 -0
  350. cosmotech_api-5.0.0b3/test/test_run_template.py +76 -0
  351. cosmotech_api-5.0.0b3/test/test_run_template_create_request.py +73 -0
  352. cosmotech_api-5.0.0b3/test/test_run_template_handler_id.py +34 -0
  353. cosmotech_api-5.0.0b3/test/test_run_template_orchestrator.py +34 -0
  354. cosmotech_api-5.0.0b3/test/test_run_template_parameter.py +64 -0
  355. cosmotech_api-5.0.0b3/test/test_run_template_parameter_create_request.py +64 -0
  356. cosmotech_api-5.0.0b3/test/test_run_template_parameter_group.py +67 -0
  357. cosmotech_api-5.0.0b3/test/test_run_template_parameter_group_create_request.py +63 -0
  358. cosmotech_api-5.0.0b3/test/test_run_template_parameter_group_update_request.py +61 -0
  359. cosmotech_api-5.0.0b3/test/test_run_template_parameter_update_request.py +61 -0
  360. cosmotech_api-5.0.0b3/test/test_run_template_parameter_value.py +56 -0
  361. cosmotech_api-5.0.0b3/test/test_run_template_resource_sizing.py +63 -0
  362. cosmotech_api-5.0.0b3/test/test_run_template_step_source.py +34 -0
  363. cosmotech_api-5.0.0b3/test/test_run_template_update_request.py +71 -0
  364. cosmotech_api-5.0.0b3/test/test_runner.py +134 -0
  365. cosmotech_api-5.0.0b3/test/test_runner_access_control.py +55 -0
  366. cosmotech_api-5.0.0b3/test/test_runner_api.py +137 -0
  367. cosmotech_api-5.0.0b3/test/test_runner_changed_parameter_value.py +55 -0
  368. cosmotech_api-5.0.0b3/test/test_runner_comparison_result.py +60 -0
  369. cosmotech_api-5.0.0b3/test/test_runner_create_request.py +90 -0
  370. cosmotech_api-5.0.0b3/test/test_runner_data_download_info.py +53 -0
  371. cosmotech_api-5.0.0b3/test/test_runner_data_download_job.py +52 -0
  372. cosmotech_api-5.0.0b3/test/test_runner_edit_info.py +55 -0
  373. cosmotech_api-5.0.0b3/test/test_runner_job_state.py +34 -0
  374. cosmotech_api-5.0.0b3/test/test_runner_last_run.py +55 -0
  375. cosmotech_api-5.0.0b3/test/test_runner_parent_last_run.py +55 -0
  376. cosmotech_api-5.0.0b3/test/test_runner_resource_sizing.py +63 -0
  377. cosmotech_api-5.0.0b3/test/test_runner_role.py +53 -0
  378. cosmotech_api-5.0.0b3/test/test_runner_root_last_run.py +55 -0
  379. cosmotech_api-5.0.0b3/test/test_runner_run_template_parameter_value.py +57 -0
  380. cosmotech_api-5.0.0b3/test/test_runner_security.py +63 -0
  381. cosmotech_api-5.0.0b3/test/test_runner_update_request.py +77 -0
  382. cosmotech_api-5.0.0b3/test/test_runner_validation_status.py +34 -0
  383. cosmotech_api-5.0.0b3/test/test_scenario.py +110 -0
  384. cosmotech_api-5.0.0b3/test/test_scenario_access_control.py +55 -0
  385. cosmotech_api-5.0.0b3/test/test_scenario_api.py +186 -0
  386. cosmotech_api-5.0.0b3/test/test_scenario_changed_parameter_value.py +55 -0
  387. cosmotech_api-5.0.0b3/test/test_scenario_comparison_result.py +60 -0
  388. cosmotech_api-5.0.0b3/test/test_scenario_data_download_info.py +53 -0
  389. cosmotech_api-5.0.0b3/test/test_scenario_data_download_job.py +52 -0
  390. cosmotech_api-5.0.0b3/test/test_scenario_job_state.py +34 -0
  391. cosmotech_api-5.0.0b3/test/test_scenario_last_run.py +55 -0
  392. cosmotech_api-5.0.0b3/test/test_scenario_resource_sizing.py +63 -0
  393. cosmotech_api-5.0.0b3/test/test_scenario_role.py +53 -0
  394. cosmotech_api-5.0.0b3/test/test_scenario_run.py +113 -0
  395. cosmotech_api-5.0.0b3/test/test_scenario_run_container.py +83 -0
  396. cosmotech_api-5.0.0b3/test/test_scenario_run_container_artifact.py +53 -0
  397. cosmotech_api-5.0.0b3/test/test_scenario_run_container_logs.py +57 -0
  398. cosmotech_api-5.0.0b3/test/test_scenario_run_logs.py +61 -0
  399. cosmotech_api-5.0.0b3/test/test_scenario_run_resource_requested.py +53 -0
  400. cosmotech_api-5.0.0b3/test/test_scenario_run_result.py +36 -0
  401. cosmotech_api-5.0.0b3/test/test_scenario_run_search.py +59 -0
  402. cosmotech_api-5.0.0b3/test/test_scenario_run_search_state.py +34 -0
  403. cosmotech_api-5.0.0b3/test/test_scenario_run_start_containers.py +124 -0
  404. cosmotech_api-5.0.0b3/test/test_scenario_run_state.py +34 -0
  405. cosmotech_api-5.0.0b3/test/test_scenario_run_status.py +81 -0
  406. cosmotech_api-5.0.0b3/test/test_scenario_run_status_node.py +67 -0
  407. cosmotech_api-5.0.0b3/test/test_scenario_run_template_parameter_value.py +57 -0
  408. cosmotech_api-5.0.0b3/test/test_scenario_security.py +63 -0
  409. cosmotech_api-5.0.0b3/test/test_scenario_validation_status.py +34 -0
  410. cosmotech_api-5.0.0b3/test/test_scenariorun_api.py +130 -0
  411. cosmotech_api-5.0.0b3/test/test_send_run_data_request.py +59 -0
  412. cosmotech_api-5.0.0b3/test/test_solution.py +198 -0
  413. cosmotech_api-5.0.0b3/test/test_solution_access_control.py +55 -0
  414. cosmotech_api-5.0.0b3/test/test_solution_api.py +221 -0
  415. cosmotech_api-5.0.0b3/test/test_solution_create_request.py +122 -0
  416. cosmotech_api-5.0.0b3/test/test_solution_edit_info.py +55 -0
  417. cosmotech_api-5.0.0b3/test/test_solution_role.py +53 -0
  418. cosmotech_api-5.0.0b3/test/test_solution_security.py +63 -0
  419. cosmotech_api-5.0.0b3/test/test_solution_update_request.py +111 -0
  420. cosmotech_api-5.0.0b3/test/test_source_info.py +56 -0
  421. cosmotech_api-5.0.0b3/test/test_sub_dataset_graph_query.py +57 -0
  422. cosmotech_api-5.0.0b3/test/test_translated_labels.py +36 -0
  423. cosmotech_api-5.0.0b3/test/test_twin_graph_batch_result.py +61 -0
  424. cosmotech_api-5.0.0b3/test/test_twin_graph_hash.py +52 -0
  425. cosmotech_api-5.0.0b3/test/test_twin_graph_query.py +54 -0
  426. cosmotech_api-5.0.0b3/test/test_twincache_status_enum.py +34 -0
  427. cosmotech_api-5.0.0b3/test/test_twingraph_api.py +130 -0
  428. cosmotech_api-5.0.0b3/test/test_validator.py +65 -0
  429. cosmotech_api-5.0.0b3/test/test_validator_run.py +36 -0
  430. cosmotech_api-5.0.0b3/test/test_workspace.py +107 -0
  431. cosmotech_api-5.0.0b3/test/test_workspace_access_control.py +55 -0
  432. cosmotech_api-5.0.0b3/test/test_workspace_api.py +158 -0
  433. cosmotech_api-5.0.0b3/test/test_workspace_create_request.py +84 -0
  434. cosmotech_api-5.0.0b3/test/test_workspace_edit_info.py +55 -0
  435. cosmotech_api-5.0.0b3/test/test_workspace_file.py +53 -0
  436. cosmotech_api-5.0.0b3/test/test_workspace_role.py +53 -0
  437. cosmotech_api-5.0.0b3/test/test_workspace_secret.py +52 -0
  438. cosmotech_api-5.0.0b3/test/test_workspace_security.py +63 -0
  439. cosmotech_api-5.0.0b3/test/test_workspace_solution.py +57 -0
  440. cosmotech_api-5.0.0b3/test/test_workspace_update_request.py +68 -0
  441. cosmotech_api-5.0.0b3/test/test_workspace_web_app.py +55 -0
  442. cosmotech_api-4.0.0.dev9/LICENSE +0 -17
  443. cosmotech_api-4.0.0.dev9/PKG-INFO +0 -18
  444. cosmotech_api-4.0.0.dev9/README.md +0 -302
  445. cosmotech_api-4.0.0.dev9/cosmotech_api/__init__.py +0 -111
  446. cosmotech_api-4.0.0.dev9/cosmotech_api/api/__init__.py +0 -11
  447. cosmotech_api-4.0.0.dev9/cosmotech_api/api/connector_api.py +0 -1099
  448. cosmotech_api-4.0.0.dev9/cosmotech_api/api/dataset_api.py +0 -9175
  449. cosmotech_api-4.0.0.dev9/cosmotech_api/api/organization_api.py +0 -3843
  450. cosmotech_api-4.0.0.dev9/cosmotech_api/api/run_api.py +0 -2233
  451. cosmotech_api-4.0.0.dev9/cosmotech_api/api/runner_api.py +0 -4563
  452. cosmotech_api-4.0.0.dev9/cosmotech_api/api/scenario_api.py +0 -6688
  453. cosmotech_api-4.0.0.dev9/cosmotech_api/api/scenariorun_api.py +0 -4092
  454. cosmotech_api-4.0.0.dev9/cosmotech_api/api/scenariorunresult_api.py +0 -386
  455. cosmotech_api-4.0.0.dev9/cosmotech_api/api/solution_api.py +0 -5835
  456. cosmotech_api-4.0.0.dev9/cosmotech_api/api/twingraph_api.py +0 -4201
  457. cosmotech_api-4.0.0.dev9/cosmotech_api/api/validator_api.py +0 -1314
  458. cosmotech_api-4.0.0.dev9/cosmotech_api/api/workspace_api.py +0 -5836
  459. cosmotech_api-4.0.0.dev9/cosmotech_api/api_client.py +0 -789
  460. cosmotech_api-4.0.0.dev9/cosmotech_api/configuration.py +0 -459
  461. cosmotech_api-4.0.0.dev9/cosmotech_api/exceptions.py +0 -200
  462. cosmotech_api-4.0.0.dev9/cosmotech_api/model/component_role_permissions.py +0 -260
  463. cosmotech_api-4.0.0.dev9/cosmotech_api/model/connector.py +0 -330
  464. cosmotech_api-4.0.0.dev9/cosmotech_api/model/connector_parameter.py +0 -284
  465. cosmotech_api-4.0.0.dev9/cosmotech_api/model/connector_parameter_group.py +0 -280
  466. cosmotech_api-4.0.0.dev9/cosmotech_api/model/container_resource_size_info.py +0 -268
  467. cosmotech_api-4.0.0.dev9/cosmotech_api/model/container_resource_sizing.py +0 -274
  468. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset.py +0 -376
  469. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_access_control.py +0 -268
  470. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_compatibility.py +0 -270
  471. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_connector.py +0 -268
  472. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_copy_parameters.py +0 -264
  473. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_role.py +0 -262
  474. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_search.py +0 -262
  475. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_security.py +0 -274
  476. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_source_type.py +0 -287
  477. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_twin_graph_hash.py +0 -256
  478. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_twin_graph_info.py +0 -264
  479. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_twin_graph_query.py +0 -262
  480. cosmotech_api-4.0.0.dev9/cosmotech_api/model/delete_historical_data.py +0 -272
  481. cosmotech_api-4.0.0.dev9/cosmotech_api/model/file_upload_metadata.py +0 -260
  482. cosmotech_api-4.0.0.dev9/cosmotech_api/model/file_upload_validation.py +0 -266
  483. cosmotech_api-4.0.0.dev9/cosmotech_api/model/graph_properties.py +0 -272
  484. cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization.py +0 -282
  485. cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_access_control.py +0 -268
  486. cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_role.py +0 -262
  487. cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_security.py +0 -274
  488. cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_service.py +0 -272
  489. cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_services.py +0 -270
  490. cosmotech_api-4.0.0.dev9/cosmotech_api/model/resource_size_info.py +0 -268
  491. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run.py +0 -351
  492. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_container.py +0 -318
  493. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_container_artifact.py +0 -260
  494. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_container_logs.py +0 -272
  495. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_logs.py +0 -268
  496. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_resource_requested.py +0 -260
  497. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_search.py +0 -296
  498. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_start_containers.py +0 -286
  499. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_state.py +0 -285
  500. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_status.py +0 -316
  501. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_status_node.py +0 -307
  502. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template.py +0 -408
  503. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_handler_id.py +0 -287
  504. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_orchestrator.py +0 -283
  505. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_parameter.py +0 -296
  506. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_parameter_group.py +0 -288
  507. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_parameter_value.py +0 -273
  508. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_resource_sizing.py +0 -274
  509. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_step_source.py +0 -285
  510. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner.py +0 -379
  511. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_access_control.py +0 -268
  512. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_changed_parameter_value.py +0 -272
  513. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_comparison_result.py +0 -273
  514. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_data_download_info.py +0 -267
  515. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_data_download_job.py +0 -257
  516. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_job_state.py +0 -287
  517. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_last_run.py +0 -268
  518. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_resource_sizing.py +0 -274
  519. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_role.py +0 -262
  520. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_run_template_parameter_value.py +0 -277
  521. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_security.py +0 -274
  522. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_validation_status.py +0 -285
  523. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario.py +0 -379
  524. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_access_control.py +0 -268
  525. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_changed_parameter_value.py +0 -272
  526. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_comparison_result.py +0 -273
  527. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_data_download_info.py +0 -267
  528. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_data_download_job.py +0 -257
  529. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_job_state.py +0 -287
  530. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_last_run.py +0 -268
  531. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_resource_sizing.py +0 -274
  532. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_role.py +0 -262
  533. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run.py +0 -369
  534. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_container.py +0 -318
  535. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_container_artifact.py +0 -260
  536. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_container_logs.py +0 -272
  537. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_logs.py +0 -268
  538. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_resource_requested.py +0 -260
  539. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_result.py +0 -260
  540. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_search.py +0 -296
  541. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_start_containers.py +0 -286
  542. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_state.py +0 -287
  543. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_status.py +0 -308
  544. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_status_node.py +0 -307
  545. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_template_parameter_value.py +0 -277
  546. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_security.py +0 -274
  547. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_validation_status.py +0 -285
  548. cosmotech_api-4.0.0.dev9/cosmotech_api/model/solution.py +0 -335
  549. cosmotech_api-4.0.0.dev9/cosmotech_api/model/solution_access_control.py +0 -268
  550. cosmotech_api-4.0.0.dev9/cosmotech_api/model/solution_role.py +0 -262
  551. cosmotech_api-4.0.0.dev9/cosmotech_api/model/solution_security.py +0 -274
  552. cosmotech_api-4.0.0.dev9/cosmotech_api/model/source_info.py +0 -274
  553. cosmotech_api-4.0.0.dev9/cosmotech_api/model/sub_dataset_graph_query.py +0 -268
  554. cosmotech_api-4.0.0.dev9/cosmotech_api/model/translated_labels.py +0 -252
  555. cosmotech_api-4.0.0.dev9/cosmotech_api/model/twin_graph_batch_result.py +0 -274
  556. cosmotech_api-4.0.0.dev9/cosmotech_api/model/twin_graph_hash.py +0 -256
  557. cosmotech_api-4.0.0.dev9/cosmotech_api/model/twin_graph_query.py +0 -266
  558. cosmotech_api-4.0.0.dev9/cosmotech_api/model/validator.py +0 -295
  559. cosmotech_api-4.0.0.dev9/cosmotech_api/model/validator_run.py +0 -302
  560. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace.py +0 -351
  561. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_access_control.py +0 -268
  562. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_file.py +0 -256
  563. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_role.py +0 -262
  564. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_secret.py +0 -256
  565. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_security.py +0 -274
  566. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_solution.py +0 -264
  567. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_web_app.py +0 -270
  568. cosmotech_api-4.0.0.dev9/cosmotech_api/model_utils.py +0 -2038
  569. cosmotech_api-4.0.0.dev9/cosmotech_api/models/__init__.py +0 -88
  570. cosmotech_api-4.0.0.dev9/cosmotech_api/models/component_role_permissions.py +0 -90
  571. cosmotech_api-4.0.0.dev9/cosmotech_api/models/connector.py +0 -121
  572. cosmotech_api-4.0.0.dev9/cosmotech_api/models/connector_parameter.py +0 -98
  573. cosmotech_api-4.0.0.dev9/cosmotech_api/models/connector_parameter_group.py +0 -100
  574. cosmotech_api-4.0.0.dev9/cosmotech_api/models/container_resource_size_info.py +0 -90
  575. cosmotech_api-4.0.0.dev9/cosmotech_api/models/container_resource_sizing.py +0 -97
  576. cosmotech_api-4.0.0.dev9/cosmotech_api/models/created_run.py +0 -88
  577. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset.py +0 -177
  578. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_access_control.py +0 -90
  579. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_compatibility.py +0 -92
  580. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_connector.py +0 -94
  581. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_copy_parameters.py +0 -92
  582. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_role.py +0 -88
  583. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_search.py +0 -88
  584. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_security.py +0 -98
  585. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_source_type.py +0 -42
  586. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_twin_graph_hash.py +0 -88
  587. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_twin_graph_info.py +0 -92
  588. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_twin_graph_query.py +0 -88
  589. cosmotech_api-4.0.0.dev9/cosmotech_api/models/delete_historical_data.py +0 -92
  590. cosmotech_api-4.0.0.dev9/cosmotech_api/models/file_upload_metadata.py +0 -90
  591. cosmotech_api-4.0.0.dev9/cosmotech_api/models/file_upload_validation.py +0 -105
  592. cosmotech_api-4.0.0.dev9/cosmotech_api/models/graph_properties.py +0 -96
  593. cosmotech_api-4.0.0.dev9/cosmotech_api/models/ingestion_status_enum.py +0 -40
  594. cosmotech_api-4.0.0.dev9/cosmotech_api/models/io_types_enum.py +0 -38
  595. cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization.py +0 -102
  596. cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_access_control.py +0 -90
  597. cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_role.py +0 -88
  598. cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_security.py +0 -98
  599. cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_service.py +0 -96
  600. cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_services.py +0 -99
  601. cosmotech_api-4.0.0.dev9/cosmotech_api/models/query_result.py +0 -88
  602. cosmotech_api-4.0.0.dev9/cosmotech_api/models/resource_size_info.py +0 -90
  603. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run.py +0 -167
  604. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_container.py +0 -116
  605. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_container_artifact.py +0 -90
  606. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_container_logs.py +0 -102
  607. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_data.py +0 -92
  608. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_data_query.py +0 -88
  609. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_logs.py +0 -102
  610. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_logs_entry.py +0 -88
  611. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_resource_requested.py +0 -90
  612. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_search.py +0 -103
  613. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_search_state.py +0 -46
  614. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_start_containers.py +0 -104
  615. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_state.py +0 -40
  616. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_status.py +0 -123
  617. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_status_node.py +0 -116
  618. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template.py +0 -164
  619. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_handler_id.py +0 -42
  620. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_orchestrator.py +0 -38
  621. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_parameter.py +0 -102
  622. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_parameter_group.py +0 -98
  623. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_parameter_value.py +0 -94
  624. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_resource_sizing.py +0 -97
  625. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_step_source.py +0 -40
  626. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner.py +0 -169
  627. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_access_control.py +0 -90
  628. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_changed_parameter_value.py +0 -102
  629. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_comparison_result.py +0 -106
  630. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_data_download_info.py +0 -90
  631. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_data_download_job.py +0 -90
  632. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_job_state.py +0 -42
  633. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_last_run.py +0 -94
  634. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_parent_last_run.py +0 -94
  635. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_resource_sizing.py +0 -97
  636. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_role.py +0 -88
  637. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_root_last_run.py +0 -94
  638. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_run_template_parameter_value.py +0 -96
  639. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_security.py +0 -98
  640. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_validation_status.py +0 -40
  641. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario.py +0 -186
  642. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_access_control.py +0 -90
  643. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_changed_parameter_value.py +0 -102
  644. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_comparison_result.py +0 -106
  645. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_data_download_info.py +0 -93
  646. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_data_download_job.py +0 -90
  647. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_job_state.py +0 -42
  648. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_last_run.py +0 -94
  649. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_resource_sizing.py +0 -97
  650. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_role.py +0 -88
  651. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run.py +0 -179
  652. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_container.py +0 -126
  653. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_container_artifact.py +0 -90
  654. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_container_logs.py +0 -102
  655. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_logs.py +0 -107
  656. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_resource_requested.py +0 -90
  657. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_search.py +0 -103
  658. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_search_state.py +0 -46
  659. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_start_containers.py +0 -104
  660. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_state.py +0 -42
  661. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_status.py +0 -119
  662. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_status_node.py +0 -116
  663. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_template_parameter_value.py +0 -96
  664. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_security.py +0 -98
  665. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_validation_status.py +0 -40
  666. cosmotech_api-4.0.0.dev9/cosmotech_api/models/send_run_data_request.py +0 -90
  667. cosmotech_api-4.0.0.dev9/cosmotech_api/models/solution.py +0 -154
  668. cosmotech_api-4.0.0.dev9/cosmotech_api/models/solution_access_control.py +0 -90
  669. cosmotech_api-4.0.0.dev9/cosmotech_api/models/solution_role.py +0 -88
  670. cosmotech_api-4.0.0.dev9/cosmotech_api/models/solution_security.py +0 -98
  671. cosmotech_api-4.0.0.dev9/cosmotech_api/models/source_info.py +0 -94
  672. cosmotech_api-4.0.0.dev9/cosmotech_api/models/sub_dataset_graph_query.py +0 -94
  673. cosmotech_api-4.0.0.dev9/cosmotech_api/models/twin_graph_batch_result.py +0 -92
  674. cosmotech_api-4.0.0.dev9/cosmotech_api/models/twin_graph_hash.py +0 -88
  675. cosmotech_api-4.0.0.dev9/cosmotech_api/models/twin_graph_query.py +0 -90
  676. cosmotech_api-4.0.0.dev9/cosmotech_api/models/twincache_status_enum.py +0 -38
  677. cosmotech_api-4.0.0.dev9/cosmotech_api/models/validator.py +0 -106
  678. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace.py +0 -142
  679. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_access_control.py +0 -90
  680. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_file.py +0 -88
  681. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_role.py +0 -88
  682. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_secret.py +0 -88
  683. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_security.py +0 -98
  684. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_solution.py +0 -92
  685. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_web_app.py +0 -92
  686. cosmotech_api-4.0.0.dev9/cosmotech_api/rest.py +0 -258
  687. cosmotech_api-4.0.0.dev9/cosmotech_api.egg-info/PKG-INFO +0 -18
  688. cosmotech_api-4.0.0.dev9/cosmotech_api.egg-info/SOURCES.txt +0 -407
  689. cosmotech_api-4.0.0.dev9/cosmotech_api.egg-info/requires.txt +0 -4
  690. cosmotech_api-4.0.0.dev9/pyproject.toml +0 -71
  691. cosmotech_api-4.0.0.dev9/setup.py +0 -51
  692. cosmotech_api-4.0.0.dev9/test/test_component_role_permissions.py +0 -57
  693. cosmotech_api-4.0.0.dev9/test/test_connector.py +0 -81
  694. cosmotech_api-4.0.0.dev9/test/test_connector_api.py +0 -60
  695. cosmotech_api-4.0.0.dev9/test/test_connector_parameter.py +0 -61
  696. cosmotech_api-4.0.0.dev9/test/test_connector_parameter_group.py +0 -77
  697. cosmotech_api-4.0.0.dev9/test/test_container_resource_size_info.py +0 -55
  698. cosmotech_api-4.0.0.dev9/test/test_container_resource_sizing.py +0 -63
  699. cosmotech_api-4.0.0.dev9/test/test_created_run.py +0 -53
  700. cosmotech_api-4.0.0.dev9/test/test_dataset.py +0 -103
  701. cosmotech_api-4.0.0.dev9/test/test_dataset_access_control.py +0 -55
  702. cosmotech_api-4.0.0.dev9/test/test_dataset_api.py +0 -247
  703. cosmotech_api-4.0.0.dev9/test/test_dataset_compatibility.py +0 -55
  704. cosmotech_api-4.0.0.dev9/test/test_dataset_connector.py +0 -57
  705. cosmotech_api-4.0.0.dev9/test/test_dataset_copy_parameters.py +0 -54
  706. cosmotech_api-4.0.0.dev9/test/test_dataset_role.py +0 -53
  707. cosmotech_api-4.0.0.dev9/test/test_dataset_search.py +0 -57
  708. cosmotech_api-4.0.0.dev9/test/test_dataset_security.py +0 -63
  709. cosmotech_api-4.0.0.dev9/test/test_dataset_source_type.py +0 -34
  710. cosmotech_api-4.0.0.dev9/test/test_dataset_twin_graph_hash.py +0 -52
  711. cosmotech_api-4.0.0.dev9/test/test_dataset_twin_graph_info.py +0 -54
  712. cosmotech_api-4.0.0.dev9/test/test_dataset_twin_graph_query.py +0 -53
  713. cosmotech_api-4.0.0.dev9/test/test_delete_historical_data.py +0 -55
  714. cosmotech_api-4.0.0.dev9/test/test_file_upload_metadata.py +0 -53
  715. cosmotech_api-4.0.0.dev9/test/test_file_upload_validation.py +0 -61
  716. cosmotech_api-4.0.0.dev9/test/test_graph_properties.py +0 -56
  717. cosmotech_api-4.0.0.dev9/test/test_ingestion_status_enum.py +0 -34
  718. cosmotech_api-4.0.0.dev9/test/test_io_types_enum.py +0 -34
  719. cosmotech_api-4.0.0.dev9/test/test_organization.py +0 -61
  720. cosmotech_api-4.0.0.dev9/test/test_organization_access_control.py +0 -55
  721. cosmotech_api-4.0.0.dev9/test/test_organization_api.py +0 -130
  722. cosmotech_api-4.0.0.dev9/test/test_organization_role.py +0 -53
  723. cosmotech_api-4.0.0.dev9/test/test_organization_security.py +0 -63
  724. cosmotech_api-4.0.0.dev9/test/test_organization_service.py +0 -56
  725. cosmotech_api-4.0.0.dev9/test/test_organization_services.py +0 -64
  726. cosmotech_api-4.0.0.dev9/test/test_query_result.py +0 -54
  727. cosmotech_api-4.0.0.dev9/test/test_resource_size_info.py +0 -55
  728. cosmotech_api-4.0.0.dev9/test/test_run.py +0 -104
  729. cosmotech_api-4.0.0.dev9/test/test_run_api.py +0 -81
  730. cosmotech_api-4.0.0.dev9/test/test_run_container.py +0 -78
  731. cosmotech_api-4.0.0.dev9/test/test_run_container_artifact.py +0 -53
  732. cosmotech_api-4.0.0.dev9/test/test_run_container_logs.py +0 -57
  733. cosmotech_api-4.0.0.dev9/test/test_run_data.py +0 -56
  734. cosmotech_api-4.0.0.dev9/test/test_run_data_query.py +0 -53
  735. cosmotech_api-4.0.0.dev9/test/test_run_logs.py +0 -61
  736. cosmotech_api-4.0.0.dev9/test/test_run_logs_entry.py +0 -53
  737. cosmotech_api-4.0.0.dev9/test/test_run_resource_requested.py +0 -53
  738. cosmotech_api-4.0.0.dev9/test/test_run_search.py +0 -59
  739. cosmotech_api-4.0.0.dev9/test/test_run_search_state.py +0 -34
  740. cosmotech_api-4.0.0.dev9/test/test_run_start_containers.py +0 -124
  741. cosmotech_api-4.0.0.dev9/test/test_run_state.py +0 -34
  742. cosmotech_api-4.0.0.dev9/test/test_run_status.py +0 -83
  743. cosmotech_api-4.0.0.dev9/test/test_run_status_node.py +0 -67
  744. cosmotech_api-4.0.0.dev9/test/test_run_template.py +0 -101
  745. cosmotech_api-4.0.0.dev9/test/test_run_template_handler_id.py +0 -34
  746. cosmotech_api-4.0.0.dev9/test/test_run_template_orchestrator.py +0 -34
  747. cosmotech_api-4.0.0.dev9/test/test_run_template_parameter.py +0 -62
  748. cosmotech_api-4.0.0.dev9/test/test_run_template_parameter_group.py +0 -62
  749. cosmotech_api-4.0.0.dev9/test/test_run_template_parameter_value.py +0 -56
  750. cosmotech_api-4.0.0.dev9/test/test_run_template_resource_sizing.py +0 -63
  751. cosmotech_api-4.0.0.dev9/test/test_run_template_step_source.py +0 -34
  752. cosmotech_api-4.0.0.dev9/test/test_runner.py +0 -98
  753. cosmotech_api-4.0.0.dev9/test/test_runner_access_control.py +0 -55
  754. cosmotech_api-4.0.0.dev9/test/test_runner_api.py +0 -137
  755. cosmotech_api-4.0.0.dev9/test/test_runner_changed_parameter_value.py +0 -55
  756. cosmotech_api-4.0.0.dev9/test/test_runner_comparison_result.py +0 -60
  757. cosmotech_api-4.0.0.dev9/test/test_runner_data_download_info.py +0 -52
  758. cosmotech_api-4.0.0.dev9/test/test_runner_data_download_job.py +0 -52
  759. cosmotech_api-4.0.0.dev9/test/test_runner_job_state.py +0 -36
  760. cosmotech_api-4.0.0.dev9/test/test_runner_last_run.py +0 -36
  761. cosmotech_api-4.0.0.dev9/test/test_runner_parent_last_run.py +0 -55
  762. cosmotech_api-4.0.0.dev9/test/test_runner_resource_sizing.py +0 -63
  763. cosmotech_api-4.0.0.dev9/test/test_runner_role.py +0 -53
  764. cosmotech_api-4.0.0.dev9/test/test_runner_root_last_run.py +0 -55
  765. cosmotech_api-4.0.0.dev9/test/test_runner_run_template_parameter_value.py +0 -57
  766. cosmotech_api-4.0.0.dev9/test/test_runner_security.py +0 -63
  767. cosmotech_api-4.0.0.dev9/test/test_runner_validation_status.py +0 -34
  768. cosmotech_api-4.0.0.dev9/test/test_scenario.py +0 -110
  769. cosmotech_api-4.0.0.dev9/test/test_scenario_access_control.py +0 -55
  770. cosmotech_api-4.0.0.dev9/test/test_scenario_api.py +0 -186
  771. cosmotech_api-4.0.0.dev9/test/test_scenario_changed_parameter_value.py +0 -55
  772. cosmotech_api-4.0.0.dev9/test/test_scenario_comparison_result.py +0 -60
  773. cosmotech_api-4.0.0.dev9/test/test_scenario_data_download_info.py +0 -53
  774. cosmotech_api-4.0.0.dev9/test/test_scenario_data_download_job.py +0 -52
  775. cosmotech_api-4.0.0.dev9/test/test_scenario_job_state.py +0 -34
  776. cosmotech_api-4.0.0.dev9/test/test_scenario_last_run.py +0 -55
  777. cosmotech_api-4.0.0.dev9/test/test_scenario_resource_sizing.py +0 -63
  778. cosmotech_api-4.0.0.dev9/test/test_scenario_role.py +0 -53
  779. cosmotech_api-4.0.0.dev9/test/test_scenario_run.py +0 -113
  780. cosmotech_api-4.0.0.dev9/test/test_scenario_run_container.py +0 -83
  781. cosmotech_api-4.0.0.dev9/test/test_scenario_run_container_artifact.py +0 -53
  782. cosmotech_api-4.0.0.dev9/test/test_scenario_run_container_logs.py +0 -57
  783. cosmotech_api-4.0.0.dev9/test/test_scenario_run_logs.py +0 -61
  784. cosmotech_api-4.0.0.dev9/test/test_scenario_run_resource_requested.py +0 -53
  785. cosmotech_api-4.0.0.dev9/test/test_scenario_run_result.py +0 -36
  786. cosmotech_api-4.0.0.dev9/test/test_scenario_run_search.py +0 -59
  787. cosmotech_api-4.0.0.dev9/test/test_scenario_run_search_state.py +0 -34
  788. cosmotech_api-4.0.0.dev9/test/test_scenario_run_start_containers.py +0 -124
  789. cosmotech_api-4.0.0.dev9/test/test_scenario_run_state.py +0 -34
  790. cosmotech_api-4.0.0.dev9/test/test_scenario_run_status.py +0 -81
  791. cosmotech_api-4.0.0.dev9/test/test_scenario_run_status_node.py +0 -67
  792. cosmotech_api-4.0.0.dev9/test/test_scenario_run_template_parameter_value.py +0 -57
  793. cosmotech_api-4.0.0.dev9/test/test_scenario_security.py +0 -63
  794. cosmotech_api-4.0.0.dev9/test/test_scenario_validation_status.py +0 -34
  795. cosmotech_api-4.0.0.dev9/test/test_scenariorun_api.py +0 -130
  796. cosmotech_api-4.0.0.dev9/test/test_scenariorunresult_api.py +0 -43
  797. cosmotech_api-4.0.0.dev9/test/test_send_run_data_request.py +0 -55
  798. cosmotech_api-4.0.0.dev9/test/test_solution.py +0 -203
  799. cosmotech_api-4.0.0.dev9/test/test_solution_access_control.py +0 -55
  800. cosmotech_api-4.0.0.dev9/test/test_solution_api.py +0 -172
  801. cosmotech_api-4.0.0.dev9/test/test_solution_role.py +0 -53
  802. cosmotech_api-4.0.0.dev9/test/test_solution_security.py +0 -63
  803. cosmotech_api-4.0.0.dev9/test/test_source_info.py +0 -56
  804. cosmotech_api-4.0.0.dev9/test/test_sub_dataset_graph_query.py +0 -57
  805. cosmotech_api-4.0.0.dev9/test/test_translated_labels.py +0 -36
  806. cosmotech_api-4.0.0.dev9/test/test_twin_graph_batch_result.py +0 -61
  807. cosmotech_api-4.0.0.dev9/test/test_twin_graph_hash.py +0 -52
  808. cosmotech_api-4.0.0.dev9/test/test_twin_graph_query.py +0 -54
  809. cosmotech_api-4.0.0.dev9/test/test_twincache_status_enum.py +0 -34
  810. cosmotech_api-4.0.0.dev9/test/test_twingraph_api.py +0 -130
  811. cosmotech_api-4.0.0.dev9/test/test_user_api.py +0 -99
  812. cosmotech_api-4.0.0.dev9/test/test_validator.py +0 -65
  813. cosmotech_api-4.0.0.dev9/test/test_validator_api.py +0 -92
  814. cosmotech_api-4.0.0.dev9/test/test_validator_run.py +0 -36
  815. cosmotech_api-4.0.0.dev9/test/test_workspace.py +0 -96
  816. cosmotech_api-4.0.0.dev9/test/test_workspace_access_control.py +0 -55
  817. cosmotech_api-4.0.0.dev9/test/test_workspace_api.py +0 -170
  818. cosmotech_api-4.0.0.dev9/test/test_workspace_file.py +0 -52
  819. cosmotech_api-4.0.0.dev9/test/test_workspace_role.py +0 -53
  820. cosmotech_api-4.0.0.dev9/test/test_workspace_secret.py +0 -52
  821. cosmotech_api-4.0.0.dev9/test/test_workspace_security.py +0 -63
  822. cosmotech_api-4.0.0.dev9/test/test_workspace_solution.py +0 -56
  823. cosmotech_api-4.0.0.dev9/test/test_workspace_web_app.py +0 -55
  824. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/api/user_api.py +0 -0
  825. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/api_response.py +0 -0
  826. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/apis/__init__.py +0 -0
  827. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/model/__init__.py +0 -0
  828. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/model/organization_user.py +0 -0
  829. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/model/scenario_user.py +0 -0
  830. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/model/twin_graph_import.py +0 -0
  831. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/model/twin_graph_import_info.py +0 -0
  832. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/model/user.py +0 -0
  833. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/model/user_organization.py +0 -0
  834. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/model/user_workspace.py +0 -0
  835. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/model/workspace_user.py +0 -0
  836. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/models/scenario_run_result.py +0 -0
  837. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/models/validator_run.py +0 -0
  838. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api/py.typed +0 -0
  839. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api.egg-info/dependency_links.txt +0 -0
  840. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/cosmotech_api.egg-info/top_level.txt +0 -0
  841. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/setup.cfg +0 -0
  842. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/test/test_organization_user.py +0 -0
  843. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/test/test_scenario_user.py +0 -0
  844. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/test/test_twin_graph_import.py +0 -0
  845. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/test/test_twin_graph_import_info.py +0 -0
  846. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/test/test_user.py +0 -0
  847. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/test/test_user_organization.py +0 -0
  848. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/test/test_user_workspace.py +0 -0
  849. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b3}/test/test_workspace_user.py +0 -0
@@ -0,0 +1,17 @@
1
+ LICENSE
2
+ =======
3
+
4
+ Copyright 2021-2025 Cosmo Tech
5
+
6
+ You are authorized to use this software following the execution of a specific agreement with Cosmo Tech or with an authorized licensee of Cosmo Tech.
7
+
8
+ Accordingly you should refer to this specific agreement for the purpose of the extent of the use that is permitted. This use shall mainly consist in using, displaying and executing the software for your own needs.
9
+
10
+ Except otherwise provided in the above-mentioned specific agreement:
11
+ - you are not allowed to use this software for commercial purpose or to redistribute it without prior authorization from Cosmo Tech;
12
+ - you are not allowed to copy, duplicate, modify, adapt and translate this software except as authorized under section L122-6-1 of the French Intellectual Property Code;
13
+ - you must not removed this notice or any mention related to the copyright of Cosmo Tech;
14
+
15
+ This software is provided 'as is', without any express or implied warranty towards the users.
16
+
17
+ Any Software generated through the use of the software shall be your own property to the extent this Software does not contain any part of software source code.
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: cosmotech-api
3
+ Version: 5.0.0b3
4
+ Summary: Cosmo Tech Platform API
5
+ Home-page:
6
+ Author: Repository
7
+ Author-email: platform@cosmotech.com
8
+ License: MIT License
9
+ Keywords: OpenAPI,OpenAPI-Generator,Cosmo Tech Platform API
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: urllib3<3.0.0,>=2.1.0
13
+ Requires-Dist: python-dateutil>=2.8.2
14
+ Requires-Dist: pydantic>=2
15
+ Requires-Dist: typing-extensions>=4.7.1
16
+ Dynamic: author
17
+ Dynamic: author-email
18
+ Dynamic: description
19
+ Dynamic: description-content-type
20
+ Dynamic: keywords
21
+ Dynamic: license
22
+ Dynamic: license-file
23
+ Dynamic: requires-dist
24
+ Dynamic: summary
25
+
26
+ Cosmo Tech Platform API
27
+
@@ -0,0 +1,300 @@
1
+ # cosmotech-api
2
+ Cosmo Tech Platform API
3
+
4
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
+
6
+ - API version: 5.0.0-beta3
7
+ - Package version: 1.0.0
8
+ - Generator version: 7.13.0
9
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
+ For more information, please visit [https://github.com/Cosmo-Tech/cosmotech-api](https://github.com/Cosmo-Tech/cosmotech-api)
11
+
12
+ ## Requirements.
13
+
14
+ Python 3.9+
15
+
16
+ ## Installation & Usage
17
+ ### pip install
18
+
19
+ If the python package is hosted on a repository, you can install directly using:
20
+
21
+ ```sh
22
+ pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
23
+ ```
24
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
25
+
26
+ Then import the package:
27
+ ```python
28
+ import cosmotech_api
29
+ ```
30
+
31
+ ### Setuptools
32
+
33
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
34
+
35
+ ```sh
36
+ python setup.py install --user
37
+ ```
38
+ (or `sudo python setup.py install` to install the package for all users)
39
+
40
+ Then import the package:
41
+ ```python
42
+ import cosmotech_api
43
+ ```
44
+
45
+ ### Tests
46
+
47
+ Execute `pytest` to run the tests.
48
+
49
+ ## Getting Started
50
+
51
+ Please follow the [installation procedure](#installation--usage) and then run the following:
52
+
53
+ ```python
54
+
55
+ import cosmotech_api
56
+ from cosmotech_api.rest import ApiException
57
+ from pprint import pprint
58
+
59
+ # Defining the host is optional and defaults to http://localhost:8080
60
+ # See configuration.py for a list of all supported configuration parameters.
61
+ configuration = cosmotech_api.Configuration(
62
+ host = "http://localhost:8080"
63
+ )
64
+
65
+ # The client must configure the authentication and authorization parameters
66
+ # in accordance with the API server security policy.
67
+ # Examples for each auth method are provided below, use the example that
68
+ # satisfies your auth use case.
69
+
70
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
71
+
72
+
73
+ # Enter a context with an instance of the API client
74
+ with cosmotech_api.ApiClient(configuration) as api_client:
75
+ # Create an instance of the API class
76
+ api_instance = cosmotech_api.DatasetApi(api_client)
77
+ organization_id = 'organization_id_example' # str | the Organization identifier
78
+ workspace_id = 'workspace_id_example' # str | the Workspace identifier
79
+ dataset_create_request = cosmotech_api.DatasetCreateRequest() # DatasetCreateRequest |
80
+ files = None # List[bytearray] | Notes: - Each parts defined in dataset should have a file defined in this list - Please ensure that upload files order match with data parts list defined - First file uploaded will match with first dataset parts and so on (optional)
81
+
82
+ try:
83
+ # Create a Dataset
84
+ api_response = api_instance.create_dataset(organization_id, workspace_id, dataset_create_request, files=files)
85
+ print("The response of DatasetApi->create_dataset:\n")
86
+ pprint(api_response)
87
+ except ApiException as e:
88
+ print("Exception when calling DatasetApi->create_dataset: %s\n" % e)
89
+
90
+ ```
91
+
92
+ ## Documentation for API Endpoints
93
+
94
+ All URIs are relative to *http://localhost:8080*
95
+
96
+ Class | Method | HTTP request | Description
97
+ ------------ | ------------- | ------------- | -------------
98
+ *DatasetApi* | [**create_dataset**](docs/DatasetApi.md#create_dataset) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/datasets | Create a Dataset
99
+ *DatasetApi* | [**create_dataset_access_control**](docs/DatasetApi.md#create_dataset_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/security/access | Add a control access to the Dataset
100
+ *DatasetApi* | [**create_dataset_part**](docs/DatasetApi.md#create_dataset_part) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts | Create a data part of a Dataset
101
+ *DatasetApi* | [**delete_dataset**](docs/DatasetApi.md#delete_dataset) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id} | Delete a Dataset
102
+ *DatasetApi* | [**delete_dataset_access_control**](docs/DatasetApi.md#delete_dataset_access_control) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/security/access/{identity_id} | Remove the specified access from the given Dataset
103
+ *DatasetApi* | [**delete_dataset_part**](docs/DatasetApi.md#delete_dataset_part) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts/{dataset_part_id} | Delete a Dataset part
104
+ *DatasetApi* | [**download_dataset_part**](docs/DatasetApi.md#download_dataset_part) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts/{dataset_part_id}/download | Download data from a dataset part
105
+ *DatasetApi* | [**get_dataset**](docs/DatasetApi.md#get_dataset) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id} | Retrieve a Dataset
106
+ *DatasetApi* | [**get_dataset_access_control**](docs/DatasetApi.md#get_dataset_access_control) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/security/access/{identity_id} | Get a control access for the Dataset
107
+ *DatasetApi* | [**get_dataset_part**](docs/DatasetApi.md#get_dataset_part) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts/{dataset_part_id} | Retrieve a data part of a Dataset
108
+ *DatasetApi* | [**list_dataset_parts**](docs/DatasetApi.md#list_dataset_parts) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts | Retrieve all dataset parts of a Dataset
109
+ *DatasetApi* | [**list_dataset_security_users**](docs/DatasetApi.md#list_dataset_security_users) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/security/users | Get the Dataset security users list
110
+ *DatasetApi* | [**list_datasets**](docs/DatasetApi.md#list_datasets) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets | Retrieve a list of defined Dataset
111
+ *DatasetApi* | [**query_data**](docs/DatasetApi.md#query_data) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts/{dataset_part_id}/query | Get data of a Dataset
112
+ *DatasetApi* | [**replace_dataset_part**](docs/DatasetApi.md#replace_dataset_part) | **PUT** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts/{dataset_part_id} | Replace existing dataset parts of a Dataset
113
+ *DatasetApi* | [**search_dataset_parts**](docs/DatasetApi.md#search_dataset_parts) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts/search | Search Dataset parts by tags
114
+ *DatasetApi* | [**search_datasets**](docs/DatasetApi.md#search_datasets) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/search | Search Datasets by tags
115
+ *DatasetApi* | [**update_dataset**](docs/DatasetApi.md#update_dataset) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id} | Update a Dataset
116
+ *DatasetApi* | [**update_dataset_access_control**](docs/DatasetApi.md#update_dataset_access_control) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/security/access/{identity_id} | Update the specified access to User for a Dataset
117
+ *DatasetApi* | [**update_dataset_default_security**](docs/DatasetApi.md#update_dataset_default_security) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/security/default | Set the Dataset default security
118
+ *MetaApi* | [**about**](docs/MetaApi.md#about) | **GET** /about | Get various information about the API
119
+ *OrganizationApi* | [**create_organization**](docs/OrganizationApi.md#create_organization) | **POST** /organizations | Create a new organization
120
+ *OrganizationApi* | [**create_organization_access_control**](docs/OrganizationApi.md#create_organization_access_control) | **POST** /organizations/{organization_id}/security/access | Add a control access to the Organization
121
+ *OrganizationApi* | [**delete_organization**](docs/OrganizationApi.md#delete_organization) | **DELETE** /organizations/{organization_id} | Delete an organization
122
+ *OrganizationApi* | [**delete_organization_access_control**](docs/OrganizationApi.md#delete_organization_access_control) | **DELETE** /organizations/{organization_id}/security/access/{identity_id} | Remove the specified access from the given Organization
123
+ *OrganizationApi* | [**get_organization**](docs/OrganizationApi.md#get_organization) | **GET** /organizations/{organization_id} | Get the details of an Organization
124
+ *OrganizationApi* | [**get_organization_access_control**](docs/OrganizationApi.md#get_organization_access_control) | **GET** /organizations/{organization_id}/security/access/{identity_id} | Get a control access for the Organization
125
+ *OrganizationApi* | [**get_organization_permissions**](docs/OrganizationApi.md#get_organization_permissions) | **GET** /organizations/{organization_id}/permissions/{role} | Get the Organization permissions by given role
126
+ *OrganizationApi* | [**get_organization_security**](docs/OrganizationApi.md#get_organization_security) | **GET** /organizations/{organization_id}/security | Get the Organization security information
127
+ *OrganizationApi* | [**list_organization_security_users**](docs/OrganizationApi.md#list_organization_security_users) | **GET** /organizations/{organization_id}/security/users | Get the Organization security users list
128
+ *OrganizationApi* | [**list_organizations**](docs/OrganizationApi.md#list_organizations) | **GET** /organizations | List all Organizations
129
+ *OrganizationApi* | [**list_permissions**](docs/OrganizationApi.md#list_permissions) | **GET** /organizations/permissions | Get all permissions per components
130
+ *OrganizationApi* | [**update_organization**](docs/OrganizationApi.md#update_organization) | **PATCH** /organizations/{organization_id} | Update an Organization
131
+ *OrganizationApi* | [**update_organization_access_control**](docs/OrganizationApi.md#update_organization_access_control) | **PATCH** /organizations/{organization_id}/security/access/{identity_id} | Update the specified access to User for an Organization
132
+ *OrganizationApi* | [**update_organization_default_security**](docs/OrganizationApi.md#update_organization_default_security) | **PATCH** /organizations/{organization_id}/security/default | Update the Organization default security
133
+ *RunApi* | [**delete_run**](docs/RunApi.md#delete_run) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id} | Delete a run
134
+ *RunApi* | [**get_run**](docs/RunApi.md#get_run) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id} | Get the details of a run
135
+ *RunApi* | [**get_run_logs**](docs/RunApi.md#get_run_logs) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}/logs | get the logs for the Run
136
+ *RunApi* | [**get_run_status**](docs/RunApi.md#get_run_status) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}/status | get the status for the Run
137
+ *RunApi* | [**list_runs**](docs/RunApi.md#list_runs) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs | get the list of Runs for the Runner
138
+ *RunApi* | [**query_run_data**](docs/RunApi.md#query_run_data) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}/data/query | query the run data
139
+ *RunApi* | [**send_run_data**](docs/RunApi.md#send_run_data) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}/data/send | Send data associated to a run
140
+ *RunnerApi* | [**create_runner**](docs/RunnerApi.md#create_runner) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners | Create a new Runner
141
+ *RunnerApi* | [**create_runner_access_control**](docs/RunnerApi.md#create_runner_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access | Add a control access to the Runner
142
+ *RunnerApi* | [**delete_runner**](docs/RunnerApi.md#delete_runner) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Delete a runner
143
+ *RunnerApi* | [**delete_runner_access_control**](docs/RunnerApi.md#delete_runner_access_control) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access/{identity_id} | Remove the specified access from the given Runner
144
+ *RunnerApi* | [**get_runner**](docs/RunnerApi.md#get_runner) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Get the details of a runner
145
+ *RunnerApi* | [**get_runner_access_control**](docs/RunnerApi.md#get_runner_access_control) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access/{identity_id} | Get a control access for the Runner
146
+ *RunnerApi* | [**get_runner_security**](docs/RunnerApi.md#get_runner_security) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security | Get the Runner security information
147
+ *RunnerApi* | [**list_runner_permissions**](docs/RunnerApi.md#list_runner_permissions) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/permissions/{role} | Get the Runner permission by given role
148
+ *RunnerApi* | [**list_runner_security_users**](docs/RunnerApi.md#list_runner_security_users) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/users | Get the Runner security users list
149
+ *RunnerApi* | [**list_runners**](docs/RunnerApi.md#list_runners) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners | List all Runners
150
+ *RunnerApi* | [**start_run**](docs/RunnerApi.md#start_run) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/start | Start a run with runner parameters
151
+ *RunnerApi* | [**stop_run**](docs/RunnerApi.md#stop_run) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/stop | Stop the last run
152
+ *RunnerApi* | [**update_runner**](docs/RunnerApi.md#update_runner) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Update a runner
153
+ *RunnerApi* | [**update_runner_access_control**](docs/RunnerApi.md#update_runner_access_control) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access/{identity_id} | Update the specified access to User for a Runner
154
+ *RunnerApi* | [**update_runner_default_security**](docs/RunnerApi.md#update_runner_default_security) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/default | Set the Runner default security
155
+ *SolutionApi* | [**create_solution**](docs/SolutionApi.md#create_solution) | **POST** /organizations/{organization_id}/solutions | Create a new solution
156
+ *SolutionApi* | [**create_solution_access_control**](docs/SolutionApi.md#create_solution_access_control) | **POST** /organizations/{organization_id}/solutions/{solution_id}/security/access | Create solution access control
157
+ *SolutionApi* | [**create_solution_parameter**](docs/SolutionApi.md#create_solution_parameter) | **POST** /organizations/{organization_id}/solutions/{solution_id}/parameters | Create solution parameter for a solution
158
+ *SolutionApi* | [**create_solution_parameter_group**](docs/SolutionApi.md#create_solution_parameter_group) | **POST** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups | Create a solution parameter group
159
+ *SolutionApi* | [**create_solution_run_template**](docs/SolutionApi.md#create_solution_run_template) | **POST** /organizations/{organization_id}/solutions/{solution_id}/runTemplates | Create a solution run template
160
+ *SolutionApi* | [**delete_solution**](docs/SolutionApi.md#delete_solution) | **DELETE** /organizations/{organization_id}/solutions/{solution_id} | Delete a solution
161
+ *SolutionApi* | [**delete_solution_access_control**](docs/SolutionApi.md#delete_solution_access_control) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id} | Delete solution access control
162
+ *SolutionApi* | [**delete_solution_parameter**](docs/SolutionApi.md#delete_solution_parameter) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/parameters/{parameter_id} | Delete specific parameter from the solution
163
+ *SolutionApi* | [**delete_solution_parameter_group**](docs/SolutionApi.md#delete_solution_parameter_group) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups/{parameter_group_id} | Delete a parameter group from the solution
164
+ *SolutionApi* | [**delete_solution_run_template**](docs/SolutionApi.md#delete_solution_run_template) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/runTemplates/{run_template_id} | Delete a specific run template
165
+ *SolutionApi* | [**get_run_template**](docs/SolutionApi.md#get_run_template) | **GET** /organizations/{organization_id}/solutions/{solution_id}/runTemplates/{run_template_id} | Retrieve a solution run templates
166
+ *SolutionApi* | [**get_solution**](docs/SolutionApi.md#get_solution) | **GET** /organizations/{organization_id}/solutions/{solution_id} | Get the details of a solution
167
+ *SolutionApi* | [**get_solution_access_control**](docs/SolutionApi.md#get_solution_access_control) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id} | Get solution access control
168
+ *SolutionApi* | [**get_solution_parameter**](docs/SolutionApi.md#get_solution_parameter) | **GET** /organizations/{organization_id}/solutions/{solution_id}/parameters/{parameter_id} | Get the details of a solution parameter
169
+ *SolutionApi* | [**get_solution_parameter_group**](docs/SolutionApi.md#get_solution_parameter_group) | **GET** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups/{parameter_group_id} | Get details of a solution parameter group
170
+ *SolutionApi* | [**get_solution_security**](docs/SolutionApi.md#get_solution_security) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security | Get solution security information
171
+ *SolutionApi* | [**list_run_templates**](docs/SolutionApi.md#list_run_templates) | **GET** /organizations/{organization_id}/solutions/{solution_id}/runTemplates | List all solution run templates
172
+ *SolutionApi* | [**list_solution_parameter_groups**](docs/SolutionApi.md#list_solution_parameter_groups) | **GET** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups | List all solution parameter groups
173
+ *SolutionApi* | [**list_solution_parameters**](docs/SolutionApi.md#list_solution_parameters) | **GET** /organizations/{organization_id}/solutions/{solution_id}/parameters | List all solution parameters
174
+ *SolutionApi* | [**list_solution_security_users**](docs/SolutionApi.md#list_solution_security_users) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security/users | List solution security users
175
+ *SolutionApi* | [**list_solutions**](docs/SolutionApi.md#list_solutions) | **GET** /organizations/{organization_id}/solutions | List all Solutions
176
+ *SolutionApi* | [**update_solution**](docs/SolutionApi.md#update_solution) | **PATCH** /organizations/{organization_id}/solutions/{solution_id} | Update a solution
177
+ *SolutionApi* | [**update_solution_access_control**](docs/SolutionApi.md#update_solution_access_control) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id} | Update solution access control
178
+ *SolutionApi* | [**update_solution_default_security**](docs/SolutionApi.md#update_solution_default_security) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/security/default | Update solution default security
179
+ *SolutionApi* | [**update_solution_parameter**](docs/SolutionApi.md#update_solution_parameter) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/parameters/{parameter_id} | Update solution parameter
180
+ *SolutionApi* | [**update_solution_parameter_group**](docs/SolutionApi.md#update_solution_parameter_group) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups/{parameter_group_id} | Update a solution parameter group
181
+ *SolutionApi* | [**update_solution_run_template**](docs/SolutionApi.md#update_solution_run_template) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/runTemplates/{run_template_id} | Update a specific run template
182
+ *WorkspaceApi* | [**create_workspace**](docs/WorkspaceApi.md#create_workspace) | **POST** /organizations/{organization_id}/workspaces | Create a new workspace
183
+ *WorkspaceApi* | [**create_workspace_access_control**](docs/WorkspaceApi.md#create_workspace_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/security/access | Add a control access to the Workspace
184
+ *WorkspaceApi* | [**create_workspace_file**](docs/WorkspaceApi.md#create_workspace_file) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/files | Upload a file for the Workspace
185
+ *WorkspaceApi* | [**delete_workspace**](docs/WorkspaceApi.md#delete_workspace) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id} | Delete a workspace
186
+ *WorkspaceApi* | [**delete_workspace_access_control**](docs/WorkspaceApi.md#delete_workspace_access_control) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/security/access/{identity_id} | Remove the specified access from the given Workspace
187
+ *WorkspaceApi* | [**delete_workspace_file**](docs/WorkspaceApi.md#delete_workspace_file) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/files/delete | Delete a workspace file
188
+ *WorkspaceApi* | [**delete_workspace_files**](docs/WorkspaceApi.md#delete_workspace_files) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/files | Delete all Workspace files
189
+ *WorkspaceApi* | [**get_workspace**](docs/WorkspaceApi.md#get_workspace) | **GET** /organizations/{organization_id}/workspaces/{workspace_id} | Get the details of a workspace
190
+ *WorkspaceApi* | [**get_workspace_access_control**](docs/WorkspaceApi.md#get_workspace_access_control) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/security/access/{identity_id} | Get a control access for the Workspace
191
+ *WorkspaceApi* | [**get_workspace_file**](docs/WorkspaceApi.md#get_workspace_file) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/files/download | Download the Workspace File specified
192
+ *WorkspaceApi* | [**get_workspace_security**](docs/WorkspaceApi.md#get_workspace_security) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/security | Get the Workspace security information
193
+ *WorkspaceApi* | [**list_workspace_files**](docs/WorkspaceApi.md#list_workspace_files) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/files | List all Workspace files
194
+ *WorkspaceApi* | [**list_workspace_role_permissions**](docs/WorkspaceApi.md#list_workspace_role_permissions) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/permissions/{role} | Get the Workspace permission by given role
195
+ *WorkspaceApi* | [**list_workspace_security_users**](docs/WorkspaceApi.md#list_workspace_security_users) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/security/users | Get the Workspace security users list
196
+ *WorkspaceApi* | [**list_workspaces**](docs/WorkspaceApi.md#list_workspaces) | **GET** /organizations/{organization_id}/workspaces | List all Workspaces
197
+ *WorkspaceApi* | [**update_workspace**](docs/WorkspaceApi.md#update_workspace) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id} | Update a workspace
198
+ *WorkspaceApi* | [**update_workspace_access_control**](docs/WorkspaceApi.md#update_workspace_access_control) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/security/access/{identity_id} | Update the specified access to User for a Workspace
199
+ *WorkspaceApi* | [**update_workspace_default_security**](docs/WorkspaceApi.md#update_workspace_default_security) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/security/default | Update the Workspace default security
200
+
201
+
202
+ ## Documentation For Models
203
+
204
+ - [AboutInfo](docs/AboutInfo.md)
205
+ - [AboutInfoVersion](docs/AboutInfoVersion.md)
206
+ - [ComponentRolePermissions](docs/ComponentRolePermissions.md)
207
+ - [ContainerResourceSizeInfo](docs/ContainerResourceSizeInfo.md)
208
+ - [ContainerResourceSizing](docs/ContainerResourceSizing.md)
209
+ - [CreateInfo](docs/CreateInfo.md)
210
+ - [CreatedRun](docs/CreatedRun.md)
211
+ - [Dataset](docs/Dataset.md)
212
+ - [DatasetAccessControl](docs/DatasetAccessControl.md)
213
+ - [DatasetCreateRequest](docs/DatasetCreateRequest.md)
214
+ - [DatasetPart](docs/DatasetPart.md)
215
+ - [DatasetPartCreateRequest](docs/DatasetPartCreateRequest.md)
216
+ - [DatasetPartTypeEnum](docs/DatasetPartTypeEnum.md)
217
+ - [DatasetPartUpdateRequest](docs/DatasetPartUpdateRequest.md)
218
+ - [DatasetRole](docs/DatasetRole.md)
219
+ - [DatasetSecurity](docs/DatasetSecurity.md)
220
+ - [DatasetUpdateRequest](docs/DatasetUpdateRequest.md)
221
+ - [EditInfo](docs/EditInfo.md)
222
+ - [LastRunInfo](docs/LastRunInfo.md)
223
+ - [Organization](docs/Organization.md)
224
+ - [OrganizationAccessControl](docs/OrganizationAccessControl.md)
225
+ - [OrganizationCreateRequest](docs/OrganizationCreateRequest.md)
226
+ - [OrganizationEditInfo](docs/OrganizationEditInfo.md)
227
+ - [OrganizationRole](docs/OrganizationRole.md)
228
+ - [OrganizationSecurity](docs/OrganizationSecurity.md)
229
+ - [OrganizationUpdateRequest](docs/OrganizationUpdateRequest.md)
230
+ - [QueryResult](docs/QueryResult.md)
231
+ - [ResourceSizeInfo](docs/ResourceSizeInfo.md)
232
+ - [Run](docs/Run.md)
233
+ - [RunContainer](docs/RunContainer.md)
234
+ - [RunData](docs/RunData.md)
235
+ - [RunDataQuery](docs/RunDataQuery.md)
236
+ - [RunEditInfo](docs/RunEditInfo.md)
237
+ - [RunResourceRequested](docs/RunResourceRequested.md)
238
+ - [RunState](docs/RunState.md)
239
+ - [RunStatus](docs/RunStatus.md)
240
+ - [RunStatusNode](docs/RunStatusNode.md)
241
+ - [RunTemplate](docs/RunTemplate.md)
242
+ - [RunTemplateCreateRequest](docs/RunTemplateCreateRequest.md)
243
+ - [RunTemplateParameter](docs/RunTemplateParameter.md)
244
+ - [RunTemplateParameterCreateRequest](docs/RunTemplateParameterCreateRequest.md)
245
+ - [RunTemplateParameterGroup](docs/RunTemplateParameterGroup.md)
246
+ - [RunTemplateParameterGroupCreateRequest](docs/RunTemplateParameterGroupCreateRequest.md)
247
+ - [RunTemplateParameterGroupUpdateRequest](docs/RunTemplateParameterGroupUpdateRequest.md)
248
+ - [RunTemplateParameterUpdateRequest](docs/RunTemplateParameterUpdateRequest.md)
249
+ - [RunTemplateParameterValue](docs/RunTemplateParameterValue.md)
250
+ - [RunTemplateResourceSizing](docs/RunTemplateResourceSizing.md)
251
+ - [RunTemplateUpdateRequest](docs/RunTemplateUpdateRequest.md)
252
+ - [Runner](docs/Runner.md)
253
+ - [RunnerAccessControl](docs/RunnerAccessControl.md)
254
+ - [RunnerCreateRequest](docs/RunnerCreateRequest.md)
255
+ - [RunnerEditInfo](docs/RunnerEditInfo.md)
256
+ - [RunnerResourceSizing](docs/RunnerResourceSizing.md)
257
+ - [RunnerRole](docs/RunnerRole.md)
258
+ - [RunnerRunTemplateParameterValue](docs/RunnerRunTemplateParameterValue.md)
259
+ - [RunnerSecurity](docs/RunnerSecurity.md)
260
+ - [RunnerUpdateRequest](docs/RunnerUpdateRequest.md)
261
+ - [RunnerValidationStatus](docs/RunnerValidationStatus.md)
262
+ - [SendRunDataRequest](docs/SendRunDataRequest.md)
263
+ - [Solution](docs/Solution.md)
264
+ - [SolutionAccessControl](docs/SolutionAccessControl.md)
265
+ - [SolutionCreateRequest](docs/SolutionCreateRequest.md)
266
+ - [SolutionEditInfo](docs/SolutionEditInfo.md)
267
+ - [SolutionRole](docs/SolutionRole.md)
268
+ - [SolutionSecurity](docs/SolutionSecurity.md)
269
+ - [SolutionUpdateRequest](docs/SolutionUpdateRequest.md)
270
+ - [Workspace](docs/Workspace.md)
271
+ - [WorkspaceAccessControl](docs/WorkspaceAccessControl.md)
272
+ - [WorkspaceCreateRequest](docs/WorkspaceCreateRequest.md)
273
+ - [WorkspaceEditInfo](docs/WorkspaceEditInfo.md)
274
+ - [WorkspaceFile](docs/WorkspaceFile.md)
275
+ - [WorkspaceRole](docs/WorkspaceRole.md)
276
+ - [WorkspaceSecurity](docs/WorkspaceSecurity.md)
277
+ - [WorkspaceSolution](docs/WorkspaceSolution.md)
278
+ - [WorkspaceUpdateRequest](docs/WorkspaceUpdateRequest.md)
279
+ - [WorkspaceWebApp](docs/WorkspaceWebApp.md)
280
+
281
+
282
+ <a id="documentation-for-authorization"></a>
283
+ ## Documentation For Authorization
284
+
285
+
286
+ Authentication schemes defined for the API:
287
+ <a id="oAuth2AuthCode"></a>
288
+ ### oAuth2AuthCode
289
+
290
+ - **Type**: OAuth
291
+ - **Flow**: accessCode
292
+ - **Authorization URL**: https://example.com/authorize
293
+ - **Scopes**: N/A
294
+
295
+
296
+ ## Author
297
+
298
+ platform@cosmotech.com
299
+
300
+
@@ -0,0 +1,116 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Cosmo Tech Platform API
7
+
8
+ Cosmo Tech Platform API
9
+
10
+ The version of the OpenAPI document: 5.0.0-beta3
11
+ Contact: platform@cosmotech.com
12
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
13
+
14
+ Do not edit the class manually.
15
+ """ # noqa: E501
16
+
17
+
18
+ __version__ = "1.0.0"
19
+
20
+ # import apis into sdk package
21
+ from cosmotech_api.api.dataset_api import DatasetApi
22
+ from cosmotech_api.api.meta_api import MetaApi
23
+ from cosmotech_api.api.organization_api import OrganizationApi
24
+ from cosmotech_api.api.run_api import RunApi
25
+ from cosmotech_api.api.runner_api import RunnerApi
26
+ from cosmotech_api.api.solution_api import SolutionApi
27
+ from cosmotech_api.api.workspace_api import WorkspaceApi
28
+
29
+ # import ApiClient
30
+ from cosmotech_api.api_response import ApiResponse
31
+ from cosmotech_api.api_client import ApiClient
32
+ from cosmotech_api.configuration import Configuration
33
+ from cosmotech_api.exceptions import OpenApiException
34
+ from cosmotech_api.exceptions import ApiTypeError
35
+ from cosmotech_api.exceptions import ApiValueError
36
+ from cosmotech_api.exceptions import ApiKeyError
37
+ from cosmotech_api.exceptions import ApiAttributeError
38
+ from cosmotech_api.exceptions import ApiException
39
+
40
+ # import models into sdk package
41
+ from cosmotech_api.models.about_info import AboutInfo
42
+ from cosmotech_api.models.about_info_version import AboutInfoVersion
43
+ from cosmotech_api.models.component_role_permissions import ComponentRolePermissions
44
+ from cosmotech_api.models.container_resource_size_info import ContainerResourceSizeInfo
45
+ from cosmotech_api.models.container_resource_sizing import ContainerResourceSizing
46
+ from cosmotech_api.models.create_info import CreateInfo
47
+ from cosmotech_api.models.created_run import CreatedRun
48
+ from cosmotech_api.models.dataset import Dataset
49
+ from cosmotech_api.models.dataset_access_control import DatasetAccessControl
50
+ from cosmotech_api.models.dataset_create_request import DatasetCreateRequest
51
+ from cosmotech_api.models.dataset_part import DatasetPart
52
+ from cosmotech_api.models.dataset_part_create_request import DatasetPartCreateRequest
53
+ from cosmotech_api.models.dataset_part_type_enum import DatasetPartTypeEnum
54
+ from cosmotech_api.models.dataset_part_update_request import DatasetPartUpdateRequest
55
+ from cosmotech_api.models.dataset_role import DatasetRole
56
+ from cosmotech_api.models.dataset_security import DatasetSecurity
57
+ from cosmotech_api.models.dataset_update_request import DatasetUpdateRequest
58
+ from cosmotech_api.models.edit_info import EditInfo
59
+ from cosmotech_api.models.last_run_info import LastRunInfo
60
+ from cosmotech_api.models.organization import Organization
61
+ from cosmotech_api.models.organization_access_control import OrganizationAccessControl
62
+ from cosmotech_api.models.organization_create_request import OrganizationCreateRequest
63
+ from cosmotech_api.models.organization_edit_info import OrganizationEditInfo
64
+ from cosmotech_api.models.organization_role import OrganizationRole
65
+ from cosmotech_api.models.organization_security import OrganizationSecurity
66
+ from cosmotech_api.models.organization_update_request import OrganizationUpdateRequest
67
+ from cosmotech_api.models.query_result import QueryResult
68
+ from cosmotech_api.models.resource_size_info import ResourceSizeInfo
69
+ from cosmotech_api.models.run import Run
70
+ from cosmotech_api.models.run_container import RunContainer
71
+ from cosmotech_api.models.run_data import RunData
72
+ from cosmotech_api.models.run_data_query import RunDataQuery
73
+ from cosmotech_api.models.run_edit_info import RunEditInfo
74
+ from cosmotech_api.models.run_resource_requested import RunResourceRequested
75
+ from cosmotech_api.models.run_state import RunState
76
+ from cosmotech_api.models.run_status import RunStatus
77
+ from cosmotech_api.models.run_status_node import RunStatusNode
78
+ from cosmotech_api.models.run_template import RunTemplate
79
+ from cosmotech_api.models.run_template_create_request import RunTemplateCreateRequest
80
+ from cosmotech_api.models.run_template_parameter import RunTemplateParameter
81
+ from cosmotech_api.models.run_template_parameter_create_request import RunTemplateParameterCreateRequest
82
+ from cosmotech_api.models.run_template_parameter_group import RunTemplateParameterGroup
83
+ from cosmotech_api.models.run_template_parameter_group_create_request import RunTemplateParameterGroupCreateRequest
84
+ from cosmotech_api.models.run_template_parameter_group_update_request import RunTemplateParameterGroupUpdateRequest
85
+ from cosmotech_api.models.run_template_parameter_update_request import RunTemplateParameterUpdateRequest
86
+ from cosmotech_api.models.run_template_parameter_value import RunTemplateParameterValue
87
+ from cosmotech_api.models.run_template_resource_sizing import RunTemplateResourceSizing
88
+ from cosmotech_api.models.run_template_update_request import RunTemplateUpdateRequest
89
+ from cosmotech_api.models.runner import Runner
90
+ from cosmotech_api.models.runner_access_control import RunnerAccessControl
91
+ from cosmotech_api.models.runner_create_request import RunnerCreateRequest
92
+ from cosmotech_api.models.runner_edit_info import RunnerEditInfo
93
+ from cosmotech_api.models.runner_resource_sizing import RunnerResourceSizing
94
+ from cosmotech_api.models.runner_role import RunnerRole
95
+ from cosmotech_api.models.runner_run_template_parameter_value import RunnerRunTemplateParameterValue
96
+ from cosmotech_api.models.runner_security import RunnerSecurity
97
+ from cosmotech_api.models.runner_update_request import RunnerUpdateRequest
98
+ from cosmotech_api.models.runner_validation_status import RunnerValidationStatus
99
+ from cosmotech_api.models.send_run_data_request import SendRunDataRequest
100
+ from cosmotech_api.models.solution import Solution
101
+ from cosmotech_api.models.solution_access_control import SolutionAccessControl
102
+ from cosmotech_api.models.solution_create_request import SolutionCreateRequest
103
+ from cosmotech_api.models.solution_edit_info import SolutionEditInfo
104
+ from cosmotech_api.models.solution_role import SolutionRole
105
+ from cosmotech_api.models.solution_security import SolutionSecurity
106
+ from cosmotech_api.models.solution_update_request import SolutionUpdateRequest
107
+ from cosmotech_api.models.workspace import Workspace
108
+ from cosmotech_api.models.workspace_access_control import WorkspaceAccessControl
109
+ from cosmotech_api.models.workspace_create_request import WorkspaceCreateRequest
110
+ from cosmotech_api.models.workspace_edit_info import WorkspaceEditInfo
111
+ from cosmotech_api.models.workspace_file import WorkspaceFile
112
+ from cosmotech_api.models.workspace_role import WorkspaceRole
113
+ from cosmotech_api.models.workspace_security import WorkspaceSecurity
114
+ from cosmotech_api.models.workspace_solution import WorkspaceSolution
115
+ from cosmotech_api.models.workspace_update_request import WorkspaceUpdateRequest
116
+ from cosmotech_api.models.workspace_web_app import WorkspaceWebApp
@@ -0,0 +1,11 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from cosmotech_api.api.dataset_api import DatasetApi
5
+ from cosmotech_api.api.meta_api import MetaApi
6
+ from cosmotech_api.api.organization_api import OrganizationApi
7
+ from cosmotech_api.api.run_api import RunApi
8
+ from cosmotech_api.api.runner_api import RunnerApi
9
+ from cosmotech_api.api.solution_api import SolutionApi
10
+ from cosmotech_api.api.workspace_api import WorkspaceApi
11
+