cosmotech-api 3.2.6.dev2__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 (408) hide show
  1. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/PKG-INFO +1 -1
  2. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/README.md +11 -107
  3. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/__init__.py +3 -45
  4. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/__init__.py +0 -3
  5. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/connector_api.py +30 -282
  6. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/dataset_api.py +214 -187
  7. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/organization_api.py +94 -943
  8. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/run_api.py +51 -45
  9. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/runner_api.py +101 -88
  10. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/scenario_api.py +1 -1
  11. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/scenariorun_api.py +1 -1
  12. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/scenariorunresult_api.py +1 -1
  13. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/solution_api.py +487 -1124
  14. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/twingraph_api.py +1 -1
  15. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/validator_api.py +1 -1
  16. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/workspace_api.py +129 -416
  17. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api_client.py +59 -29
  18. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/configuration.py +21 -15
  19. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/exceptions.py +1 -1
  20. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/component_role_permissions.py +1 -1
  21. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/connector.py +1 -1
  22. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/connector_parameter.py +1 -1
  23. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/connector_parameter_group.py +1 -1
  24. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/container_resource_size_info.py +1 -1
  25. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/container_resource_sizing.py +1 -1
  26. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/dataset.py +1 -1
  27. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/dataset_access_control.py +1 -1
  28. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/dataset_compatibility.py +1 -1
  29. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/dataset_connector.py +1 -1
  30. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/dataset_copy_parameters.py +1 -1
  31. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/dataset_role.py +1 -1
  32. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/dataset_search.py +1 -1
  33. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/dataset_security.py +1 -1
  34. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/dataset_source_type.py +1 -1
  35. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/dataset_twin_graph_hash.py +1 -1
  36. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/dataset_twin_graph_info.py +1 -1
  37. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/dataset_twin_graph_query.py +1 -1
  38. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/delete_historical_data.py +1 -1
  39. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/file_upload_metadata.py +1 -1
  40. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/file_upload_validation.py +1 -1
  41. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/graph_properties.py +1 -1
  42. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/organization.py +1 -1
  43. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/organization_access_control.py +1 -1
  44. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/organization_role.py +1 -1
  45. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/organization_security.py +1 -1
  46. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/organization_service.py +1 -1
  47. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/organization_services.py +1 -1
  48. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/resource_size_info.py +1 -1
  49. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run.py +1 -1
  50. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_container.py +1 -1
  51. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_container_artifact.py +1 -1
  52. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_container_logs.py +1 -1
  53. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_logs.py +1 -1
  54. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_resource_requested.py +1 -1
  55. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_search.py +1 -1
  56. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_start_containers.py +1 -1
  57. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_state.py +1 -1
  58. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_status.py +1 -1
  59. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_status_node.py +1 -1
  60. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_template.py +1 -1
  61. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_template_handler_id.py +1 -1
  62. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_template_orchestrator.py +1 -1
  63. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_template_parameter.py +1 -1
  64. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_template_parameter_group.py +1 -1
  65. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_template_parameter_value.py +1 -1
  66. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_template_resource_sizing.py +1 -1
  67. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/run_template_step_source.py +1 -1
  68. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner.py +21 -5
  69. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner_access_control.py +1 -1
  70. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner_changed_parameter_value.py +1 -1
  71. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner_comparison_result.py +1 -1
  72. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner_data_download_info.py +11 -1
  73. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner_data_download_job.py +1 -1
  74. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner_job_state.py +1 -1
  75. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner_last_run.py +1 -1
  76. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner_resource_sizing.py +1 -1
  77. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner_role.py +1 -1
  78. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner_run_template_parameter_value.py +1 -1
  79. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner_security.py +1 -1
  80. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/runner_validation_status.py +1 -1
  81. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario.py +1 -1
  82. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_access_control.py +1 -1
  83. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_changed_parameter_value.py +1 -1
  84. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_comparison_result.py +1 -1
  85. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_data_download_info.py +1 -1
  86. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_data_download_job.py +1 -1
  87. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_job_state.py +1 -1
  88. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_last_run.py +1 -1
  89. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_resource_sizing.py +1 -1
  90. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_role.py +1 -1
  91. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run.py +1 -1
  92. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run_container.py +1 -1
  93. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run_container_artifact.py +1 -1
  94. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run_container_logs.py +1 -1
  95. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run_logs.py +1 -1
  96. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run_resource_requested.py +1 -1
  97. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run_result.py +1 -1
  98. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run_search.py +1 -1
  99. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run_start_containers.py +1 -1
  100. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run_state.py +1 -1
  101. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run_status.py +1 -1
  102. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run_status_node.py +1 -1
  103. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_run_template_parameter_value.py +1 -1
  104. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_security.py +1 -1
  105. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_validation_status.py +1 -1
  106. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/solution.py +1 -1
  107. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/solution_access_control.py +1 -1
  108. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/solution_role.py +1 -1
  109. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/solution_security.py +1 -1
  110. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/source_info.py +1 -1
  111. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/sub_dataset_graph_query.py +1 -1
  112. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/translated_labels.py +1 -1
  113. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/twin_graph_batch_result.py +1 -1
  114. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/twin_graph_hash.py +1 -1
  115. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/twin_graph_query.py +1 -1
  116. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/validator.py +1 -1
  117. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/validator_run.py +1 -1
  118. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/workspace.py +1 -1
  119. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/workspace_access_control.py +1 -1
  120. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/workspace_file.py +1 -1
  121. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/workspace_role.py +1 -1
  122. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/workspace_secret.py +1 -1
  123. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/workspace_security.py +1 -1
  124. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/workspace_solution.py +1 -1
  125. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/workspace_web_app.py +1 -1
  126. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model_utils.py +1 -1
  127. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/__init__.py +3 -42
  128. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/component_role_permissions.py +7 -7
  129. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/connector.py +11 -15
  130. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/connector_parameter.py +7 -7
  131. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/connector_parameter_group.py +10 -10
  132. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/container_resource_size_info.py +7 -7
  133. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/container_resource_sizing.py +7 -7
  134. cosmotech_api-4.0.0.dev8/cosmotech_api/models/created_run.py +88 -0
  135. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/dataset.py +10 -10
  136. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/dataset_access_control.py +7 -7
  137. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/dataset_compatibility.py +7 -7
  138. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/dataset_connector.py +7 -7
  139. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/dataset_copy_parameters.py +7 -7
  140. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/dataset_role.py +7 -7
  141. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/dataset_search.py +7 -7
  142. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/dataset_security.py +10 -10
  143. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/dataset_source_type.py +1 -1
  144. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/dataset_twin_graph_hash.py +7 -7
  145. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/dataset_twin_graph_info.py +7 -7
  146. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/dataset_twin_graph_query.py +7 -7
  147. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/delete_historical_data.py +7 -7
  148. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/file_upload_metadata.py +7 -7
  149. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/file_upload_validation.py +13 -13
  150. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/graph_properties.py +7 -7
  151. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/ingestion_status_enum.py +1 -1
  152. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/io_types_enum.py +1 -1
  153. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/organization.py +8 -14
  154. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/organization_access_control.py +7 -7
  155. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/organization_role.py +7 -7
  156. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/organization_security.py +10 -10
  157. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/organization_service.py +1 -1
  158. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/organization_services.py +1 -1
  159. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/query_result.py +7 -7
  160. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/resource_size_info.py +7 -7
  161. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run.py +13 -13
  162. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_container.py +9 -19
  163. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_container_artifact.py +1 -1
  164. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_container_logs.py +1 -1
  165. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_data.py +7 -7
  166. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_data_query.py +7 -7
  167. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_logs.py +22 -27
  168. cosmotech_api-4.0.0.dev8/cosmotech_api/models/run_logs_entry.py +88 -0
  169. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_resource_requested.py +7 -7
  170. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_search.py +1 -1
  171. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_search_state.py +1 -1
  172. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_start_containers.py +1 -1
  173. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_state.py +1 -1
  174. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_status.py +10 -10
  175. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_status_node.py +7 -7
  176. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_template.py +7 -7
  177. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_template_handler_id.py +1 -1
  178. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_template_orchestrator.py +1 -1
  179. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_template_parameter.py +7 -7
  180. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_template_parameter_group.py +7 -7
  181. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_template_parameter_value.py +7 -7
  182. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_template_resource_sizing.py +7 -7
  183. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/run_template_step_source.py +1 -1
  184. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner.py +11 -11
  185. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_access_control.py +7 -7
  186. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_changed_parameter_value.py +1 -1
  187. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_comparison_result.py +1 -1
  188. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_data_download_info.py +1 -1
  189. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_data_download_job.py +1 -1
  190. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_resource_sizing.py +7 -7
  191. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_role.py +7 -7
  192. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_run_template_parameter_value.py +7 -7
  193. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_security.py +10 -10
  194. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_validation_status.py +1 -1
  195. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario.py +2 -2
  196. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_access_control.py +1 -1
  197. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_changed_parameter_value.py +1 -1
  198. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_comparison_result.py +1 -1
  199. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_data_download_info.py +1 -1
  200. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_data_download_job.py +1 -1
  201. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_job_state.py +1 -1
  202. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_last_run.py +1 -1
  203. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_resource_sizing.py +1 -1
  204. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_role.py +1 -1
  205. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run.py +1 -1
  206. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_container.py +1 -1
  207. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_container_artifact.py +1 -1
  208. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_container_logs.py +1 -1
  209. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_logs.py +1 -1
  210. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_resource_requested.py +1 -1
  211. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_search.py +1 -1
  212. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_search_state.py +1 -1
  213. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_start_containers.py +1 -1
  214. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_state.py +1 -1
  215. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_status.py +1 -1
  216. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_status_node.py +1 -1
  217. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_template_parameter_value.py +1 -1
  218. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_security.py +1 -1
  219. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_validation_status.py +1 -1
  220. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/send_run_data_request.py +7 -7
  221. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/solution.py +17 -17
  222. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/solution_access_control.py +7 -7
  223. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/solution_role.py +7 -7
  224. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/solution_security.py +10 -10
  225. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/source_info.py +7 -7
  226. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/sub_dataset_graph_query.py +7 -7
  227. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/twin_graph_batch_result.py +7 -7
  228. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/twin_graph_hash.py +1 -1
  229. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/twin_graph_query.py +1 -1
  230. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/twincache_status_enum.py +1 -1
  231. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/validator.py +1 -1
  232. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/workspace.py +8 -8
  233. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/workspace_access_control.py +7 -7
  234. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/workspace_file.py +7 -7
  235. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/workspace_role.py +7 -7
  236. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/workspace_secret.py +1 -1
  237. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/workspace_security.py +10 -10
  238. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/workspace_solution.py +7 -7
  239. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/workspace_web_app.py +7 -7
  240. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/rest.py +3 -1
  241. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api.egg-info/PKG-INFO +1 -1
  242. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api.egg-info/SOURCES.txt +4 -0
  243. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/setup.py +2 -2
  244. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_component_role_permissions.py +2 -2
  245. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_connector.py +2 -4
  246. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_connector_api.py +1 -8
  247. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_connector_parameter.py +2 -2
  248. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_connector_parameter_group.py +2 -2
  249. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_container_resource_size_info.py +2 -2
  250. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_container_resource_sizing.py +2 -2
  251. cosmotech_api-4.0.0.dev8/test/test_created_run.py +53 -0
  252. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset.py +2 -2
  253. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset_access_control.py +2 -2
  254. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset_api.py +1 -1
  255. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset_compatibility.py +2 -2
  256. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset_connector.py +2 -2
  257. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset_copy_parameters.py +2 -2
  258. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset_role.py +2 -2
  259. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset_search.py +2 -2
  260. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset_security.py +2 -2
  261. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset_source_type.py +1 -1
  262. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset_twin_graph_hash.py +2 -2
  263. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset_twin_graph_info.py +2 -2
  264. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_dataset_twin_graph_query.py +2 -2
  265. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_delete_historical_data.py +2 -2
  266. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_file_upload_metadata.py +2 -2
  267. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_file_upload_validation.py +2 -2
  268. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_graph_properties.py +2 -2
  269. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_ingestion_status_enum.py +1 -1
  270. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_io_types_enum.py +1 -1
  271. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_organization.py +2 -15
  272. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_organization_access_control.py +2 -2
  273. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_organization_api.py +1 -22
  274. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_organization_role.py +2 -2
  275. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_organization_security.py +2 -2
  276. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_organization_service.py +1 -1
  277. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_organization_services.py +1 -1
  278. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_query_result.py +2 -2
  279. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_resource_size_info.py +2 -2
  280. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run.py +3 -8
  281. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_api.py +1 -1
  282. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_container.py +3 -8
  283. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_container_artifact.py +1 -1
  284. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_container_logs.py +1 -1
  285. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_data.py +2 -2
  286. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_data_query.py +2 -2
  287. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_logs.py +11 -11
  288. cosmotech_api-4.0.0.dev8/test/test_run_logs_entry.py +53 -0
  289. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_resource_requested.py +2 -2
  290. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_search.py +1 -1
  291. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_search_state.py +1 -1
  292. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_start_containers.py +1 -1
  293. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_state.py +1 -1
  294. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_status.py +2 -2
  295. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_status_node.py +2 -2
  296. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_template.py +2 -2
  297. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_template_handler_id.py +1 -1
  298. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_template_orchestrator.py +1 -1
  299. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_template_parameter.py +2 -2
  300. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_template_parameter_group.py +2 -2
  301. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_template_parameter_value.py +2 -2
  302. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_template_resource_sizing.py +2 -2
  303. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_run_template_step_source.py +1 -1
  304. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner.py +5 -2
  305. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_access_control.py +2 -2
  306. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_api.py +1 -1
  307. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_changed_parameter_value.py +1 -1
  308. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_comparison_result.py +1 -1
  309. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_data_download_info.py +1 -1
  310. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_data_download_job.py +1 -1
  311. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_job_state.py +1 -1
  312. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_last_run.py +1 -1
  313. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_resource_sizing.py +2 -2
  314. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_role.py +2 -2
  315. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_run_template_parameter_value.py +2 -2
  316. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_security.py +2 -2
  317. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_validation_status.py +1 -1
  318. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario.py +1 -1
  319. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_access_control.py +1 -1
  320. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_api.py +1 -1
  321. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_changed_parameter_value.py +1 -1
  322. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_comparison_result.py +1 -1
  323. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_data_download_info.py +1 -1
  324. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_data_download_job.py +1 -1
  325. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_job_state.py +1 -1
  326. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_last_run.py +1 -1
  327. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_resource_sizing.py +1 -1
  328. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_role.py +1 -1
  329. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run.py +1 -1
  330. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_container.py +1 -1
  331. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_container_artifact.py +1 -1
  332. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_container_logs.py +1 -1
  333. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_logs.py +1 -1
  334. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_resource_requested.py +1 -1
  335. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_result.py +1 -1
  336. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_search.py +1 -1
  337. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_search_state.py +1 -1
  338. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_start_containers.py +1 -1
  339. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_state.py +1 -1
  340. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_status.py +1 -1
  341. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_status_node.py +1 -1
  342. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_run_template_parameter_value.py +1 -1
  343. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_security.py +1 -1
  344. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_validation_status.py +1 -1
  345. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenariorun_api.py +1 -1
  346. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenariorunresult_api.py +1 -1
  347. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_send_run_data_request.py +2 -2
  348. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_solution.py +54 -2
  349. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_solution_access_control.py +2 -2
  350. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_solution_api.py +1 -15
  351. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_solution_role.py +2 -2
  352. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_solution_security.py +2 -2
  353. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_source_info.py +2 -2
  354. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_sub_dataset_graph_query.py +2 -2
  355. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_translated_labels.py +1 -1
  356. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_twin_graph_batch_result.py +2 -2
  357. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_twin_graph_hash.py +1 -1
  358. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_twin_graph_query.py +1 -1
  359. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_twincache_status_enum.py +1 -1
  360. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_twingraph_api.py +1 -1
  361. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_validator.py +1 -1
  362. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_validator_api.py +1 -1
  363. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_validator_run.py +1 -1
  364. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_workspace.py +2 -2
  365. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_workspace_access_control.py +2 -2
  366. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_workspace_api.py +1 -8
  367. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_workspace_file.py +2 -2
  368. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_workspace_role.py +2 -2
  369. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_workspace_secret.py +1 -1
  370. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_workspace_security.py +2 -2
  371. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_workspace_solution.py +2 -2
  372. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_workspace_web_app.py +2 -2
  373. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/LICENSE +0 -0
  374. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api/user_api.py +0 -0
  375. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/api_response.py +0 -0
  376. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/apis/__init__.py +0 -0
  377. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/__init__.py +0 -0
  378. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/organization_user.py +0 -0
  379. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/scenario_user.py +0 -0
  380. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/twin_graph_import.py +0 -0
  381. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/twin_graph_import_info.py +0 -0
  382. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/user.py +0 -0
  383. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/user_organization.py +0 -0
  384. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/user_workspace.py +0 -0
  385. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/model/workspace_user.py +0 -0
  386. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_job_state.py +0 -0
  387. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_last_run.py +0 -0
  388. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_parent_last_run.py +0 -0
  389. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/runner_root_last_run.py +0 -0
  390. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/scenario_run_result.py +0 -0
  391. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/models/validator_run.py +0 -0
  392. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api/py.typed +0 -0
  393. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api.egg-info/dependency_links.txt +0 -0
  394. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api.egg-info/requires.txt +0 -0
  395. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/cosmotech_api.egg-info/top_level.txt +0 -0
  396. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/pyproject.toml +0 -0
  397. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/setup.cfg +0 -0
  398. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_organization_user.py +0 -0
  399. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_parent_last_run.py +0 -0
  400. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_runner_root_last_run.py +0 -0
  401. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_scenario_user.py +0 -0
  402. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_twin_graph_import.py +0 -0
  403. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_twin_graph_import_info.py +0 -0
  404. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_user.py +0 -0
  405. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_user_api.py +0 -0
  406. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_user_organization.py +0 -0
  407. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/test/test_user_workspace.py +0 -0
  408. {cosmotech_api-3.2.6.dev2 → cosmotech_api-4.0.0.dev8}/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.dev2
3
+ Version: 4.0.0.dev8
4
4
  Summary: Cosmo Tech Platform API
5
5
  Home-page:
6
6
  Author: Repository
@@ -3,8 +3,9 @@ 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: 3.2.6
6
+ - API version: 4.0.0-onprem.8
7
7
  - Package version: 1.0.0
8
+ - Generator version: 7.8.0
8
9
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
9
10
  For more information, please visit [https://github.com/Cosmo-Tech/cosmotech-api](https://github.com/Cosmo-Tech/cosmotech-api)
10
11
 
@@ -55,10 +56,10 @@ import cosmotech_api
55
56
  from cosmotech_api.rest import ApiException
56
57
  from pprint import pprint
57
58
 
58
- # Defining the host is optional and defaults to https://dev.api.cosmotech.com
59
+ # Defining the host is optional and defaults to http://localhost
59
60
  # See configuration.py for a list of all supported configuration parameters.
60
61
  configuration = cosmotech_api.Configuration(
61
- host = "https://dev.api.cosmotech.com"
62
+ host = "http://localhost"
62
63
  )
63
64
 
64
65
  # The client must configure the authentication and authorization parameters
@@ -73,7 +74,7 @@ configuration.access_token = os.environ["ACCESS_TOKEN"]
73
74
  with cosmotech_api.ApiClient(configuration) as api_client:
74
75
  # Create an instance of the API class
75
76
  api_instance = cosmotech_api.ConnectorApi(api_client)
76
- page = 56 # int | page number to query (optional)
77
+ page = 56 # int | page number to query (first page is at index 0) (optional)
77
78
  size = 56 # int | amount of result by page (optional)
78
79
 
79
80
  try:
@@ -88,13 +89,12 @@ with cosmotech_api.ApiClient(configuration) as api_client:
88
89
 
89
90
  ## Documentation for API Endpoints
90
91
 
91
- All URIs are relative to *https://dev.api.cosmotech.com*
92
+ All URIs are relative to *http://localhost*
92
93
 
93
94
  Class | Method | HTTP request | Description
94
95
  ------------ | ------------- | ------------- | -------------
95
96
  *ConnectorApi* | [**find_all_connectors**](docs/ConnectorApi.md#find_all_connectors) | **GET** /connectors | List all Connectors
96
97
  *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
98
98
  *ConnectorApi* | [**register_connector**](docs/ConnectorApi.md#register_connector) | **POST** /connectors | Register a new connector
99
99
  *ConnectorApi* | [**unregister_connector**](docs/ConnectorApi.md#unregister_connector) | **DELETE** /connectors/{connector_id} | Unregister a connector
100
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
@@ -142,9 +142,6 @@ Class | Method | HTTP request | Description
142
142
  *OrganizationApi* | [**unregister_organization**](docs/OrganizationApi.md#unregister_organization) | **DELETE** /organizations/{organization_id} | Unregister an organization
143
143
  *OrganizationApi* | [**update_organization**](docs/OrganizationApi.md#update_organization) | **PATCH** /organizations/{organization_id} | Update an Organization
144
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
148
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
149
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
150
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
@@ -167,42 +164,6 @@ Class | Method | HTTP request | Description
167
164
  *RunnerApi* | [**stop_run**](docs/RunnerApi.md#stop_run) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/stop | Stop the last run
168
165
  *RunnerApi* | [**update_runner**](docs/RunnerApi.md#update_runner) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Update a runner
169
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
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
206
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
207
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
208
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
@@ -210,7 +171,6 @@ Class | Method | HTTP request | Description
210
171
  *SolutionApi* | [**create_solution**](docs/SolutionApi.md#create_solution) | **POST** /organizations/{organization_id}/solutions | Register a new solution
211
172
  *SolutionApi* | [**delete_solution**](docs/SolutionApi.md#delete_solution) | **DELETE** /organizations/{organization_id}/solutions/{solution_id} | Delete a solution
212
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
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
214
174
  *SolutionApi* | [**find_all_solutions**](docs/SolutionApi.md#find_all_solutions) | **GET** /organizations/{organization_id}/solutions | List all Solutions
215
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
216
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
@@ -224,23 +184,7 @@ Class | Method | HTTP request | Description
224
184
  *SolutionApi* | [**update_solution**](docs/SolutionApi.md#update_solution) | **PATCH** /organizations/{organization_id}/solutions/{solution_id} | Update a solution
225
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
226
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
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
242
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
243
- *WorkspaceApi* | [**create_secret**](docs/WorkspaceApi.md#create_secret) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/secret | Create a secret for the Workspace
244
188
  *WorkspaceApi* | [**create_workspace**](docs/WorkspaceApi.md#create_workspace) | **POST** /organizations/{organization_id}/workspaces | Create a new workspace
245
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
246
190
  *WorkspaceApi* | [**delete_workspace**](docs/WorkspaceApi.md#delete_workspace) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id} | Delete a workspace
@@ -270,6 +214,7 @@ Class | Method | HTTP request | Description
270
214
  - [ConnectorParameterGroup](docs/ConnectorParameterGroup.md)
271
215
  - [ContainerResourceSizeInfo](docs/ContainerResourceSizeInfo.md)
272
216
  - [ContainerResourceSizing](docs/ContainerResourceSizing.md)
217
+ - [CreatedRun](docs/CreatedRun.md)
273
218
  - [Dataset](docs/Dataset.md)
274
219
  - [DatasetAccessControl](docs/DatasetAccessControl.md)
275
220
  - [DatasetCompatibility](docs/DatasetCompatibility.md)
@@ -292,26 +237,19 @@ Class | Method | HTTP request | Description
292
237
  - [OrganizationAccessControl](docs/OrganizationAccessControl.md)
293
238
  - [OrganizationRole](docs/OrganizationRole.md)
294
239
  - [OrganizationSecurity](docs/OrganizationSecurity.md)
295
- - [OrganizationService](docs/OrganizationService.md)
296
- - [OrganizationServices](docs/OrganizationServices.md)
297
240
  - [QueryResult](docs/QueryResult.md)
298
241
  - [ResourceSizeInfo](docs/ResourceSizeInfo.md)
299
242
  - [Run](docs/Run.md)
300
243
  - [RunContainer](docs/RunContainer.md)
301
- - [RunContainerArtifact](docs/RunContainerArtifact.md)
302
- - [RunContainerLogs](docs/RunContainerLogs.md)
303
244
  - [RunData](docs/RunData.md)
304
245
  - [RunDataQuery](docs/RunDataQuery.md)
305
246
  - [RunLogs](docs/RunLogs.md)
247
+ - [RunLogsEntry](docs/RunLogsEntry.md)
306
248
  - [RunResourceRequested](docs/RunResourceRequested.md)
307
- - [RunSearch](docs/RunSearch.md)
308
- - [RunSearchState](docs/RunSearchState.md)
309
- - [RunStartContainers](docs/RunStartContainers.md)
310
249
  - [RunState](docs/RunState.md)
311
250
  - [RunStatus](docs/RunStatus.md)
312
251
  - [RunStatusNode](docs/RunStatusNode.md)
313
252
  - [RunTemplate](docs/RunTemplate.md)
314
- - [RunTemplateHandlerId](docs/RunTemplateHandlerId.md)
315
253
  - [RunTemplateOrchestrator](docs/RunTemplateOrchestrator.md)
316
254
  - [RunTemplateParameter](docs/RunTemplateParameter.md)
317
255
  - [RunTemplateParameterGroup](docs/RunTemplateParameterGroup.md)
@@ -320,40 +258,11 @@ Class | Method | HTTP request | Description
320
258
  - [RunTemplateStepSource](docs/RunTemplateStepSource.md)
321
259
  - [Runner](docs/Runner.md)
322
260
  - [RunnerAccessControl](docs/RunnerAccessControl.md)
323
- - [RunnerChangedParameterValue](docs/RunnerChangedParameterValue.md)
324
- - [RunnerComparisonResult](docs/RunnerComparisonResult.md)
325
- - [RunnerDataDownloadInfo](docs/RunnerDataDownloadInfo.md)
326
- - [RunnerDataDownloadJob](docs/RunnerDataDownloadJob.md)
327
261
  - [RunnerResourceSizing](docs/RunnerResourceSizing.md)
328
262
  - [RunnerRole](docs/RunnerRole.md)
329
263
  - [RunnerRunTemplateParameterValue](docs/RunnerRunTemplateParameterValue.md)
330
264
  - [RunnerSecurity](docs/RunnerSecurity.md)
331
265
  - [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)
357
266
  - [SendRunDataRequest](docs/SendRunDataRequest.md)
358
267
  - [Solution](docs/Solution.md)
359
268
  - [SolutionAccessControl](docs/SolutionAccessControl.md)
@@ -362,15 +271,11 @@ Class | Method | HTTP request | Description
362
271
  - [SourceInfo](docs/SourceInfo.md)
363
272
  - [SubDatasetGraphQuery](docs/SubDatasetGraphQuery.md)
364
273
  - [TwinGraphBatchResult](docs/TwinGraphBatchResult.md)
365
- - [TwinGraphHash](docs/TwinGraphHash.md)
366
- - [TwinGraphQuery](docs/TwinGraphQuery.md)
367
274
  - [TwincacheStatusEnum](docs/TwincacheStatusEnum.md)
368
- - [Validator](docs/Validator.md)
369
275
  - [Workspace](docs/Workspace.md)
370
276
  - [WorkspaceAccessControl](docs/WorkspaceAccessControl.md)
371
277
  - [WorkspaceFile](docs/WorkspaceFile.md)
372
278
  - [WorkspaceRole](docs/WorkspaceRole.md)
373
- - [WorkspaceSecret](docs/WorkspaceSecret.md)
374
279
  - [WorkspaceSecurity](docs/WorkspaceSecurity.md)
375
280
  - [WorkspaceSolution](docs/WorkspaceSolution.md)
376
281
  - [WorkspaceWebApp](docs/WorkspaceWebApp.md)
@@ -385,10 +290,9 @@ Authentication schemes defined for the API:
385
290
  ### oAuth2AuthCode
386
291
 
387
292
  - **Type**: OAuth
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
293
+ - **Flow**: accessCode
294
+ - **Authorization URL**: https://example.com/authorize
295
+ - **Scopes**: N/A
392
296
 
393
297
 
394
298
  ## Author
@@ -7,7 +7,7 @@
7
7
 
8
8
  Cosmo Tech Platform API
9
9
 
10
- The version of the OpenAPI document: 3.2.6
10
+ The version of the OpenAPI document: 4.0.0-onprem.8
11
11
  Contact: platform@cosmotech.com
12
12
  Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
 
@@ -23,10 +23,7 @@ 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
28
26
  from cosmotech_api.api.solution_api import SolutionApi
29
- from cosmotech_api.api.twingraph_api import TwingraphApi
30
27
  from cosmotech_api.api.workspace_api import WorkspaceApi
31
28
 
32
29
  # import ApiClient
@@ -47,6 +44,7 @@ from cosmotech_api.models.connector_parameter import ConnectorParameter
47
44
  from cosmotech_api.models.connector_parameter_group import ConnectorParameterGroup
48
45
  from cosmotech_api.models.container_resource_size_info import ContainerResourceSizeInfo
49
46
  from cosmotech_api.models.container_resource_sizing import ContainerResourceSizing
47
+ from cosmotech_api.models.created_run import CreatedRun
50
48
  from cosmotech_api.models.dataset import Dataset
51
49
  from cosmotech_api.models.dataset_access_control import DatasetAccessControl
52
50
  from cosmotech_api.models.dataset_compatibility import DatasetCompatibility
@@ -69,26 +67,19 @@ from cosmotech_api.models.organization import Organization
69
67
  from cosmotech_api.models.organization_access_control import OrganizationAccessControl
70
68
  from cosmotech_api.models.organization_role import OrganizationRole
71
69
  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
74
70
  from cosmotech_api.models.query_result import QueryResult
75
71
  from cosmotech_api.models.resource_size_info import ResourceSizeInfo
76
72
  from cosmotech_api.models.run import Run
77
73
  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
80
74
  from cosmotech_api.models.run_data import RunData
81
75
  from cosmotech_api.models.run_data_query import RunDataQuery
82
76
  from cosmotech_api.models.run_logs import RunLogs
77
+ from cosmotech_api.models.run_logs_entry import RunLogsEntry
83
78
  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
87
79
  from cosmotech_api.models.run_state import RunState
88
80
  from cosmotech_api.models.run_status import RunStatus
89
81
  from cosmotech_api.models.run_status_node import RunStatusNode
90
82
  from cosmotech_api.models.run_template import RunTemplate
91
- from cosmotech_api.models.run_template_handler_id import RunTemplateHandlerId
92
83
  from cosmotech_api.models.run_template_orchestrator import RunTemplateOrchestrator
93
84
  from cosmotech_api.models.run_template_parameter import RunTemplateParameter
94
85
  from cosmotech_api.models.run_template_parameter_group import RunTemplateParameterGroup
@@ -97,40 +88,11 @@ from cosmotech_api.models.run_template_resource_sizing import RunTemplateResourc
97
88
  from cosmotech_api.models.run_template_step_source import RunTemplateStepSource
98
89
  from cosmotech_api.models.runner import Runner
99
90
  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
104
91
  from cosmotech_api.models.runner_resource_sizing import RunnerResourceSizing
105
92
  from cosmotech_api.models.runner_role import RunnerRole
106
93
  from cosmotech_api.models.runner_run_template_parameter_value import RunnerRunTemplateParameterValue
107
94
  from cosmotech_api.models.runner_security import RunnerSecurity
108
95
  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
134
96
  from cosmotech_api.models.send_run_data_request import SendRunDataRequest
135
97
  from cosmotech_api.models.solution import Solution
136
98
  from cosmotech_api.models.solution_access_control import SolutionAccessControl
@@ -139,15 +101,11 @@ from cosmotech_api.models.solution_security import SolutionSecurity
139
101
  from cosmotech_api.models.source_info import SourceInfo
140
102
  from cosmotech_api.models.sub_dataset_graph_query import SubDatasetGraphQuery
141
103
  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
144
104
  from cosmotech_api.models.twincache_status_enum import TwincacheStatusEnum
145
- from cosmotech_api.models.validator import Validator
146
105
  from cosmotech_api.models.workspace import Workspace
147
106
  from cosmotech_api.models.workspace_access_control import WorkspaceAccessControl
148
107
  from cosmotech_api.models.workspace_file import WorkspaceFile
149
108
  from cosmotech_api.models.workspace_role import WorkspaceRole
150
- from cosmotech_api.models.workspace_secret import WorkspaceSecret
151
109
  from cosmotech_api.models.workspace_security import WorkspaceSecurity
152
110
  from cosmotech_api.models.workspace_solution import WorkspaceSolution
153
111
  from cosmotech_api.models.workspace_web_app import WorkspaceWebApp
@@ -6,9 +6,6 @@ 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
11
9
  from cosmotech_api.api.solution_api import SolutionApi
12
- from cosmotech_api.api.twingraph_api import TwingraphApi
13
10
  from cosmotech_api.api.workspace_api import WorkspaceApi
14
11