cosmotech-api 3.3.4__tar.gz → 4.0.0.dev8__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 (806) hide show
  1. cosmotech_api-4.0.0.dev8/PKG-INFO +18 -0
  2. cosmotech_api-4.0.0.dev8/README.md +302 -0
  3. cosmotech_api-4.0.0.dev8/cosmotech_api/__init__.py +111 -0
  4. cosmotech_api-4.0.0.dev8/cosmotech_api/api/__init__.py +11 -0
  5. cosmotech_api-4.0.0.dev8/cosmotech_api/api/connector_api.py +1099 -0
  6. cosmotech_api-4.0.0.dev8/cosmotech_api/api/dataset_api.py +9175 -0
  7. cosmotech_api-4.0.0.dev8/cosmotech_api/api/organization_api.py +3843 -0
  8. cosmotech_api-4.0.0.dev8/cosmotech_api/api/run_api.py +2233 -0
  9. cosmotech_api-4.0.0.dev8/cosmotech_api/api/runner_api.py +4563 -0
  10. cosmotech_api-4.0.0.dev8/cosmotech_api/api/scenario_api.py +6688 -0
  11. cosmotech_api-4.0.0.dev8/cosmotech_api/api/scenariorun_api.py +4092 -0
  12. cosmotech_api-4.0.0.dev8/cosmotech_api/api/scenariorunresult_api.py +386 -0
  13. cosmotech_api-4.0.0.dev8/cosmotech_api/api/solution_api.py +5835 -0
  14. cosmotech_api-4.0.0.dev8/cosmotech_api/api/twingraph_api.py +4201 -0
  15. cosmotech_api-4.0.0.dev8/cosmotech_api/api/validator_api.py +1314 -0
  16. cosmotech_api-4.0.0.dev8/cosmotech_api/api/workspace_api.py +5836 -0
  17. cosmotech_api-4.0.0.dev8/cosmotech_api/api_client.py +789 -0
  18. cosmotech_api-4.0.0.dev8/cosmotech_api/configuration.py +459 -0
  19. cosmotech_api-4.0.0.dev8/cosmotech_api/exceptions.py +200 -0
  20. cosmotech_api-4.0.0.dev8/cosmotech_api/model/component_role_permissions.py +260 -0
  21. cosmotech_api-4.0.0.dev8/cosmotech_api/model/connector.py +330 -0
  22. cosmotech_api-4.0.0.dev8/cosmotech_api/model/connector_parameter.py +284 -0
  23. cosmotech_api-4.0.0.dev8/cosmotech_api/model/connector_parameter_group.py +280 -0
  24. cosmotech_api-4.0.0.dev8/cosmotech_api/model/container_resource_size_info.py +268 -0
  25. cosmotech_api-4.0.0.dev8/cosmotech_api/model/container_resource_sizing.py +274 -0
  26. cosmotech_api-4.0.0.dev8/cosmotech_api/model/dataset.py +376 -0
  27. cosmotech_api-4.0.0.dev8/cosmotech_api/model/dataset_access_control.py +268 -0
  28. cosmotech_api-4.0.0.dev8/cosmotech_api/model/dataset_compatibility.py +270 -0
  29. cosmotech_api-4.0.0.dev8/cosmotech_api/model/dataset_connector.py +268 -0
  30. cosmotech_api-4.0.0.dev8/cosmotech_api/model/dataset_copy_parameters.py +264 -0
  31. cosmotech_api-4.0.0.dev8/cosmotech_api/model/dataset_role.py +262 -0
  32. cosmotech_api-4.0.0.dev8/cosmotech_api/model/dataset_search.py +262 -0
  33. cosmotech_api-4.0.0.dev8/cosmotech_api/model/dataset_security.py +274 -0
  34. cosmotech_api-4.0.0.dev8/cosmotech_api/model/dataset_source_type.py +287 -0
  35. cosmotech_api-4.0.0.dev8/cosmotech_api/model/dataset_twin_graph_hash.py +256 -0
  36. cosmotech_api-4.0.0.dev8/cosmotech_api/model/dataset_twin_graph_info.py +264 -0
  37. cosmotech_api-4.0.0.dev8/cosmotech_api/model/dataset_twin_graph_query.py +262 -0
  38. cosmotech_api-4.0.0.dev8/cosmotech_api/model/delete_historical_data.py +272 -0
  39. cosmotech_api-4.0.0.dev8/cosmotech_api/model/file_upload_metadata.py +260 -0
  40. cosmotech_api-4.0.0.dev8/cosmotech_api/model/file_upload_validation.py +266 -0
  41. cosmotech_api-4.0.0.dev8/cosmotech_api/model/graph_properties.py +272 -0
  42. cosmotech_api-4.0.0.dev8/cosmotech_api/model/organization.py +282 -0
  43. cosmotech_api-4.0.0.dev8/cosmotech_api/model/organization_access_control.py +268 -0
  44. cosmotech_api-4.0.0.dev8/cosmotech_api/model/organization_role.py +262 -0
  45. cosmotech_api-4.0.0.dev8/cosmotech_api/model/organization_security.py +274 -0
  46. cosmotech_api-4.0.0.dev8/cosmotech_api/model/organization_service.py +272 -0
  47. cosmotech_api-4.0.0.dev8/cosmotech_api/model/organization_services.py +270 -0
  48. cosmotech_api-4.0.0.dev8/cosmotech_api/model/resource_size_info.py +268 -0
  49. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run.py +351 -0
  50. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_container.py +318 -0
  51. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_container_artifact.py +260 -0
  52. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_container_logs.py +272 -0
  53. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_logs.py +268 -0
  54. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_resource_requested.py +260 -0
  55. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_search.py +296 -0
  56. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_start_containers.py +286 -0
  57. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_state.py +285 -0
  58. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_status.py +316 -0
  59. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_status_node.py +307 -0
  60. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_template.py +408 -0
  61. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_template_handler_id.py +287 -0
  62. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_template_orchestrator.py +283 -0
  63. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_template_parameter.py +296 -0
  64. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_template_parameter_group.py +288 -0
  65. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_template_parameter_value.py +273 -0
  66. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_template_resource_sizing.py +274 -0
  67. cosmotech_api-4.0.0.dev8/cosmotech_api/model/run_template_step_source.py +285 -0
  68. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner.py +379 -0
  69. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner_access_control.py +268 -0
  70. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner_changed_parameter_value.py +272 -0
  71. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner_comparison_result.py +273 -0
  72. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner_data_download_info.py +267 -0
  73. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner_data_download_job.py +257 -0
  74. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner_job_state.py +287 -0
  75. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner_last_run.py +268 -0
  76. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner_resource_sizing.py +274 -0
  77. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner_role.py +262 -0
  78. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner_run_template_parameter_value.py +277 -0
  79. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner_security.py +274 -0
  80. cosmotech_api-4.0.0.dev8/cosmotech_api/model/runner_validation_status.py +285 -0
  81. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario.py +379 -0
  82. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_access_control.py +268 -0
  83. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_changed_parameter_value.py +272 -0
  84. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_comparison_result.py +273 -0
  85. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_data_download_info.py +267 -0
  86. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_data_download_job.py +257 -0
  87. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_job_state.py +287 -0
  88. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_last_run.py +268 -0
  89. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_resource_sizing.py +274 -0
  90. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_role.py +262 -0
  91. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run.py +369 -0
  92. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run_container.py +318 -0
  93. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run_container_artifact.py +260 -0
  94. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run_container_logs.py +272 -0
  95. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run_logs.py +268 -0
  96. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run_resource_requested.py +260 -0
  97. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run_result.py +260 -0
  98. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run_search.py +296 -0
  99. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run_start_containers.py +286 -0
  100. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run_state.py +287 -0
  101. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run_status.py +308 -0
  102. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run_status_node.py +307 -0
  103. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_run_template_parameter_value.py +277 -0
  104. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_security.py +274 -0
  105. cosmotech_api-4.0.0.dev8/cosmotech_api/model/scenario_validation_status.py +285 -0
  106. cosmotech_api-4.0.0.dev8/cosmotech_api/model/solution.py +335 -0
  107. cosmotech_api-4.0.0.dev8/cosmotech_api/model/solution_access_control.py +268 -0
  108. cosmotech_api-4.0.0.dev8/cosmotech_api/model/solution_role.py +262 -0
  109. cosmotech_api-4.0.0.dev8/cosmotech_api/model/solution_security.py +274 -0
  110. cosmotech_api-4.0.0.dev8/cosmotech_api/model/source_info.py +274 -0
  111. cosmotech_api-4.0.0.dev8/cosmotech_api/model/sub_dataset_graph_query.py +268 -0
  112. cosmotech_api-4.0.0.dev8/cosmotech_api/model/translated_labels.py +252 -0
  113. cosmotech_api-4.0.0.dev8/cosmotech_api/model/twin_graph_batch_result.py +274 -0
  114. cosmotech_api-4.0.0.dev8/cosmotech_api/model/twin_graph_hash.py +256 -0
  115. cosmotech_api-4.0.0.dev8/cosmotech_api/model/twin_graph_query.py +266 -0
  116. cosmotech_api-4.0.0.dev8/cosmotech_api/model/validator.py +295 -0
  117. cosmotech_api-4.0.0.dev8/cosmotech_api/model/validator_run.py +302 -0
  118. cosmotech_api-4.0.0.dev8/cosmotech_api/model/workspace.py +351 -0
  119. cosmotech_api-4.0.0.dev8/cosmotech_api/model/workspace_access_control.py +268 -0
  120. cosmotech_api-4.0.0.dev8/cosmotech_api/model/workspace_file.py +256 -0
  121. cosmotech_api-4.0.0.dev8/cosmotech_api/model/workspace_role.py +262 -0
  122. cosmotech_api-4.0.0.dev8/cosmotech_api/model/workspace_secret.py +256 -0
  123. cosmotech_api-4.0.0.dev8/cosmotech_api/model/workspace_security.py +274 -0
  124. cosmotech_api-4.0.0.dev8/cosmotech_api/model/workspace_solution.py +264 -0
  125. cosmotech_api-4.0.0.dev8/cosmotech_api/model/workspace_web_app.py +270 -0
  126. cosmotech_api-4.0.0.dev8/cosmotech_api/model_utils.py +2038 -0
  127. cosmotech_api-4.0.0.dev8/cosmotech_api/models/__init__.py +88 -0
  128. cosmotech_api-4.0.0.dev8/cosmotech_api/models/component_role_permissions.py +90 -0
  129. cosmotech_api-4.0.0.dev8/cosmotech_api/models/connector.py +121 -0
  130. cosmotech_api-4.0.0.dev8/cosmotech_api/models/connector_parameter.py +98 -0
  131. cosmotech_api-4.0.0.dev8/cosmotech_api/models/connector_parameter_group.py +100 -0
  132. cosmotech_api-4.0.0.dev8/cosmotech_api/models/container_resource_size_info.py +90 -0
  133. cosmotech_api-4.0.0.dev8/cosmotech_api/models/container_resource_sizing.py +97 -0
  134. cosmotech_api-4.0.0.dev8/cosmotech_api/models/created_run.py +88 -0
  135. cosmotech_api-4.0.0.dev8/cosmotech_api/models/dataset.py +177 -0
  136. cosmotech_api-4.0.0.dev8/cosmotech_api/models/dataset_access_control.py +90 -0
  137. cosmotech_api-4.0.0.dev8/cosmotech_api/models/dataset_compatibility.py +92 -0
  138. cosmotech_api-4.0.0.dev8/cosmotech_api/models/dataset_connector.py +94 -0
  139. cosmotech_api-4.0.0.dev8/cosmotech_api/models/dataset_copy_parameters.py +92 -0
  140. cosmotech_api-4.0.0.dev8/cosmotech_api/models/dataset_role.py +88 -0
  141. cosmotech_api-4.0.0.dev8/cosmotech_api/models/dataset_search.py +88 -0
  142. cosmotech_api-4.0.0.dev8/cosmotech_api/models/dataset_security.py +98 -0
  143. cosmotech_api-4.0.0.dev8/cosmotech_api/models/dataset_source_type.py +42 -0
  144. cosmotech_api-4.0.0.dev8/cosmotech_api/models/dataset_twin_graph_hash.py +88 -0
  145. cosmotech_api-4.0.0.dev8/cosmotech_api/models/dataset_twin_graph_info.py +92 -0
  146. cosmotech_api-4.0.0.dev8/cosmotech_api/models/dataset_twin_graph_query.py +88 -0
  147. cosmotech_api-4.0.0.dev8/cosmotech_api/models/delete_historical_data.py +92 -0
  148. cosmotech_api-4.0.0.dev8/cosmotech_api/models/file_upload_metadata.py +90 -0
  149. cosmotech_api-4.0.0.dev8/cosmotech_api/models/file_upload_validation.py +105 -0
  150. cosmotech_api-4.0.0.dev8/cosmotech_api/models/graph_properties.py +96 -0
  151. cosmotech_api-4.0.0.dev8/cosmotech_api/models/ingestion_status_enum.py +40 -0
  152. cosmotech_api-4.0.0.dev8/cosmotech_api/models/io_types_enum.py +38 -0
  153. cosmotech_api-4.0.0.dev8/cosmotech_api/models/organization.py +102 -0
  154. cosmotech_api-4.0.0.dev8/cosmotech_api/models/organization_access_control.py +90 -0
  155. cosmotech_api-4.0.0.dev8/cosmotech_api/models/organization_role.py +88 -0
  156. cosmotech_api-4.0.0.dev8/cosmotech_api/models/organization_security.py +98 -0
  157. cosmotech_api-4.0.0.dev8/cosmotech_api/models/organization_service.py +96 -0
  158. cosmotech_api-4.0.0.dev8/cosmotech_api/models/organization_services.py +99 -0
  159. cosmotech_api-4.0.0.dev8/cosmotech_api/models/query_result.py +88 -0
  160. cosmotech_api-4.0.0.dev8/cosmotech_api/models/resource_size_info.py +90 -0
  161. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run.py +167 -0
  162. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_container.py +116 -0
  163. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_container_artifact.py +90 -0
  164. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_container_logs.py +102 -0
  165. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_data.py +92 -0
  166. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_data_query.py +88 -0
  167. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_logs.py +102 -0
  168. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_logs_entry.py +88 -0
  169. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_resource_requested.py +90 -0
  170. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_search.py +103 -0
  171. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_search_state.py +46 -0
  172. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_start_containers.py +104 -0
  173. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_state.py +40 -0
  174. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_status.py +123 -0
  175. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_status_node.py +116 -0
  176. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_template.py +164 -0
  177. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_template_handler_id.py +42 -0
  178. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_template_orchestrator.py +38 -0
  179. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_template_parameter.py +102 -0
  180. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_template_parameter_group.py +98 -0
  181. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_template_parameter_value.py +94 -0
  182. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_template_resource_sizing.py +97 -0
  183. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_template_step_source.py +40 -0
  184. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner.py +169 -0
  185. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_access_control.py +90 -0
  186. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_changed_parameter_value.py +102 -0
  187. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_comparison_result.py +106 -0
  188. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_data_download_info.py +90 -0
  189. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_data_download_job.py +90 -0
  190. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_job_state.py +42 -0
  191. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_last_run.py +94 -0
  192. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_parent_last_run.py +94 -0
  193. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_resource_sizing.py +97 -0
  194. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_role.py +88 -0
  195. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_root_last_run.py +94 -0
  196. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_run_template_parameter_value.py +96 -0
  197. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_security.py +98 -0
  198. cosmotech_api-4.0.0.dev8/cosmotech_api/models/runner_validation_status.py +40 -0
  199. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario.py +186 -0
  200. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_access_control.py +90 -0
  201. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_changed_parameter_value.py +102 -0
  202. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_comparison_result.py +106 -0
  203. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_data_download_info.py +93 -0
  204. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_data_download_job.py +90 -0
  205. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_job_state.py +42 -0
  206. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_last_run.py +94 -0
  207. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_resource_sizing.py +97 -0
  208. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_role.py +88 -0
  209. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run.py +179 -0
  210. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run_container.py +126 -0
  211. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run_container_artifact.py +90 -0
  212. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run_container_logs.py +102 -0
  213. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run_logs.py +107 -0
  214. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run_resource_requested.py +90 -0
  215. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run_search.py +103 -0
  216. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run_search_state.py +46 -0
  217. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run_start_containers.py +104 -0
  218. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run_state.py +42 -0
  219. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run_status.py +119 -0
  220. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run_status_node.py +116 -0
  221. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_run_template_parameter_value.py +96 -0
  222. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_security.py +98 -0
  223. cosmotech_api-4.0.0.dev8/cosmotech_api/models/scenario_validation_status.py +40 -0
  224. cosmotech_api-4.0.0.dev8/cosmotech_api/models/send_run_data_request.py +90 -0
  225. cosmotech_api-4.0.0.dev8/cosmotech_api/models/solution.py +154 -0
  226. cosmotech_api-4.0.0.dev8/cosmotech_api/models/solution_access_control.py +90 -0
  227. cosmotech_api-4.0.0.dev8/cosmotech_api/models/solution_role.py +88 -0
  228. cosmotech_api-4.0.0.dev8/cosmotech_api/models/solution_security.py +98 -0
  229. cosmotech_api-4.0.0.dev8/cosmotech_api/models/source_info.py +94 -0
  230. cosmotech_api-4.0.0.dev8/cosmotech_api/models/sub_dataset_graph_query.py +94 -0
  231. cosmotech_api-4.0.0.dev8/cosmotech_api/models/twin_graph_batch_result.py +92 -0
  232. cosmotech_api-4.0.0.dev8/cosmotech_api/models/twin_graph_hash.py +88 -0
  233. cosmotech_api-4.0.0.dev8/cosmotech_api/models/twin_graph_query.py +90 -0
  234. cosmotech_api-4.0.0.dev8/cosmotech_api/models/twincache_status_enum.py +38 -0
  235. cosmotech_api-4.0.0.dev8/cosmotech_api/models/validator.py +106 -0
  236. cosmotech_api-4.0.0.dev8/cosmotech_api/models/workspace.py +142 -0
  237. cosmotech_api-4.0.0.dev8/cosmotech_api/models/workspace_access_control.py +90 -0
  238. cosmotech_api-4.0.0.dev8/cosmotech_api/models/workspace_file.py +88 -0
  239. cosmotech_api-4.0.0.dev8/cosmotech_api/models/workspace_role.py +88 -0
  240. cosmotech_api-4.0.0.dev8/cosmotech_api/models/workspace_secret.py +88 -0
  241. cosmotech_api-4.0.0.dev8/cosmotech_api/models/workspace_security.py +98 -0
  242. cosmotech_api-4.0.0.dev8/cosmotech_api/models/workspace_solution.py +92 -0
  243. cosmotech_api-4.0.0.dev8/cosmotech_api/models/workspace_web_app.py +92 -0
  244. cosmotech_api-4.0.0.dev8/cosmotech_api/rest.py +258 -0
  245. cosmotech_api-4.0.0.dev8/cosmotech_api.egg-info/PKG-INFO +18 -0
  246. cosmotech_api-4.0.0.dev8/cosmotech_api.egg-info/SOURCES.txt +407 -0
  247. cosmotech_api-4.0.0.dev8/setup.py +51 -0
  248. cosmotech_api-4.0.0.dev8/test/test_component_role_permissions.py +57 -0
  249. cosmotech_api-4.0.0.dev8/test/test_connector.py +81 -0
  250. cosmotech_api-4.0.0.dev8/test/test_connector_api.py +60 -0
  251. cosmotech_api-4.0.0.dev8/test/test_connector_parameter.py +61 -0
  252. cosmotech_api-4.0.0.dev8/test/test_connector_parameter_group.py +77 -0
  253. cosmotech_api-4.0.0.dev8/test/test_container_resource_size_info.py +55 -0
  254. cosmotech_api-4.0.0.dev8/test/test_container_resource_sizing.py +63 -0
  255. cosmotech_api-4.0.0.dev8/test/test_created_run.py +53 -0
  256. cosmotech_api-4.0.0.dev8/test/test_dataset.py +103 -0
  257. cosmotech_api-4.0.0.dev8/test/test_dataset_access_control.py +55 -0
  258. cosmotech_api-4.0.0.dev8/test/test_dataset_api.py +247 -0
  259. cosmotech_api-4.0.0.dev8/test/test_dataset_compatibility.py +55 -0
  260. cosmotech_api-4.0.0.dev8/test/test_dataset_connector.py +57 -0
  261. cosmotech_api-4.0.0.dev8/test/test_dataset_copy_parameters.py +54 -0
  262. cosmotech_api-4.0.0.dev8/test/test_dataset_role.py +53 -0
  263. cosmotech_api-4.0.0.dev8/test/test_dataset_search.py +57 -0
  264. cosmotech_api-4.0.0.dev8/test/test_dataset_security.py +63 -0
  265. cosmotech_api-4.0.0.dev8/test/test_dataset_source_type.py +34 -0
  266. cosmotech_api-4.0.0.dev8/test/test_dataset_twin_graph_hash.py +52 -0
  267. cosmotech_api-4.0.0.dev8/test/test_dataset_twin_graph_info.py +54 -0
  268. cosmotech_api-4.0.0.dev8/test/test_dataset_twin_graph_query.py +53 -0
  269. cosmotech_api-4.0.0.dev8/test/test_delete_historical_data.py +55 -0
  270. cosmotech_api-4.0.0.dev8/test/test_file_upload_metadata.py +53 -0
  271. cosmotech_api-4.0.0.dev8/test/test_file_upload_validation.py +61 -0
  272. cosmotech_api-4.0.0.dev8/test/test_graph_properties.py +56 -0
  273. cosmotech_api-4.0.0.dev8/test/test_ingestion_status_enum.py +34 -0
  274. cosmotech_api-4.0.0.dev8/test/test_io_types_enum.py +34 -0
  275. cosmotech_api-4.0.0.dev8/test/test_organization.py +61 -0
  276. cosmotech_api-4.0.0.dev8/test/test_organization_access_control.py +55 -0
  277. cosmotech_api-4.0.0.dev8/test/test_organization_api.py +130 -0
  278. cosmotech_api-4.0.0.dev8/test/test_organization_role.py +53 -0
  279. cosmotech_api-4.0.0.dev8/test/test_organization_security.py +63 -0
  280. cosmotech_api-4.0.0.dev8/test/test_organization_service.py +56 -0
  281. cosmotech_api-4.0.0.dev8/test/test_organization_services.py +64 -0
  282. cosmotech_api-4.0.0.dev8/test/test_query_result.py +54 -0
  283. cosmotech_api-4.0.0.dev8/test/test_resource_size_info.py +55 -0
  284. cosmotech_api-4.0.0.dev8/test/test_run.py +104 -0
  285. cosmotech_api-4.0.0.dev8/test/test_run_api.py +81 -0
  286. cosmotech_api-4.0.0.dev8/test/test_run_container.py +78 -0
  287. cosmotech_api-4.0.0.dev8/test/test_run_container_artifact.py +53 -0
  288. cosmotech_api-4.0.0.dev8/test/test_run_container_logs.py +57 -0
  289. cosmotech_api-4.0.0.dev8/test/test_run_data.py +56 -0
  290. cosmotech_api-4.0.0.dev8/test/test_run_data_query.py +53 -0
  291. cosmotech_api-4.0.0.dev8/test/test_run_logs.py +61 -0
  292. cosmotech_api-4.0.0.dev8/test/test_run_logs_entry.py +53 -0
  293. cosmotech_api-4.0.0.dev8/test/test_run_resource_requested.py +53 -0
  294. cosmotech_api-4.0.0.dev8/test/test_run_search.py +59 -0
  295. cosmotech_api-4.0.0.dev8/test/test_run_search_state.py +34 -0
  296. cosmotech_api-4.0.0.dev8/test/test_run_start_containers.py +124 -0
  297. cosmotech_api-4.0.0.dev8/test/test_run_state.py +34 -0
  298. cosmotech_api-4.0.0.dev8/test/test_run_status.py +83 -0
  299. cosmotech_api-4.0.0.dev8/test/test_run_status_node.py +67 -0
  300. cosmotech_api-4.0.0.dev8/test/test_run_template.py +101 -0
  301. cosmotech_api-4.0.0.dev8/test/test_run_template_handler_id.py +34 -0
  302. cosmotech_api-4.0.0.dev8/test/test_run_template_orchestrator.py +34 -0
  303. cosmotech_api-4.0.0.dev8/test/test_run_template_parameter.py +62 -0
  304. cosmotech_api-4.0.0.dev8/test/test_run_template_parameter_group.py +62 -0
  305. cosmotech_api-4.0.0.dev8/test/test_run_template_parameter_value.py +56 -0
  306. cosmotech_api-4.0.0.dev8/test/test_run_template_resource_sizing.py +63 -0
  307. cosmotech_api-4.0.0.dev8/test/test_run_template_step_source.py +34 -0
  308. cosmotech_api-4.0.0.dev8/test/test_runner.py +98 -0
  309. cosmotech_api-4.0.0.dev8/test/test_runner_access_control.py +55 -0
  310. cosmotech_api-4.0.0.dev8/test/test_runner_api.py +137 -0
  311. cosmotech_api-4.0.0.dev8/test/test_runner_changed_parameter_value.py +55 -0
  312. cosmotech_api-4.0.0.dev8/test/test_runner_comparison_result.py +60 -0
  313. cosmotech_api-4.0.0.dev8/test/test_runner_data_download_info.py +52 -0
  314. cosmotech_api-4.0.0.dev8/test/test_runner_data_download_job.py +52 -0
  315. cosmotech_api-4.0.0.dev8/test/test_runner_job_state.py +36 -0
  316. cosmotech_api-4.0.0.dev8/test/test_runner_last_run.py +36 -0
  317. cosmotech_api-4.0.0.dev8/test/test_runner_parent_last_run.py +55 -0
  318. cosmotech_api-4.0.0.dev8/test/test_runner_resource_sizing.py +63 -0
  319. cosmotech_api-4.0.0.dev8/test/test_runner_role.py +53 -0
  320. cosmotech_api-4.0.0.dev8/test/test_runner_root_last_run.py +55 -0
  321. cosmotech_api-4.0.0.dev8/test/test_runner_run_template_parameter_value.py +57 -0
  322. cosmotech_api-4.0.0.dev8/test/test_runner_security.py +63 -0
  323. cosmotech_api-4.0.0.dev8/test/test_runner_validation_status.py +34 -0
  324. cosmotech_api-4.0.0.dev8/test/test_scenario.py +110 -0
  325. cosmotech_api-4.0.0.dev8/test/test_scenario_access_control.py +55 -0
  326. cosmotech_api-4.0.0.dev8/test/test_scenario_api.py +186 -0
  327. cosmotech_api-4.0.0.dev8/test/test_scenario_changed_parameter_value.py +55 -0
  328. cosmotech_api-4.0.0.dev8/test/test_scenario_comparison_result.py +60 -0
  329. cosmotech_api-4.0.0.dev8/test/test_scenario_data_download_info.py +53 -0
  330. cosmotech_api-4.0.0.dev8/test/test_scenario_data_download_job.py +52 -0
  331. cosmotech_api-4.0.0.dev8/test/test_scenario_job_state.py +34 -0
  332. cosmotech_api-4.0.0.dev8/test/test_scenario_last_run.py +55 -0
  333. cosmotech_api-4.0.0.dev8/test/test_scenario_resource_sizing.py +63 -0
  334. cosmotech_api-4.0.0.dev8/test/test_scenario_role.py +53 -0
  335. cosmotech_api-4.0.0.dev8/test/test_scenario_run.py +113 -0
  336. cosmotech_api-4.0.0.dev8/test/test_scenario_run_container.py +83 -0
  337. cosmotech_api-4.0.0.dev8/test/test_scenario_run_container_artifact.py +53 -0
  338. cosmotech_api-4.0.0.dev8/test/test_scenario_run_container_logs.py +57 -0
  339. cosmotech_api-4.0.0.dev8/test/test_scenario_run_logs.py +61 -0
  340. cosmotech_api-4.0.0.dev8/test/test_scenario_run_resource_requested.py +53 -0
  341. cosmotech_api-4.0.0.dev8/test/test_scenario_run_result.py +36 -0
  342. cosmotech_api-4.0.0.dev8/test/test_scenario_run_search.py +59 -0
  343. cosmotech_api-4.0.0.dev8/test/test_scenario_run_search_state.py +34 -0
  344. cosmotech_api-4.0.0.dev8/test/test_scenario_run_start_containers.py +124 -0
  345. cosmotech_api-4.0.0.dev8/test/test_scenario_run_state.py +34 -0
  346. cosmotech_api-4.0.0.dev8/test/test_scenario_run_status.py +81 -0
  347. cosmotech_api-4.0.0.dev8/test/test_scenario_run_status_node.py +67 -0
  348. cosmotech_api-4.0.0.dev8/test/test_scenario_run_template_parameter_value.py +57 -0
  349. cosmotech_api-4.0.0.dev8/test/test_scenario_security.py +63 -0
  350. cosmotech_api-4.0.0.dev8/test/test_scenario_validation_status.py +34 -0
  351. cosmotech_api-4.0.0.dev8/test/test_scenariorun_api.py +130 -0
  352. cosmotech_api-4.0.0.dev8/test/test_scenariorunresult_api.py +43 -0
  353. cosmotech_api-4.0.0.dev8/test/test_send_run_data_request.py +55 -0
  354. cosmotech_api-4.0.0.dev8/test/test_solution.py +203 -0
  355. cosmotech_api-4.0.0.dev8/test/test_solution_access_control.py +55 -0
  356. cosmotech_api-4.0.0.dev8/test/test_solution_api.py +172 -0
  357. cosmotech_api-4.0.0.dev8/test/test_solution_role.py +53 -0
  358. cosmotech_api-4.0.0.dev8/test/test_solution_security.py +63 -0
  359. cosmotech_api-4.0.0.dev8/test/test_source_info.py +56 -0
  360. cosmotech_api-4.0.0.dev8/test/test_sub_dataset_graph_query.py +57 -0
  361. cosmotech_api-4.0.0.dev8/test/test_translated_labels.py +36 -0
  362. cosmotech_api-4.0.0.dev8/test/test_twin_graph_batch_result.py +61 -0
  363. cosmotech_api-4.0.0.dev8/test/test_twin_graph_hash.py +52 -0
  364. cosmotech_api-4.0.0.dev8/test/test_twin_graph_query.py +54 -0
  365. cosmotech_api-4.0.0.dev8/test/test_twincache_status_enum.py +34 -0
  366. cosmotech_api-4.0.0.dev8/test/test_twingraph_api.py +130 -0
  367. cosmotech_api-4.0.0.dev8/test/test_user_api.py +99 -0
  368. cosmotech_api-4.0.0.dev8/test/test_validator.py +65 -0
  369. cosmotech_api-4.0.0.dev8/test/test_validator_api.py +92 -0
  370. cosmotech_api-4.0.0.dev8/test/test_validator_run.py +36 -0
  371. cosmotech_api-4.0.0.dev8/test/test_workspace.py +96 -0
  372. cosmotech_api-4.0.0.dev8/test/test_workspace_access_control.py +55 -0
  373. cosmotech_api-4.0.0.dev8/test/test_workspace_api.py +170 -0
  374. cosmotech_api-4.0.0.dev8/test/test_workspace_file.py +52 -0
  375. cosmotech_api-4.0.0.dev8/test/test_workspace_role.py +53 -0
  376. cosmotech_api-4.0.0.dev8/test/test_workspace_secret.py +52 -0
  377. cosmotech_api-4.0.0.dev8/test/test_workspace_security.py +63 -0
  378. cosmotech_api-4.0.0.dev8/test/test_workspace_solution.py +56 -0
  379. cosmotech_api-4.0.0.dev8/test/test_workspace_web_app.py +55 -0
  380. cosmotech_api-3.3.4/PKG-INFO +0 -26
  381. cosmotech_api-3.3.4/README.md +0 -403
  382. cosmotech_api-3.3.4/cosmotech_api/__init__.py +0 -157
  383. cosmotech_api-3.3.4/cosmotech_api/api/__init__.py +0 -14
  384. cosmotech_api-3.3.4/cosmotech_api/api/connector_api.py +0 -1355
  385. cosmotech_api-3.3.4/cosmotech_api/api/dataset_api.py +0 -9179
  386. cosmotech_api-3.3.4/cosmotech_api/api/meta_api.py +0 -281
  387. cosmotech_api-3.3.4/cosmotech_api/api/organization_api.py +0 -4710
  388. cosmotech_api-3.3.4/cosmotech_api/api/run_api.py +0 -2235
  389. cosmotech_api-3.3.4/cosmotech_api/api/runner_api.py +0 -4564
  390. cosmotech_api-3.3.4/cosmotech_api/api/scenario_api.py +0 -6708
  391. cosmotech_api-3.3.4/cosmotech_api/api/scenariorun_api.py +0 -4102
  392. cosmotech_api-3.3.4/cosmotech_api/api/scenariorunresult_api.py +0 -386
  393. cosmotech_api-3.3.4/cosmotech_api/api/solution_api.py +0 -6491
  394. cosmotech_api-3.3.4/cosmotech_api/api/twingraph_api.py +0 -4212
  395. cosmotech_api-3.3.4/cosmotech_api/api/validator_api.py +0 -1314
  396. cosmotech_api-3.3.4/cosmotech_api/api/workspace_api.py +0 -6134
  397. cosmotech_api-3.3.4/cosmotech_api/api_client.py +0 -789
  398. cosmotech_api-3.3.4/cosmotech_api/configuration.py +0 -467
  399. cosmotech_api-3.3.4/cosmotech_api/exceptions.py +0 -200
  400. cosmotech_api-3.3.4/cosmotech_api/model/component_role_permissions.py +0 -260
  401. cosmotech_api-3.3.4/cosmotech_api/model/connector.py +0 -330
  402. cosmotech_api-3.3.4/cosmotech_api/model/connector_parameter.py +0 -284
  403. cosmotech_api-3.3.4/cosmotech_api/model/connector_parameter_group.py +0 -280
  404. cosmotech_api-3.3.4/cosmotech_api/model/container_resource_size_info.py +0 -268
  405. cosmotech_api-3.3.4/cosmotech_api/model/container_resource_sizing.py +0 -274
  406. cosmotech_api-3.3.4/cosmotech_api/model/dataset.py +0 -376
  407. cosmotech_api-3.3.4/cosmotech_api/model/dataset_access_control.py +0 -268
  408. cosmotech_api-3.3.4/cosmotech_api/model/dataset_compatibility.py +0 -270
  409. cosmotech_api-3.3.4/cosmotech_api/model/dataset_connector.py +0 -268
  410. cosmotech_api-3.3.4/cosmotech_api/model/dataset_copy_parameters.py +0 -264
  411. cosmotech_api-3.3.4/cosmotech_api/model/dataset_role.py +0 -262
  412. cosmotech_api-3.3.4/cosmotech_api/model/dataset_search.py +0 -262
  413. cosmotech_api-3.3.4/cosmotech_api/model/dataset_security.py +0 -274
  414. cosmotech_api-3.3.4/cosmotech_api/model/dataset_source_type.py +0 -287
  415. cosmotech_api-3.3.4/cosmotech_api/model/dataset_twin_graph_hash.py +0 -256
  416. cosmotech_api-3.3.4/cosmotech_api/model/dataset_twin_graph_info.py +0 -264
  417. cosmotech_api-3.3.4/cosmotech_api/model/dataset_twin_graph_query.py +0 -262
  418. cosmotech_api-3.3.4/cosmotech_api/model/delete_historical_data.py +0 -272
  419. cosmotech_api-3.3.4/cosmotech_api/model/file_upload_metadata.py +0 -260
  420. cosmotech_api-3.3.4/cosmotech_api/model/file_upload_validation.py +0 -266
  421. cosmotech_api-3.3.4/cosmotech_api/model/graph_properties.py +0 -272
  422. cosmotech_api-3.3.4/cosmotech_api/model/organization.py +0 -282
  423. cosmotech_api-3.3.4/cosmotech_api/model/organization_access_control.py +0 -268
  424. cosmotech_api-3.3.4/cosmotech_api/model/organization_role.py +0 -262
  425. cosmotech_api-3.3.4/cosmotech_api/model/organization_security.py +0 -274
  426. cosmotech_api-3.3.4/cosmotech_api/model/organization_service.py +0 -272
  427. cosmotech_api-3.3.4/cosmotech_api/model/organization_services.py +0 -270
  428. cosmotech_api-3.3.4/cosmotech_api/model/resource_size_info.py +0 -268
  429. cosmotech_api-3.3.4/cosmotech_api/model/run.py +0 -351
  430. cosmotech_api-3.3.4/cosmotech_api/model/run_container.py +0 -318
  431. cosmotech_api-3.3.4/cosmotech_api/model/run_container_artifact.py +0 -260
  432. cosmotech_api-3.3.4/cosmotech_api/model/run_container_logs.py +0 -272
  433. cosmotech_api-3.3.4/cosmotech_api/model/run_logs.py +0 -268
  434. cosmotech_api-3.3.4/cosmotech_api/model/run_resource_requested.py +0 -260
  435. cosmotech_api-3.3.4/cosmotech_api/model/run_search.py +0 -296
  436. cosmotech_api-3.3.4/cosmotech_api/model/run_start_containers.py +0 -286
  437. cosmotech_api-3.3.4/cosmotech_api/model/run_state.py +0 -285
  438. cosmotech_api-3.3.4/cosmotech_api/model/run_status.py +0 -316
  439. cosmotech_api-3.3.4/cosmotech_api/model/run_status_node.py +0 -307
  440. cosmotech_api-3.3.4/cosmotech_api/model/run_template.py +0 -408
  441. cosmotech_api-3.3.4/cosmotech_api/model/run_template_handler_id.py +0 -287
  442. cosmotech_api-3.3.4/cosmotech_api/model/run_template_orchestrator.py +0 -283
  443. cosmotech_api-3.3.4/cosmotech_api/model/run_template_parameter.py +0 -296
  444. cosmotech_api-3.3.4/cosmotech_api/model/run_template_parameter_group.py +0 -288
  445. cosmotech_api-3.3.4/cosmotech_api/model/run_template_parameter_value.py +0 -273
  446. cosmotech_api-3.3.4/cosmotech_api/model/run_template_resource_sizing.py +0 -274
  447. cosmotech_api-3.3.4/cosmotech_api/model/run_template_step_source.py +0 -285
  448. cosmotech_api-3.3.4/cosmotech_api/model/runner.py +0 -379
  449. cosmotech_api-3.3.4/cosmotech_api/model/runner_access_control.py +0 -268
  450. cosmotech_api-3.3.4/cosmotech_api/model/runner_changed_parameter_value.py +0 -272
  451. cosmotech_api-3.3.4/cosmotech_api/model/runner_comparison_result.py +0 -273
  452. cosmotech_api-3.3.4/cosmotech_api/model/runner_data_download_info.py +0 -267
  453. cosmotech_api-3.3.4/cosmotech_api/model/runner_data_download_job.py +0 -257
  454. cosmotech_api-3.3.4/cosmotech_api/model/runner_job_state.py +0 -287
  455. cosmotech_api-3.3.4/cosmotech_api/model/runner_last_run.py +0 -268
  456. cosmotech_api-3.3.4/cosmotech_api/model/runner_resource_sizing.py +0 -274
  457. cosmotech_api-3.3.4/cosmotech_api/model/runner_role.py +0 -262
  458. cosmotech_api-3.3.4/cosmotech_api/model/runner_run_template_parameter_value.py +0 -277
  459. cosmotech_api-3.3.4/cosmotech_api/model/runner_security.py +0 -274
  460. cosmotech_api-3.3.4/cosmotech_api/model/runner_validation_status.py +0 -285
  461. cosmotech_api-3.3.4/cosmotech_api/model/scenario.py +0 -379
  462. cosmotech_api-3.3.4/cosmotech_api/model/scenario_access_control.py +0 -268
  463. cosmotech_api-3.3.4/cosmotech_api/model/scenario_changed_parameter_value.py +0 -272
  464. cosmotech_api-3.3.4/cosmotech_api/model/scenario_comparison_result.py +0 -273
  465. cosmotech_api-3.3.4/cosmotech_api/model/scenario_data_download_info.py +0 -267
  466. cosmotech_api-3.3.4/cosmotech_api/model/scenario_data_download_job.py +0 -257
  467. cosmotech_api-3.3.4/cosmotech_api/model/scenario_job_state.py +0 -287
  468. cosmotech_api-3.3.4/cosmotech_api/model/scenario_last_run.py +0 -268
  469. cosmotech_api-3.3.4/cosmotech_api/model/scenario_resource_sizing.py +0 -274
  470. cosmotech_api-3.3.4/cosmotech_api/model/scenario_role.py +0 -262
  471. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run.py +0 -369
  472. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_container.py +0 -318
  473. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_container_artifact.py +0 -260
  474. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_container_logs.py +0 -272
  475. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_logs.py +0 -268
  476. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_resource_requested.py +0 -260
  477. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_result.py +0 -260
  478. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_search.py +0 -296
  479. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_start_containers.py +0 -286
  480. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_state.py +0 -287
  481. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_status.py +0 -308
  482. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_status_node.py +0 -307
  483. cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_template_parameter_value.py +0 -277
  484. cosmotech_api-3.3.4/cosmotech_api/model/scenario_security.py +0 -274
  485. cosmotech_api-3.3.4/cosmotech_api/model/scenario_validation_status.py +0 -285
  486. cosmotech_api-3.3.4/cosmotech_api/model/solution.py +0 -335
  487. cosmotech_api-3.3.4/cosmotech_api/model/solution_access_control.py +0 -268
  488. cosmotech_api-3.3.4/cosmotech_api/model/solution_role.py +0 -262
  489. cosmotech_api-3.3.4/cosmotech_api/model/solution_security.py +0 -274
  490. cosmotech_api-3.3.4/cosmotech_api/model/source_info.py +0 -274
  491. cosmotech_api-3.3.4/cosmotech_api/model/sub_dataset_graph_query.py +0 -268
  492. cosmotech_api-3.3.4/cosmotech_api/model/translated_labels.py +0 -252
  493. cosmotech_api-3.3.4/cosmotech_api/model/twin_graph_batch_result.py +0 -274
  494. cosmotech_api-3.3.4/cosmotech_api/model/twin_graph_hash.py +0 -256
  495. cosmotech_api-3.3.4/cosmotech_api/model/twin_graph_query.py +0 -266
  496. cosmotech_api-3.3.4/cosmotech_api/model/validator.py +0 -295
  497. cosmotech_api-3.3.4/cosmotech_api/model/validator_run.py +0 -302
  498. cosmotech_api-3.3.4/cosmotech_api/model/workspace.py +0 -351
  499. cosmotech_api-3.3.4/cosmotech_api/model/workspace_access_control.py +0 -268
  500. cosmotech_api-3.3.4/cosmotech_api/model/workspace_file.py +0 -256
  501. cosmotech_api-3.3.4/cosmotech_api/model/workspace_role.py +0 -262
  502. cosmotech_api-3.3.4/cosmotech_api/model/workspace_secret.py +0 -256
  503. cosmotech_api-3.3.4/cosmotech_api/model/workspace_security.py +0 -274
  504. cosmotech_api-3.3.4/cosmotech_api/model/workspace_solution.py +0 -264
  505. cosmotech_api-3.3.4/cosmotech_api/model/workspace_web_app.py +0 -270
  506. cosmotech_api-3.3.4/cosmotech_api/model_utils.py +0 -2038
  507. cosmotech_api-3.3.4/cosmotech_api/models/__init__.py +0 -131
  508. cosmotech_api-3.3.4/cosmotech_api/models/about_info.py +0 -92
  509. cosmotech_api-3.3.4/cosmotech_api/models/about_info_version.py +0 -100
  510. cosmotech_api-3.3.4/cosmotech_api/models/component_role_permissions.py +0 -90
  511. cosmotech_api-3.3.4/cosmotech_api/models/connector.py +0 -125
  512. cosmotech_api-3.3.4/cosmotech_api/models/connector_parameter.py +0 -98
  513. cosmotech_api-3.3.4/cosmotech_api/models/connector_parameter_group.py +0 -100
  514. cosmotech_api-3.3.4/cosmotech_api/models/container_resource_size_info.py +0 -90
  515. cosmotech_api-3.3.4/cosmotech_api/models/container_resource_sizing.py +0 -97
  516. cosmotech_api-3.3.4/cosmotech_api/models/created_run.py +0 -88
  517. cosmotech_api-3.3.4/cosmotech_api/models/dataset.py +0 -177
  518. cosmotech_api-3.3.4/cosmotech_api/models/dataset_access_control.py +0 -90
  519. cosmotech_api-3.3.4/cosmotech_api/models/dataset_compatibility.py +0 -92
  520. cosmotech_api-3.3.4/cosmotech_api/models/dataset_connector.py +0 -94
  521. cosmotech_api-3.3.4/cosmotech_api/models/dataset_copy_parameters.py +0 -92
  522. cosmotech_api-3.3.4/cosmotech_api/models/dataset_role.py +0 -88
  523. cosmotech_api-3.3.4/cosmotech_api/models/dataset_search.py +0 -88
  524. cosmotech_api-3.3.4/cosmotech_api/models/dataset_security.py +0 -98
  525. cosmotech_api-3.3.4/cosmotech_api/models/dataset_source_type.py +0 -42
  526. cosmotech_api-3.3.4/cosmotech_api/models/dataset_twin_graph_hash.py +0 -88
  527. cosmotech_api-3.3.4/cosmotech_api/models/dataset_twin_graph_info.py +0 -92
  528. cosmotech_api-3.3.4/cosmotech_api/models/dataset_twin_graph_query.py +0 -88
  529. cosmotech_api-3.3.4/cosmotech_api/models/delete_historical_data.py +0 -92
  530. cosmotech_api-3.3.4/cosmotech_api/models/file_upload_metadata.py +0 -90
  531. cosmotech_api-3.3.4/cosmotech_api/models/file_upload_validation.py +0 -105
  532. cosmotech_api-3.3.4/cosmotech_api/models/graph_properties.py +0 -96
  533. cosmotech_api-3.3.4/cosmotech_api/models/ingestion_status_enum.py +0 -40
  534. cosmotech_api-3.3.4/cosmotech_api/models/io_types_enum.py +0 -38
  535. cosmotech_api-3.3.4/cosmotech_api/models/organization.py +0 -108
  536. cosmotech_api-3.3.4/cosmotech_api/models/organization_access_control.py +0 -90
  537. cosmotech_api-3.3.4/cosmotech_api/models/organization_create_request.py +0 -95
  538. cosmotech_api-3.3.4/cosmotech_api/models/organization_role.py +0 -88
  539. cosmotech_api-3.3.4/cosmotech_api/models/organization_security.py +0 -98
  540. cosmotech_api-3.3.4/cosmotech_api/models/organization_service.py +0 -96
  541. cosmotech_api-3.3.4/cosmotech_api/models/organization_services.py +0 -99
  542. cosmotech_api-3.3.4/cosmotech_api/models/organization_update_request.py +0 -89
  543. cosmotech_api-3.3.4/cosmotech_api/models/query_result.py +0 -88
  544. cosmotech_api-3.3.4/cosmotech_api/models/resource_size_info.py +0 -90
  545. cosmotech_api-3.3.4/cosmotech_api/models/run.py +0 -167
  546. cosmotech_api-3.3.4/cosmotech_api/models/run_container.py +0 -126
  547. cosmotech_api-3.3.4/cosmotech_api/models/run_container_artifact.py +0 -90
  548. cosmotech_api-3.3.4/cosmotech_api/models/run_container_logs.py +0 -102
  549. cosmotech_api-3.3.4/cosmotech_api/models/run_data.py +0 -92
  550. cosmotech_api-3.3.4/cosmotech_api/models/run_data_query.py +0 -88
  551. cosmotech_api-3.3.4/cosmotech_api/models/run_logs.py +0 -107
  552. cosmotech_api-3.3.4/cosmotech_api/models/run_logs_entry.py +0 -88
  553. cosmotech_api-3.3.4/cosmotech_api/models/run_resource_requested.py +0 -90
  554. cosmotech_api-3.3.4/cosmotech_api/models/run_search.py +0 -103
  555. cosmotech_api-3.3.4/cosmotech_api/models/run_search_state.py +0 -46
  556. cosmotech_api-3.3.4/cosmotech_api/models/run_start_containers.py +0 -104
  557. cosmotech_api-3.3.4/cosmotech_api/models/run_state.py +0 -40
  558. cosmotech_api-3.3.4/cosmotech_api/models/run_status.py +0 -123
  559. cosmotech_api-3.3.4/cosmotech_api/models/run_status_node.py +0 -116
  560. cosmotech_api-3.3.4/cosmotech_api/models/run_template.py +0 -164
  561. cosmotech_api-3.3.4/cosmotech_api/models/run_template_handler_id.py +0 -42
  562. cosmotech_api-3.3.4/cosmotech_api/models/run_template_orchestrator.py +0 -38
  563. cosmotech_api-3.3.4/cosmotech_api/models/run_template_parameter.py +0 -102
  564. cosmotech_api-3.3.4/cosmotech_api/models/run_template_parameter_group.py +0 -98
  565. cosmotech_api-3.3.4/cosmotech_api/models/run_template_parameter_value.py +0 -94
  566. cosmotech_api-3.3.4/cosmotech_api/models/run_template_resource_sizing.py +0 -97
  567. cosmotech_api-3.3.4/cosmotech_api/models/run_template_step_source.py +0 -40
  568. cosmotech_api-3.3.4/cosmotech_api/models/runner.py +0 -188
  569. cosmotech_api-3.3.4/cosmotech_api/models/runner_access_control.py +0 -90
  570. cosmotech_api-3.3.4/cosmotech_api/models/runner_changed_parameter_value.py +0 -102
  571. cosmotech_api-3.3.4/cosmotech_api/models/runner_comparison_result.py +0 -106
  572. cosmotech_api-3.3.4/cosmotech_api/models/runner_create_request.py +0 -154
  573. cosmotech_api-3.3.4/cosmotech_api/models/runner_data_download_info.py +0 -93
  574. cosmotech_api-3.3.4/cosmotech_api/models/runner_data_download_job.py +0 -90
  575. cosmotech_api-3.3.4/cosmotech_api/models/runner_job_state.py +0 -42
  576. cosmotech_api-3.3.4/cosmotech_api/models/runner_last_run.py +0 -94
  577. cosmotech_api-3.3.4/cosmotech_api/models/runner_parent_last_run.py +0 -94
  578. cosmotech_api-3.3.4/cosmotech_api/models/runner_resource_sizing.py +0 -97
  579. cosmotech_api-3.3.4/cosmotech_api/models/runner_role.py +0 -88
  580. cosmotech_api-3.3.4/cosmotech_api/models/runner_root_last_run.py +0 -94
  581. cosmotech_api-3.3.4/cosmotech_api/models/runner_run_template_parameter_value.py +0 -96
  582. cosmotech_api-3.3.4/cosmotech_api/models/runner_security.py +0 -98
  583. cosmotech_api-3.3.4/cosmotech_api/models/runner_update_request.py +0 -123
  584. cosmotech_api-3.3.4/cosmotech_api/models/runner_validation_status.py +0 -40
  585. cosmotech_api-3.3.4/cosmotech_api/models/scenario.py +0 -186
  586. cosmotech_api-3.3.4/cosmotech_api/models/scenario_access_control.py +0 -90
  587. cosmotech_api-3.3.4/cosmotech_api/models/scenario_changed_parameter_value.py +0 -102
  588. cosmotech_api-3.3.4/cosmotech_api/models/scenario_comparison_result.py +0 -106
  589. cosmotech_api-3.3.4/cosmotech_api/models/scenario_data_download_info.py +0 -93
  590. cosmotech_api-3.3.4/cosmotech_api/models/scenario_data_download_job.py +0 -90
  591. cosmotech_api-3.3.4/cosmotech_api/models/scenario_job_state.py +0 -42
  592. cosmotech_api-3.3.4/cosmotech_api/models/scenario_last_run.py +0 -94
  593. cosmotech_api-3.3.4/cosmotech_api/models/scenario_resource_sizing.py +0 -97
  594. cosmotech_api-3.3.4/cosmotech_api/models/scenario_role.py +0 -88
  595. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run.py +0 -179
  596. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_container.py +0 -126
  597. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_container_artifact.py +0 -90
  598. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_container_logs.py +0 -102
  599. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_logs.py +0 -107
  600. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_resource_requested.py +0 -90
  601. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_search.py +0 -103
  602. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_search_state.py +0 -46
  603. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_start_containers.py +0 -104
  604. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_state.py +0 -42
  605. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_status.py +0 -119
  606. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_status_node.py +0 -116
  607. cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_template_parameter_value.py +0 -96
  608. cosmotech_api-3.3.4/cosmotech_api/models/scenario_security.py +0 -98
  609. cosmotech_api-3.3.4/cosmotech_api/models/scenario_validation_status.py +0 -40
  610. cosmotech_api-3.3.4/cosmotech_api/models/send_run_data_request.py +0 -90
  611. cosmotech_api-3.3.4/cosmotech_api/models/solution.py +0 -154
  612. cosmotech_api-3.3.4/cosmotech_api/models/solution_access_control.py +0 -90
  613. cosmotech_api-3.3.4/cosmotech_api/models/solution_create_request.py +0 -143
  614. cosmotech_api-3.3.4/cosmotech_api/models/solution_role.py +0 -88
  615. cosmotech_api-3.3.4/cosmotech_api/models/solution_security.py +0 -98
  616. cosmotech_api-3.3.4/cosmotech_api/models/solution_update_request.py +0 -107
  617. cosmotech_api-3.3.4/cosmotech_api/models/source_info.py +0 -94
  618. cosmotech_api-3.3.4/cosmotech_api/models/sub_dataset_graph_query.py +0 -94
  619. cosmotech_api-3.3.4/cosmotech_api/models/twin_graph_batch_result.py +0 -92
  620. cosmotech_api-3.3.4/cosmotech_api/models/twin_graph_hash.py +0 -88
  621. cosmotech_api-3.3.4/cosmotech_api/models/twin_graph_query.py +0 -90
  622. cosmotech_api-3.3.4/cosmotech_api/models/twincache_status_enum.py +0 -38
  623. cosmotech_api-3.3.4/cosmotech_api/models/validator.py +0 -106
  624. cosmotech_api-3.3.4/cosmotech_api/models/workspace.py +0 -142
  625. cosmotech_api-3.3.4/cosmotech_api/models/workspace_access_control.py +0 -90
  626. cosmotech_api-3.3.4/cosmotech_api/models/workspace_create_request.py +0 -117
  627. cosmotech_api-3.3.4/cosmotech_api/models/workspace_file.py +0 -88
  628. cosmotech_api-3.3.4/cosmotech_api/models/workspace_role.py +0 -88
  629. cosmotech_api-3.3.4/cosmotech_api/models/workspace_secret.py +0 -88
  630. cosmotech_api-3.3.4/cosmotech_api/models/workspace_security.py +0 -98
  631. cosmotech_api-3.3.4/cosmotech_api/models/workspace_solution.py +0 -92
  632. cosmotech_api-3.3.4/cosmotech_api/models/workspace_update_request.py +0 -109
  633. cosmotech_api-3.3.4/cosmotech_api/models/workspace_web_app.py +0 -92
  634. cosmotech_api-3.3.4/cosmotech_api/rest.py +0 -258
  635. cosmotech_api-3.3.4/cosmotech_api.egg-info/PKG-INFO +0 -26
  636. cosmotech_api-3.3.4/cosmotech_api.egg-info/SOURCES.txt +0 -426
  637. cosmotech_api-3.3.4/setup.py +0 -51
  638. cosmotech_api-3.3.4/test/test_about_info.py +0 -67
  639. cosmotech_api-3.3.4/test/test_about_info_version.py +0 -65
  640. cosmotech_api-3.3.4/test/test_component_role_permissions.py +0 -57
  641. cosmotech_api-3.3.4/test/test_connector.py +0 -83
  642. cosmotech_api-3.3.4/test/test_connector_api.py +0 -67
  643. cosmotech_api-3.3.4/test/test_connector_parameter.py +0 -61
  644. cosmotech_api-3.3.4/test/test_connector_parameter_group.py +0 -77
  645. cosmotech_api-3.3.4/test/test_container_resource_size_info.py +0 -55
  646. cosmotech_api-3.3.4/test/test_container_resource_sizing.py +0 -63
  647. cosmotech_api-3.3.4/test/test_created_run.py +0 -53
  648. cosmotech_api-3.3.4/test/test_dataset.py +0 -103
  649. cosmotech_api-3.3.4/test/test_dataset_access_control.py +0 -55
  650. cosmotech_api-3.3.4/test/test_dataset_api.py +0 -247
  651. cosmotech_api-3.3.4/test/test_dataset_compatibility.py +0 -55
  652. cosmotech_api-3.3.4/test/test_dataset_connector.py +0 -57
  653. cosmotech_api-3.3.4/test/test_dataset_copy_parameters.py +0 -54
  654. cosmotech_api-3.3.4/test/test_dataset_role.py +0 -53
  655. cosmotech_api-3.3.4/test/test_dataset_search.py +0 -57
  656. cosmotech_api-3.3.4/test/test_dataset_security.py +0 -63
  657. cosmotech_api-3.3.4/test/test_dataset_source_type.py +0 -34
  658. cosmotech_api-3.3.4/test/test_dataset_twin_graph_hash.py +0 -52
  659. cosmotech_api-3.3.4/test/test_dataset_twin_graph_info.py +0 -54
  660. cosmotech_api-3.3.4/test/test_dataset_twin_graph_query.py +0 -53
  661. cosmotech_api-3.3.4/test/test_delete_historical_data.py +0 -55
  662. cosmotech_api-3.3.4/test/test_file_upload_metadata.py +0 -53
  663. cosmotech_api-3.3.4/test/test_file_upload_validation.py +0 -61
  664. cosmotech_api-3.3.4/test/test_graph_properties.py +0 -56
  665. cosmotech_api-3.3.4/test/test_ingestion_status_enum.py +0 -34
  666. cosmotech_api-3.3.4/test/test_io_types_enum.py +0 -34
  667. cosmotech_api-3.3.4/test/test_meta_api.py +0 -39
  668. cosmotech_api-3.3.4/test/test_organization.py +0 -74
  669. cosmotech_api-3.3.4/test/test_organization_access_control.py +0 -55
  670. cosmotech_api-3.3.4/test/test_organization_api.py +0 -151
  671. cosmotech_api-3.3.4/test/test_organization_create_request.py +0 -60
  672. cosmotech_api-3.3.4/test/test_organization_role.py +0 -53
  673. cosmotech_api-3.3.4/test/test_organization_security.py +0 -63
  674. cosmotech_api-3.3.4/test/test_organization_service.py +0 -56
  675. cosmotech_api-3.3.4/test/test_organization_services.py +0 -64
  676. cosmotech_api-3.3.4/test/test_organization_update_request.py +0 -52
  677. cosmotech_api-3.3.4/test/test_query_result.py +0 -54
  678. cosmotech_api-3.3.4/test/test_resource_size_info.py +0 -55
  679. cosmotech_api-3.3.4/test/test_run.py +0 -109
  680. cosmotech_api-3.3.4/test/test_run_api.py +0 -81
  681. cosmotech_api-3.3.4/test/test_run_container.py +0 -83
  682. cosmotech_api-3.3.4/test/test_run_container_artifact.py +0 -53
  683. cosmotech_api-3.3.4/test/test_run_container_logs.py +0 -57
  684. cosmotech_api-3.3.4/test/test_run_data.py +0 -56
  685. cosmotech_api-3.3.4/test/test_run_data_query.py +0 -53
  686. cosmotech_api-3.3.4/test/test_run_logs.py +0 -61
  687. cosmotech_api-3.3.4/test/test_run_logs_entry.py +0 -53
  688. cosmotech_api-3.3.4/test/test_run_resource_requested.py +0 -53
  689. cosmotech_api-3.3.4/test/test_run_search.py +0 -59
  690. cosmotech_api-3.3.4/test/test_run_search_state.py +0 -34
  691. cosmotech_api-3.3.4/test/test_run_start_containers.py +0 -124
  692. cosmotech_api-3.3.4/test/test_run_state.py +0 -34
  693. cosmotech_api-3.3.4/test/test_run_status.py +0 -83
  694. cosmotech_api-3.3.4/test/test_run_status_node.py +0 -67
  695. cosmotech_api-3.3.4/test/test_run_template.py +0 -101
  696. cosmotech_api-3.3.4/test/test_run_template_handler_id.py +0 -34
  697. cosmotech_api-3.3.4/test/test_run_template_orchestrator.py +0 -34
  698. cosmotech_api-3.3.4/test/test_run_template_parameter.py +0 -62
  699. cosmotech_api-3.3.4/test/test_run_template_parameter_group.py +0 -62
  700. cosmotech_api-3.3.4/test/test_run_template_parameter_value.py +0 -56
  701. cosmotech_api-3.3.4/test/test_run_template_resource_sizing.py +0 -63
  702. cosmotech_api-3.3.4/test/test_run_template_step_source.py +0 -34
  703. cosmotech_api-3.3.4/test/test_runner.py +0 -98
  704. cosmotech_api-3.3.4/test/test_runner_access_control.py +0 -55
  705. cosmotech_api-3.3.4/test/test_runner_api.py +0 -137
  706. cosmotech_api-3.3.4/test/test_runner_changed_parameter_value.py +0 -55
  707. cosmotech_api-3.3.4/test/test_runner_comparison_result.py +0 -60
  708. cosmotech_api-3.3.4/test/test_runner_create_request.py +0 -90
  709. cosmotech_api-3.3.4/test/test_runner_data_download_info.py +0 -53
  710. cosmotech_api-3.3.4/test/test_runner_data_download_job.py +0 -52
  711. cosmotech_api-3.3.4/test/test_runner_job_state.py +0 -34
  712. cosmotech_api-3.3.4/test/test_runner_last_run.py +0 -55
  713. cosmotech_api-3.3.4/test/test_runner_parent_last_run.py +0 -55
  714. cosmotech_api-3.3.4/test/test_runner_resource_sizing.py +0 -63
  715. cosmotech_api-3.3.4/test/test_runner_role.py +0 -53
  716. cosmotech_api-3.3.4/test/test_runner_root_last_run.py +0 -55
  717. cosmotech_api-3.3.4/test/test_runner_run_template_parameter_value.py +0 -57
  718. cosmotech_api-3.3.4/test/test_runner_security.py +0 -63
  719. cosmotech_api-3.3.4/test/test_runner_update_request.py +0 -77
  720. cosmotech_api-3.3.4/test/test_runner_validation_status.py +0 -34
  721. cosmotech_api-3.3.4/test/test_scenario.py +0 -110
  722. cosmotech_api-3.3.4/test/test_scenario_access_control.py +0 -55
  723. cosmotech_api-3.3.4/test/test_scenario_api.py +0 -186
  724. cosmotech_api-3.3.4/test/test_scenario_changed_parameter_value.py +0 -55
  725. cosmotech_api-3.3.4/test/test_scenario_comparison_result.py +0 -60
  726. cosmotech_api-3.3.4/test/test_scenario_data_download_info.py +0 -53
  727. cosmotech_api-3.3.4/test/test_scenario_data_download_job.py +0 -52
  728. cosmotech_api-3.3.4/test/test_scenario_job_state.py +0 -34
  729. cosmotech_api-3.3.4/test/test_scenario_last_run.py +0 -55
  730. cosmotech_api-3.3.4/test/test_scenario_resource_sizing.py +0 -63
  731. cosmotech_api-3.3.4/test/test_scenario_role.py +0 -53
  732. cosmotech_api-3.3.4/test/test_scenario_run.py +0 -113
  733. cosmotech_api-3.3.4/test/test_scenario_run_container.py +0 -83
  734. cosmotech_api-3.3.4/test/test_scenario_run_container_artifact.py +0 -53
  735. cosmotech_api-3.3.4/test/test_scenario_run_container_logs.py +0 -57
  736. cosmotech_api-3.3.4/test/test_scenario_run_logs.py +0 -61
  737. cosmotech_api-3.3.4/test/test_scenario_run_resource_requested.py +0 -53
  738. cosmotech_api-3.3.4/test/test_scenario_run_result.py +0 -36
  739. cosmotech_api-3.3.4/test/test_scenario_run_search.py +0 -59
  740. cosmotech_api-3.3.4/test/test_scenario_run_search_state.py +0 -34
  741. cosmotech_api-3.3.4/test/test_scenario_run_start_containers.py +0 -124
  742. cosmotech_api-3.3.4/test/test_scenario_run_state.py +0 -34
  743. cosmotech_api-3.3.4/test/test_scenario_run_status.py +0 -81
  744. cosmotech_api-3.3.4/test/test_scenario_run_status_node.py +0 -67
  745. cosmotech_api-3.3.4/test/test_scenario_run_template_parameter_value.py +0 -57
  746. cosmotech_api-3.3.4/test/test_scenario_security.py +0 -63
  747. cosmotech_api-3.3.4/test/test_scenario_validation_status.py +0 -34
  748. cosmotech_api-3.3.4/test/test_scenariorun_api.py +0 -130
  749. cosmotech_api-3.3.4/test/test_send_run_data_request.py +0 -55
  750. cosmotech_api-3.3.4/test/test_solution.py +0 -151
  751. cosmotech_api-3.3.4/test/test_solution_access_control.py +0 -55
  752. cosmotech_api-3.3.4/test/test_solution_api.py +0 -186
  753. cosmotech_api-3.3.4/test/test_solution_create_request.py +0 -123
  754. cosmotech_api-3.3.4/test/test_solution_role.py +0 -53
  755. cosmotech_api-3.3.4/test/test_solution_security.py +0 -63
  756. cosmotech_api-3.3.4/test/test_solution_update_request.py +0 -61
  757. cosmotech_api-3.3.4/test/test_source_info.py +0 -56
  758. cosmotech_api-3.3.4/test/test_sub_dataset_graph_query.py +0 -57
  759. cosmotech_api-3.3.4/test/test_translated_labels.py +0 -36
  760. cosmotech_api-3.3.4/test/test_twin_graph_batch_result.py +0 -61
  761. cosmotech_api-3.3.4/test/test_twin_graph_hash.py +0 -52
  762. cosmotech_api-3.3.4/test/test_twin_graph_query.py +0 -54
  763. cosmotech_api-3.3.4/test/test_twincache_status_enum.py +0 -34
  764. cosmotech_api-3.3.4/test/test_twingraph_api.py +0 -130
  765. cosmotech_api-3.3.4/test/test_validator.py +0 -65
  766. cosmotech_api-3.3.4/test/test_validator_run.py +0 -36
  767. cosmotech_api-3.3.4/test/test_workspace.py +0 -96
  768. cosmotech_api-3.3.4/test/test_workspace_access_control.py +0 -55
  769. cosmotech_api-3.3.4/test/test_workspace_api.py +0 -177
  770. cosmotech_api-3.3.4/test/test_workspace_create_request.py +0 -84
  771. cosmotech_api-3.3.4/test/test_workspace_file.py +0 -52
  772. cosmotech_api-3.3.4/test/test_workspace_role.py +0 -53
  773. cosmotech_api-3.3.4/test/test_workspace_secret.py +0 -52
  774. cosmotech_api-3.3.4/test/test_workspace_security.py +0 -63
  775. cosmotech_api-3.3.4/test/test_workspace_solution.py +0 -56
  776. cosmotech_api-3.3.4/test/test_workspace_update_request.py +0 -68
  777. cosmotech_api-3.3.4/test/test_workspace_web_app.py +0 -55
  778. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/LICENSE +0 -0
  779. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/user_api.py +0 -0
  780. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api_response.py +0 -0
  781. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/apis/__init__.py +0 -0
  782. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/__init__.py +0 -0
  783. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/organization_user.py +0 -0
  784. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_user.py +0 -0
  785. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/twin_graph_import.py +0 -0
  786. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/twin_graph_import_info.py +0 -0
  787. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/user.py +0 -0
  788. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/user_organization.py +0 -0
  789. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/user_workspace.py +0 -0
  790. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/workspace_user.py +0 -0
  791. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_result.py +0 -0
  792. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/validator_run.py +0 -0
  793. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api/py.typed +0 -0
  794. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api.egg-info/dependency_links.txt +0 -0
  795. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api.egg-info/requires.txt +0 -0
  796. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/cosmotech_api.egg-info/top_level.txt +0 -0
  797. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/pyproject.toml +0 -0
  798. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/setup.cfg +0 -0
  799. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/test/test_organization_user.py +0 -0
  800. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/test/test_scenario_user.py +0 -0
  801. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/test/test_twin_graph_import.py +0 -0
  802. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/test/test_twin_graph_import_info.py +0 -0
  803. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/test/test_user.py +0 -0
  804. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/test/test_user_organization.py +0 -0
  805. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/test/test_user_workspace.py +0 -0
  806. {cosmotech_api-3.3.4 → cosmotech_api-4.0.0.dev8}/test/test_workspace_user.py +0 -0
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.1
2
+ Name: cosmotech-api
3
+ Version: 4.0.0.dev8
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<2.1.0,>=1.25.3
13
+ Requires-Dist: python-dateutil
14
+ Requires-Dist: pydantic>=2
15
+ Requires-Dist: typing-extensions>=4.7.1
16
+
17
+ Cosmo Tech Platform API
18
+
@@ -0,0 +1,302 @@
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: 4.0.0-onprem.8
7
+ - Package version: 1.0.0
8
+ - Generator version: 7.8.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.7+
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
60
+ # See configuration.py for a list of all supported configuration parameters.
61
+ configuration = cosmotech_api.Configuration(
62
+ host = "http://localhost"
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.ConnectorApi(api_client)
77
+ page = 56 # int | page number to query (first page is at index 0) (optional)
78
+ size = 56 # int | amount of result by page (optional)
79
+
80
+ try:
81
+ # List all Connectors
82
+ api_response = api_instance.find_all_connectors(page=page, size=size)
83
+ print("The response of ConnectorApi->find_all_connectors:\n")
84
+ pprint(api_response)
85
+ except ApiException as e:
86
+ print("Exception when calling ConnectorApi->find_all_connectors: %s\n" % e)
87
+
88
+ ```
89
+
90
+ ## Documentation for API Endpoints
91
+
92
+ All URIs are relative to *http://localhost*
93
+
94
+ Class | Method | HTTP request | Description
95
+ ------------ | ------------- | ------------- | -------------
96
+ *ConnectorApi* | [**find_all_connectors**](docs/ConnectorApi.md#find_all_connectors) | **GET** /connectors | List all Connectors
97
+ *ConnectorApi* | [**find_connector_by_id**](docs/ConnectorApi.md#find_connector_by_id) | **GET** /connectors/{connector_id} | Get the details of a connector
98
+ *ConnectorApi* | [**register_connector**](docs/ConnectorApi.md#register_connector) | **POST** /connectors | Register a new connector
99
+ *ConnectorApi* | [**unregister_connector**](docs/ConnectorApi.md#unregister_connector) | **DELETE** /connectors/{connector_id} | Unregister a connector
100
+ *DatasetApi* | [**add_dataset_access_control**](docs/DatasetApi.md#add_dataset_access_control) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/security/access | Add a control access to the Dataset
101
+ *DatasetApi* | [**add_or_replace_dataset_compatibility_elements**](docs/DatasetApi.md#add_or_replace_dataset_compatibility_elements) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/compatibility | Add Dataset Compatibility elements.
102
+ *DatasetApi* | [**copy_dataset**](docs/DatasetApi.md#copy_dataset) | **POST** /organizations/{organization_id}/datasets/copy | Copy a Dataset to another Dataset.
103
+ *DatasetApi* | [**create_dataset**](docs/DatasetApi.md#create_dataset) | **POST** /organizations/{organization_id}/datasets | Create a new Dataset
104
+ *DatasetApi* | [**create_sub_dataset**](docs/DatasetApi.md#create_sub_dataset) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/subdataset | Create a sub-dataset from the dataset in parameter
105
+ *DatasetApi* | [**create_twingraph_entities**](docs/DatasetApi.md#create_twingraph_entities) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/twingraph/{type} | Create new entities in a graph instance
106
+ *DatasetApi* | [**delete_dataset**](docs/DatasetApi.md#delete_dataset) | **DELETE** /organizations/{organization_id}/datasets/{dataset_id} | Delete a dataset
107
+ *DatasetApi* | [**delete_twingraph_entities**](docs/DatasetApi.md#delete_twingraph_entities) | **DELETE** /organizations/{organization_id}/datasets/{dataset_id}/twingraph/{type} | Delete entities in a graph instance
108
+ *DatasetApi* | [**download_twingraph**](docs/DatasetApi.md#download_twingraph) | **GET** /organizations/{organization_id}/datasets/twingraph/download/{hash} | Download a graph as a zip file
109
+ *DatasetApi* | [**find_all_datasets**](docs/DatasetApi.md#find_all_datasets) | **GET** /organizations/{organization_id}/datasets | List all Datasets
110
+ *DatasetApi* | [**find_dataset_by_id**](docs/DatasetApi.md#find_dataset_by_id) | **GET** /organizations/{organization_id}/datasets/{dataset_id} | Get the details of a Dataset
111
+ *DatasetApi* | [**get_dataset_access_control**](docs/DatasetApi.md#get_dataset_access_control) | **GET** /organizations/{organization_id}/datasets/{dataset_id}/security/access/{identity_id} | Get a control access for the Dataset
112
+ *DatasetApi* | [**get_dataset_security**](docs/DatasetApi.md#get_dataset_security) | **GET** /organizations/{organization_id}/datasets/{dataset_id}/security | Get the Dataset security information
113
+ *DatasetApi* | [**get_dataset_security_users**](docs/DatasetApi.md#get_dataset_security_users) | **GET** /organizations/{organization_id}/datasets/{dataset_id}/security/users | Get the Dataset security users list
114
+ *DatasetApi* | [**get_dataset_twingraph_status**](docs/DatasetApi.md#get_dataset_twingraph_status) | **GET** /organizations/{organization_id}/datasets/{dataset_id}/status | Get the dataset&#39;s refresh job status
115
+ *DatasetApi* | [**get_twingraph_entities**](docs/DatasetApi.md#get_twingraph_entities) | **GET** /organizations/{organization_id}/datasets/{dataset_id}/twingraph/{type} | Get entities in a graph instance
116
+ *DatasetApi* | [**link_workspace**](docs/DatasetApi.md#link_workspace) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/link |
117
+ *DatasetApi* | [**refresh_dataset**](docs/DatasetApi.md#refresh_dataset) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/refresh | Refresh data on dataset from dataset&#39;s source
118
+ *DatasetApi* | [**remove_all_dataset_compatibility_elements**](docs/DatasetApi.md#remove_all_dataset_compatibility_elements) | **DELETE** /organizations/{organization_id}/datasets/{dataset_id}/compatibility | Remove all Dataset Compatibility elements from the Dataset specified
119
+ *DatasetApi* | [**remove_dataset_access_control**](docs/DatasetApi.md#remove_dataset_access_control) | **DELETE** /organizations/{organization_id}/datasets/{dataset_id}/security/access/{identity_id} | Remove the specified access from the given Dataset
120
+ *DatasetApi* | [**rollback_refresh**](docs/DatasetApi.md#rollback_refresh) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/refresh/rollback | Rollback the dataset after a failed refresh
121
+ *DatasetApi* | [**search_datasets**](docs/DatasetApi.md#search_datasets) | **POST** /organizations/{organization_id}/datasets/search | Search Datasets by tags
122
+ *DatasetApi* | [**set_dataset_default_security**](docs/DatasetApi.md#set_dataset_default_security) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/security/default | Set the Dataset default security
123
+ *DatasetApi* | [**twingraph_batch_query**](docs/DatasetApi.md#twingraph_batch_query) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/batch-query | Run a query on a graph instance and return the result as a zip file in async mode
124
+ *DatasetApi* | [**twingraph_batch_update**](docs/DatasetApi.md#twingraph_batch_update) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/batch | Async batch update by loading a CSV file on a graph instance
125
+ *DatasetApi* | [**twingraph_query**](docs/DatasetApi.md#twingraph_query) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/twingraph | Return the result of a query made on the graph instance as a json
126
+ *DatasetApi* | [**unlink_workspace**](docs/DatasetApi.md#unlink_workspace) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/unlink |
127
+ *DatasetApi* | [**update_dataset**](docs/DatasetApi.md#update_dataset) | **PATCH** /organizations/{organization_id}/datasets/{dataset_id} | Update a dataset
128
+ *DatasetApi* | [**update_dataset_access_control**](docs/DatasetApi.md#update_dataset_access_control) | **PATCH** /organizations/{organization_id}/datasets/{dataset_id}/security/access/{identity_id} | Update the specified access to User for a Dataset
129
+ *DatasetApi* | [**update_twingraph_entities**](docs/DatasetApi.md#update_twingraph_entities) | **PATCH** /organizations/{organization_id}/datasets/{dataset_id}/twingraph/{type} | Update entities in a graph instance
130
+ *DatasetApi* | [**upload_twingraph**](docs/DatasetApi.md#upload_twingraph) | **POST** /organizations/{organization_id}/datasets/{dataset_id} | Upload data from zip file to dataset&#39;s twingraph
131
+ *OrganizationApi* | [**add_organization_access_control**](docs/OrganizationApi.md#add_organization_access_control) | **POST** /organizations/{organization_id}/security/access | Add a control access to the Organization
132
+ *OrganizationApi* | [**find_all_organizations**](docs/OrganizationApi.md#find_all_organizations) | **GET** /organizations | List all Organizations
133
+ *OrganizationApi* | [**find_organization_by_id**](docs/OrganizationApi.md#find_organization_by_id) | **GET** /organizations/{organization_id} | Get the details of an Organization
134
+ *OrganizationApi* | [**get_all_permissions**](docs/OrganizationApi.md#get_all_permissions) | **GET** /organizations/permissions | Get all permissions per components
135
+ *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
136
+ *OrganizationApi* | [**get_organization_permissions**](docs/OrganizationApi.md#get_organization_permissions) | **GET** /organizations/{organization_id}/permissions/{role} | Get the Organization permissions by given role
137
+ *OrganizationApi* | [**get_organization_security**](docs/OrganizationApi.md#get_organization_security) | **GET** /organizations/{organization_id}/security | Get the Organization security information
138
+ *OrganizationApi* | [**get_organization_security_users**](docs/OrganizationApi.md#get_organization_security_users) | **GET** /organizations/{organization_id}/security/users | Get the Organization security users list
139
+ *OrganizationApi* | [**register_organization**](docs/OrganizationApi.md#register_organization) | **POST** /organizations | Register a new organization
140
+ *OrganizationApi* | [**remove_organization_access_control**](docs/OrganizationApi.md#remove_organization_access_control) | **DELETE** /organizations/{organization_id}/security/access/{identity_id} | Remove the specified access from the given Organization
141
+ *OrganizationApi* | [**set_organization_default_security**](docs/OrganizationApi.md#set_organization_default_security) | **POST** /organizations/{organization_id}/security/default | Set the Organization default security
142
+ *OrganizationApi* | [**unregister_organization**](docs/OrganizationApi.md#unregister_organization) | **DELETE** /organizations/{organization_id} | Unregister an organization
143
+ *OrganizationApi* | [**update_organization**](docs/OrganizationApi.md#update_organization) | **PATCH** /organizations/{organization_id} | Update an Organization
144
+ *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
145
+ *RunApi* | [**delete_run**](docs/RunApi.md#delete_run) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id} | Delete a run
146
+ *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
147
+ *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
148
+ *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
149
+ *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
150
+ *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
151
+ *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
152
+ *RunnerApi* | [**add_runner_access_control**](docs/RunnerApi.md#add_runner_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access | Add a control access to the Runner
153
+ *RunnerApi* | [**create_runner**](docs/RunnerApi.md#create_runner) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners | Create a new Runner
154
+ *RunnerApi* | [**delete_runner**](docs/RunnerApi.md#delete_runner) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Delete a runner
155
+ *RunnerApi* | [**get_runner**](docs/RunnerApi.md#get_runner) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Get the details of an runner
156
+ *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
157
+ *RunnerApi* | [**get_runner_permissions**](docs/RunnerApi.md#get_runner_permissions) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/permissions/{role} | Get the Runner permission by given role
158
+ *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
159
+ *RunnerApi* | [**get_runner_security_users**](docs/RunnerApi.md#get_runner_security_users) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/users | Get the Runner security users list
160
+ *RunnerApi* | [**list_runners**](docs/RunnerApi.md#list_runners) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners | List all Runners
161
+ *RunnerApi* | [**remove_runner_access_control**](docs/RunnerApi.md#remove_runner_access_control) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access/{identity_id} | Remove the specified access from the given Organization Runner
162
+ *RunnerApi* | [**set_runner_default_security**](docs/RunnerApi.md#set_runner_default_security) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/default | Set the Runner default security
163
+ *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
164
+ *RunnerApi* | [**stop_run**](docs/RunnerApi.md#stop_run) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/stop | Stop the last run
165
+ *RunnerApi* | [**update_runner**](docs/RunnerApi.md#update_runner) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Update a runner
166
+ *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
167
+ *SolutionApi* | [**add_or_replace_parameter_groups**](docs/SolutionApi.md#add_or_replace_parameter_groups) | **POST** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups | Add Parameter Groups. Any item with the same ID will be overwritten
168
+ *SolutionApi* | [**add_or_replace_parameters**](docs/SolutionApi.md#add_or_replace_parameters) | **POST** /organizations/{organization_id}/solutions/{solution_id}/parameters | Add Parameters. Any item with the same ID will be overwritten
169
+ *SolutionApi* | [**add_or_replace_run_templates**](docs/SolutionApi.md#add_or_replace_run_templates) | **POST** /organizations/{organization_id}/solutions/{solution_id}/runTemplates | Add Run Templates. Any item with the same ID will be overwritten
170
+ *SolutionApi* | [**add_solution_access_control**](docs/SolutionApi.md#add_solution_access_control) | **POST** /organizations/{organization_id}/solutions/{solution_id}/security/access | Add a control access to the Solution
171
+ *SolutionApi* | [**create_solution**](docs/SolutionApi.md#create_solution) | **POST** /organizations/{organization_id}/solutions | Register a new solution
172
+ *SolutionApi* | [**delete_solution**](docs/SolutionApi.md#delete_solution) | **DELETE** /organizations/{organization_id}/solutions/{solution_id} | Delete a solution
173
+ *SolutionApi* | [**delete_solution_run_template**](docs/SolutionApi.md#delete_solution_run_template) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/runTemplates/{run_template_id} | Remove the specified Solution Run Template
174
+ *SolutionApi* | [**find_all_solutions**](docs/SolutionApi.md#find_all_solutions) | **GET** /organizations/{organization_id}/solutions | List all Solutions
175
+ *SolutionApi* | [**find_solution_by_id**](docs/SolutionApi.md#find_solution_by_id) | **GET** /organizations/{organization_id}/solutions/{solution_id} | Get the details of a solution
176
+ *SolutionApi* | [**get_solution_access_control**](docs/SolutionApi.md#get_solution_access_control) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id} | Get a control access for the Solution
177
+ *SolutionApi* | [**get_solution_security**](docs/SolutionApi.md#get_solution_security) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security | Get the Solution security information
178
+ *SolutionApi* | [**get_solution_security_users**](docs/SolutionApi.md#get_solution_security_users) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security/users | Get the Solution security users list
179
+ *SolutionApi* | [**remove_all_run_templates**](docs/SolutionApi.md#remove_all_run_templates) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/runTemplates | Remove all Run Templates from the Solution specified
180
+ *SolutionApi* | [**remove_all_solution_parameter_groups**](docs/SolutionApi.md#remove_all_solution_parameter_groups) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups | Remove all Parameter Groups from the Solution specified
181
+ *SolutionApi* | [**remove_all_solution_parameters**](docs/SolutionApi.md#remove_all_solution_parameters) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/parameters | Remove all Parameters from the Solution specified
182
+ *SolutionApi* | [**remove_solution_access_control**](docs/SolutionApi.md#remove_solution_access_control) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id} | Remove the specified access from the given Organization Solution
183
+ *SolutionApi* | [**set_solution_default_security**](docs/SolutionApi.md#set_solution_default_security) | **POST** /organizations/{organization_id}/solutions/{solution_id}/security/default | Set the Solution default security
184
+ *SolutionApi* | [**update_solution**](docs/SolutionApi.md#update_solution) | **PATCH** /organizations/{organization_id}/solutions/{solution_id} | Update a solution
185
+ *SolutionApi* | [**update_solution_access_control**](docs/SolutionApi.md#update_solution_access_control) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id} | Update the specified access to User for a Solution
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 the specified Solution Run Template
187
+ *WorkspaceApi* | [**add_workspace_access_control**](docs/WorkspaceApi.md#add_workspace_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/security/access | Add a control access to the Workspace
188
+ *WorkspaceApi* | [**create_workspace**](docs/WorkspaceApi.md#create_workspace) | **POST** /organizations/{organization_id}/workspaces | Create a new workspace
189
+ *WorkspaceApi* | [**delete_all_workspace_files**](docs/WorkspaceApi.md#delete_all_workspace_files) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/files | Delete all Workspace files
190
+ *WorkspaceApi* | [**delete_workspace**](docs/WorkspaceApi.md#delete_workspace) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id} | Delete a workspace
191
+ *WorkspaceApi* | [**delete_workspace_file**](docs/WorkspaceApi.md#delete_workspace_file) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/files/delete | Delete a workspace file
192
+ *WorkspaceApi* | [**download_workspace_file**](docs/WorkspaceApi.md#download_workspace_file) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/files/download | Download the Workspace File specified
193
+ *WorkspaceApi* | [**find_all_workspace_files**](docs/WorkspaceApi.md#find_all_workspace_files) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/files | List all Workspace files
194
+ *WorkspaceApi* | [**find_all_workspaces**](docs/WorkspaceApi.md#find_all_workspaces) | **GET** /organizations/{organization_id}/workspaces | List all Workspaces
195
+ *WorkspaceApi* | [**find_workspace_by_id**](docs/WorkspaceApi.md#find_workspace_by_id) | **GET** /organizations/{organization_id}/workspaces/{workspace_id} | Get the details of an workspace
196
+ *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
197
+ *WorkspaceApi* | [**get_workspace_permissions**](docs/WorkspaceApi.md#get_workspace_permissions) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/permissions/{role} | Get the Workspace permission by given role
198
+ *WorkspaceApi* | [**get_workspace_security**](docs/WorkspaceApi.md#get_workspace_security) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/security | Get the Workspace security information
199
+ *WorkspaceApi* | [**get_workspace_security_users**](docs/WorkspaceApi.md#get_workspace_security_users) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/security/users | Get the Workspace security users list
200
+ *WorkspaceApi* | [**link_dataset**](docs/WorkspaceApi.md#link_dataset) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/link |
201
+ *WorkspaceApi* | [**remove_workspace_access_control**](docs/WorkspaceApi.md#remove_workspace_access_control) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/security/access/{identity_id} | Remove the specified access from the given Organization Workspace
202
+ *WorkspaceApi* | [**set_workspace_default_security**](docs/WorkspaceApi.md#set_workspace_default_security) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/security/default | Set the Workspace default security
203
+ *WorkspaceApi* | [**unlink_dataset**](docs/WorkspaceApi.md#unlink_dataset) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/unlink |
204
+ *WorkspaceApi* | [**update_workspace**](docs/WorkspaceApi.md#update_workspace) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id} | Update a workspace
205
+ *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
206
+ *WorkspaceApi* | [**upload_workspace_file**](docs/WorkspaceApi.md#upload_workspace_file) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/files | Upload a file for the Workspace
207
+
208
+
209
+ ## Documentation For Models
210
+
211
+ - [ComponentRolePermissions](docs/ComponentRolePermissions.md)
212
+ - [Connector](docs/Connector.md)
213
+ - [ConnectorParameter](docs/ConnectorParameter.md)
214
+ - [ConnectorParameterGroup](docs/ConnectorParameterGroup.md)
215
+ - [ContainerResourceSizeInfo](docs/ContainerResourceSizeInfo.md)
216
+ - [ContainerResourceSizing](docs/ContainerResourceSizing.md)
217
+ - [CreatedRun](docs/CreatedRun.md)
218
+ - [Dataset](docs/Dataset.md)
219
+ - [DatasetAccessControl](docs/DatasetAccessControl.md)
220
+ - [DatasetCompatibility](docs/DatasetCompatibility.md)
221
+ - [DatasetConnector](docs/DatasetConnector.md)
222
+ - [DatasetCopyParameters](docs/DatasetCopyParameters.md)
223
+ - [DatasetRole](docs/DatasetRole.md)
224
+ - [DatasetSearch](docs/DatasetSearch.md)
225
+ - [DatasetSecurity](docs/DatasetSecurity.md)
226
+ - [DatasetSourceType](docs/DatasetSourceType.md)
227
+ - [DatasetTwinGraphHash](docs/DatasetTwinGraphHash.md)
228
+ - [DatasetTwinGraphInfo](docs/DatasetTwinGraphInfo.md)
229
+ - [DatasetTwinGraphQuery](docs/DatasetTwinGraphQuery.md)
230
+ - [DeleteHistoricalData](docs/DeleteHistoricalData.md)
231
+ - [FileUploadMetadata](docs/FileUploadMetadata.md)
232
+ - [FileUploadValidation](docs/FileUploadValidation.md)
233
+ - [GraphProperties](docs/GraphProperties.md)
234
+ - [IngestionStatusEnum](docs/IngestionStatusEnum.md)
235
+ - [IoTypesEnum](docs/IoTypesEnum.md)
236
+ - [Organization](docs/Organization.md)
237
+ - [OrganizationAccessControl](docs/OrganizationAccessControl.md)
238
+ - [OrganizationRole](docs/OrganizationRole.md)
239
+ - [OrganizationSecurity](docs/OrganizationSecurity.md)
240
+ - [QueryResult](docs/QueryResult.md)
241
+ - [ResourceSizeInfo](docs/ResourceSizeInfo.md)
242
+ - [Run](docs/Run.md)
243
+ - [RunContainer](docs/RunContainer.md)
244
+ - [RunData](docs/RunData.md)
245
+ - [RunDataQuery](docs/RunDataQuery.md)
246
+ - [RunLogs](docs/RunLogs.md)
247
+ - [RunLogsEntry](docs/RunLogsEntry.md)
248
+ - [RunResourceRequested](docs/RunResourceRequested.md)
249
+ - [RunState](docs/RunState.md)
250
+ - [RunStatus](docs/RunStatus.md)
251
+ - [RunStatusNode](docs/RunStatusNode.md)
252
+ - [RunTemplate](docs/RunTemplate.md)
253
+ - [RunTemplateOrchestrator](docs/RunTemplateOrchestrator.md)
254
+ - [RunTemplateParameter](docs/RunTemplateParameter.md)
255
+ - [RunTemplateParameterGroup](docs/RunTemplateParameterGroup.md)
256
+ - [RunTemplateParameterValue](docs/RunTemplateParameterValue.md)
257
+ - [RunTemplateResourceSizing](docs/RunTemplateResourceSizing.md)
258
+ - [RunTemplateStepSource](docs/RunTemplateStepSource.md)
259
+ - [Runner](docs/Runner.md)
260
+ - [RunnerAccessControl](docs/RunnerAccessControl.md)
261
+ - [RunnerResourceSizing](docs/RunnerResourceSizing.md)
262
+ - [RunnerRole](docs/RunnerRole.md)
263
+ - [RunnerRunTemplateParameterValue](docs/RunnerRunTemplateParameterValue.md)
264
+ - [RunnerSecurity](docs/RunnerSecurity.md)
265
+ - [RunnerValidationStatus](docs/RunnerValidationStatus.md)
266
+ - [SendRunDataRequest](docs/SendRunDataRequest.md)
267
+ - [Solution](docs/Solution.md)
268
+ - [SolutionAccessControl](docs/SolutionAccessControl.md)
269
+ - [SolutionRole](docs/SolutionRole.md)
270
+ - [SolutionSecurity](docs/SolutionSecurity.md)
271
+ - [SourceInfo](docs/SourceInfo.md)
272
+ - [SubDatasetGraphQuery](docs/SubDatasetGraphQuery.md)
273
+ - [TwinGraphBatchResult](docs/TwinGraphBatchResult.md)
274
+ - [TwincacheStatusEnum](docs/TwincacheStatusEnum.md)
275
+ - [Workspace](docs/Workspace.md)
276
+ - [WorkspaceAccessControl](docs/WorkspaceAccessControl.md)
277
+ - [WorkspaceFile](docs/WorkspaceFile.md)
278
+ - [WorkspaceRole](docs/WorkspaceRole.md)
279
+ - [WorkspaceSecurity](docs/WorkspaceSecurity.md)
280
+ - [WorkspaceSolution](docs/WorkspaceSolution.md)
281
+ - [WorkspaceWebApp](docs/WorkspaceWebApp.md)
282
+
283
+
284
+ <a id="documentation-for-authorization"></a>
285
+ ## Documentation For Authorization
286
+
287
+
288
+ Authentication schemes defined for the API:
289
+ <a id="oAuth2AuthCode"></a>
290
+ ### oAuth2AuthCode
291
+
292
+ - **Type**: OAuth
293
+ - **Flow**: accessCode
294
+ - **Authorization URL**: https://example.com/authorize
295
+ - **Scopes**: N/A
296
+
297
+
298
+ ## Author
299
+
300
+ platform@cosmotech.com
301
+
302
+
@@ -0,0 +1,111 @@
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: 4.0.0-onprem.8
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.connector_api import ConnectorApi
22
+ from cosmotech_api.api.dataset_api import DatasetApi
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.component_role_permissions import ComponentRolePermissions
42
+ from cosmotech_api.models.connector import Connector
43
+ from cosmotech_api.models.connector_parameter import ConnectorParameter
44
+ from cosmotech_api.models.connector_parameter_group import ConnectorParameterGroup
45
+ from cosmotech_api.models.container_resource_size_info import ContainerResourceSizeInfo
46
+ from cosmotech_api.models.container_resource_sizing import ContainerResourceSizing
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_compatibility import DatasetCompatibility
51
+ from cosmotech_api.models.dataset_connector import DatasetConnector
52
+ from cosmotech_api.models.dataset_copy_parameters import DatasetCopyParameters
53
+ from cosmotech_api.models.dataset_role import DatasetRole
54
+ from cosmotech_api.models.dataset_search import DatasetSearch
55
+ from cosmotech_api.models.dataset_security import DatasetSecurity
56
+ from cosmotech_api.models.dataset_source_type import DatasetSourceType
57
+ from cosmotech_api.models.dataset_twin_graph_hash import DatasetTwinGraphHash
58
+ from cosmotech_api.models.dataset_twin_graph_info import DatasetTwinGraphInfo
59
+ from cosmotech_api.models.dataset_twin_graph_query import DatasetTwinGraphQuery
60
+ from cosmotech_api.models.delete_historical_data import DeleteHistoricalData
61
+ from cosmotech_api.models.file_upload_metadata import FileUploadMetadata
62
+ from cosmotech_api.models.file_upload_validation import FileUploadValidation
63
+ from cosmotech_api.models.graph_properties import GraphProperties
64
+ from cosmotech_api.models.ingestion_status_enum import IngestionStatusEnum
65
+ from cosmotech_api.models.io_types_enum import IoTypesEnum
66
+ from cosmotech_api.models.organization import Organization
67
+ from cosmotech_api.models.organization_access_control import OrganizationAccessControl
68
+ from cosmotech_api.models.organization_role import OrganizationRole
69
+ from cosmotech_api.models.organization_security import OrganizationSecurity
70
+ from cosmotech_api.models.query_result import QueryResult
71
+ from cosmotech_api.models.resource_size_info import ResourceSizeInfo
72
+ from cosmotech_api.models.run import Run
73
+ from cosmotech_api.models.run_container import RunContainer
74
+ from cosmotech_api.models.run_data import RunData
75
+ from cosmotech_api.models.run_data_query import RunDataQuery
76
+ from cosmotech_api.models.run_logs import RunLogs
77
+ from cosmotech_api.models.run_logs_entry import RunLogsEntry
78
+ from cosmotech_api.models.run_resource_requested import RunResourceRequested
79
+ from cosmotech_api.models.run_state import RunState
80
+ from cosmotech_api.models.run_status import RunStatus
81
+ from cosmotech_api.models.run_status_node import RunStatusNode
82
+ from cosmotech_api.models.run_template import RunTemplate
83
+ from cosmotech_api.models.run_template_orchestrator import RunTemplateOrchestrator
84
+ from cosmotech_api.models.run_template_parameter import RunTemplateParameter
85
+ from cosmotech_api.models.run_template_parameter_group import RunTemplateParameterGroup
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_step_source import RunTemplateStepSource
89
+ from cosmotech_api.models.runner import Runner
90
+ from cosmotech_api.models.runner_access_control import RunnerAccessControl
91
+ from cosmotech_api.models.runner_resource_sizing import RunnerResourceSizing
92
+ from cosmotech_api.models.runner_role import RunnerRole
93
+ from cosmotech_api.models.runner_run_template_parameter_value import RunnerRunTemplateParameterValue
94
+ from cosmotech_api.models.runner_security import RunnerSecurity
95
+ from cosmotech_api.models.runner_validation_status import RunnerValidationStatus
96
+ from cosmotech_api.models.send_run_data_request import SendRunDataRequest
97
+ from cosmotech_api.models.solution import Solution
98
+ from cosmotech_api.models.solution_access_control import SolutionAccessControl
99
+ from cosmotech_api.models.solution_role import SolutionRole
100
+ from cosmotech_api.models.solution_security import SolutionSecurity
101
+ from cosmotech_api.models.source_info import SourceInfo
102
+ from cosmotech_api.models.sub_dataset_graph_query import SubDatasetGraphQuery
103
+ from cosmotech_api.models.twin_graph_batch_result import TwinGraphBatchResult
104
+ from cosmotech_api.models.twincache_status_enum import TwincacheStatusEnum
105
+ from cosmotech_api.models.workspace import Workspace
106
+ from cosmotech_api.models.workspace_access_control import WorkspaceAccessControl
107
+ from cosmotech_api.models.workspace_file import WorkspaceFile
108
+ from cosmotech_api.models.workspace_role import WorkspaceRole
109
+ from cosmotech_api.models.workspace_security import WorkspaceSecurity
110
+ from cosmotech_api.models.workspace_solution import WorkspaceSolution
111
+ 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.connector_api import ConnectorApi
5
+ from cosmotech_api.api.dataset_api import DatasetApi
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
+