cosmotech-api 4.0.0.dev9__tar.gz → 5.0.0b4__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 (851) hide show
  1. cosmotech_api-5.0.0b4/LICENSE +17 -0
  2. cosmotech_api-5.0.0b4/PKG-INFO +27 -0
  3. cosmotech_api-5.0.0b4/README.md +306 -0
  4. cosmotech_api-5.0.0b4/cosmotech_api/__init__.py +117 -0
  5. cosmotech_api-5.0.0b4/cosmotech_api/api/__init__.py +11 -0
  6. cosmotech_api-5.0.0b4/cosmotech_api/api/connector_api.py +1110 -0
  7. cosmotech_api-5.0.0b4/cosmotech_api/api/dataset_api.py +6545 -0
  8. cosmotech_api-5.0.0b4/cosmotech_api/api/meta_api.py +281 -0
  9. cosmotech_api-5.0.0b4/cosmotech_api/api/organization_api.py +3886 -0
  10. cosmotech_api-5.0.0b4/cosmotech_api/api/run_api.py +2253 -0
  11. cosmotech_api-5.0.0b4/cosmotech_api/api/runner_api.py +4608 -0
  12. cosmotech_api-5.0.0b4/cosmotech_api/api/scenario_api.py +6708 -0
  13. cosmotech_api-5.0.0b4/cosmotech_api/api/scenariorun_api.py +4102 -0
  14. cosmotech_api-5.0.0b4/cosmotech_api/api/scenariorunresult_api.py +386 -0
  15. cosmotech_api-5.0.0b4/cosmotech_api/api/solution_api.py +9481 -0
  16. cosmotech_api-5.0.0b4/cosmotech_api/api/twingraph_api.py +4212 -0
  17. cosmotech_api-5.0.0b4/cosmotech_api/api/validator_api.py +1314 -0
  18. cosmotech_api-5.0.0b4/cosmotech_api/api/workspace_api.py +5300 -0
  19. cosmotech_api-5.0.0b4/cosmotech_api/api_client.py +798 -0
  20. cosmotech_api-5.0.0b4/cosmotech_api/configuration.py +586 -0
  21. cosmotech_api-5.0.0b4/cosmotech_api/exceptions.py +217 -0
  22. cosmotech_api-5.0.0b4/cosmotech_api/model/component_role_permissions.py +260 -0
  23. cosmotech_api-5.0.0b4/cosmotech_api/model/connector.py +330 -0
  24. cosmotech_api-5.0.0b4/cosmotech_api/model/connector_parameter.py +284 -0
  25. cosmotech_api-5.0.0b4/cosmotech_api/model/connector_parameter_group.py +280 -0
  26. cosmotech_api-5.0.0b4/cosmotech_api/model/container_resource_size_info.py +268 -0
  27. cosmotech_api-5.0.0b4/cosmotech_api/model/container_resource_sizing.py +274 -0
  28. cosmotech_api-5.0.0b4/cosmotech_api/model/dataset.py +376 -0
  29. cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_access_control.py +268 -0
  30. cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_compatibility.py +270 -0
  31. cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_connector.py +268 -0
  32. cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_copy_parameters.py +264 -0
  33. cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_role.py +262 -0
  34. cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_search.py +262 -0
  35. cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_security.py +274 -0
  36. cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_source_type.py +287 -0
  37. cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_twin_graph_hash.py +256 -0
  38. cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_twin_graph_info.py +264 -0
  39. cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_twin_graph_query.py +262 -0
  40. cosmotech_api-5.0.0b4/cosmotech_api/model/delete_historical_data.py +272 -0
  41. cosmotech_api-5.0.0b4/cosmotech_api/model/file_upload_metadata.py +260 -0
  42. cosmotech_api-5.0.0b4/cosmotech_api/model/file_upload_validation.py +266 -0
  43. cosmotech_api-5.0.0b4/cosmotech_api/model/graph_properties.py +272 -0
  44. cosmotech_api-5.0.0b4/cosmotech_api/model/organization.py +282 -0
  45. cosmotech_api-5.0.0b4/cosmotech_api/model/organization_access_control.py +268 -0
  46. cosmotech_api-5.0.0b4/cosmotech_api/model/organization_role.py +262 -0
  47. cosmotech_api-5.0.0b4/cosmotech_api/model/organization_security.py +274 -0
  48. cosmotech_api-5.0.0b4/cosmotech_api/model/organization_service.py +272 -0
  49. cosmotech_api-5.0.0b4/cosmotech_api/model/organization_services.py +270 -0
  50. cosmotech_api-5.0.0b4/cosmotech_api/model/resource_size_info.py +268 -0
  51. cosmotech_api-5.0.0b4/cosmotech_api/model/run.py +351 -0
  52. cosmotech_api-5.0.0b4/cosmotech_api/model/run_container.py +318 -0
  53. cosmotech_api-5.0.0b4/cosmotech_api/model/run_container_artifact.py +260 -0
  54. cosmotech_api-5.0.0b4/cosmotech_api/model/run_container_logs.py +272 -0
  55. cosmotech_api-5.0.0b4/cosmotech_api/model/run_logs.py +268 -0
  56. cosmotech_api-5.0.0b4/cosmotech_api/model/run_resource_requested.py +260 -0
  57. cosmotech_api-5.0.0b4/cosmotech_api/model/run_search.py +296 -0
  58. cosmotech_api-5.0.0b4/cosmotech_api/model/run_start_containers.py +286 -0
  59. cosmotech_api-5.0.0b4/cosmotech_api/model/run_state.py +285 -0
  60. cosmotech_api-5.0.0b4/cosmotech_api/model/run_status.py +316 -0
  61. cosmotech_api-5.0.0b4/cosmotech_api/model/run_status_node.py +307 -0
  62. cosmotech_api-5.0.0b4/cosmotech_api/model/run_template.py +408 -0
  63. cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_handler_id.py +287 -0
  64. cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_orchestrator.py +283 -0
  65. cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_parameter.py +296 -0
  66. cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_parameter_group.py +288 -0
  67. cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_parameter_value.py +273 -0
  68. cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_resource_sizing.py +274 -0
  69. cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_step_source.py +285 -0
  70. cosmotech_api-5.0.0b4/cosmotech_api/model/runner.py +379 -0
  71. cosmotech_api-5.0.0b4/cosmotech_api/model/runner_access_control.py +268 -0
  72. cosmotech_api-5.0.0b4/cosmotech_api/model/runner_changed_parameter_value.py +272 -0
  73. cosmotech_api-5.0.0b4/cosmotech_api/model/runner_comparison_result.py +273 -0
  74. cosmotech_api-5.0.0b4/cosmotech_api/model/runner_data_download_info.py +267 -0
  75. cosmotech_api-5.0.0b4/cosmotech_api/model/runner_data_download_job.py +257 -0
  76. cosmotech_api-5.0.0b4/cosmotech_api/model/runner_job_state.py +287 -0
  77. cosmotech_api-5.0.0b4/cosmotech_api/model/runner_last_run.py +268 -0
  78. cosmotech_api-5.0.0b4/cosmotech_api/model/runner_resource_sizing.py +274 -0
  79. cosmotech_api-5.0.0b4/cosmotech_api/model/runner_role.py +262 -0
  80. cosmotech_api-5.0.0b4/cosmotech_api/model/runner_run_template_parameter_value.py +277 -0
  81. cosmotech_api-5.0.0b4/cosmotech_api/model/runner_security.py +274 -0
  82. cosmotech_api-5.0.0b4/cosmotech_api/model/runner_validation_status.py +285 -0
  83. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario.py +379 -0
  84. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_access_control.py +268 -0
  85. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_changed_parameter_value.py +272 -0
  86. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_comparison_result.py +273 -0
  87. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_data_download_info.py +267 -0
  88. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_data_download_job.py +257 -0
  89. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_job_state.py +287 -0
  90. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_last_run.py +268 -0
  91. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_resource_sizing.py +274 -0
  92. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_role.py +262 -0
  93. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run.py +369 -0
  94. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_container.py +318 -0
  95. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_container_artifact.py +260 -0
  96. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_container_logs.py +272 -0
  97. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_logs.py +268 -0
  98. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_resource_requested.py +260 -0
  99. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_result.py +260 -0
  100. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_search.py +296 -0
  101. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_start_containers.py +286 -0
  102. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_state.py +287 -0
  103. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_status.py +308 -0
  104. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_status_node.py +307 -0
  105. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_template_parameter_value.py +277 -0
  106. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_security.py +274 -0
  107. cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_validation_status.py +285 -0
  108. cosmotech_api-5.0.0b4/cosmotech_api/model/solution.py +335 -0
  109. cosmotech_api-5.0.0b4/cosmotech_api/model/solution_access_control.py +268 -0
  110. cosmotech_api-5.0.0b4/cosmotech_api/model/solution_role.py +262 -0
  111. cosmotech_api-5.0.0b4/cosmotech_api/model/solution_security.py +274 -0
  112. cosmotech_api-5.0.0b4/cosmotech_api/model/source_info.py +274 -0
  113. cosmotech_api-5.0.0b4/cosmotech_api/model/sub_dataset_graph_query.py +268 -0
  114. cosmotech_api-5.0.0b4/cosmotech_api/model/translated_labels.py +252 -0
  115. cosmotech_api-5.0.0b4/cosmotech_api/model/twin_graph_batch_result.py +274 -0
  116. cosmotech_api-5.0.0b4/cosmotech_api/model/twin_graph_hash.py +256 -0
  117. cosmotech_api-5.0.0b4/cosmotech_api/model/twin_graph_query.py +266 -0
  118. cosmotech_api-5.0.0b4/cosmotech_api/model/validator.py +295 -0
  119. cosmotech_api-5.0.0b4/cosmotech_api/model/validator_run.py +302 -0
  120. cosmotech_api-5.0.0b4/cosmotech_api/model/workspace.py +351 -0
  121. cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_access_control.py +268 -0
  122. cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_file.py +256 -0
  123. cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_role.py +262 -0
  124. cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_secret.py +256 -0
  125. cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_security.py +274 -0
  126. cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_solution.py +264 -0
  127. cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_web_app.py +270 -0
  128. cosmotech_api-5.0.0b4/cosmotech_api/model_utils.py +2038 -0
  129. cosmotech_api-5.0.0b4/cosmotech_api/models/__init__.py +94 -0
  130. cosmotech_api-5.0.0b4/cosmotech_api/models/about_info.py +92 -0
  131. cosmotech_api-5.0.0b4/cosmotech_api/models/about_info_version.py +100 -0
  132. cosmotech_api-5.0.0b4/cosmotech_api/models/component_role_permissions.py +90 -0
  133. cosmotech_api-5.0.0b4/cosmotech_api/models/connector.py +121 -0
  134. cosmotech_api-5.0.0b4/cosmotech_api/models/connector_parameter.py +98 -0
  135. cosmotech_api-5.0.0b4/cosmotech_api/models/connector_parameter_group.py +100 -0
  136. cosmotech_api-5.0.0b4/cosmotech_api/models/container_resource_size_info.py +90 -0
  137. cosmotech_api-5.0.0b4/cosmotech_api/models/container_resource_sizing.py +97 -0
  138. cosmotech_api-5.0.0b4/cosmotech_api/models/create_info.py +103 -0
  139. cosmotech_api-5.0.0b4/cosmotech_api/models/created_run.py +88 -0
  140. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset.py +138 -0
  141. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_access_control.py +90 -0
  142. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_compatibility.py +92 -0
  143. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_connector.py +94 -0
  144. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_copy_parameters.py +92 -0
  145. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_create_request.py +121 -0
  146. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_part.py +130 -0
  147. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_part_create_request.py +98 -0
  148. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_part_type_enum.py +38 -0
  149. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_part_update_request.py +93 -0
  150. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_role.py +88 -0
  151. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_search.py +88 -0
  152. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_security.py +98 -0
  153. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_source_type.py +42 -0
  154. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_twin_graph_hash.py +88 -0
  155. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_twin_graph_info.py +92 -0
  156. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_twin_graph_query.py +88 -0
  157. cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_update_request.py +109 -0
  158. cosmotech_api-5.0.0b4/cosmotech_api/models/delete_historical_data.py +92 -0
  159. cosmotech_api-5.0.0b4/cosmotech_api/models/edit_info.py +90 -0
  160. cosmotech_api-5.0.0b4/cosmotech_api/models/file_upload_metadata.py +90 -0
  161. cosmotech_api-5.0.0b4/cosmotech_api/models/file_upload_validation.py +105 -0
  162. cosmotech_api-5.0.0b4/cosmotech_api/models/graph_properties.py +96 -0
  163. cosmotech_api-5.0.0b4/cosmotech_api/models/ingestion_status_enum.py +40 -0
  164. cosmotech_api-5.0.0b4/cosmotech_api/models/io_types_enum.py +38 -0
  165. cosmotech_api-5.0.0b4/cosmotech_api/models/last_run_info.py +100 -0
  166. cosmotech_api-5.0.0b4/cosmotech_api/models/organization.py +109 -0
  167. cosmotech_api-5.0.0b4/cosmotech_api/models/organization_access_control.py +90 -0
  168. cosmotech_api-5.0.0b4/cosmotech_api/models/organization_create_request.py +95 -0
  169. cosmotech_api-5.0.0b4/cosmotech_api/models/organization_edit_info.py +90 -0
  170. cosmotech_api-5.0.0b4/cosmotech_api/models/organization_role.py +88 -0
  171. cosmotech_api-5.0.0b4/cosmotech_api/models/organization_security.py +98 -0
  172. cosmotech_api-5.0.0b4/cosmotech_api/models/organization_service.py +96 -0
  173. cosmotech_api-5.0.0b4/cosmotech_api/models/organization_services.py +99 -0
  174. cosmotech_api-5.0.0b4/cosmotech_api/models/organization_update_request.py +89 -0
  175. cosmotech_api-5.0.0b4/cosmotech_api/models/query_result.py +88 -0
  176. cosmotech_api-5.0.0b4/cosmotech_api/models/resource_size_info.py +90 -0
  177. cosmotech_api-5.0.0b4/cosmotech_api/models/run.py +165 -0
  178. cosmotech_api-5.0.0b4/cosmotech_api/models/run_container.py +116 -0
  179. cosmotech_api-5.0.0b4/cosmotech_api/models/run_container_artifact.py +90 -0
  180. cosmotech_api-5.0.0b4/cosmotech_api/models/run_container_logs.py +102 -0
  181. cosmotech_api-5.0.0b4/cosmotech_api/models/run_data.py +92 -0
  182. cosmotech_api-5.0.0b4/cosmotech_api/models/run_data_query.py +88 -0
  183. cosmotech_api-5.0.0b4/cosmotech_api/models/run_edit_info.py +90 -0
  184. cosmotech_api-5.0.0b4/cosmotech_api/models/run_logs.py +102 -0
  185. cosmotech_api-5.0.0b4/cosmotech_api/models/run_logs_entry.py +88 -0
  186. cosmotech_api-5.0.0b4/cosmotech_api/models/run_resource_requested.py +90 -0
  187. cosmotech_api-5.0.0b4/cosmotech_api/models/run_search.py +103 -0
  188. cosmotech_api-5.0.0b4/cosmotech_api/models/run_search_state.py +46 -0
  189. cosmotech_api-5.0.0b4/cosmotech_api/models/run_start_containers.py +104 -0
  190. cosmotech_api-5.0.0b4/cosmotech_api/models/run_state.py +41 -0
  191. cosmotech_api-5.0.0b4/cosmotech_api/models/run_status.py +129 -0
  192. cosmotech_api-5.0.0b4/cosmotech_api/models/run_status_node.py +116 -0
  193. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template.py +109 -0
  194. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_create_request.py +109 -0
  195. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_handler_id.py +42 -0
  196. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_orchestrator.py +38 -0
  197. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter.py +105 -0
  198. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter_create_request.py +105 -0
  199. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter_group.py +101 -0
  200. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter_group_create_request.py +101 -0
  201. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter_group_update_request.py +98 -0
  202. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter_update_request.py +103 -0
  203. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter_value.py +94 -0
  204. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_resource_sizing.py +97 -0
  205. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_step_source.py +40 -0
  206. cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_update_request.py +107 -0
  207. cosmotech_api-5.0.0b4/cosmotech_api/models/runner.py +172 -0
  208. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_access_control.py +90 -0
  209. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_changed_parameter_value.py +102 -0
  210. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_comparison_result.py +106 -0
  211. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_create_request.py +154 -0
  212. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_data_download_info.py +93 -0
  213. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_data_download_job.py +90 -0
  214. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_edit_info.py +90 -0
  215. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_job_state.py +42 -0
  216. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_last_run.py +94 -0
  217. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_parent_last_run.py +94 -0
  218. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_resource_sizing.py +97 -0
  219. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_role.py +88 -0
  220. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_root_last_run.py +94 -0
  221. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_run_template_parameter_value.py +96 -0
  222. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_security.py +98 -0
  223. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_update_request.py +123 -0
  224. cosmotech_api-5.0.0b4/cosmotech_api/models/runner_validation_status.py +40 -0
  225. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario.py +186 -0
  226. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_access_control.py +90 -0
  227. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_changed_parameter_value.py +102 -0
  228. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_comparison_result.py +106 -0
  229. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_data_download_info.py +93 -0
  230. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_data_download_job.py +90 -0
  231. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_job_state.py +42 -0
  232. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_last_run.py +94 -0
  233. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_resource_sizing.py +97 -0
  234. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_role.py +88 -0
  235. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run.py +179 -0
  236. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_container.py +126 -0
  237. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_container_artifact.py +90 -0
  238. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_container_logs.py +102 -0
  239. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_logs.py +107 -0
  240. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_resource_requested.py +90 -0
  241. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_search.py +103 -0
  242. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_search_state.py +46 -0
  243. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_start_containers.py +104 -0
  244. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_state.py +42 -0
  245. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_status.py +119 -0
  246. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_status_node.py +116 -0
  247. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_template_parameter_value.py +96 -0
  248. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_security.py +98 -0
  249. cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_validation_status.py +40 -0
  250. cosmotech_api-5.0.0b4/cosmotech_api/models/send_run_data_request.py +90 -0
  251. cosmotech_api-5.0.0b4/cosmotech_api/models/solution.py +170 -0
  252. cosmotech_api-5.0.0b4/cosmotech_api/models/solution_access_control.py +90 -0
  253. cosmotech_api-5.0.0b4/cosmotech_api/models/solution_create_request.py +139 -0
  254. cosmotech_api-5.0.0b4/cosmotech_api/models/solution_edit_info.py +90 -0
  255. cosmotech_api-5.0.0b4/cosmotech_api/models/solution_file.py +88 -0
  256. cosmotech_api-5.0.0b4/cosmotech_api/models/solution_role.py +88 -0
  257. cosmotech_api-5.0.0b4/cosmotech_api/models/solution_security.py +98 -0
  258. cosmotech_api-5.0.0b4/cosmotech_api/models/solution_update_request.py +133 -0
  259. cosmotech_api-5.0.0b4/cosmotech_api/models/source_info.py +94 -0
  260. cosmotech_api-5.0.0b4/cosmotech_api/models/sub_dataset_graph_query.py +94 -0
  261. cosmotech_api-5.0.0b4/cosmotech_api/models/twin_graph_batch_result.py +92 -0
  262. cosmotech_api-5.0.0b4/cosmotech_api/models/twin_graph_hash.py +88 -0
  263. cosmotech_api-5.0.0b4/cosmotech_api/models/twin_graph_query.py +90 -0
  264. cosmotech_api-5.0.0b4/cosmotech_api/models/twincache_status_enum.py +38 -0
  265. cosmotech_api-5.0.0b4/cosmotech_api/models/validator.py +106 -0
  266. cosmotech_api-5.0.0b4/cosmotech_api/models/workspace.py +150 -0
  267. cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_access_control.py +90 -0
  268. cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_create_request.py +117 -0
  269. cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_edit_info.py +90 -0
  270. cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_file.py +88 -0
  271. cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_role.py +88 -0
  272. cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_secret.py +88 -0
  273. cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_security.py +98 -0
  274. cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_solution.py +100 -0
  275. cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_update_request.py +109 -0
  276. cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_web_app.py +92 -0
  277. cosmotech_api-5.0.0b4/cosmotech_api/rest.py +259 -0
  278. cosmotech_api-5.0.0b4/cosmotech_api.egg-info/PKG-INFO +27 -0
  279. cosmotech_api-5.0.0b4/cosmotech_api.egg-info/SOURCES.txt +468 -0
  280. cosmotech_api-5.0.0b4/cosmotech_api.egg-info/requires.txt +4 -0
  281. cosmotech_api-5.0.0b4/pyproject.toml +89 -0
  282. cosmotech_api-5.0.0b4/setup.py +51 -0
  283. cosmotech_api-5.0.0b4/test/test_about_info.py +67 -0
  284. cosmotech_api-5.0.0b4/test/test_about_info_version.py +65 -0
  285. cosmotech_api-5.0.0b4/test/test_component_role_permissions.py +63 -0
  286. cosmotech_api-5.0.0b4/test/test_connector.py +81 -0
  287. cosmotech_api-5.0.0b4/test/test_connector_api.py +60 -0
  288. cosmotech_api-5.0.0b4/test/test_connector_parameter.py +61 -0
  289. cosmotech_api-5.0.0b4/test/test_connector_parameter_group.py +77 -0
  290. cosmotech_api-5.0.0b4/test/test_container_resource_size_info.py +55 -0
  291. cosmotech_api-5.0.0b4/test/test_container_resource_sizing.py +63 -0
  292. cosmotech_api-5.0.0b4/test/test_create_info.py +56 -0
  293. cosmotech_api-5.0.0b4/test/test_created_run.py +53 -0
  294. cosmotech_api-5.0.0b4/test/test_dataset.py +126 -0
  295. cosmotech_api-5.0.0b4/test/test_dataset_access_control.py +55 -0
  296. cosmotech_api-5.0.0b4/test/test_dataset_api.py +172 -0
  297. cosmotech_api-5.0.0b4/test/test_dataset_compatibility.py +55 -0
  298. cosmotech_api-5.0.0b4/test/test_dataset_connector.py +57 -0
  299. cosmotech_api-5.0.0b4/test/test_dataset_copy_parameters.py +54 -0
  300. cosmotech_api-5.0.0b4/test/test_dataset_create_request.py +75 -0
  301. cosmotech_api-5.0.0b4/test/test_dataset_part.py +84 -0
  302. cosmotech_api-5.0.0b4/test/test_dataset_part_create_request.py +60 -0
  303. cosmotech_api-5.0.0b4/test/test_dataset_part_type_enum.py +34 -0
  304. cosmotech_api-5.0.0b4/test/test_dataset_part_update_request.py +56 -0
  305. cosmotech_api-5.0.0b4/test/test_dataset_role.py +53 -0
  306. cosmotech_api-5.0.0b4/test/test_dataset_search.py +57 -0
  307. cosmotech_api-5.0.0b4/test/test_dataset_security.py +63 -0
  308. cosmotech_api-5.0.0b4/test/test_dataset_source_type.py +34 -0
  309. cosmotech_api-5.0.0b4/test/test_dataset_twin_graph_hash.py +52 -0
  310. cosmotech_api-5.0.0b4/test/test_dataset_twin_graph_info.py +54 -0
  311. cosmotech_api-5.0.0b4/test/test_dataset_twin_graph_query.py +53 -0
  312. cosmotech_api-5.0.0b4/test/test_dataset_update_request.py +73 -0
  313. cosmotech_api-5.0.0b4/test/test_delete_historical_data.py +55 -0
  314. cosmotech_api-5.0.0b4/test/test_edit_info.py +55 -0
  315. cosmotech_api-5.0.0b4/test/test_file_upload_metadata.py +53 -0
  316. cosmotech_api-5.0.0b4/test/test_file_upload_validation.py +61 -0
  317. cosmotech_api-5.0.0b4/test/test_graph_properties.py +56 -0
  318. cosmotech_api-5.0.0b4/test/test_ingestion_status_enum.py +34 -0
  319. cosmotech_api-5.0.0b4/test/test_io_types_enum.py +34 -0
  320. cosmotech_api-5.0.0b4/test/test_last_run_info.py +53 -0
  321. cosmotech_api-5.0.0b4/test/test_meta_api.py +39 -0
  322. cosmotech_api-5.0.0b4/test/test_organization.py +81 -0
  323. cosmotech_api-5.0.0b4/test/test_organization_access_control.py +55 -0
  324. cosmotech_api-5.0.0b4/test/test_organization_api.py +130 -0
  325. cosmotech_api-5.0.0b4/test/test_organization_create_request.py +60 -0
  326. cosmotech_api-5.0.0b4/test/test_organization_edit_info.py +55 -0
  327. cosmotech_api-5.0.0b4/test/test_organization_role.py +53 -0
  328. cosmotech_api-5.0.0b4/test/test_organization_security.py +63 -0
  329. cosmotech_api-5.0.0b4/test/test_organization_service.py +56 -0
  330. cosmotech_api-5.0.0b4/test/test_organization_services.py +64 -0
  331. cosmotech_api-5.0.0b4/test/test_organization_update_request.py +52 -0
  332. cosmotech_api-5.0.0b4/test/test_query_result.py +54 -0
  333. cosmotech_api-5.0.0b4/test/test_resource_size_info.py +55 -0
  334. cosmotech_api-5.0.0b4/test/test_run.py +108 -0
  335. cosmotech_api-5.0.0b4/test/test_run_api.py +81 -0
  336. cosmotech_api-5.0.0b4/test/test_run_container.py +78 -0
  337. cosmotech_api-5.0.0b4/test/test_run_container_artifact.py +53 -0
  338. cosmotech_api-5.0.0b4/test/test_run_container_logs.py +57 -0
  339. cosmotech_api-5.0.0b4/test/test_run_data.py +56 -0
  340. cosmotech_api-5.0.0b4/test/test_run_data_query.py +53 -0
  341. cosmotech_api-5.0.0b4/test/test_run_edit_info.py +55 -0
  342. cosmotech_api-5.0.0b4/test/test_run_logs.py +61 -0
  343. cosmotech_api-5.0.0b4/test/test_run_logs_entry.py +53 -0
  344. cosmotech_api-5.0.0b4/test/test_run_resource_requested.py +53 -0
  345. cosmotech_api-5.0.0b4/test/test_run_search.py +59 -0
  346. cosmotech_api-5.0.0b4/test/test_run_search_state.py +34 -0
  347. cosmotech_api-5.0.0b4/test/test_run_start_containers.py +124 -0
  348. cosmotech_api-5.0.0b4/test/test_run_state.py +34 -0
  349. cosmotech_api-5.0.0b4/test/test_run_status.py +86 -0
  350. cosmotech_api-5.0.0b4/test/test_run_status_node.py +67 -0
  351. cosmotech_api-5.0.0b4/test/test_run_template.py +76 -0
  352. cosmotech_api-5.0.0b4/test/test_run_template_create_request.py +73 -0
  353. cosmotech_api-5.0.0b4/test/test_run_template_handler_id.py +34 -0
  354. cosmotech_api-5.0.0b4/test/test_run_template_orchestrator.py +34 -0
  355. cosmotech_api-5.0.0b4/test/test_run_template_parameter.py +64 -0
  356. cosmotech_api-5.0.0b4/test/test_run_template_parameter_create_request.py +64 -0
  357. cosmotech_api-5.0.0b4/test/test_run_template_parameter_group.py +67 -0
  358. cosmotech_api-5.0.0b4/test/test_run_template_parameter_group_create_request.py +63 -0
  359. cosmotech_api-5.0.0b4/test/test_run_template_parameter_group_update_request.py +61 -0
  360. cosmotech_api-5.0.0b4/test/test_run_template_parameter_update_request.py +61 -0
  361. cosmotech_api-5.0.0b4/test/test_run_template_parameter_value.py +56 -0
  362. cosmotech_api-5.0.0b4/test/test_run_template_resource_sizing.py +63 -0
  363. cosmotech_api-5.0.0b4/test/test_run_template_step_source.py +34 -0
  364. cosmotech_api-5.0.0b4/test/test_run_template_update_request.py +71 -0
  365. cosmotech_api-5.0.0b4/test/test_runner.py +134 -0
  366. cosmotech_api-5.0.0b4/test/test_runner_access_control.py +55 -0
  367. cosmotech_api-5.0.0b4/test/test_runner_api.py +137 -0
  368. cosmotech_api-5.0.0b4/test/test_runner_changed_parameter_value.py +55 -0
  369. cosmotech_api-5.0.0b4/test/test_runner_comparison_result.py +60 -0
  370. cosmotech_api-5.0.0b4/test/test_runner_create_request.py +90 -0
  371. cosmotech_api-5.0.0b4/test/test_runner_data_download_info.py +53 -0
  372. cosmotech_api-5.0.0b4/test/test_runner_data_download_job.py +52 -0
  373. cosmotech_api-5.0.0b4/test/test_runner_edit_info.py +55 -0
  374. cosmotech_api-5.0.0b4/test/test_runner_job_state.py +34 -0
  375. cosmotech_api-5.0.0b4/test/test_runner_last_run.py +55 -0
  376. cosmotech_api-5.0.0b4/test/test_runner_parent_last_run.py +55 -0
  377. cosmotech_api-5.0.0b4/test/test_runner_resource_sizing.py +63 -0
  378. cosmotech_api-5.0.0b4/test/test_runner_role.py +53 -0
  379. cosmotech_api-5.0.0b4/test/test_runner_root_last_run.py +55 -0
  380. cosmotech_api-5.0.0b4/test/test_runner_run_template_parameter_value.py +57 -0
  381. cosmotech_api-5.0.0b4/test/test_runner_security.py +63 -0
  382. cosmotech_api-5.0.0b4/test/test_runner_update_request.py +77 -0
  383. cosmotech_api-5.0.0b4/test/test_runner_validation_status.py +34 -0
  384. cosmotech_api-5.0.0b4/test/test_scenario.py +110 -0
  385. cosmotech_api-5.0.0b4/test/test_scenario_access_control.py +55 -0
  386. cosmotech_api-5.0.0b4/test/test_scenario_api.py +186 -0
  387. cosmotech_api-5.0.0b4/test/test_scenario_changed_parameter_value.py +55 -0
  388. cosmotech_api-5.0.0b4/test/test_scenario_comparison_result.py +60 -0
  389. cosmotech_api-5.0.0b4/test/test_scenario_data_download_info.py +53 -0
  390. cosmotech_api-5.0.0b4/test/test_scenario_data_download_job.py +52 -0
  391. cosmotech_api-5.0.0b4/test/test_scenario_job_state.py +34 -0
  392. cosmotech_api-5.0.0b4/test/test_scenario_last_run.py +55 -0
  393. cosmotech_api-5.0.0b4/test/test_scenario_resource_sizing.py +63 -0
  394. cosmotech_api-5.0.0b4/test/test_scenario_role.py +53 -0
  395. cosmotech_api-5.0.0b4/test/test_scenario_run.py +113 -0
  396. cosmotech_api-5.0.0b4/test/test_scenario_run_container.py +83 -0
  397. cosmotech_api-5.0.0b4/test/test_scenario_run_container_artifact.py +53 -0
  398. cosmotech_api-5.0.0b4/test/test_scenario_run_container_logs.py +57 -0
  399. cosmotech_api-5.0.0b4/test/test_scenario_run_logs.py +61 -0
  400. cosmotech_api-5.0.0b4/test/test_scenario_run_resource_requested.py +53 -0
  401. cosmotech_api-5.0.0b4/test/test_scenario_run_result.py +36 -0
  402. cosmotech_api-5.0.0b4/test/test_scenario_run_search.py +59 -0
  403. cosmotech_api-5.0.0b4/test/test_scenario_run_search_state.py +34 -0
  404. cosmotech_api-5.0.0b4/test/test_scenario_run_start_containers.py +124 -0
  405. cosmotech_api-5.0.0b4/test/test_scenario_run_state.py +34 -0
  406. cosmotech_api-5.0.0b4/test/test_scenario_run_status.py +81 -0
  407. cosmotech_api-5.0.0b4/test/test_scenario_run_status_node.py +67 -0
  408. cosmotech_api-5.0.0b4/test/test_scenario_run_template_parameter_value.py +57 -0
  409. cosmotech_api-5.0.0b4/test/test_scenario_security.py +63 -0
  410. cosmotech_api-5.0.0b4/test/test_scenario_validation_status.py +34 -0
  411. cosmotech_api-5.0.0b4/test/test_scenariorun_api.py +130 -0
  412. cosmotech_api-5.0.0b4/test/test_send_run_data_request.py +59 -0
  413. cosmotech_api-5.0.0b4/test/test_solution.py +198 -0
  414. cosmotech_api-5.0.0b4/test/test_solution_access_control.py +55 -0
  415. cosmotech_api-5.0.0b4/test/test_solution_api.py +256 -0
  416. cosmotech_api-5.0.0b4/test/test_solution_create_request.py +122 -0
  417. cosmotech_api-5.0.0b4/test/test_solution_edit_info.py +55 -0
  418. cosmotech_api-5.0.0b4/test/test_solution_file.py +53 -0
  419. cosmotech_api-5.0.0b4/test/test_solution_role.py +53 -0
  420. cosmotech_api-5.0.0b4/test/test_solution_security.py +63 -0
  421. cosmotech_api-5.0.0b4/test/test_solution_update_request.py +111 -0
  422. cosmotech_api-5.0.0b4/test/test_source_info.py +56 -0
  423. cosmotech_api-5.0.0b4/test/test_sub_dataset_graph_query.py +57 -0
  424. cosmotech_api-5.0.0b4/test/test_translated_labels.py +36 -0
  425. cosmotech_api-5.0.0b4/test/test_twin_graph_batch_result.py +61 -0
  426. cosmotech_api-5.0.0b4/test/test_twin_graph_hash.py +52 -0
  427. cosmotech_api-5.0.0b4/test/test_twin_graph_query.py +54 -0
  428. cosmotech_api-5.0.0b4/test/test_twincache_status_enum.py +34 -0
  429. cosmotech_api-5.0.0b4/test/test_twingraph_api.py +130 -0
  430. cosmotech_api-5.0.0b4/test/test_validator.py +65 -0
  431. cosmotech_api-5.0.0b4/test/test_validator_run.py +36 -0
  432. cosmotech_api-5.0.0b4/test/test_workspace.py +107 -0
  433. cosmotech_api-5.0.0b4/test/test_workspace_access_control.py +55 -0
  434. cosmotech_api-5.0.0b4/test/test_workspace_api.py +158 -0
  435. cosmotech_api-5.0.0b4/test/test_workspace_create_request.py +84 -0
  436. cosmotech_api-5.0.0b4/test/test_workspace_edit_info.py +55 -0
  437. cosmotech_api-5.0.0b4/test/test_workspace_file.py +53 -0
  438. cosmotech_api-5.0.0b4/test/test_workspace_role.py +53 -0
  439. cosmotech_api-5.0.0b4/test/test_workspace_secret.py +52 -0
  440. cosmotech_api-5.0.0b4/test/test_workspace_security.py +63 -0
  441. cosmotech_api-5.0.0b4/test/test_workspace_solution.py +57 -0
  442. cosmotech_api-5.0.0b4/test/test_workspace_update_request.py +68 -0
  443. cosmotech_api-5.0.0b4/test/test_workspace_web_app.py +55 -0
  444. cosmotech_api-4.0.0.dev9/LICENSE +0 -17
  445. cosmotech_api-4.0.0.dev9/PKG-INFO +0 -18
  446. cosmotech_api-4.0.0.dev9/README.md +0 -302
  447. cosmotech_api-4.0.0.dev9/cosmotech_api/__init__.py +0 -111
  448. cosmotech_api-4.0.0.dev9/cosmotech_api/api/__init__.py +0 -11
  449. cosmotech_api-4.0.0.dev9/cosmotech_api/api/connector_api.py +0 -1099
  450. cosmotech_api-4.0.0.dev9/cosmotech_api/api/dataset_api.py +0 -9175
  451. cosmotech_api-4.0.0.dev9/cosmotech_api/api/organization_api.py +0 -3843
  452. cosmotech_api-4.0.0.dev9/cosmotech_api/api/run_api.py +0 -2233
  453. cosmotech_api-4.0.0.dev9/cosmotech_api/api/runner_api.py +0 -4563
  454. cosmotech_api-4.0.0.dev9/cosmotech_api/api/scenario_api.py +0 -6688
  455. cosmotech_api-4.0.0.dev9/cosmotech_api/api/scenariorun_api.py +0 -4092
  456. cosmotech_api-4.0.0.dev9/cosmotech_api/api/scenariorunresult_api.py +0 -386
  457. cosmotech_api-4.0.0.dev9/cosmotech_api/api/solution_api.py +0 -5835
  458. cosmotech_api-4.0.0.dev9/cosmotech_api/api/twingraph_api.py +0 -4201
  459. cosmotech_api-4.0.0.dev9/cosmotech_api/api/validator_api.py +0 -1314
  460. cosmotech_api-4.0.0.dev9/cosmotech_api/api/workspace_api.py +0 -5836
  461. cosmotech_api-4.0.0.dev9/cosmotech_api/api_client.py +0 -789
  462. cosmotech_api-4.0.0.dev9/cosmotech_api/configuration.py +0 -459
  463. cosmotech_api-4.0.0.dev9/cosmotech_api/exceptions.py +0 -200
  464. cosmotech_api-4.0.0.dev9/cosmotech_api/model/component_role_permissions.py +0 -260
  465. cosmotech_api-4.0.0.dev9/cosmotech_api/model/connector.py +0 -330
  466. cosmotech_api-4.0.0.dev9/cosmotech_api/model/connector_parameter.py +0 -284
  467. cosmotech_api-4.0.0.dev9/cosmotech_api/model/connector_parameter_group.py +0 -280
  468. cosmotech_api-4.0.0.dev9/cosmotech_api/model/container_resource_size_info.py +0 -268
  469. cosmotech_api-4.0.0.dev9/cosmotech_api/model/container_resource_sizing.py +0 -274
  470. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset.py +0 -376
  471. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_access_control.py +0 -268
  472. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_compatibility.py +0 -270
  473. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_connector.py +0 -268
  474. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_copy_parameters.py +0 -264
  475. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_role.py +0 -262
  476. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_search.py +0 -262
  477. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_security.py +0 -274
  478. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_source_type.py +0 -287
  479. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_twin_graph_hash.py +0 -256
  480. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_twin_graph_info.py +0 -264
  481. cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_twin_graph_query.py +0 -262
  482. cosmotech_api-4.0.0.dev9/cosmotech_api/model/delete_historical_data.py +0 -272
  483. cosmotech_api-4.0.0.dev9/cosmotech_api/model/file_upload_metadata.py +0 -260
  484. cosmotech_api-4.0.0.dev9/cosmotech_api/model/file_upload_validation.py +0 -266
  485. cosmotech_api-4.0.0.dev9/cosmotech_api/model/graph_properties.py +0 -272
  486. cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization.py +0 -282
  487. cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_access_control.py +0 -268
  488. cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_role.py +0 -262
  489. cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_security.py +0 -274
  490. cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_service.py +0 -272
  491. cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_services.py +0 -270
  492. cosmotech_api-4.0.0.dev9/cosmotech_api/model/resource_size_info.py +0 -268
  493. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run.py +0 -351
  494. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_container.py +0 -318
  495. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_container_artifact.py +0 -260
  496. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_container_logs.py +0 -272
  497. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_logs.py +0 -268
  498. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_resource_requested.py +0 -260
  499. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_search.py +0 -296
  500. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_start_containers.py +0 -286
  501. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_state.py +0 -285
  502. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_status.py +0 -316
  503. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_status_node.py +0 -307
  504. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template.py +0 -408
  505. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_handler_id.py +0 -287
  506. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_orchestrator.py +0 -283
  507. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_parameter.py +0 -296
  508. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_parameter_group.py +0 -288
  509. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_parameter_value.py +0 -273
  510. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_resource_sizing.py +0 -274
  511. cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_step_source.py +0 -285
  512. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner.py +0 -379
  513. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_access_control.py +0 -268
  514. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_changed_parameter_value.py +0 -272
  515. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_comparison_result.py +0 -273
  516. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_data_download_info.py +0 -267
  517. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_data_download_job.py +0 -257
  518. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_job_state.py +0 -287
  519. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_last_run.py +0 -268
  520. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_resource_sizing.py +0 -274
  521. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_role.py +0 -262
  522. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_run_template_parameter_value.py +0 -277
  523. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_security.py +0 -274
  524. cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_validation_status.py +0 -285
  525. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario.py +0 -379
  526. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_access_control.py +0 -268
  527. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_changed_parameter_value.py +0 -272
  528. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_comparison_result.py +0 -273
  529. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_data_download_info.py +0 -267
  530. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_data_download_job.py +0 -257
  531. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_job_state.py +0 -287
  532. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_last_run.py +0 -268
  533. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_resource_sizing.py +0 -274
  534. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_role.py +0 -262
  535. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run.py +0 -369
  536. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_container.py +0 -318
  537. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_container_artifact.py +0 -260
  538. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_container_logs.py +0 -272
  539. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_logs.py +0 -268
  540. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_resource_requested.py +0 -260
  541. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_result.py +0 -260
  542. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_search.py +0 -296
  543. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_start_containers.py +0 -286
  544. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_state.py +0 -287
  545. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_status.py +0 -308
  546. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_status_node.py +0 -307
  547. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_template_parameter_value.py +0 -277
  548. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_security.py +0 -274
  549. cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_validation_status.py +0 -285
  550. cosmotech_api-4.0.0.dev9/cosmotech_api/model/solution.py +0 -335
  551. cosmotech_api-4.0.0.dev9/cosmotech_api/model/solution_access_control.py +0 -268
  552. cosmotech_api-4.0.0.dev9/cosmotech_api/model/solution_role.py +0 -262
  553. cosmotech_api-4.0.0.dev9/cosmotech_api/model/solution_security.py +0 -274
  554. cosmotech_api-4.0.0.dev9/cosmotech_api/model/source_info.py +0 -274
  555. cosmotech_api-4.0.0.dev9/cosmotech_api/model/sub_dataset_graph_query.py +0 -268
  556. cosmotech_api-4.0.0.dev9/cosmotech_api/model/translated_labels.py +0 -252
  557. cosmotech_api-4.0.0.dev9/cosmotech_api/model/twin_graph_batch_result.py +0 -274
  558. cosmotech_api-4.0.0.dev9/cosmotech_api/model/twin_graph_hash.py +0 -256
  559. cosmotech_api-4.0.0.dev9/cosmotech_api/model/twin_graph_query.py +0 -266
  560. cosmotech_api-4.0.0.dev9/cosmotech_api/model/validator.py +0 -295
  561. cosmotech_api-4.0.0.dev9/cosmotech_api/model/validator_run.py +0 -302
  562. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace.py +0 -351
  563. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_access_control.py +0 -268
  564. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_file.py +0 -256
  565. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_role.py +0 -262
  566. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_secret.py +0 -256
  567. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_security.py +0 -274
  568. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_solution.py +0 -264
  569. cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_web_app.py +0 -270
  570. cosmotech_api-4.0.0.dev9/cosmotech_api/model_utils.py +0 -2038
  571. cosmotech_api-4.0.0.dev9/cosmotech_api/models/__init__.py +0 -88
  572. cosmotech_api-4.0.0.dev9/cosmotech_api/models/component_role_permissions.py +0 -90
  573. cosmotech_api-4.0.0.dev9/cosmotech_api/models/connector.py +0 -121
  574. cosmotech_api-4.0.0.dev9/cosmotech_api/models/connector_parameter.py +0 -98
  575. cosmotech_api-4.0.0.dev9/cosmotech_api/models/connector_parameter_group.py +0 -100
  576. cosmotech_api-4.0.0.dev9/cosmotech_api/models/container_resource_size_info.py +0 -90
  577. cosmotech_api-4.0.0.dev9/cosmotech_api/models/container_resource_sizing.py +0 -97
  578. cosmotech_api-4.0.0.dev9/cosmotech_api/models/created_run.py +0 -88
  579. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset.py +0 -177
  580. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_access_control.py +0 -90
  581. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_compatibility.py +0 -92
  582. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_connector.py +0 -94
  583. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_copy_parameters.py +0 -92
  584. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_role.py +0 -88
  585. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_search.py +0 -88
  586. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_security.py +0 -98
  587. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_source_type.py +0 -42
  588. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_twin_graph_hash.py +0 -88
  589. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_twin_graph_info.py +0 -92
  590. cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_twin_graph_query.py +0 -88
  591. cosmotech_api-4.0.0.dev9/cosmotech_api/models/delete_historical_data.py +0 -92
  592. cosmotech_api-4.0.0.dev9/cosmotech_api/models/file_upload_metadata.py +0 -90
  593. cosmotech_api-4.0.0.dev9/cosmotech_api/models/file_upload_validation.py +0 -105
  594. cosmotech_api-4.0.0.dev9/cosmotech_api/models/graph_properties.py +0 -96
  595. cosmotech_api-4.0.0.dev9/cosmotech_api/models/ingestion_status_enum.py +0 -40
  596. cosmotech_api-4.0.0.dev9/cosmotech_api/models/io_types_enum.py +0 -38
  597. cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization.py +0 -102
  598. cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_access_control.py +0 -90
  599. cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_role.py +0 -88
  600. cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_security.py +0 -98
  601. cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_service.py +0 -96
  602. cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_services.py +0 -99
  603. cosmotech_api-4.0.0.dev9/cosmotech_api/models/query_result.py +0 -88
  604. cosmotech_api-4.0.0.dev9/cosmotech_api/models/resource_size_info.py +0 -90
  605. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run.py +0 -167
  606. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_container.py +0 -116
  607. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_container_artifact.py +0 -90
  608. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_container_logs.py +0 -102
  609. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_data.py +0 -92
  610. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_data_query.py +0 -88
  611. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_logs.py +0 -102
  612. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_logs_entry.py +0 -88
  613. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_resource_requested.py +0 -90
  614. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_search.py +0 -103
  615. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_search_state.py +0 -46
  616. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_start_containers.py +0 -104
  617. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_state.py +0 -40
  618. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_status.py +0 -123
  619. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_status_node.py +0 -116
  620. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template.py +0 -164
  621. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_handler_id.py +0 -42
  622. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_orchestrator.py +0 -38
  623. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_parameter.py +0 -102
  624. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_parameter_group.py +0 -98
  625. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_parameter_value.py +0 -94
  626. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_resource_sizing.py +0 -97
  627. cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_step_source.py +0 -40
  628. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner.py +0 -169
  629. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_access_control.py +0 -90
  630. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_changed_parameter_value.py +0 -102
  631. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_comparison_result.py +0 -106
  632. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_data_download_info.py +0 -90
  633. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_data_download_job.py +0 -90
  634. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_job_state.py +0 -42
  635. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_last_run.py +0 -94
  636. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_parent_last_run.py +0 -94
  637. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_resource_sizing.py +0 -97
  638. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_role.py +0 -88
  639. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_root_last_run.py +0 -94
  640. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_run_template_parameter_value.py +0 -96
  641. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_security.py +0 -98
  642. cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_validation_status.py +0 -40
  643. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario.py +0 -186
  644. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_access_control.py +0 -90
  645. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_changed_parameter_value.py +0 -102
  646. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_comparison_result.py +0 -106
  647. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_data_download_info.py +0 -93
  648. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_data_download_job.py +0 -90
  649. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_job_state.py +0 -42
  650. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_last_run.py +0 -94
  651. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_resource_sizing.py +0 -97
  652. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_role.py +0 -88
  653. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run.py +0 -179
  654. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_container.py +0 -126
  655. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_container_artifact.py +0 -90
  656. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_container_logs.py +0 -102
  657. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_logs.py +0 -107
  658. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_resource_requested.py +0 -90
  659. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_search.py +0 -103
  660. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_search_state.py +0 -46
  661. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_start_containers.py +0 -104
  662. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_state.py +0 -42
  663. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_status.py +0 -119
  664. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_status_node.py +0 -116
  665. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_template_parameter_value.py +0 -96
  666. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_security.py +0 -98
  667. cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_validation_status.py +0 -40
  668. cosmotech_api-4.0.0.dev9/cosmotech_api/models/send_run_data_request.py +0 -90
  669. cosmotech_api-4.0.0.dev9/cosmotech_api/models/solution.py +0 -154
  670. cosmotech_api-4.0.0.dev9/cosmotech_api/models/solution_access_control.py +0 -90
  671. cosmotech_api-4.0.0.dev9/cosmotech_api/models/solution_role.py +0 -88
  672. cosmotech_api-4.0.0.dev9/cosmotech_api/models/solution_security.py +0 -98
  673. cosmotech_api-4.0.0.dev9/cosmotech_api/models/source_info.py +0 -94
  674. cosmotech_api-4.0.0.dev9/cosmotech_api/models/sub_dataset_graph_query.py +0 -94
  675. cosmotech_api-4.0.0.dev9/cosmotech_api/models/twin_graph_batch_result.py +0 -92
  676. cosmotech_api-4.0.0.dev9/cosmotech_api/models/twin_graph_hash.py +0 -88
  677. cosmotech_api-4.0.0.dev9/cosmotech_api/models/twin_graph_query.py +0 -90
  678. cosmotech_api-4.0.0.dev9/cosmotech_api/models/twincache_status_enum.py +0 -38
  679. cosmotech_api-4.0.0.dev9/cosmotech_api/models/validator.py +0 -106
  680. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace.py +0 -142
  681. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_access_control.py +0 -90
  682. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_file.py +0 -88
  683. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_role.py +0 -88
  684. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_secret.py +0 -88
  685. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_security.py +0 -98
  686. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_solution.py +0 -92
  687. cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_web_app.py +0 -92
  688. cosmotech_api-4.0.0.dev9/cosmotech_api/rest.py +0 -258
  689. cosmotech_api-4.0.0.dev9/cosmotech_api.egg-info/PKG-INFO +0 -18
  690. cosmotech_api-4.0.0.dev9/cosmotech_api.egg-info/SOURCES.txt +0 -407
  691. cosmotech_api-4.0.0.dev9/cosmotech_api.egg-info/requires.txt +0 -4
  692. cosmotech_api-4.0.0.dev9/pyproject.toml +0 -71
  693. cosmotech_api-4.0.0.dev9/setup.py +0 -51
  694. cosmotech_api-4.0.0.dev9/test/test_component_role_permissions.py +0 -57
  695. cosmotech_api-4.0.0.dev9/test/test_connector.py +0 -81
  696. cosmotech_api-4.0.0.dev9/test/test_connector_api.py +0 -60
  697. cosmotech_api-4.0.0.dev9/test/test_connector_parameter.py +0 -61
  698. cosmotech_api-4.0.0.dev9/test/test_connector_parameter_group.py +0 -77
  699. cosmotech_api-4.0.0.dev9/test/test_container_resource_size_info.py +0 -55
  700. cosmotech_api-4.0.0.dev9/test/test_container_resource_sizing.py +0 -63
  701. cosmotech_api-4.0.0.dev9/test/test_created_run.py +0 -53
  702. cosmotech_api-4.0.0.dev9/test/test_dataset.py +0 -103
  703. cosmotech_api-4.0.0.dev9/test/test_dataset_access_control.py +0 -55
  704. cosmotech_api-4.0.0.dev9/test/test_dataset_api.py +0 -247
  705. cosmotech_api-4.0.0.dev9/test/test_dataset_compatibility.py +0 -55
  706. cosmotech_api-4.0.0.dev9/test/test_dataset_connector.py +0 -57
  707. cosmotech_api-4.0.0.dev9/test/test_dataset_copy_parameters.py +0 -54
  708. cosmotech_api-4.0.0.dev9/test/test_dataset_role.py +0 -53
  709. cosmotech_api-4.0.0.dev9/test/test_dataset_search.py +0 -57
  710. cosmotech_api-4.0.0.dev9/test/test_dataset_security.py +0 -63
  711. cosmotech_api-4.0.0.dev9/test/test_dataset_source_type.py +0 -34
  712. cosmotech_api-4.0.0.dev9/test/test_dataset_twin_graph_hash.py +0 -52
  713. cosmotech_api-4.0.0.dev9/test/test_dataset_twin_graph_info.py +0 -54
  714. cosmotech_api-4.0.0.dev9/test/test_dataset_twin_graph_query.py +0 -53
  715. cosmotech_api-4.0.0.dev9/test/test_delete_historical_data.py +0 -55
  716. cosmotech_api-4.0.0.dev9/test/test_file_upload_metadata.py +0 -53
  717. cosmotech_api-4.0.0.dev9/test/test_file_upload_validation.py +0 -61
  718. cosmotech_api-4.0.0.dev9/test/test_graph_properties.py +0 -56
  719. cosmotech_api-4.0.0.dev9/test/test_ingestion_status_enum.py +0 -34
  720. cosmotech_api-4.0.0.dev9/test/test_io_types_enum.py +0 -34
  721. cosmotech_api-4.0.0.dev9/test/test_organization.py +0 -61
  722. cosmotech_api-4.0.0.dev9/test/test_organization_access_control.py +0 -55
  723. cosmotech_api-4.0.0.dev9/test/test_organization_api.py +0 -130
  724. cosmotech_api-4.0.0.dev9/test/test_organization_role.py +0 -53
  725. cosmotech_api-4.0.0.dev9/test/test_organization_security.py +0 -63
  726. cosmotech_api-4.0.0.dev9/test/test_organization_service.py +0 -56
  727. cosmotech_api-4.0.0.dev9/test/test_organization_services.py +0 -64
  728. cosmotech_api-4.0.0.dev9/test/test_query_result.py +0 -54
  729. cosmotech_api-4.0.0.dev9/test/test_resource_size_info.py +0 -55
  730. cosmotech_api-4.0.0.dev9/test/test_run.py +0 -104
  731. cosmotech_api-4.0.0.dev9/test/test_run_api.py +0 -81
  732. cosmotech_api-4.0.0.dev9/test/test_run_container.py +0 -78
  733. cosmotech_api-4.0.0.dev9/test/test_run_container_artifact.py +0 -53
  734. cosmotech_api-4.0.0.dev9/test/test_run_container_logs.py +0 -57
  735. cosmotech_api-4.0.0.dev9/test/test_run_data.py +0 -56
  736. cosmotech_api-4.0.0.dev9/test/test_run_data_query.py +0 -53
  737. cosmotech_api-4.0.0.dev9/test/test_run_logs.py +0 -61
  738. cosmotech_api-4.0.0.dev9/test/test_run_logs_entry.py +0 -53
  739. cosmotech_api-4.0.0.dev9/test/test_run_resource_requested.py +0 -53
  740. cosmotech_api-4.0.0.dev9/test/test_run_search.py +0 -59
  741. cosmotech_api-4.0.0.dev9/test/test_run_search_state.py +0 -34
  742. cosmotech_api-4.0.0.dev9/test/test_run_start_containers.py +0 -124
  743. cosmotech_api-4.0.0.dev9/test/test_run_state.py +0 -34
  744. cosmotech_api-4.0.0.dev9/test/test_run_status.py +0 -83
  745. cosmotech_api-4.0.0.dev9/test/test_run_status_node.py +0 -67
  746. cosmotech_api-4.0.0.dev9/test/test_run_template.py +0 -101
  747. cosmotech_api-4.0.0.dev9/test/test_run_template_handler_id.py +0 -34
  748. cosmotech_api-4.0.0.dev9/test/test_run_template_orchestrator.py +0 -34
  749. cosmotech_api-4.0.0.dev9/test/test_run_template_parameter.py +0 -62
  750. cosmotech_api-4.0.0.dev9/test/test_run_template_parameter_group.py +0 -62
  751. cosmotech_api-4.0.0.dev9/test/test_run_template_parameter_value.py +0 -56
  752. cosmotech_api-4.0.0.dev9/test/test_run_template_resource_sizing.py +0 -63
  753. cosmotech_api-4.0.0.dev9/test/test_run_template_step_source.py +0 -34
  754. cosmotech_api-4.0.0.dev9/test/test_runner.py +0 -98
  755. cosmotech_api-4.0.0.dev9/test/test_runner_access_control.py +0 -55
  756. cosmotech_api-4.0.0.dev9/test/test_runner_api.py +0 -137
  757. cosmotech_api-4.0.0.dev9/test/test_runner_changed_parameter_value.py +0 -55
  758. cosmotech_api-4.0.0.dev9/test/test_runner_comparison_result.py +0 -60
  759. cosmotech_api-4.0.0.dev9/test/test_runner_data_download_info.py +0 -52
  760. cosmotech_api-4.0.0.dev9/test/test_runner_data_download_job.py +0 -52
  761. cosmotech_api-4.0.0.dev9/test/test_runner_job_state.py +0 -36
  762. cosmotech_api-4.0.0.dev9/test/test_runner_last_run.py +0 -36
  763. cosmotech_api-4.0.0.dev9/test/test_runner_parent_last_run.py +0 -55
  764. cosmotech_api-4.0.0.dev9/test/test_runner_resource_sizing.py +0 -63
  765. cosmotech_api-4.0.0.dev9/test/test_runner_role.py +0 -53
  766. cosmotech_api-4.0.0.dev9/test/test_runner_root_last_run.py +0 -55
  767. cosmotech_api-4.0.0.dev9/test/test_runner_run_template_parameter_value.py +0 -57
  768. cosmotech_api-4.0.0.dev9/test/test_runner_security.py +0 -63
  769. cosmotech_api-4.0.0.dev9/test/test_runner_validation_status.py +0 -34
  770. cosmotech_api-4.0.0.dev9/test/test_scenario.py +0 -110
  771. cosmotech_api-4.0.0.dev9/test/test_scenario_access_control.py +0 -55
  772. cosmotech_api-4.0.0.dev9/test/test_scenario_api.py +0 -186
  773. cosmotech_api-4.0.0.dev9/test/test_scenario_changed_parameter_value.py +0 -55
  774. cosmotech_api-4.0.0.dev9/test/test_scenario_comparison_result.py +0 -60
  775. cosmotech_api-4.0.0.dev9/test/test_scenario_data_download_info.py +0 -53
  776. cosmotech_api-4.0.0.dev9/test/test_scenario_data_download_job.py +0 -52
  777. cosmotech_api-4.0.0.dev9/test/test_scenario_job_state.py +0 -34
  778. cosmotech_api-4.0.0.dev9/test/test_scenario_last_run.py +0 -55
  779. cosmotech_api-4.0.0.dev9/test/test_scenario_resource_sizing.py +0 -63
  780. cosmotech_api-4.0.0.dev9/test/test_scenario_role.py +0 -53
  781. cosmotech_api-4.0.0.dev9/test/test_scenario_run.py +0 -113
  782. cosmotech_api-4.0.0.dev9/test/test_scenario_run_container.py +0 -83
  783. cosmotech_api-4.0.0.dev9/test/test_scenario_run_container_artifact.py +0 -53
  784. cosmotech_api-4.0.0.dev9/test/test_scenario_run_container_logs.py +0 -57
  785. cosmotech_api-4.0.0.dev9/test/test_scenario_run_logs.py +0 -61
  786. cosmotech_api-4.0.0.dev9/test/test_scenario_run_resource_requested.py +0 -53
  787. cosmotech_api-4.0.0.dev9/test/test_scenario_run_result.py +0 -36
  788. cosmotech_api-4.0.0.dev9/test/test_scenario_run_search.py +0 -59
  789. cosmotech_api-4.0.0.dev9/test/test_scenario_run_search_state.py +0 -34
  790. cosmotech_api-4.0.0.dev9/test/test_scenario_run_start_containers.py +0 -124
  791. cosmotech_api-4.0.0.dev9/test/test_scenario_run_state.py +0 -34
  792. cosmotech_api-4.0.0.dev9/test/test_scenario_run_status.py +0 -81
  793. cosmotech_api-4.0.0.dev9/test/test_scenario_run_status_node.py +0 -67
  794. cosmotech_api-4.0.0.dev9/test/test_scenario_run_template_parameter_value.py +0 -57
  795. cosmotech_api-4.0.0.dev9/test/test_scenario_security.py +0 -63
  796. cosmotech_api-4.0.0.dev9/test/test_scenario_validation_status.py +0 -34
  797. cosmotech_api-4.0.0.dev9/test/test_scenariorun_api.py +0 -130
  798. cosmotech_api-4.0.0.dev9/test/test_scenariorunresult_api.py +0 -43
  799. cosmotech_api-4.0.0.dev9/test/test_send_run_data_request.py +0 -55
  800. cosmotech_api-4.0.0.dev9/test/test_solution.py +0 -203
  801. cosmotech_api-4.0.0.dev9/test/test_solution_access_control.py +0 -55
  802. cosmotech_api-4.0.0.dev9/test/test_solution_api.py +0 -172
  803. cosmotech_api-4.0.0.dev9/test/test_solution_role.py +0 -53
  804. cosmotech_api-4.0.0.dev9/test/test_solution_security.py +0 -63
  805. cosmotech_api-4.0.0.dev9/test/test_source_info.py +0 -56
  806. cosmotech_api-4.0.0.dev9/test/test_sub_dataset_graph_query.py +0 -57
  807. cosmotech_api-4.0.0.dev9/test/test_translated_labels.py +0 -36
  808. cosmotech_api-4.0.0.dev9/test/test_twin_graph_batch_result.py +0 -61
  809. cosmotech_api-4.0.0.dev9/test/test_twin_graph_hash.py +0 -52
  810. cosmotech_api-4.0.0.dev9/test/test_twin_graph_query.py +0 -54
  811. cosmotech_api-4.0.0.dev9/test/test_twincache_status_enum.py +0 -34
  812. cosmotech_api-4.0.0.dev9/test/test_twingraph_api.py +0 -130
  813. cosmotech_api-4.0.0.dev9/test/test_user_api.py +0 -99
  814. cosmotech_api-4.0.0.dev9/test/test_validator.py +0 -65
  815. cosmotech_api-4.0.0.dev9/test/test_validator_api.py +0 -92
  816. cosmotech_api-4.0.0.dev9/test/test_validator_run.py +0 -36
  817. cosmotech_api-4.0.0.dev9/test/test_workspace.py +0 -96
  818. cosmotech_api-4.0.0.dev9/test/test_workspace_access_control.py +0 -55
  819. cosmotech_api-4.0.0.dev9/test/test_workspace_api.py +0 -170
  820. cosmotech_api-4.0.0.dev9/test/test_workspace_file.py +0 -52
  821. cosmotech_api-4.0.0.dev9/test/test_workspace_role.py +0 -53
  822. cosmotech_api-4.0.0.dev9/test/test_workspace_secret.py +0 -52
  823. cosmotech_api-4.0.0.dev9/test/test_workspace_security.py +0 -63
  824. cosmotech_api-4.0.0.dev9/test/test_workspace_solution.py +0 -56
  825. cosmotech_api-4.0.0.dev9/test/test_workspace_web_app.py +0 -55
  826. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/api/user_api.py +0 -0
  827. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/api_response.py +0 -0
  828. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/apis/__init__.py +0 -0
  829. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/__init__.py +0 -0
  830. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/organization_user.py +0 -0
  831. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/scenario_user.py +0 -0
  832. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/twin_graph_import.py +0 -0
  833. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/twin_graph_import_info.py +0 -0
  834. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/user.py +0 -0
  835. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/user_organization.py +0 -0
  836. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/user_workspace.py +0 -0
  837. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/workspace_user.py +0 -0
  838. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/models/scenario_run_result.py +0 -0
  839. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/models/validator_run.py +0 -0
  840. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/py.typed +0 -0
  841. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api.egg-info/dependency_links.txt +0 -0
  842. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api.egg-info/top_level.txt +0 -0
  843. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/setup.cfg +0 -0
  844. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_organization_user.py +0 -0
  845. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_scenario_user.py +0 -0
  846. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_twin_graph_import.py +0 -0
  847. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_twin_graph_import_info.py +0 -0
  848. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_user.py +0 -0
  849. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_user_organization.py +0 -0
  850. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_user_workspace.py +0 -0
  851. {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/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.0b4
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,306 @@
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-beta4
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_file**](docs/SolutionApi.md#create_solution_file) | **POST** /organizations/{organization_id}/solutions/{solution_id}/files | Upload a file for the Solution
158
+ *SolutionApi* | [**create_solution_parameter**](docs/SolutionApi.md#create_solution_parameter) | **POST** /organizations/{organization_id}/solutions/{solution_id}/parameters | Create solution parameter for a solution
159
+ *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
160
+ *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
161
+ *SolutionApi* | [**delete_solution**](docs/SolutionApi.md#delete_solution) | **DELETE** /organizations/{organization_id}/solutions/{solution_id} | Delete a solution
162
+ *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
163
+ *SolutionApi* | [**delete_solution_file**](docs/SolutionApi.md#delete_solution_file) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/files/delete | Delete a solution file
164
+ *SolutionApi* | [**delete_solution_files**](docs/SolutionApi.md#delete_solution_files) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/files | Delete all Solution files
165
+ *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
166
+ *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
167
+ *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
168
+ *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
169
+ *SolutionApi* | [**get_solution**](docs/SolutionApi.md#get_solution) | **GET** /organizations/{organization_id}/solutions/{solution_id} | Get the details of a solution
170
+ *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
171
+ *SolutionApi* | [**get_solution_file**](docs/SolutionApi.md#get_solution_file) | **GET** /organizations/{organization_id}/solutions/{solution_id}/files/download | Download the Solution File specified
172
+ *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
173
+ *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
174
+ *SolutionApi* | [**get_solution_security**](docs/SolutionApi.md#get_solution_security) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security | Get solution security information
175
+ *SolutionApi* | [**list_run_templates**](docs/SolutionApi.md#list_run_templates) | **GET** /organizations/{organization_id}/solutions/{solution_id}/runTemplates | List all solution run templates
176
+ *SolutionApi* | [**list_solution_files**](docs/SolutionApi.md#list_solution_files) | **GET** /organizations/{organization_id}/solutions/{solution_id}/files | List all Solution files
177
+ *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
178
+ *SolutionApi* | [**list_solution_parameters**](docs/SolutionApi.md#list_solution_parameters) | **GET** /organizations/{organization_id}/solutions/{solution_id}/parameters | List all solution parameters
179
+ *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
180
+ *SolutionApi* | [**list_solutions**](docs/SolutionApi.md#list_solutions) | **GET** /organizations/{organization_id}/solutions | List all Solutions
181
+ *SolutionApi* | [**update_solution**](docs/SolutionApi.md#update_solution) | **PATCH** /organizations/{organization_id}/solutions/{solution_id} | Update a solution
182
+ *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
183
+ *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
184
+ *SolutionApi* | [**update_solution_parameter**](docs/SolutionApi.md#update_solution_parameter) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/parameters/{parameter_id} | Update solution parameter
185
+ *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
186
+ *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
187
+ *WorkspaceApi* | [**create_workspace**](docs/WorkspaceApi.md#create_workspace) | **POST** /organizations/{organization_id}/workspaces | Create a new workspace
188
+ *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
189
+ *WorkspaceApi* | [**create_workspace_file**](docs/WorkspaceApi.md#create_workspace_file) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/files | Upload a file for the Workspace
190
+ *WorkspaceApi* | [**delete_workspace**](docs/WorkspaceApi.md#delete_workspace) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id} | Delete a workspace
191
+ *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
192
+ *WorkspaceApi* | [**delete_workspace_file**](docs/WorkspaceApi.md#delete_workspace_file) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/files/delete | Delete a workspace file
193
+ *WorkspaceApi* | [**delete_workspace_files**](docs/WorkspaceApi.md#delete_workspace_files) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/files | Delete all Workspace files
194
+ *WorkspaceApi* | [**get_workspace**](docs/WorkspaceApi.md#get_workspace) | **GET** /organizations/{organization_id}/workspaces/{workspace_id} | Get the details of a workspace
195
+ *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
196
+ *WorkspaceApi* | [**get_workspace_file**](docs/WorkspaceApi.md#get_workspace_file) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/files/download | Download the Workspace File specified
197
+ *WorkspaceApi* | [**get_workspace_security**](docs/WorkspaceApi.md#get_workspace_security) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/security | Get the Workspace security information
198
+ *WorkspaceApi* | [**list_workspace_files**](docs/WorkspaceApi.md#list_workspace_files) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/files | List all Workspace files
199
+ *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
200
+ *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
201
+ *WorkspaceApi* | [**list_workspaces**](docs/WorkspaceApi.md#list_workspaces) | **GET** /organizations/{organization_id}/workspaces | List all Workspaces
202
+ *WorkspaceApi* | [**update_workspace**](docs/WorkspaceApi.md#update_workspace) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id} | Update a workspace
203
+ *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
204
+ *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
205
+
206
+
207
+ ## Documentation For Models
208
+
209
+ - [AboutInfo](docs/AboutInfo.md)
210
+ - [AboutInfoVersion](docs/AboutInfoVersion.md)
211
+ - [ComponentRolePermissions](docs/ComponentRolePermissions.md)
212
+ - [ContainerResourceSizeInfo](docs/ContainerResourceSizeInfo.md)
213
+ - [ContainerResourceSizing](docs/ContainerResourceSizing.md)
214
+ - [CreateInfo](docs/CreateInfo.md)
215
+ - [CreatedRun](docs/CreatedRun.md)
216
+ - [Dataset](docs/Dataset.md)
217
+ - [DatasetAccessControl](docs/DatasetAccessControl.md)
218
+ - [DatasetCreateRequest](docs/DatasetCreateRequest.md)
219
+ - [DatasetPart](docs/DatasetPart.md)
220
+ - [DatasetPartCreateRequest](docs/DatasetPartCreateRequest.md)
221
+ - [DatasetPartTypeEnum](docs/DatasetPartTypeEnum.md)
222
+ - [DatasetPartUpdateRequest](docs/DatasetPartUpdateRequest.md)
223
+ - [DatasetRole](docs/DatasetRole.md)
224
+ - [DatasetSecurity](docs/DatasetSecurity.md)
225
+ - [DatasetUpdateRequest](docs/DatasetUpdateRequest.md)
226
+ - [EditInfo](docs/EditInfo.md)
227
+ - [LastRunInfo](docs/LastRunInfo.md)
228
+ - [Organization](docs/Organization.md)
229
+ - [OrganizationAccessControl](docs/OrganizationAccessControl.md)
230
+ - [OrganizationCreateRequest](docs/OrganizationCreateRequest.md)
231
+ - [OrganizationEditInfo](docs/OrganizationEditInfo.md)
232
+ - [OrganizationRole](docs/OrganizationRole.md)
233
+ - [OrganizationSecurity](docs/OrganizationSecurity.md)
234
+ - [OrganizationUpdateRequest](docs/OrganizationUpdateRequest.md)
235
+ - [QueryResult](docs/QueryResult.md)
236
+ - [ResourceSizeInfo](docs/ResourceSizeInfo.md)
237
+ - [Run](docs/Run.md)
238
+ - [RunContainer](docs/RunContainer.md)
239
+ - [RunData](docs/RunData.md)
240
+ - [RunDataQuery](docs/RunDataQuery.md)
241
+ - [RunEditInfo](docs/RunEditInfo.md)
242
+ - [RunResourceRequested](docs/RunResourceRequested.md)
243
+ - [RunState](docs/RunState.md)
244
+ - [RunStatus](docs/RunStatus.md)
245
+ - [RunStatusNode](docs/RunStatusNode.md)
246
+ - [RunTemplate](docs/RunTemplate.md)
247
+ - [RunTemplateCreateRequest](docs/RunTemplateCreateRequest.md)
248
+ - [RunTemplateParameter](docs/RunTemplateParameter.md)
249
+ - [RunTemplateParameterCreateRequest](docs/RunTemplateParameterCreateRequest.md)
250
+ - [RunTemplateParameterGroup](docs/RunTemplateParameterGroup.md)
251
+ - [RunTemplateParameterGroupCreateRequest](docs/RunTemplateParameterGroupCreateRequest.md)
252
+ - [RunTemplateParameterGroupUpdateRequest](docs/RunTemplateParameterGroupUpdateRequest.md)
253
+ - [RunTemplateParameterUpdateRequest](docs/RunTemplateParameterUpdateRequest.md)
254
+ - [RunTemplateParameterValue](docs/RunTemplateParameterValue.md)
255
+ - [RunTemplateResourceSizing](docs/RunTemplateResourceSizing.md)
256
+ - [RunTemplateUpdateRequest](docs/RunTemplateUpdateRequest.md)
257
+ - [Runner](docs/Runner.md)
258
+ - [RunnerAccessControl](docs/RunnerAccessControl.md)
259
+ - [RunnerCreateRequest](docs/RunnerCreateRequest.md)
260
+ - [RunnerEditInfo](docs/RunnerEditInfo.md)
261
+ - [RunnerResourceSizing](docs/RunnerResourceSizing.md)
262
+ - [RunnerRole](docs/RunnerRole.md)
263
+ - [RunnerRunTemplateParameterValue](docs/RunnerRunTemplateParameterValue.md)
264
+ - [RunnerSecurity](docs/RunnerSecurity.md)
265
+ - [RunnerUpdateRequest](docs/RunnerUpdateRequest.md)
266
+ - [RunnerValidationStatus](docs/RunnerValidationStatus.md)
267
+ - [SendRunDataRequest](docs/SendRunDataRequest.md)
268
+ - [Solution](docs/Solution.md)
269
+ - [SolutionAccessControl](docs/SolutionAccessControl.md)
270
+ - [SolutionCreateRequest](docs/SolutionCreateRequest.md)
271
+ - [SolutionEditInfo](docs/SolutionEditInfo.md)
272
+ - [SolutionFile](docs/SolutionFile.md)
273
+ - [SolutionRole](docs/SolutionRole.md)
274
+ - [SolutionSecurity](docs/SolutionSecurity.md)
275
+ - [SolutionUpdateRequest](docs/SolutionUpdateRequest.md)
276
+ - [Workspace](docs/Workspace.md)
277
+ - [WorkspaceAccessControl](docs/WorkspaceAccessControl.md)
278
+ - [WorkspaceCreateRequest](docs/WorkspaceCreateRequest.md)
279
+ - [WorkspaceEditInfo](docs/WorkspaceEditInfo.md)
280
+ - [WorkspaceFile](docs/WorkspaceFile.md)
281
+ - [WorkspaceRole](docs/WorkspaceRole.md)
282
+ - [WorkspaceSecurity](docs/WorkspaceSecurity.md)
283
+ - [WorkspaceSolution](docs/WorkspaceSolution.md)
284
+ - [WorkspaceUpdateRequest](docs/WorkspaceUpdateRequest.md)
285
+ - [WorkspaceWebApp](docs/WorkspaceWebApp.md)
286
+
287
+
288
+ <a id="documentation-for-authorization"></a>
289
+ ## Documentation For Authorization
290
+
291
+
292
+ Authentication schemes defined for the API:
293
+ <a id="oAuth2AuthCode"></a>
294
+ ### oAuth2AuthCode
295
+
296
+ - **Type**: OAuth
297
+ - **Flow**: accessCode
298
+ - **Authorization URL**: https://example.com/authorize
299
+ - **Scopes**: N/A
300
+
301
+
302
+ ## Author
303
+
304
+ platform@cosmotech.com
305
+
306
+
@@ -0,0 +1,117 @@
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-beta4
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_file import SolutionFile
105
+ from cosmotech_api.models.solution_role import SolutionRole
106
+ from cosmotech_api.models.solution_security import SolutionSecurity
107
+ from cosmotech_api.models.solution_update_request import SolutionUpdateRequest
108
+ from cosmotech_api.models.workspace import Workspace
109
+ from cosmotech_api.models.workspace_access_control import WorkspaceAccessControl
110
+ from cosmotech_api.models.workspace_create_request import WorkspaceCreateRequest
111
+ from cosmotech_api.models.workspace_edit_info import WorkspaceEditInfo
112
+ from cosmotech_api.models.workspace_file import WorkspaceFile
113
+ from cosmotech_api.models.workspace_role import WorkspaceRole
114
+ from cosmotech_api.models.workspace_security import WorkspaceSecurity
115
+ from cosmotech_api.models.workspace_solution import WorkspaceSolution
116
+ from cosmotech_api.models.workspace_update_request import WorkspaceUpdateRequest
117
+ 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
+