cosmotech-api 3.2.6.dev0__tar.gz → 3.2.6.dev2__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 (452) hide show
  1. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/PKG-INFO +1 -1
  2. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/README.md +107 -10
  3. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/__init__.py +45 -3
  4. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api/__init__.py +3 -0
  5. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api/connector_api.py +262 -7
  6. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api/dataset_api.py +19 -19
  7. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api/organization_api.py +869 -8
  8. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api/run_api.py +7 -7
  9. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api/runner_api.py +12 -13
  10. cosmotech_api-3.2.6.dev2/cosmotech_api/api/scenario_api.py +6688 -0
  11. cosmotech_api-3.2.6.dev2/cosmotech_api/api/scenariorun_api.py +4092 -0
  12. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api/scenariorunresult_api.py +1 -1
  13. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api/solution_api.py +1045 -394
  14. cosmotech_api-3.2.6.dev2/cosmotech_api/api/twingraph_api.py +4201 -0
  15. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api/validator_api.py +1 -1
  16. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api/workspace_api.py +315 -12
  17. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api_client.py +1 -1
  18. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/configuration.py +13 -5
  19. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/exceptions.py +1 -1
  20. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/component_role_permissions.py +1 -1
  21. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/connector.py +1 -1
  22. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/connector_parameter.py +1 -1
  23. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/connector_parameter_group.py +1 -1
  24. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/container_resource_size_info.py +1 -1
  25. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/container_resource_sizing.py +1 -1
  26. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/dataset.py +1 -1
  27. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/dataset_access_control.py +1 -1
  28. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/dataset_compatibility.py +1 -1
  29. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/dataset_connector.py +1 -1
  30. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/dataset_copy_parameters.py +1 -1
  31. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/dataset_role.py +1 -1
  32. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/dataset_search.py +1 -1
  33. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/dataset_security.py +1 -1
  34. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/dataset_source_type.py +1 -1
  35. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/dataset_twin_graph_hash.py +1 -1
  36. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/dataset_twin_graph_info.py +1 -1
  37. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/dataset_twin_graph_query.py +1 -1
  38. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/delete_historical_data.py +1 -1
  39. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/file_upload_metadata.py +1 -1
  40. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/file_upload_validation.py +1 -1
  41. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/graph_properties.py +1 -1
  42. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/organization.py +1 -1
  43. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/organization_access_control.py +1 -1
  44. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/organization_role.py +1 -1
  45. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/organization_security.py +1 -1
  46. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/organization_service.py +1 -1
  47. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/organization_services.py +1 -1
  48. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/resource_size_info.py +1 -1
  49. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run.py +1 -1
  50. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_container.py +1 -1
  51. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_container_artifact.py +1 -1
  52. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_container_logs.py +1 -1
  53. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_logs.py +1 -1
  54. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_resource_requested.py +1 -1
  55. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_search.py +1 -1
  56. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_start_containers.py +1 -1
  57. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_state.py +1 -1
  58. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_status.py +1 -1
  59. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_status_node.py +1 -1
  60. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_template.py +1 -1
  61. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_template_handler_id.py +1 -1
  62. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_template_orchestrator.py +1 -1
  63. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_template_parameter.py +1 -1
  64. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_template_parameter_group.py +1 -1
  65. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_template_parameter_value.py +1 -1
  66. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_template_resource_sizing.py +1 -1
  67. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/run_template_step_source.py +1 -1
  68. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner.py +5 -21
  69. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner_access_control.py +1 -1
  70. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner_changed_parameter_value.py +1 -1
  71. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner_comparison_result.py +1 -1
  72. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner_data_download_info.py +1 -11
  73. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner_data_download_job.py +1 -1
  74. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner_job_state.py +1 -1
  75. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner_last_run.py +1 -1
  76. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner_resource_sizing.py +1 -1
  77. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner_role.py +1 -1
  78. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner_run_template_parameter_value.py +1 -1
  79. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner_security.py +1 -1
  80. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/runner_validation_status.py +1 -1
  81. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario.py +1 -1
  82. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_access_control.py +1 -1
  83. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_changed_parameter_value.py +1 -1
  84. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_comparison_result.py +1 -1
  85. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_data_download_info.py +1 -1
  86. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_data_download_job.py +1 -1
  87. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_job_state.py +1 -1
  88. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_last_run.py +1 -1
  89. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_resource_sizing.py +1 -1
  90. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_role.py +1 -1
  91. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run.py +1 -1
  92. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run_container.py +1 -1
  93. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run_container_artifact.py +1 -1
  94. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run_container_logs.py +1 -1
  95. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run_logs.py +1 -1
  96. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run_resource_requested.py +1 -1
  97. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run_result.py +1 -1
  98. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run_search.py +1 -1
  99. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run_start_containers.py +1 -1
  100. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run_state.py +1 -1
  101. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run_status.py +1 -1
  102. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run_status_node.py +1 -1
  103. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_run_template_parameter_value.py +1 -1
  104. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_security.py +1 -1
  105. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_validation_status.py +1 -1
  106. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/solution.py +1 -1
  107. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/solution_access_control.py +1 -1
  108. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/solution_role.py +1 -1
  109. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/solution_security.py +1 -1
  110. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/source_info.py +1 -1
  111. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/sub_dataset_graph_query.py +1 -1
  112. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/translated_labels.py +1 -1
  113. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/twin_graph_batch_result.py +1 -1
  114. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/twin_graph_hash.py +1 -1
  115. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/twin_graph_query.py +1 -1
  116. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/validator.py +1 -1
  117. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/validator_run.py +1 -1
  118. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/workspace.py +1 -1
  119. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/workspace_access_control.py +1 -1
  120. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/workspace_file.py +1 -1
  121. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/workspace_role.py +1 -1
  122. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/workspace_secret.py +1 -1
  123. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/workspace_security.py +1 -1
  124. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/workspace_solution.py +1 -1
  125. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/workspace_web_app.py +1 -1
  126. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model_utils.py +1 -1
  127. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/__init__.py +42 -3
  128. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/component_role_permissions.py +1 -1
  129. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/connector.py +7 -3
  130. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/connector_parameter.py +1 -1
  131. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/connector_parameter_group.py +1 -1
  132. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/container_resource_size_info.py +1 -1
  133. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/container_resource_sizing.py +1 -1
  134. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/dataset.py +1 -1
  135. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/dataset_access_control.py +1 -1
  136. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/dataset_compatibility.py +1 -1
  137. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/dataset_connector.py +1 -1
  138. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/dataset_copy_parameters.py +1 -1
  139. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/dataset_role.py +1 -1
  140. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/dataset_search.py +1 -1
  141. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/dataset_security.py +1 -1
  142. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/dataset_source_type.py +1 -1
  143. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/dataset_twin_graph_hash.py +1 -1
  144. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/dataset_twin_graph_info.py +1 -1
  145. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/dataset_twin_graph_query.py +1 -1
  146. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/delete_historical_data.py +1 -1
  147. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/file_upload_metadata.py +1 -1
  148. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/file_upload_validation.py +1 -1
  149. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/graph_properties.py +1 -1
  150. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/ingestion_status_enum.py +1 -1
  151. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/io_types_enum.py +1 -1
  152. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/organization.py +8 -2
  153. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/organization_access_control.py +1 -1
  154. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/organization_role.py +1 -1
  155. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/organization_security.py +1 -1
  156. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/organization_service.py +1 -1
  157. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/organization_services.py +1 -1
  158. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/query_result.py +1 -1
  159. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/resource_size_info.py +1 -1
  160. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run.py +1 -1
  161. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_container.py +13 -3
  162. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_container_artifact.py +1 -1
  163. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_container_logs.py +1 -1
  164. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_data.py +1 -1
  165. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_data_query.py +1 -1
  166. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_logs.py +21 -16
  167. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_resource_requested.py +1 -1
  168. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_search.py +1 -1
  169. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_search_state.py +1 -1
  170. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_start_containers.py +1 -1
  171. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_state.py +1 -1
  172. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_status.py +1 -1
  173. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_status_node.py +1 -1
  174. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_template.py +1 -1
  175. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_template_handler_id.py +1 -1
  176. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_template_orchestrator.py +1 -1
  177. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_template_parameter.py +1 -1
  178. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_template_parameter_group.py +1 -1
  179. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_template_parameter_value.py +1 -1
  180. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_template_resource_sizing.py +1 -1
  181. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/run_template_step_source.py +1 -1
  182. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner.py +2 -2
  183. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_access_control.py +1 -1
  184. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_changed_parameter_value.py +1 -1
  185. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_comparison_result.py +1 -1
  186. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_data_download_info.py +1 -1
  187. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_data_download_job.py +1 -1
  188. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_resource_sizing.py +1 -1
  189. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_role.py +1 -1
  190. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_run_template_parameter_value.py +1 -1
  191. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_security.py +1 -1
  192. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_validation_status.py +1 -1
  193. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario.py +1 -1
  194. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_access_control.py +1 -1
  195. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_changed_parameter_value.py +1 -1
  196. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_comparison_result.py +1 -1
  197. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_data_download_info.py +1 -1
  198. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_data_download_job.py +1 -1
  199. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_job_state.py +1 -1
  200. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_last_run.py +1 -1
  201. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_resource_sizing.py +1 -1
  202. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_role.py +1 -1
  203. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run.py +1 -1
  204. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_container.py +1 -1
  205. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_container_artifact.py +1 -1
  206. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_container_logs.py +1 -1
  207. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_logs.py +1 -1
  208. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_resource_requested.py +1 -1
  209. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_search.py +1 -1
  210. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_search_state.py +1 -1
  211. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_start_containers.py +1 -1
  212. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_state.py +1 -1
  213. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_status.py +1 -1
  214. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_status_node.py +1 -1
  215. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_template_parameter_value.py +1 -1
  216. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_security.py +1 -1
  217. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_validation_status.py +1 -1
  218. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/send_run_data_request.py +1 -1
  219. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/solution.py +2 -2
  220. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/solution_access_control.py +1 -1
  221. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/solution_role.py +1 -1
  222. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/solution_security.py +1 -1
  223. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/source_info.py +1 -1
  224. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/sub_dataset_graph_query.py +1 -1
  225. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/twin_graph_batch_result.py +1 -1
  226. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/twin_graph_hash.py +1 -1
  227. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/twin_graph_query.py +1 -1
  228. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/twincache_status_enum.py +1 -1
  229. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/validator.py +1 -1
  230. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/workspace.py +2 -2
  231. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/workspace_access_control.py +1 -1
  232. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/workspace_file.py +1 -1
  233. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/workspace_role.py +1 -1
  234. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/workspace_secret.py +5 -7
  235. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/workspace_security.py +1 -1
  236. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/workspace_solution.py +1 -1
  237. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/workspace_web_app.py +1 -1
  238. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/rest.py +1 -1
  239. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api.egg-info/PKG-INFO +1 -1
  240. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api.egg-info/SOURCES.txt +0 -4
  241. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/setup.py +2 -2
  242. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_component_role_permissions.py +1 -1
  243. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_connector.py +3 -1
  244. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_connector_api.py +8 -1
  245. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_connector_parameter.py +1 -1
  246. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_connector_parameter_group.py +1 -1
  247. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_container_resource_size_info.py +1 -1
  248. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_container_resource_sizing.py +1 -1
  249. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset.py +1 -1
  250. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset_access_control.py +1 -1
  251. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset_api.py +1 -1
  252. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset_compatibility.py +1 -1
  253. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset_connector.py +1 -1
  254. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset_copy_parameters.py +1 -1
  255. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset_role.py +1 -1
  256. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset_search.py +1 -1
  257. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset_security.py +1 -1
  258. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset_source_type.py +1 -1
  259. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset_twin_graph_hash.py +1 -1
  260. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset_twin_graph_info.py +1 -1
  261. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_dataset_twin_graph_query.py +1 -1
  262. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_delete_historical_data.py +1 -1
  263. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_file_upload_metadata.py +1 -1
  264. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_file_upload_validation.py +1 -1
  265. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_graph_properties.py +1 -1
  266. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_ingestion_status_enum.py +1 -1
  267. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_io_types_enum.py +1 -1
  268. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_organization.py +14 -1
  269. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_organization_access_control.py +1 -1
  270. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_organization_api.py +22 -1
  271. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_organization_role.py +1 -1
  272. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_organization_security.py +1 -1
  273. cosmotech_api-3.2.6.dev2/test/test_organization_service.py +56 -0
  274. cosmotech_api-3.2.6.dev2/test/test_organization_services.py +64 -0
  275. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_query_result.py +1 -1
  276. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_resource_size_info.py +1 -1
  277. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run.py +7 -2
  278. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_api.py +1 -1
  279. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_container.py +7 -2
  280. cosmotech_api-3.2.6.dev2/test/test_run_container_artifact.py +53 -0
  281. cosmotech_api-3.2.6.dev2/test/test_run_container_logs.py +57 -0
  282. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_data.py +1 -1
  283. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_data_query.py +1 -1
  284. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_logs.py +10 -10
  285. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_resource_requested.py +1 -1
  286. cosmotech_api-3.2.6.dev2/test/test_run_search.py +59 -0
  287. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_search_state.py +1 -1
  288. cosmotech_api-3.2.6.dev2/test/test_run_start_containers.py +124 -0
  289. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_state.py +1 -1
  290. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_status.py +1 -1
  291. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_status_node.py +1 -1
  292. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_template.py +1 -1
  293. cosmotech_api-3.2.6.dev2/test/test_run_template_handler_id.py +34 -0
  294. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_template_orchestrator.py +1 -1
  295. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_template_parameter.py +1 -1
  296. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_template_parameter_group.py +1 -1
  297. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_template_parameter_value.py +1 -1
  298. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_template_resource_sizing.py +1 -1
  299. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_run_template_step_source.py +1 -1
  300. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_runner.py +1 -4
  301. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_runner_access_control.py +1 -1
  302. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_runner_api.py +1 -1
  303. cosmotech_api-3.2.6.dev2/test/test_runner_changed_parameter_value.py +55 -0
  304. cosmotech_api-3.2.6.dev2/test/test_runner_comparison_result.py +60 -0
  305. cosmotech_api-3.2.6.dev2/test/test_runner_data_download_info.py +52 -0
  306. cosmotech_api-3.2.6.dev2/test/test_runner_data_download_job.py +52 -0
  307. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_runner_job_state.py +1 -1
  308. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_runner_last_run.py +1 -1
  309. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_runner_resource_sizing.py +1 -1
  310. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_runner_role.py +1 -1
  311. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_runner_run_template_parameter_value.py +1 -1
  312. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_runner_security.py +1 -1
  313. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_runner_validation_status.py +1 -1
  314. cosmotech_api-3.2.6.dev2/test/test_scenario.py +110 -0
  315. cosmotech_api-3.2.6.dev2/test/test_scenario_access_control.py +55 -0
  316. cosmotech_api-3.2.6.dev2/test/test_scenario_api.py +186 -0
  317. cosmotech_api-3.2.6.dev2/test/test_scenario_changed_parameter_value.py +55 -0
  318. cosmotech_api-3.2.6.dev2/test/test_scenario_comparison_result.py +60 -0
  319. cosmotech_api-3.2.6.dev2/test/test_scenario_data_download_info.py +53 -0
  320. cosmotech_api-3.2.6.dev2/test/test_scenario_data_download_job.py +52 -0
  321. cosmotech_api-3.2.6.dev2/test/test_scenario_job_state.py +34 -0
  322. cosmotech_api-3.2.6.dev2/test/test_scenario_last_run.py +55 -0
  323. cosmotech_api-3.2.6.dev2/test/test_scenario_resource_sizing.py +63 -0
  324. cosmotech_api-3.2.6.dev2/test/test_scenario_role.py +53 -0
  325. cosmotech_api-3.2.6.dev2/test/test_scenario_run.py +113 -0
  326. cosmotech_api-3.2.6.dev2/test/test_scenario_run_container.py +83 -0
  327. cosmotech_api-3.2.6.dev2/test/test_scenario_run_container_artifact.py +53 -0
  328. cosmotech_api-3.2.6.dev2/test/test_scenario_run_container_logs.py +57 -0
  329. cosmotech_api-3.2.6.dev2/test/test_scenario_run_logs.py +61 -0
  330. cosmotech_api-3.2.6.dev2/test/test_scenario_run_resource_requested.py +53 -0
  331. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_scenario_run_result.py +1 -1
  332. cosmotech_api-3.2.6.dev2/test/test_scenario_run_search.py +59 -0
  333. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_scenario_run_search_state.py +1 -1
  334. cosmotech_api-3.2.6.dev2/test/test_scenario_run_start_containers.py +124 -0
  335. cosmotech_api-3.2.6.dev2/test/test_scenario_run_state.py +34 -0
  336. cosmotech_api-3.2.6.dev2/test/test_scenario_run_status.py +81 -0
  337. cosmotech_api-3.2.6.dev2/test/test_scenario_run_status_node.py +67 -0
  338. cosmotech_api-3.2.6.dev2/test/test_scenario_run_template_parameter_value.py +57 -0
  339. cosmotech_api-3.2.6.dev2/test/test_scenario_security.py +63 -0
  340. cosmotech_api-3.2.6.dev2/test/test_scenario_validation_status.py +34 -0
  341. cosmotech_api-3.2.6.dev2/test/test_scenariorun_api.py +130 -0
  342. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_scenariorunresult_api.py +1 -1
  343. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_send_run_data_request.py +1 -1
  344. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_solution.py +1 -53
  345. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_solution_access_control.py +1 -1
  346. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_solution_api.py +15 -1
  347. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_solution_role.py +1 -1
  348. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_solution_security.py +1 -1
  349. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_source_info.py +1 -1
  350. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_sub_dataset_graph_query.py +1 -1
  351. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_translated_labels.py +1 -1
  352. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_twin_graph_batch_result.py +1 -1
  353. cosmotech_api-3.2.6.dev0/test/test_created_run.py → cosmotech_api-3.2.6.dev2/test/test_twin_graph_hash.py +13 -14
  354. cosmotech_api-3.2.6.dev2/test/test_twin_graph_query.py +54 -0
  355. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_twincache_status_enum.py +1 -1
  356. cosmotech_api-3.2.6.dev2/test/test_twingraph_api.py +130 -0
  357. cosmotech_api-3.2.6.dev2/test/test_validator.py +65 -0
  358. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_validator_api.py +1 -1
  359. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_validator_run.py +1 -1
  360. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_workspace.py +1 -1
  361. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_workspace_access_control.py +1 -1
  362. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_workspace_api.py +8 -1
  363. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_workspace_file.py +1 -1
  364. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_workspace_role.py +1 -1
  365. cosmotech_api-3.2.6.dev2/test/test_workspace_secret.py +52 -0
  366. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_workspace_security.py +1 -1
  367. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_workspace_solution.py +1 -1
  368. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_workspace_web_app.py +1 -1
  369. cosmotech_api-3.2.6.dev0/cosmotech_api/api/scenario_api.py +0 -3409
  370. cosmotech_api-3.2.6.dev0/cosmotech_api/api/scenariorun_api.py +0 -2045
  371. cosmotech_api-3.2.6.dev0/cosmotech_api/api/twingraph_api.py +0 -2144
  372. cosmotech_api-3.2.6.dev0/cosmotech_api/models/created_run.py +0 -88
  373. cosmotech_api-3.2.6.dev0/cosmotech_api/models/run_logs_entry.py +0 -88
  374. cosmotech_api-3.2.6.dev0/test/test_organization_service.py +0 -36
  375. cosmotech_api-3.2.6.dev0/test/test_organization_services.py +0 -38
  376. cosmotech_api-3.2.6.dev0/test/test_run_container_artifact.py +0 -36
  377. cosmotech_api-3.2.6.dev0/test/test_run_container_logs.py +0 -36
  378. cosmotech_api-3.2.6.dev0/test/test_run_logs_entry.py +0 -53
  379. cosmotech_api-3.2.6.dev0/test/test_run_search.py +0 -36
  380. cosmotech_api-3.2.6.dev0/test/test_run_start_containers.py +0 -38
  381. cosmotech_api-3.2.6.dev0/test/test_run_template_handler_id.py +0 -36
  382. cosmotech_api-3.2.6.dev0/test/test_runner_changed_parameter_value.py +0 -36
  383. cosmotech_api-3.2.6.dev0/test/test_runner_comparison_result.py +0 -38
  384. cosmotech_api-3.2.6.dev0/test/test_runner_data_download_info.py +0 -38
  385. cosmotech_api-3.2.6.dev0/test/test_runner_data_download_job.py +0 -36
  386. cosmotech_api-3.2.6.dev0/test/test_scenario.py +0 -48
  387. cosmotech_api-3.2.6.dev0/test/test_scenario_access_control.py +0 -36
  388. cosmotech_api-3.2.6.dev0/test/test_scenario_api.py +0 -183
  389. cosmotech_api-3.2.6.dev0/test/test_scenario_changed_parameter_value.py +0 -36
  390. cosmotech_api-3.2.6.dev0/test/test_scenario_comparison_result.py +0 -38
  391. cosmotech_api-3.2.6.dev0/test/test_scenario_data_download_info.py +0 -38
  392. cosmotech_api-3.2.6.dev0/test/test_scenario_data_download_job.py +0 -36
  393. cosmotech_api-3.2.6.dev0/test/test_scenario_job_state.py +0 -36
  394. cosmotech_api-3.2.6.dev0/test/test_scenario_last_run.py +0 -36
  395. cosmotech_api-3.2.6.dev0/test/test_scenario_resource_sizing.py +0 -38
  396. cosmotech_api-3.2.6.dev0/test/test_scenario_role.py +0 -36
  397. cosmotech_api-3.2.6.dev0/test/test_scenario_run.py +0 -42
  398. cosmotech_api-3.2.6.dev0/test/test_scenario_run_container.py +0 -40
  399. cosmotech_api-3.2.6.dev0/test/test_scenario_run_container_artifact.py +0 -36
  400. cosmotech_api-3.2.6.dev0/test/test_scenario_run_container_logs.py +0 -36
  401. cosmotech_api-3.2.6.dev0/test/test_scenario_run_logs.py +0 -38
  402. cosmotech_api-3.2.6.dev0/test/test_scenario_run_resource_requested.py +0 -36
  403. cosmotech_api-3.2.6.dev0/test/test_scenario_run_search.py +0 -36
  404. cosmotech_api-3.2.6.dev0/test/test_scenario_run_start_containers.py +0 -38
  405. cosmotech_api-3.2.6.dev0/test/test_scenario_run_state.py +0 -36
  406. cosmotech_api-3.2.6.dev0/test/test_scenario_run_status.py +0 -40
  407. cosmotech_api-3.2.6.dev0/test/test_scenario_run_status_node.py +0 -38
  408. cosmotech_api-3.2.6.dev0/test/test_scenario_run_template_parameter_value.py +0 -36
  409. cosmotech_api-3.2.6.dev0/test/test_scenario_security.py +0 -38
  410. cosmotech_api-3.2.6.dev0/test/test_scenario_validation_status.py +0 -36
  411. cosmotech_api-3.2.6.dev0/test/test_scenariorun_api.py +0 -127
  412. cosmotech_api-3.2.6.dev0/test/test_twin_graph_hash.py +0 -36
  413. cosmotech_api-3.2.6.dev0/test/test_twin_graph_query.py +0 -36
  414. cosmotech_api-3.2.6.dev0/test/test_twingraph_api.py +0 -127
  415. cosmotech_api-3.2.6.dev0/test/test_validator.py +0 -36
  416. cosmotech_api-3.2.6.dev0/test/test_workspace_secret.py +0 -36
  417. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/LICENSE +0 -0
  418. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api/user_api.py +0 -0
  419. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/api_response.py +0 -0
  420. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/apis/__init__.py +0 -0
  421. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/__init__.py +0 -0
  422. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/organization_user.py +0 -0
  423. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/scenario_user.py +0 -0
  424. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/twin_graph_import.py +0 -0
  425. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/twin_graph_import_info.py +0 -0
  426. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/user.py +0 -0
  427. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/user_organization.py +0 -0
  428. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/user_workspace.py +0 -0
  429. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/model/workspace_user.py +0 -0
  430. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_job_state.py +0 -0
  431. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_last_run.py +0 -0
  432. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_parent_last_run.py +0 -0
  433. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/runner_root_last_run.py +0 -0
  434. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/scenario_run_result.py +0 -0
  435. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/models/validator_run.py +0 -0
  436. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api/py.typed +0 -0
  437. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api.egg-info/dependency_links.txt +0 -0
  438. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api.egg-info/requires.txt +0 -0
  439. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/cosmotech_api.egg-info/top_level.txt +0 -0
  440. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/pyproject.toml +0 -0
  441. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/setup.cfg +0 -0
  442. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_organization_user.py +0 -0
  443. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_runner_parent_last_run.py +0 -0
  444. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_runner_root_last_run.py +0 -0
  445. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_scenario_user.py +0 -0
  446. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_twin_graph_import.py +0 -0
  447. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_twin_graph_import_info.py +0 -0
  448. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_user.py +0 -0
  449. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_user_api.py +0 -0
  450. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_user_organization.py +0 -0
  451. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_user_workspace.py +0 -0
  452. {cosmotech_api-3.2.6.dev0 → cosmotech_api-3.2.6.dev2}/test/test_workspace_user.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cosmotech-api
3
- Version: 3.2.6.dev0
3
+ Version: 3.2.6.dev2
4
4
  Summary: Cosmo Tech Platform API
5
5
  Home-page:
6
6
  Author: Repository
@@ -3,7 +3,7 @@ Cosmo Tech Platform API
3
3
 
4
4
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
5
 
6
- - API version: 4.0.0-onprem.7
6
+ - API version: 3.2.6
7
7
  - Package version: 1.0.0
8
8
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
9
9
  For more information, please visit [https://github.com/Cosmo-Tech/cosmotech-api](https://github.com/Cosmo-Tech/cosmotech-api)
@@ -55,10 +55,10 @@ import cosmotech_api
55
55
  from cosmotech_api.rest import ApiException
56
56
  from pprint import pprint
57
57
 
58
- # Defining the host is optional and defaults to http://localhost
58
+ # Defining the host is optional and defaults to https://dev.api.cosmotech.com
59
59
  # See configuration.py for a list of all supported configuration parameters.
60
60
  configuration = cosmotech_api.Configuration(
61
- host = "http://localhost"
61
+ host = "https://dev.api.cosmotech.com"
62
62
  )
63
63
 
64
64
  # The client must configure the authentication and authorization parameters
@@ -73,7 +73,7 @@ configuration.access_token = os.environ["ACCESS_TOKEN"]
73
73
  with cosmotech_api.ApiClient(configuration) as api_client:
74
74
  # Create an instance of the API class
75
75
  api_instance = cosmotech_api.ConnectorApi(api_client)
76
- page = 56 # int | page number to query (first page is at index 0) (optional)
76
+ page = 56 # int | page number to query (optional)
77
77
  size = 56 # int | amount of result by page (optional)
78
78
 
79
79
  try:
@@ -88,12 +88,13 @@ with cosmotech_api.ApiClient(configuration) as api_client:
88
88
 
89
89
  ## Documentation for API Endpoints
90
90
 
91
- All URIs are relative to *http://localhost*
91
+ All URIs are relative to *https://dev.api.cosmotech.com*
92
92
 
93
93
  Class | Method | HTTP request | Description
94
94
  ------------ | ------------- | ------------- | -------------
95
95
  *ConnectorApi* | [**find_all_connectors**](docs/ConnectorApi.md#find_all_connectors) | **GET** /connectors | List all Connectors
96
96
  *ConnectorApi* | [**find_connector_by_id**](docs/ConnectorApi.md#find_connector_by_id) | **GET** /connectors/{connector_id} | Get the details of a connector
97
+ *ConnectorApi* | [**find_connector_by_name**](docs/ConnectorApi.md#find_connector_by_name) | **GET** /connectors/name/{connector_name} | Get the details of a connector
97
98
  *ConnectorApi* | [**register_connector**](docs/ConnectorApi.md#register_connector) | **POST** /connectors | Register a new connector
98
99
  *ConnectorApi* | [**unregister_connector**](docs/ConnectorApi.md#unregister_connector) | **DELETE** /connectors/{connector_id} | Unregister a connector
99
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
@@ -141,6 +142,9 @@ Class | Method | HTTP request | Description
141
142
  *OrganizationApi* | [**unregister_organization**](docs/OrganizationApi.md#unregister_organization) | **DELETE** /organizations/{organization_id} | Unregister an organization
142
143
  *OrganizationApi* | [**update_organization**](docs/OrganizationApi.md#update_organization) | **PATCH** /organizations/{organization_id} | Update an Organization
143
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
+ *OrganizationApi* | [**update_solutions_container_registry_by_organization_id**](docs/OrganizationApi.md#update_solutions_container_registry_by_organization_id) | **PATCH** /organizations/{organization_id}/services/solutionsContainerRegistry | Update the solutions container registry configuration for the Organization specified
146
+ *OrganizationApi* | [**update_storage_by_organization_id**](docs/OrganizationApi.md#update_storage_by_organization_id) | **PATCH** /organizations/{organization_id}/services/storage | Update storage configuration for the Organization specified
147
+ *OrganizationApi* | [**update_tenant_credentials_by_organization_id**](docs/OrganizationApi.md#update_tenant_credentials_by_organization_id) | **PATCH** /organizations/{organization_id}/services/tenantCredentials | Update tenant credentials for the Organization specified
144
148
  *RunApi* | [**delete_run**](docs/RunApi.md#delete_run) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id} | Delete a run
145
149
  *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
146
150
  *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
@@ -163,6 +167,42 @@ Class | Method | HTTP request | Description
163
167
  *RunnerApi* | [**stop_run**](docs/RunnerApi.md#stop_run) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/stop | Stop the last run
164
168
  *RunnerApi* | [**update_runner**](docs/RunnerApi.md#update_runner) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Update a runner
165
169
  *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
170
+ *ScenarioApi* | [**add_or_replace_scenario_parameter_values**](docs/ScenarioApi.md#add_or_replace_scenario_parameter_values) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/parameterValues | Add (or replace) Parameter Values for the Scenario specified
171
+ *ScenarioApi* | [**add_scenario_access_control**](docs/ScenarioApi.md#add_scenario_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/access | Add a control access to the Scenario
172
+ *ScenarioApi* | [**compare_scenarios**](docs/ScenarioApi.md#compare_scenarios) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/compare/{compared_scenario_id} | Compare the Scenario with another one and returns the difference for parameters values
173
+ *ScenarioApi* | [**create_scenario**](docs/ScenarioApi.md#create_scenario) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios | Create a new Scenario
174
+ *ScenarioApi* | [**delete_all_scenarios**](docs/ScenarioApi.md#delete_all_scenarios) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios | Delete all Scenarios of the Workspace
175
+ *ScenarioApi* | [**delete_scenario**](docs/ScenarioApi.md#delete_scenario) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id} | Delete a scenario
176
+ *ScenarioApi* | [**download_scenario_data**](docs/ScenarioApi.md#download_scenario_data) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/downloads | Download Scenario data
177
+ *ScenarioApi* | [**find_all_scenarios**](docs/ScenarioApi.md#find_all_scenarios) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios | List all Scenarios
178
+ *ScenarioApi* | [**find_all_scenarios_by_validation_status**](docs/ScenarioApi.md#find_all_scenarios_by_validation_status) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/{validationStatus} | List all Scenarios by validation status
179
+ *ScenarioApi* | [**find_scenario_by_id**](docs/ScenarioApi.md#find_scenario_by_id) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id} | Get the details of an scenario
180
+ *ScenarioApi* | [**get_scenario_access_control**](docs/ScenarioApi.md#get_scenario_access_control) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/access/{identity_id} | Get a control access for the Scenario
181
+ *ScenarioApi* | [**get_scenario_data_download_job_info**](docs/ScenarioApi.md#get_scenario_data_download_job_info) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/downloads/{download_id} | Get Scenario data download URL
182
+ *ScenarioApi* | [**get_scenario_permissions**](docs/ScenarioApi.md#get_scenario_permissions) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/permissions/{role} | Get the Scenario permission by given role
183
+ *ScenarioApi* | [**get_scenario_security**](docs/ScenarioApi.md#get_scenario_security) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security | Get the Scenario security information
184
+ *ScenarioApi* | [**get_scenario_security_users**](docs/ScenarioApi.md#get_scenario_security_users) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/users | Get the Scenario security users list
185
+ *ScenarioApi* | [**get_scenario_validation_status_by_id**](docs/ScenarioApi.md#get_scenario_validation_status_by_id) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/ValidationStatus | Get the validation status of an scenario
186
+ *ScenarioApi* | [**get_scenarios_tree**](docs/ScenarioApi.md#get_scenarios_tree) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/tree | Get the Scenarios Tree
187
+ *ScenarioApi* | [**remove_all_scenario_parameter_values**](docs/ScenarioApi.md#remove_all_scenario_parameter_values) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/parameterValues | Remove all Parameter Values from the Scenario specified
188
+ *ScenarioApi* | [**remove_scenario_access_control**](docs/ScenarioApi.md#remove_scenario_access_control) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/access/{identity_id} | Remove the specified access from the given Organization Scenario
189
+ *ScenarioApi* | [**set_scenario_default_security**](docs/ScenarioApi.md#set_scenario_default_security) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/default | Set the Scenario default security
190
+ *ScenarioApi* | [**update_scenario**](docs/ScenarioApi.md#update_scenario) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id} | Update a scenario
191
+ *ScenarioApi* | [**update_scenario_access_control**](docs/ScenarioApi.md#update_scenario_access_control) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/access/{identity_id} | Update the specified access to User for a Scenario
192
+ *ScenariorunApi* | [**delete_historical_data_organization**](docs/ScenariorunApi.md#delete_historical_data_organization) | **DELETE** /organizations/{organization_id}/scenarioruns/historicaldata | Delete all historical ScenarioRuns in the Organization
193
+ *ScenariorunApi* | [**delete_historical_data_scenario**](docs/ScenariorunApi.md#delete_historical_data_scenario) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/scenarioruns/historicaldata | Delete all historical ScenarioRuns in the Scenario
194
+ *ScenariorunApi* | [**delete_historical_data_workspace**](docs/ScenariorunApi.md#delete_historical_data_workspace) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/scenarioruns/historicaldata | Delete all historical ScenarioRuns in the Workspace
195
+ *ScenariorunApi* | [**delete_scenario_run**](docs/ScenariorunApi.md#delete_scenario_run) | **DELETE** /organizations/{organization_id}/scenarioruns/{scenariorun_id} | Delete a scenariorun
196
+ *ScenariorunApi* | [**find_scenario_run_by_id**](docs/ScenariorunApi.md#find_scenario_run_by_id) | **GET** /organizations/{organization_id}/scenarioruns/{scenariorun_id} | Get the details of a scenariorun
197
+ *ScenariorunApi* | [**get_scenario_run_cumulated_logs**](docs/ScenariorunApi.md#get_scenario_run_cumulated_logs) | **GET** /organizations/{organization_id}/scenarioruns/{scenariorun_id}/cumulatedlogs | Get the cumulated logs of a scenariorun
198
+ *ScenariorunApi* | [**get_scenario_run_logs**](docs/ScenariorunApi.md#get_scenario_run_logs) | **GET** /organizations/{organization_id}/scenarioruns/{scenariorun_id}/logs | get the logs for the ScenarioRun
199
+ *ScenariorunApi* | [**get_scenario_run_status**](docs/ScenariorunApi.md#get_scenario_run_status) | **GET** /organizations/{organization_id}/scenarioruns/{scenariorun_id}/status | get the status for the ScenarioRun
200
+ *ScenariorunApi* | [**get_scenario_runs**](docs/ScenariorunApi.md#get_scenario_runs) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/scenarioruns | get the list of ScenarioRuns for the Scenario
201
+ *ScenariorunApi* | [**get_workspace_scenario_runs**](docs/ScenariorunApi.md#get_workspace_scenario_runs) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarioruns | get the list of ScenarioRuns for the Workspace
202
+ *ScenariorunApi* | [**run_scenario**](docs/ScenariorunApi.md#run_scenario) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/run | run a ScenarioRun for the Scenario
203
+ *ScenariorunApi* | [**search_scenario_runs**](docs/ScenariorunApi.md#search_scenario_runs) | **POST** /organizations/{organization_id}/scenarioruns/search | Search ScenarioRuns
204
+ *ScenariorunApi* | [**start_scenario_run_containers**](docs/ScenariorunApi.md#start_scenario_run_containers) | **POST** /organizations/{organization_id}/scenarioruns/startcontainers | Start a new scenariorun with raw containers definition
205
+ *ScenariorunApi* | [**stop_scenario_run**](docs/ScenariorunApi.md#stop_scenario_run) | **POST** /organizations/{organization_id}/scenarioruns/{scenariorun_id}/stop | stop a ScenarioRun for the Scenario
166
206
  *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
167
207
  *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
168
208
  *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,6 +210,7 @@ Class | Method | HTTP request | Description
170
210
  *SolutionApi* | [**create_solution**](docs/SolutionApi.md#create_solution) | **POST** /organizations/{organization_id}/solutions | Register a new solution
171
211
  *SolutionApi* | [**delete_solution**](docs/SolutionApi.md#delete_solution) | **DELETE** /organizations/{organization_id}/solutions/{solution_id} | Delete a solution
172
212
  *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
213
+ *SolutionApi* | [**download_run_template_handler**](docs/SolutionApi.md#download_run_template_handler) | **GET** /organizations/{organization_id}/solutions/{solution_id}/runtemplates/{run_template_id}/handlers/{handler_id}/download | Download a Run Template step handler zip file
173
214
  *SolutionApi* | [**find_all_solutions**](docs/SolutionApi.md#find_all_solutions) | **GET** /organizations/{organization_id}/solutions | List all Solutions
174
215
  *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
175
216
  *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
@@ -183,7 +224,23 @@ Class | Method | HTTP request | Description
183
224
  *SolutionApi* | [**update_solution**](docs/SolutionApi.md#update_solution) | **PATCH** /organizations/{organization_id}/solutions/{solution_id} | Update a solution
184
225
  *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
185
226
  *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
227
+ *SolutionApi* | [**upload_run_template_handler**](docs/SolutionApi.md#upload_run_template_handler) | **POST** /organizations/{organization_id}/solutions/{solution_id}/runtemplates/{run_template_id}/handlers/{handler_id}/upload | Upload a Run Template step handler zip file
228
+ *TwingraphApi* | [**batch_query**](docs/TwingraphApi.md#batch_query) | **POST** /organizations/{organization_id}/twingraph/{graph_id}/batch-query | Run a query on a graph instance and return the result as a zip file in async mode
229
+ *TwingraphApi* | [**batch_upload_update**](docs/TwingraphApi.md#batch_upload_update) | **POST** /organizations/{organization_id}/twingraph/{graph_id}/batch | Async batch update by loading a CSV file on a graph instance
230
+ *TwingraphApi* | [**create_entities**](docs/TwingraphApi.md#create_entities) | **POST** /organizations/{organization_id}/twingraph/{graph_id}/entity/{type} | Create new entities in a graph instance
231
+ *TwingraphApi* | [**create_graph**](docs/TwingraphApi.md#create_graph) | **POST** /organizations/{organization_id}/twingraph/{graph_id} | Create a new graph
232
+ *TwingraphApi* | [**delete**](docs/TwingraphApi.md#delete) | **DELETE** /organizations/{organization_id}/twingraph/{graph_id} | Delete all versions of a graph and his metadatas
233
+ *TwingraphApi* | [**delete_entities**](docs/TwingraphApi.md#delete_entities) | **DELETE** /organizations/{organization_id}/twingraph/{graph_id}/entity/{type} | Delete entities in a graph instance
234
+ *TwingraphApi* | [**download_graph**](docs/TwingraphApi.md#download_graph) | **GET** /organizations/{organization_id}/twingraph/download/{hash} | Download a graph compressed in a zip file
235
+ *TwingraphApi* | [**find_all_twingraphs**](docs/TwingraphApi.md#find_all_twingraphs) | **GET** /organizations/{organization_id}/twingraphs | Return the list of all graphs stored in the organization
236
+ *TwingraphApi* | [**get_entities**](docs/TwingraphApi.md#get_entities) | **GET** /organizations/{organization_id}/twingraph/{graph_id}/entity/{type} | Get entities in a graph instance
237
+ *TwingraphApi* | [**get_graph_meta_data**](docs/TwingraphApi.md#get_graph_meta_data) | **GET** /organizations/{organization_id}/twingraph/{graph_id}/metadata | Return the metaData of the specified graph
238
+ *TwingraphApi* | [**job_status**](docs/TwingraphApi.md#job_status) | **GET** /organizations/{organization_id}/job/{job_id}/status | Get the status of a job
239
+ *TwingraphApi* | [**query**](docs/TwingraphApi.md#query) | **POST** /organizations/{organization_id}/twingraph/{graph_id}/query | Run a query on a graph instance
240
+ *TwingraphApi* | [**update_entities**](docs/TwingraphApi.md#update_entities) | **PATCH** /organizations/{organization_id}/twingraph/{graph_id}/entity/{type} | Update entities in a graph instance
241
+ *TwingraphApi* | [**update_graph_meta_data**](docs/TwingraphApi.md#update_graph_meta_data) | **PATCH** /organizations/{organization_id}/twingraph/{graph_id}/metadata | Update the metaData of the specified graph
186
242
  *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
243
+ *WorkspaceApi* | [**create_secret**](docs/WorkspaceApi.md#create_secret) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/secret | Create a secret for the Workspace
187
244
  *WorkspaceApi* | [**create_workspace**](docs/WorkspaceApi.md#create_workspace) | **POST** /organizations/{organization_id}/workspaces | Create a new workspace
188
245
  *WorkspaceApi* | [**delete_all_workspace_files**](docs/WorkspaceApi.md#delete_all_workspace_files) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/files | Delete all Workspace files
189
246
  *WorkspaceApi* | [**delete_workspace**](docs/WorkspaceApi.md#delete_workspace) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id} | Delete a workspace
@@ -213,7 +270,6 @@ Class | Method | HTTP request | Description
213
270
  - [ConnectorParameterGroup](docs/ConnectorParameterGroup.md)
214
271
  - [ContainerResourceSizeInfo](docs/ContainerResourceSizeInfo.md)
215
272
  - [ContainerResourceSizing](docs/ContainerResourceSizing.md)
216
- - [CreatedRun](docs/CreatedRun.md)
217
273
  - [Dataset](docs/Dataset.md)
218
274
  - [DatasetAccessControl](docs/DatasetAccessControl.md)
219
275
  - [DatasetCompatibility](docs/DatasetCompatibility.md)
@@ -236,19 +292,26 @@ Class | Method | HTTP request | Description
236
292
  - [OrganizationAccessControl](docs/OrganizationAccessControl.md)
237
293
  - [OrganizationRole](docs/OrganizationRole.md)
238
294
  - [OrganizationSecurity](docs/OrganizationSecurity.md)
295
+ - [OrganizationService](docs/OrganizationService.md)
296
+ - [OrganizationServices](docs/OrganizationServices.md)
239
297
  - [QueryResult](docs/QueryResult.md)
240
298
  - [ResourceSizeInfo](docs/ResourceSizeInfo.md)
241
299
  - [Run](docs/Run.md)
242
300
  - [RunContainer](docs/RunContainer.md)
301
+ - [RunContainerArtifact](docs/RunContainerArtifact.md)
302
+ - [RunContainerLogs](docs/RunContainerLogs.md)
243
303
  - [RunData](docs/RunData.md)
244
304
  - [RunDataQuery](docs/RunDataQuery.md)
245
305
  - [RunLogs](docs/RunLogs.md)
246
- - [RunLogsEntry](docs/RunLogsEntry.md)
247
306
  - [RunResourceRequested](docs/RunResourceRequested.md)
307
+ - [RunSearch](docs/RunSearch.md)
308
+ - [RunSearchState](docs/RunSearchState.md)
309
+ - [RunStartContainers](docs/RunStartContainers.md)
248
310
  - [RunState](docs/RunState.md)
249
311
  - [RunStatus](docs/RunStatus.md)
250
312
  - [RunStatusNode](docs/RunStatusNode.md)
251
313
  - [RunTemplate](docs/RunTemplate.md)
314
+ - [RunTemplateHandlerId](docs/RunTemplateHandlerId.md)
252
315
  - [RunTemplateOrchestrator](docs/RunTemplateOrchestrator.md)
253
316
  - [RunTemplateParameter](docs/RunTemplateParameter.md)
254
317
  - [RunTemplateParameterGroup](docs/RunTemplateParameterGroup.md)
@@ -257,11 +320,40 @@ Class | Method | HTTP request | Description
257
320
  - [RunTemplateStepSource](docs/RunTemplateStepSource.md)
258
321
  - [Runner](docs/Runner.md)
259
322
  - [RunnerAccessControl](docs/RunnerAccessControl.md)
323
+ - [RunnerChangedParameterValue](docs/RunnerChangedParameterValue.md)
324
+ - [RunnerComparisonResult](docs/RunnerComparisonResult.md)
325
+ - [RunnerDataDownloadInfo](docs/RunnerDataDownloadInfo.md)
326
+ - [RunnerDataDownloadJob](docs/RunnerDataDownloadJob.md)
260
327
  - [RunnerResourceSizing](docs/RunnerResourceSizing.md)
261
328
  - [RunnerRole](docs/RunnerRole.md)
262
329
  - [RunnerRunTemplateParameterValue](docs/RunnerRunTemplateParameterValue.md)
263
330
  - [RunnerSecurity](docs/RunnerSecurity.md)
264
331
  - [RunnerValidationStatus](docs/RunnerValidationStatus.md)
332
+ - [Scenario](docs/Scenario.md)
333
+ - [ScenarioAccessControl](docs/ScenarioAccessControl.md)
334
+ - [ScenarioChangedParameterValue](docs/ScenarioChangedParameterValue.md)
335
+ - [ScenarioComparisonResult](docs/ScenarioComparisonResult.md)
336
+ - [ScenarioDataDownloadInfo](docs/ScenarioDataDownloadInfo.md)
337
+ - [ScenarioDataDownloadJob](docs/ScenarioDataDownloadJob.md)
338
+ - [ScenarioJobState](docs/ScenarioJobState.md)
339
+ - [ScenarioLastRun](docs/ScenarioLastRun.md)
340
+ - [ScenarioResourceSizing](docs/ScenarioResourceSizing.md)
341
+ - [ScenarioRole](docs/ScenarioRole.md)
342
+ - [ScenarioRun](docs/ScenarioRun.md)
343
+ - [ScenarioRunContainer](docs/ScenarioRunContainer.md)
344
+ - [ScenarioRunContainerArtifact](docs/ScenarioRunContainerArtifact.md)
345
+ - [ScenarioRunContainerLogs](docs/ScenarioRunContainerLogs.md)
346
+ - [ScenarioRunLogs](docs/ScenarioRunLogs.md)
347
+ - [ScenarioRunResourceRequested](docs/ScenarioRunResourceRequested.md)
348
+ - [ScenarioRunSearch](docs/ScenarioRunSearch.md)
349
+ - [ScenarioRunSearchState](docs/ScenarioRunSearchState.md)
350
+ - [ScenarioRunStartContainers](docs/ScenarioRunStartContainers.md)
351
+ - [ScenarioRunState](docs/ScenarioRunState.md)
352
+ - [ScenarioRunStatus](docs/ScenarioRunStatus.md)
353
+ - [ScenarioRunStatusNode](docs/ScenarioRunStatusNode.md)
354
+ - [ScenarioRunTemplateParameterValue](docs/ScenarioRunTemplateParameterValue.md)
355
+ - [ScenarioSecurity](docs/ScenarioSecurity.md)
356
+ - [ScenarioValidationStatus](docs/ScenarioValidationStatus.md)
265
357
  - [SendRunDataRequest](docs/SendRunDataRequest.md)
266
358
  - [Solution](docs/Solution.md)
267
359
  - [SolutionAccessControl](docs/SolutionAccessControl.md)
@@ -270,11 +362,15 @@ Class | Method | HTTP request | Description
270
362
  - [SourceInfo](docs/SourceInfo.md)
271
363
  - [SubDatasetGraphQuery](docs/SubDatasetGraphQuery.md)
272
364
  - [TwinGraphBatchResult](docs/TwinGraphBatchResult.md)
365
+ - [TwinGraphHash](docs/TwinGraphHash.md)
366
+ - [TwinGraphQuery](docs/TwinGraphQuery.md)
273
367
  - [TwincacheStatusEnum](docs/TwincacheStatusEnum.md)
368
+ - [Validator](docs/Validator.md)
274
369
  - [Workspace](docs/Workspace.md)
275
370
  - [WorkspaceAccessControl](docs/WorkspaceAccessControl.md)
276
371
  - [WorkspaceFile](docs/WorkspaceFile.md)
277
372
  - [WorkspaceRole](docs/WorkspaceRole.md)
373
+ - [WorkspaceSecret](docs/WorkspaceSecret.md)
278
374
  - [WorkspaceSecurity](docs/WorkspaceSecurity.md)
279
375
  - [WorkspaceSolution](docs/WorkspaceSolution.md)
280
376
  - [WorkspaceWebApp](docs/WorkspaceWebApp.md)
@@ -289,9 +385,10 @@ Authentication schemes defined for the API:
289
385
  ### oAuth2AuthCode
290
386
 
291
387
  - **Type**: OAuth
292
- - **Flow**: accessCode
293
- - **Authorization URL**: https://example.com/authorize
294
- - **Scopes**: N/A
388
+ - **Flow**: implicit
389
+ - **Authorization URL**: https://login.microsoftonline.com/common/oauth2/v2.0/authorize
390
+ - **Scopes**:
391
+ - **http://dev.api.cosmotech.com/platform**: Platform scope
295
392
 
296
393
 
297
394
  ## Author
@@ -7,7 +7,7 @@
7
7
 
8
8
  Cosmo Tech Platform API
9
9
 
10
- The version of the OpenAPI document: 4.0.0-onprem.7
10
+ The version of the OpenAPI document: 3.2.6
11
11
  Contact: platform@cosmotech.com
12
12
  Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
 
@@ -23,7 +23,10 @@ from cosmotech_api.api.dataset_api import DatasetApi
23
23
  from cosmotech_api.api.organization_api import OrganizationApi
24
24
  from cosmotech_api.api.run_api import RunApi
25
25
  from cosmotech_api.api.runner_api import RunnerApi
26
+ from cosmotech_api.api.scenario_api import ScenarioApi
27
+ from cosmotech_api.api.scenariorun_api import ScenariorunApi
26
28
  from cosmotech_api.api.solution_api import SolutionApi
29
+ from cosmotech_api.api.twingraph_api import TwingraphApi
27
30
  from cosmotech_api.api.workspace_api import WorkspaceApi
28
31
 
29
32
  # import ApiClient
@@ -44,7 +47,6 @@ from cosmotech_api.models.connector_parameter import ConnectorParameter
44
47
  from cosmotech_api.models.connector_parameter_group import ConnectorParameterGroup
45
48
  from cosmotech_api.models.container_resource_size_info import ContainerResourceSizeInfo
46
49
  from cosmotech_api.models.container_resource_sizing import ContainerResourceSizing
47
- from cosmotech_api.models.created_run import CreatedRun
48
50
  from cosmotech_api.models.dataset import Dataset
49
51
  from cosmotech_api.models.dataset_access_control import DatasetAccessControl
50
52
  from cosmotech_api.models.dataset_compatibility import DatasetCompatibility
@@ -67,19 +69,26 @@ from cosmotech_api.models.organization import Organization
67
69
  from cosmotech_api.models.organization_access_control import OrganizationAccessControl
68
70
  from cosmotech_api.models.organization_role import OrganizationRole
69
71
  from cosmotech_api.models.organization_security import OrganizationSecurity
72
+ from cosmotech_api.models.organization_service import OrganizationService
73
+ from cosmotech_api.models.organization_services import OrganizationServices
70
74
  from cosmotech_api.models.query_result import QueryResult
71
75
  from cosmotech_api.models.resource_size_info import ResourceSizeInfo
72
76
  from cosmotech_api.models.run import Run
73
77
  from cosmotech_api.models.run_container import RunContainer
78
+ from cosmotech_api.models.run_container_artifact import RunContainerArtifact
79
+ from cosmotech_api.models.run_container_logs import RunContainerLogs
74
80
  from cosmotech_api.models.run_data import RunData
75
81
  from cosmotech_api.models.run_data_query import RunDataQuery
76
82
  from cosmotech_api.models.run_logs import RunLogs
77
- from cosmotech_api.models.run_logs_entry import RunLogsEntry
78
83
  from cosmotech_api.models.run_resource_requested import RunResourceRequested
84
+ from cosmotech_api.models.run_search import RunSearch
85
+ from cosmotech_api.models.run_search_state import RunSearchState
86
+ from cosmotech_api.models.run_start_containers import RunStartContainers
79
87
  from cosmotech_api.models.run_state import RunState
80
88
  from cosmotech_api.models.run_status import RunStatus
81
89
  from cosmotech_api.models.run_status_node import RunStatusNode
82
90
  from cosmotech_api.models.run_template import RunTemplate
91
+ from cosmotech_api.models.run_template_handler_id import RunTemplateHandlerId
83
92
  from cosmotech_api.models.run_template_orchestrator import RunTemplateOrchestrator
84
93
  from cosmotech_api.models.run_template_parameter import RunTemplateParameter
85
94
  from cosmotech_api.models.run_template_parameter_group import RunTemplateParameterGroup
@@ -88,11 +97,40 @@ from cosmotech_api.models.run_template_resource_sizing import RunTemplateResourc
88
97
  from cosmotech_api.models.run_template_step_source import RunTemplateStepSource
89
98
  from cosmotech_api.models.runner import Runner
90
99
  from cosmotech_api.models.runner_access_control import RunnerAccessControl
100
+ from cosmotech_api.models.runner_changed_parameter_value import RunnerChangedParameterValue
101
+ from cosmotech_api.models.runner_comparison_result import RunnerComparisonResult
102
+ from cosmotech_api.models.runner_data_download_info import RunnerDataDownloadInfo
103
+ from cosmotech_api.models.runner_data_download_job import RunnerDataDownloadJob
91
104
  from cosmotech_api.models.runner_resource_sizing import RunnerResourceSizing
92
105
  from cosmotech_api.models.runner_role import RunnerRole
93
106
  from cosmotech_api.models.runner_run_template_parameter_value import RunnerRunTemplateParameterValue
94
107
  from cosmotech_api.models.runner_security import RunnerSecurity
95
108
  from cosmotech_api.models.runner_validation_status import RunnerValidationStatus
109
+ from cosmotech_api.models.scenario import Scenario
110
+ from cosmotech_api.models.scenario_access_control import ScenarioAccessControl
111
+ from cosmotech_api.models.scenario_changed_parameter_value import ScenarioChangedParameterValue
112
+ from cosmotech_api.models.scenario_comparison_result import ScenarioComparisonResult
113
+ from cosmotech_api.models.scenario_data_download_info import ScenarioDataDownloadInfo
114
+ from cosmotech_api.models.scenario_data_download_job import ScenarioDataDownloadJob
115
+ from cosmotech_api.models.scenario_job_state import ScenarioJobState
116
+ from cosmotech_api.models.scenario_last_run import ScenarioLastRun
117
+ from cosmotech_api.models.scenario_resource_sizing import ScenarioResourceSizing
118
+ from cosmotech_api.models.scenario_role import ScenarioRole
119
+ from cosmotech_api.models.scenario_run import ScenarioRun
120
+ from cosmotech_api.models.scenario_run_container import ScenarioRunContainer
121
+ from cosmotech_api.models.scenario_run_container_artifact import ScenarioRunContainerArtifact
122
+ from cosmotech_api.models.scenario_run_container_logs import ScenarioRunContainerLogs
123
+ from cosmotech_api.models.scenario_run_logs import ScenarioRunLogs
124
+ from cosmotech_api.models.scenario_run_resource_requested import ScenarioRunResourceRequested
125
+ from cosmotech_api.models.scenario_run_search import ScenarioRunSearch
126
+ from cosmotech_api.models.scenario_run_search_state import ScenarioRunSearchState
127
+ from cosmotech_api.models.scenario_run_start_containers import ScenarioRunStartContainers
128
+ from cosmotech_api.models.scenario_run_state import ScenarioRunState
129
+ from cosmotech_api.models.scenario_run_status import ScenarioRunStatus
130
+ from cosmotech_api.models.scenario_run_status_node import ScenarioRunStatusNode
131
+ from cosmotech_api.models.scenario_run_template_parameter_value import ScenarioRunTemplateParameterValue
132
+ from cosmotech_api.models.scenario_security import ScenarioSecurity
133
+ from cosmotech_api.models.scenario_validation_status import ScenarioValidationStatus
96
134
  from cosmotech_api.models.send_run_data_request import SendRunDataRequest
97
135
  from cosmotech_api.models.solution import Solution
98
136
  from cosmotech_api.models.solution_access_control import SolutionAccessControl
@@ -101,11 +139,15 @@ from cosmotech_api.models.solution_security import SolutionSecurity
101
139
  from cosmotech_api.models.source_info import SourceInfo
102
140
  from cosmotech_api.models.sub_dataset_graph_query import SubDatasetGraphQuery
103
141
  from cosmotech_api.models.twin_graph_batch_result import TwinGraphBatchResult
142
+ from cosmotech_api.models.twin_graph_hash import TwinGraphHash
143
+ from cosmotech_api.models.twin_graph_query import TwinGraphQuery
104
144
  from cosmotech_api.models.twincache_status_enum import TwincacheStatusEnum
145
+ from cosmotech_api.models.validator import Validator
105
146
  from cosmotech_api.models.workspace import Workspace
106
147
  from cosmotech_api.models.workspace_access_control import WorkspaceAccessControl
107
148
  from cosmotech_api.models.workspace_file import WorkspaceFile
108
149
  from cosmotech_api.models.workspace_role import WorkspaceRole
150
+ from cosmotech_api.models.workspace_secret import WorkspaceSecret
109
151
  from cosmotech_api.models.workspace_security import WorkspaceSecurity
110
152
  from cosmotech_api.models.workspace_solution import WorkspaceSolution
111
153
  from cosmotech_api.models.workspace_web_app import WorkspaceWebApp
@@ -6,6 +6,9 @@ from cosmotech_api.api.dataset_api import DatasetApi
6
6
  from cosmotech_api.api.organization_api import OrganizationApi
7
7
  from cosmotech_api.api.run_api import RunApi
8
8
  from cosmotech_api.api.runner_api import RunnerApi
9
+ from cosmotech_api.api.scenario_api import ScenarioApi
10
+ from cosmotech_api.api.scenariorun_api import ScenariorunApi
9
11
  from cosmotech_api.api.solution_api import SolutionApi
12
+ from cosmotech_api.api.twingraph_api import TwingraphApi
10
13
  from cosmotech_api.api.workspace_api import WorkspaceApi
11
14