cosmotech-api 3.1.1__tar.gz → 3.2.0.post1__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 (529) hide show
  1. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/PKG-INFO +6 -4
  2. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/README.md +27 -47
  3. cosmotech_api-3.2.0.post1/cosmotech_api/__init__.py +153 -0
  4. cosmotech_api-3.2.0.post1/cosmotech_api/api/__init__.py +14 -0
  5. cosmotech_api-3.2.0.post1/cosmotech_api/api/connector_api.py +1351 -0
  6. cosmotech_api-3.2.0.post1/cosmotech_api/api/dataset_api.py +9148 -0
  7. cosmotech_api-3.2.0.post1/cosmotech_api/api/organization_api.py +4692 -0
  8. cosmotech_api-3.2.0.post1/cosmotech_api/api/run_api.py +2227 -0
  9. cosmotech_api-3.2.0.post1/cosmotech_api/api/runner_api.py +4551 -0
  10. cosmotech_api-3.2.0.post1/cosmotech_api/api/scenario_api.py +6688 -0
  11. cosmotech_api-3.2.0.post1/cosmotech_api/api/scenariorun_api.py +4092 -0
  12. cosmotech_api-3.2.0.post1/cosmotech_api/api/scenariorunresult_api.py +704 -0
  13. cosmotech_api-3.2.0.post1/cosmotech_api/api/solution_api.py +6472 -0
  14. cosmotech_api-3.2.0.post1/cosmotech_api/api/twingraph_api.py +4201 -0
  15. cosmotech_api-3.2.0.post1/cosmotech_api/api/validator_api.py +2566 -0
  16. cosmotech_api-3.2.0.post1/cosmotech_api/api/workspace_api.py +6123 -0
  17. cosmotech_api-3.2.0.post1/cosmotech_api/api_client.py +759 -0
  18. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/configuration.py +63 -73
  19. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/exceptions.py +71 -31
  20. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/component_role_permissions.py +1 -1
  21. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/connector.py +1 -1
  22. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/connector_parameter.py +1 -1
  23. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/connector_parameter_group.py +1 -1
  24. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/container_resource_size_info.py +1 -1
  25. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/container_resource_sizing.py +1 -1
  26. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/dataset.py +1 -1
  27. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/dataset_access_control.py +1 -1
  28. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/dataset_compatibility.py +1 -1
  29. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/dataset_connector.py +1 -1
  30. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/dataset_copy_parameters.py +1 -1
  31. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/dataset_role.py +1 -1
  32. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/dataset_search.py +1 -1
  33. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/dataset_security.py +1 -1
  34. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/dataset_source_type.py +1 -1
  35. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/dataset_twin_graph_hash.py +1 -1
  36. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/dataset_twin_graph_info.py +1 -1
  37. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/dataset_twin_graph_query.py +1 -1
  38. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/delete_historical_data.py +1 -1
  39. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/file_upload_metadata.py +1 -1
  40. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/file_upload_validation.py +1 -1
  41. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/graph_properties.py +1 -1
  42. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/organization.py +1 -1
  43. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/organization_access_control.py +1 -1
  44. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/organization_role.py +1 -1
  45. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/organization_security.py +1 -1
  46. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/organization_service.py +1 -1
  47. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/organization_services.py +1 -1
  48. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/resource_size_info.py +1 -1
  49. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run.py +1 -1
  50. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_container.py +1 -1
  51. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_container_artifact.py +1 -1
  52. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_container_logs.py +1 -1
  53. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_logs.py +1 -1
  54. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_resource_requested.py +1 -1
  55. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_search.py +1 -1
  56. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_start_containers.py +1 -1
  57. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_state.py +1 -1
  58. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_status.py +1 -1
  59. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_status_node.py +1 -1
  60. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_template.py +1 -1
  61. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_template_handler_id.py +1 -1
  62. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_template_orchestrator.py +1 -1
  63. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_template_parameter.py +1 -1
  64. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_template_parameter_group.py +1 -1
  65. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_template_parameter_value.py +1 -1
  66. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_template_resource_sizing.py +1 -1
  67. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/run_template_step_source.py +1 -1
  68. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner.py +1 -1
  69. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner_access_control.py +1 -1
  70. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner_changed_parameter_value.py +1 -1
  71. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner_comparison_result.py +1 -1
  72. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner_data_download_info.py +1 -1
  73. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner_data_download_job.py +1 -1
  74. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner_job_state.py +1 -1
  75. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner_last_run.py +1 -1
  76. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner_resource_sizing.py +1 -1
  77. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner_role.py +1 -1
  78. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner_run_template_parameter_value.py +1 -1
  79. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner_security.py +1 -1
  80. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/runner_validation_status.py +1 -1
  81. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario.py +1 -1
  82. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_access_control.py +1 -1
  83. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_changed_parameter_value.py +1 -1
  84. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_comparison_result.py +1 -1
  85. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_data_download_info.py +1 -1
  86. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_data_download_job.py +1 -1
  87. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_job_state.py +1 -1
  88. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_last_run.py +1 -1
  89. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_resource_sizing.py +1 -1
  90. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_role.py +1 -1
  91. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run.py +1 -1
  92. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run_container.py +1 -1
  93. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run_container_artifact.py +1 -1
  94. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run_container_logs.py +1 -1
  95. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run_logs.py +1 -1
  96. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run_resource_requested.py +1 -1
  97. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run_result.py +1 -1
  98. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run_search.py +1 -1
  99. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run_start_containers.py +1 -1
  100. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run_state.py +1 -1
  101. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run_status.py +1 -1
  102. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run_status_node.py +1 -1
  103. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_run_template_parameter_value.py +1 -1
  104. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_security.py +1 -1
  105. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_validation_status.py +1 -1
  106. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/solution.py +1 -1
  107. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/solution_access_control.py +1 -1
  108. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/solution_role.py +1 -1
  109. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/solution_security.py +1 -1
  110. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/source_info.py +1 -1
  111. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/sub_dataset_graph_query.py +1 -1
  112. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/translated_labels.py +1 -1
  113. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/twin_graph_batch_result.py +1 -1
  114. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/twin_graph_hash.py +1 -1
  115. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/twin_graph_import.py +1 -1
  116. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/twin_graph_import_info.py +1 -1
  117. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/twin_graph_query.py +1 -1
  118. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/validator.py +1 -1
  119. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/validator_run.py +1 -1
  120. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/workspace.py +1 -1
  121. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/workspace_access_control.py +1 -1
  122. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/workspace_file.py +1 -1
  123. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/workspace_role.py +1 -1
  124. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/workspace_secret.py +1 -1
  125. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/workspace_security.py +1 -1
  126. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/workspace_solution.py +1 -1
  127. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/workspace_web_app.py +1 -1
  128. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model_utils.py +1 -1
  129. cosmotech_api-3.2.0.post1/cosmotech_api/models/__init__.py +127 -0
  130. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/component_role_permissions.py +1 -1
  131. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/connector.py +1 -1
  132. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/connector_parameter.py +1 -1
  133. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/connector_parameter_group.py +1 -1
  134. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/container_resource_size_info.py +1 -1
  135. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/container_resource_sizing.py +1 -1
  136. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/dataset.py +1 -1
  137. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/dataset_access_control.py +1 -1
  138. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/dataset_compatibility.py +1 -1
  139. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/dataset_connector.py +1 -1
  140. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/dataset_copy_parameters.py +1 -1
  141. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/dataset_role.py +1 -1
  142. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/dataset_search.py +1 -1
  143. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/dataset_security.py +1 -1
  144. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/dataset_source_type.py +1 -1
  145. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/dataset_twin_graph_hash.py +1 -1
  146. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/dataset_twin_graph_info.py +1 -1
  147. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/dataset_twin_graph_query.py +1 -1
  148. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/delete_historical_data.py +1 -1
  149. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/file_upload_metadata.py +1 -1
  150. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/file_upload_validation.py +1 -1
  151. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/graph_properties.py +1 -1
  152. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/organization.py +1 -1
  153. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/organization_access_control.py +1 -1
  154. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/organization_role.py +1 -1
  155. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/organization_security.py +1 -1
  156. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/organization_service.py +1 -1
  157. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/organization_services.py +1 -1
  158. cosmotech_api-3.2.0.post1/cosmotech_api/models/query_result.py +88 -0
  159. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/resource_size_info.py +1 -1
  160. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run.py +1 -1
  161. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_container.py +1 -1
  162. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_container_artifact.py +1 -1
  163. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_container_logs.py +1 -1
  164. cosmotech_api-3.2.0.post1/cosmotech_api/models/run_data.py +92 -0
  165. cosmotech_api-3.2.0.post1/cosmotech_api/models/run_data_query.py +88 -0
  166. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_logs.py +1 -1
  167. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_resource_requested.py +1 -1
  168. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_search.py +1 -1
  169. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_start_containers.py +1 -1
  170. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_state.py +1 -1
  171. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_status.py +1 -1
  172. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_status_node.py +1 -1
  173. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_template.py +1 -1
  174. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_template_handler_id.py +1 -1
  175. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_template_orchestrator.py +1 -1
  176. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_template_parameter.py +1 -1
  177. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_template_parameter_group.py +1 -1
  178. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_template_parameter_value.py +1 -1
  179. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_template_resource_sizing.py +1 -1
  180. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/run_template_step_source.py +1 -1
  181. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner.py +1 -1
  182. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_access_control.py +1 -1
  183. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_changed_parameter_value.py +1 -1
  184. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_comparison_result.py +1 -1
  185. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_data_download_info.py +1 -1
  186. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_data_download_job.py +1 -1
  187. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_job_state.py +1 -1
  188. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_last_run.py +1 -1
  189. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_parent_last_run.py +1 -1
  190. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_resource_sizing.py +1 -1
  191. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_role.py +1 -1
  192. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_root_last_run.py +1 -1
  193. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_run_template_parameter_value.py +1 -1
  194. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_security.py +1 -1
  195. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/runner_validation_status.py +1 -1
  196. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario.py +1 -1
  197. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_access_control.py +1 -1
  198. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_changed_parameter_value.py +1 -1
  199. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_comparison_result.py +1 -1
  200. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_data_download_info.py +1 -1
  201. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_data_download_job.py +1 -1
  202. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_job_state.py +1 -1
  203. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_last_run.py +1 -1
  204. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_resource_sizing.py +1 -1
  205. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_role.py +1 -1
  206. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run.py +1 -1
  207. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run_container.py +1 -1
  208. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run_container_artifact.py +1 -1
  209. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run_container_logs.py +1 -1
  210. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run_logs.py +1 -1
  211. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run_resource_requested.py +1 -1
  212. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run_search.py +1 -1
  213. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run_start_containers.py +1 -1
  214. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run_state.py +1 -1
  215. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run_status.py +1 -1
  216. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run_status_node.py +1 -1
  217. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run_template_parameter_value.py +1 -1
  218. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_security.py +1 -1
  219. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_validation_status.py +1 -1
  220. cosmotech_api-3.2.0.post1/cosmotech_api/models/send_run_data_request.py +90 -0
  221. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/solution.py +1 -1
  222. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/solution_access_control.py +1 -1
  223. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/solution_role.py +1 -1
  224. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/solution_security.py +1 -1
  225. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/source_info.py +1 -1
  226. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/sub_dataset_graph_query.py +1 -1
  227. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/twin_graph_batch_result.py +1 -1
  228. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/twin_graph_hash.py +1 -1
  229. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/twin_graph_query.py +1 -1
  230. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/validator.py +1 -1
  231. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/validator_run.py +1 -1
  232. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/workspace.py +1 -1
  233. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/workspace_access_control.py +1 -1
  234. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/workspace_file.py +1 -1
  235. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/workspace_role.py +1 -1
  236. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/workspace_secret.py +1 -1
  237. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/workspace_security.py +1 -1
  238. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/workspace_solution.py +1 -1
  239. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/workspace_web_app.py +1 -1
  240. cosmotech_api-3.2.0.post1/cosmotech_api/rest.py +256 -0
  241. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api.egg-info/PKG-INFO +6 -4
  242. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api.egg-info/SOURCES.txt +8 -0
  243. cosmotech_api-3.2.0.post1/cosmotech_api.egg-info/requires.txt +4 -0
  244. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/setup.py +19 -12
  245. cosmotech_api-3.2.0.post1/test/test_component_role_permissions.py +57 -0
  246. cosmotech_api-3.2.0.post1/test/test_connector.py +83 -0
  247. cosmotech_api-3.2.0.post1/test/test_connector_api.py +67 -0
  248. cosmotech_api-3.2.0.post1/test/test_connector_parameter.py +61 -0
  249. cosmotech_api-3.2.0.post1/test/test_connector_parameter_group.py +77 -0
  250. cosmotech_api-3.2.0.post1/test/test_container_resource_size_info.py +55 -0
  251. cosmotech_api-3.2.0.post1/test/test_container_resource_sizing.py +63 -0
  252. cosmotech_api-3.2.0.post1/test/test_dataset.py +103 -0
  253. cosmotech_api-3.2.0.post1/test/test_dataset_access_control.py +55 -0
  254. cosmotech_api-3.2.0.post1/test/test_dataset_api.py +247 -0
  255. cosmotech_api-3.2.0.post1/test/test_dataset_compatibility.py +55 -0
  256. cosmotech_api-3.2.0.post1/test/test_dataset_connector.py +57 -0
  257. cosmotech_api-3.2.0.post1/test/test_dataset_copy_parameters.py +54 -0
  258. cosmotech_api-3.2.0.post1/test/test_dataset_role.py +53 -0
  259. cosmotech_api-3.2.0.post1/test/test_dataset_search.py +57 -0
  260. cosmotech_api-3.2.0.post1/test/test_dataset_security.py +63 -0
  261. cosmotech_api-3.2.0.post1/test/test_dataset_source_type.py +34 -0
  262. cosmotech_api-3.2.0.post1/test/test_dataset_twin_graph_hash.py +52 -0
  263. cosmotech_api-3.2.0.post1/test/test_dataset_twin_graph_info.py +54 -0
  264. cosmotech_api-3.2.0.post1/test/test_dataset_twin_graph_query.py +53 -0
  265. cosmotech_api-3.2.0.post1/test/test_delete_historical_data.py +55 -0
  266. cosmotech_api-3.2.0.post1/test/test_file_upload_metadata.py +53 -0
  267. cosmotech_api-3.2.0.post1/test/test_file_upload_validation.py +61 -0
  268. cosmotech_api-3.2.0.post1/test/test_graph_properties.py +56 -0
  269. cosmotech_api-3.2.0.post1/test/test_organization.py +74 -0
  270. cosmotech_api-3.2.0.post1/test/test_organization_access_control.py +55 -0
  271. cosmotech_api-3.2.0.post1/test/test_organization_api.py +151 -0
  272. cosmotech_api-3.2.0.post1/test/test_organization_role.py +53 -0
  273. cosmotech_api-3.2.0.post1/test/test_organization_security.py +63 -0
  274. cosmotech_api-3.2.0.post1/test/test_organization_service.py +56 -0
  275. cosmotech_api-3.2.0.post1/test/test_organization_services.py +64 -0
  276. cosmotech_api-3.2.0.post1/test/test_query_result.py +54 -0
  277. cosmotech_api-3.2.0.post1/test/test_resource_size_info.py +55 -0
  278. cosmotech_api-3.2.0.post1/test/test_run.py +109 -0
  279. cosmotech_api-3.2.0.post1/test/test_run_api.py +81 -0
  280. cosmotech_api-3.2.0.post1/test/test_run_container.py +83 -0
  281. cosmotech_api-3.2.0.post1/test/test_run_container_artifact.py +53 -0
  282. cosmotech_api-3.2.0.post1/test/test_run_container_logs.py +57 -0
  283. cosmotech_api-3.2.0.post1/test/test_run_data.py +56 -0
  284. cosmotech_api-3.2.0.post1/test/test_run_data_query.py +53 -0
  285. cosmotech_api-3.2.0.post1/test/test_run_logs.py +61 -0
  286. cosmotech_api-3.2.0.post1/test/test_run_resource_requested.py +53 -0
  287. cosmotech_api-3.2.0.post1/test/test_run_search.py +59 -0
  288. cosmotech_api-3.2.0.post1/test/test_run_start_containers.py +124 -0
  289. cosmotech_api-3.2.0.post1/test/test_run_state.py +34 -0
  290. cosmotech_api-3.2.0.post1/test/test_run_status.py +83 -0
  291. cosmotech_api-3.2.0.post1/test/test_run_status_node.py +67 -0
  292. cosmotech_api-3.2.0.post1/test/test_run_template.py +101 -0
  293. cosmotech_api-3.2.0.post1/test/test_run_template_handler_id.py +34 -0
  294. cosmotech_api-3.2.0.post1/test/test_run_template_orchestrator.py +34 -0
  295. cosmotech_api-3.2.0.post1/test/test_run_template_parameter.py +62 -0
  296. cosmotech_api-3.2.0.post1/test/test_run_template_parameter_group.py +62 -0
  297. cosmotech_api-3.2.0.post1/test/test_run_template_parameter_value.py +56 -0
  298. cosmotech_api-3.2.0.post1/test/test_run_template_resource_sizing.py +63 -0
  299. cosmotech_api-3.2.0.post1/test/test_run_template_step_source.py +34 -0
  300. cosmotech_api-3.2.0.post1/test/test_runner.py +98 -0
  301. cosmotech_api-3.2.0.post1/test/test_runner_access_control.py +55 -0
  302. cosmotech_api-3.2.0.post1/test/test_runner_api.py +137 -0
  303. cosmotech_api-3.2.0.post1/test/test_runner_changed_parameter_value.py +55 -0
  304. cosmotech_api-3.2.0.post1/test/test_runner_comparison_result.py +60 -0
  305. cosmotech_api-3.2.0.post1/test/test_runner_data_download_info.py +53 -0
  306. cosmotech_api-3.2.0.post1/test/test_runner_data_download_job.py +52 -0
  307. cosmotech_api-3.2.0.post1/test/test_runner_job_state.py +34 -0
  308. cosmotech_api-3.2.0.post1/test/test_runner_last_run.py +55 -0
  309. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/test/test_runner_parent_last_run.py +1 -1
  310. cosmotech_api-3.2.0.post1/test/test_runner_resource_sizing.py +63 -0
  311. cosmotech_api-3.2.0.post1/test/test_runner_role.py +53 -0
  312. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/test/test_runner_root_last_run.py +1 -1
  313. cosmotech_api-3.2.0.post1/test/test_runner_run_template_parameter_value.py +57 -0
  314. cosmotech_api-3.2.0.post1/test/test_runner_security.py +63 -0
  315. cosmotech_api-3.2.0.post1/test/test_runner_validation_status.py +34 -0
  316. cosmotech_api-3.2.0.post1/test/test_scenario.py +110 -0
  317. cosmotech_api-3.2.0.post1/test/test_scenario_access_control.py +55 -0
  318. cosmotech_api-3.2.0.post1/test/test_scenario_api.py +186 -0
  319. cosmotech_api-3.2.0.post1/test/test_scenario_changed_parameter_value.py +55 -0
  320. cosmotech_api-3.2.0.post1/test/test_scenario_comparison_result.py +60 -0
  321. cosmotech_api-3.2.0.post1/test/test_scenario_data_download_info.py +53 -0
  322. cosmotech_api-3.2.0.post1/test/test_scenario_data_download_job.py +52 -0
  323. cosmotech_api-3.2.0.post1/test/test_scenario_job_state.py +34 -0
  324. cosmotech_api-3.2.0.post1/test/test_scenario_last_run.py +55 -0
  325. cosmotech_api-3.2.0.post1/test/test_scenario_resource_sizing.py +63 -0
  326. cosmotech_api-3.2.0.post1/test/test_scenario_role.py +53 -0
  327. cosmotech_api-3.2.0.post1/test/test_scenario_run.py +113 -0
  328. cosmotech_api-3.2.0.post1/test/test_scenario_run_container.py +83 -0
  329. cosmotech_api-3.2.0.post1/test/test_scenario_run_container_artifact.py +53 -0
  330. cosmotech_api-3.2.0.post1/test/test_scenario_run_container_logs.py +57 -0
  331. cosmotech_api-3.2.0.post1/test/test_scenario_run_logs.py +61 -0
  332. cosmotech_api-3.2.0.post1/test/test_scenario_run_resource_requested.py +53 -0
  333. cosmotech_api-3.2.0.post1/test/test_scenario_run_result.py +57 -0
  334. cosmotech_api-3.2.0.post1/test/test_scenario_run_search.py +59 -0
  335. cosmotech_api-3.2.0.post1/test/test_scenario_run_start_containers.py +124 -0
  336. cosmotech_api-3.2.0.post1/test/test_scenario_run_state.py +34 -0
  337. cosmotech_api-3.2.0.post1/test/test_scenario_run_status.py +81 -0
  338. cosmotech_api-3.2.0.post1/test/test_scenario_run_status_node.py +67 -0
  339. cosmotech_api-3.2.0.post1/test/test_scenario_run_template_parameter_value.py +57 -0
  340. cosmotech_api-3.2.0.post1/test/test_scenario_security.py +63 -0
  341. cosmotech_api-3.2.0.post1/test/test_scenario_validation_status.py +34 -0
  342. cosmotech_api-3.2.0.post1/test/test_scenariorun_api.py +130 -0
  343. cosmotech_api-3.2.0.post1/test/test_scenariorunresult_api.py +46 -0
  344. cosmotech_api-3.2.0.post1/test/test_send_run_data_request.py +55 -0
  345. cosmotech_api-3.2.0.post1/test/test_solution.py +151 -0
  346. cosmotech_api-3.2.0.post1/test/test_solution_access_control.py +55 -0
  347. cosmotech_api-3.2.0.post1/test/test_solution_api.py +186 -0
  348. cosmotech_api-3.2.0.post1/test/test_solution_role.py +53 -0
  349. cosmotech_api-3.2.0.post1/test/test_solution_security.py +63 -0
  350. cosmotech_api-3.2.0.post1/test/test_source_info.py +56 -0
  351. cosmotech_api-3.2.0.post1/test/test_sub_dataset_graph_query.py +57 -0
  352. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/test/test_translated_labels.py +1 -1
  353. cosmotech_api-3.2.0.post1/test/test_twin_graph_batch_result.py +61 -0
  354. cosmotech_api-3.2.0.post1/test/test_twin_graph_hash.py +52 -0
  355. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/test/test_twin_graph_import.py +1 -1
  356. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/test/test_twin_graph_import_info.py +1 -1
  357. cosmotech_api-3.2.0.post1/test/test_twin_graph_query.py +54 -0
  358. cosmotech_api-3.2.0.post1/test/test_twingraph_api.py +130 -0
  359. cosmotech_api-3.2.0.post1/test/test_validator.py +65 -0
  360. cosmotech_api-3.2.0.post1/test/test_validator_api.py +95 -0
  361. cosmotech_api-3.2.0.post1/test/test_validator_run.py +60 -0
  362. cosmotech_api-3.2.0.post1/test/test_workspace.py +96 -0
  363. cosmotech_api-3.2.0.post1/test/test_workspace_access_control.py +55 -0
  364. cosmotech_api-3.2.0.post1/test/test_workspace_api.py +177 -0
  365. cosmotech_api-3.2.0.post1/test/test_workspace_file.py +52 -0
  366. cosmotech_api-3.2.0.post1/test/test_workspace_role.py +53 -0
  367. cosmotech_api-3.2.0.post1/test/test_workspace_secret.py +52 -0
  368. cosmotech_api-3.2.0.post1/test/test_workspace_security.py +63 -0
  369. cosmotech_api-3.2.0.post1/test/test_workspace_solution.py +56 -0
  370. cosmotech_api-3.2.0.post1/test/test_workspace_web_app.py +55 -0
  371. cosmotech-api-3.1.1/cosmotech_api/__init__.py +0 -28
  372. cosmotech-api-3.1.1/cosmotech_api/api/__init__.py +0 -3
  373. cosmotech-api-3.1.1/cosmotech_api/api/connector_api.py +0 -679
  374. cosmotech-api-3.1.1/cosmotech_api/api/dataset_api.py +0 -4639
  375. cosmotech-api-3.1.1/cosmotech_api/api/organization_api.py +0 -2328
  376. cosmotech-api-3.1.1/cosmotech_api/api/run_api.py +0 -831
  377. cosmotech-api-3.1.1/cosmotech_api/api/runner_api.py +0 -2348
  378. cosmotech-api-3.1.1/cosmotech_api/api/scenario_api.py +0 -3409
  379. cosmotech-api-3.1.1/cosmotech_api/api/scenariorun_api.py +0 -2045
  380. cosmotech-api-3.1.1/cosmotech_api/api/scenariorunresult_api.py +0 -386
  381. cosmotech-api-3.1.1/cosmotech_api/api/solution_api.py +0 -3271
  382. cosmotech-api-3.1.1/cosmotech_api/api/twingraph_api.py +0 -2144
  383. cosmotech-api-3.1.1/cosmotech_api/api/validator_api.py +0 -1314
  384. cosmotech-api-3.1.1/cosmotech_api/api/workspace_api.py +0 -3101
  385. cosmotech-api-3.1.1/cosmotech_api/api_client.py +0 -867
  386. cosmotech-api-3.1.1/cosmotech_api/models/__init__.py +0 -117
  387. cosmotech-api-3.1.1/cosmotech_api/rest.py +0 -347
  388. cosmotech-api-3.1.1/cosmotech_api.egg-info/requires.txt +0 -2
  389. cosmotech-api-3.1.1/test/test_component_role_permissions.py +0 -36
  390. cosmotech-api-3.1.1/test/test_connector.py +0 -38
  391. cosmotech-api-3.1.1/test/test_connector_api.py +0 -64
  392. cosmotech-api-3.1.1/test/test_connector_parameter.py +0 -36
  393. cosmotech-api-3.1.1/test/test_connector_parameter_group.py +0 -38
  394. cosmotech-api-3.1.1/test/test_container_resource_size_info.py +0 -36
  395. cosmotech-api-3.1.1/test/test_container_resource_sizing.py +0 -38
  396. cosmotech-api-3.1.1/test/test_dataset.py +0 -46
  397. cosmotech-api-3.1.1/test/test_dataset_access_control.py +0 -36
  398. cosmotech-api-3.1.1/test/test_dataset_api.py +0 -244
  399. cosmotech-api-3.1.1/test/test_dataset_compatibility.py +0 -36
  400. cosmotech-api-3.1.1/test/test_dataset_connector.py +0 -36
  401. cosmotech-api-3.1.1/test/test_dataset_copy_parameters.py +0 -36
  402. cosmotech-api-3.1.1/test/test_dataset_role.py +0 -36
  403. cosmotech-api-3.1.1/test/test_dataset_search.py +0 -36
  404. cosmotech-api-3.1.1/test/test_dataset_security.py +0 -38
  405. cosmotech-api-3.1.1/test/test_dataset_source_type.py +0 -36
  406. cosmotech-api-3.1.1/test/test_dataset_twin_graph_hash.py +0 -36
  407. cosmotech-api-3.1.1/test/test_dataset_twin_graph_info.py +0 -36
  408. cosmotech-api-3.1.1/test/test_dataset_twin_graph_query.py +0 -36
  409. cosmotech-api-3.1.1/test/test_delete_historical_data.py +0 -36
  410. cosmotech-api-3.1.1/test/test_file_upload_metadata.py +0 -36
  411. cosmotech-api-3.1.1/test/test_file_upload_validation.py +0 -38
  412. cosmotech-api-3.1.1/test/test_graph_properties.py +0 -36
  413. cosmotech-api-3.1.1/test/test_organization.py +0 -40
  414. cosmotech-api-3.1.1/test/test_organization_access_control.py +0 -36
  415. cosmotech-api-3.1.1/test/test_organization_api.py +0 -148
  416. cosmotech-api-3.1.1/test/test_organization_role.py +0 -36
  417. cosmotech-api-3.1.1/test/test_organization_security.py +0 -38
  418. cosmotech-api-3.1.1/test/test_organization_service.py +0 -36
  419. cosmotech-api-3.1.1/test/test_organization_services.py +0 -38
  420. cosmotech-api-3.1.1/test/test_resource_size_info.py +0 -36
  421. cosmotech-api-3.1.1/test/test_run.py +0 -42
  422. cosmotech-api-3.1.1/test/test_run_api.py +0 -64
  423. cosmotech-api-3.1.1/test/test_run_container.py +0 -40
  424. cosmotech-api-3.1.1/test/test_run_container_artifact.py +0 -36
  425. cosmotech-api-3.1.1/test/test_run_container_logs.py +0 -36
  426. cosmotech-api-3.1.1/test/test_run_logs.py +0 -38
  427. cosmotech-api-3.1.1/test/test_run_resource_requested.py +0 -36
  428. cosmotech-api-3.1.1/test/test_run_search.py +0 -36
  429. cosmotech-api-3.1.1/test/test_run_start_containers.py +0 -38
  430. cosmotech-api-3.1.1/test/test_run_state.py +0 -36
  431. cosmotech-api-3.1.1/test/test_run_status.py +0 -40
  432. cosmotech-api-3.1.1/test/test_run_status_node.py +0 -38
  433. cosmotech-api-3.1.1/test/test_run_template.py +0 -46
  434. cosmotech-api-3.1.1/test/test_run_template_handler_id.py +0 -36
  435. cosmotech-api-3.1.1/test/test_run_template_orchestrator.py +0 -36
  436. cosmotech-api-3.1.1/test/test_run_template_parameter.py +0 -38
  437. cosmotech-api-3.1.1/test/test_run_template_parameter_group.py +0 -38
  438. cosmotech-api-3.1.1/test/test_run_template_parameter_value.py +0 -36
  439. cosmotech-api-3.1.1/test/test_run_template_resource_sizing.py +0 -38
  440. cosmotech-api-3.1.1/test/test_run_template_step_source.py +0 -36
  441. cosmotech-api-3.1.1/test/test_runner.py +0 -48
  442. cosmotech-api-3.1.1/test/test_runner_access_control.py +0 -36
  443. cosmotech-api-3.1.1/test/test_runner_api.py +0 -134
  444. cosmotech-api-3.1.1/test/test_runner_changed_parameter_value.py +0 -36
  445. cosmotech-api-3.1.1/test/test_runner_comparison_result.py +0 -38
  446. cosmotech-api-3.1.1/test/test_runner_data_download_info.py +0 -38
  447. cosmotech-api-3.1.1/test/test_runner_data_download_job.py +0 -36
  448. cosmotech-api-3.1.1/test/test_runner_job_state.py +0 -36
  449. cosmotech-api-3.1.1/test/test_runner_last_run.py +0 -36
  450. cosmotech-api-3.1.1/test/test_runner_resource_sizing.py +0 -38
  451. cosmotech-api-3.1.1/test/test_runner_role.py +0 -36
  452. cosmotech-api-3.1.1/test/test_runner_run_template_parameter_value.py +0 -36
  453. cosmotech-api-3.1.1/test/test_runner_security.py +0 -38
  454. cosmotech-api-3.1.1/test/test_runner_validation_status.py +0 -36
  455. cosmotech-api-3.1.1/test/test_scenario.py +0 -48
  456. cosmotech-api-3.1.1/test/test_scenario_access_control.py +0 -36
  457. cosmotech-api-3.1.1/test/test_scenario_api.py +0 -183
  458. cosmotech-api-3.1.1/test/test_scenario_changed_parameter_value.py +0 -36
  459. cosmotech-api-3.1.1/test/test_scenario_comparison_result.py +0 -38
  460. cosmotech-api-3.1.1/test/test_scenario_data_download_info.py +0 -38
  461. cosmotech-api-3.1.1/test/test_scenario_data_download_job.py +0 -36
  462. cosmotech-api-3.1.1/test/test_scenario_job_state.py +0 -36
  463. cosmotech-api-3.1.1/test/test_scenario_last_run.py +0 -36
  464. cosmotech-api-3.1.1/test/test_scenario_resource_sizing.py +0 -38
  465. cosmotech-api-3.1.1/test/test_scenario_role.py +0 -36
  466. cosmotech-api-3.1.1/test/test_scenario_run.py +0 -42
  467. cosmotech-api-3.1.1/test/test_scenario_run_container.py +0 -40
  468. cosmotech-api-3.1.1/test/test_scenario_run_container_artifact.py +0 -36
  469. cosmotech-api-3.1.1/test/test_scenario_run_container_logs.py +0 -36
  470. cosmotech-api-3.1.1/test/test_scenario_run_logs.py +0 -38
  471. cosmotech-api-3.1.1/test/test_scenario_run_resource_requested.py +0 -36
  472. cosmotech-api-3.1.1/test/test_scenario_run_result.py +0 -36
  473. cosmotech-api-3.1.1/test/test_scenario_run_search.py +0 -36
  474. cosmotech-api-3.1.1/test/test_scenario_run_start_containers.py +0 -38
  475. cosmotech-api-3.1.1/test/test_scenario_run_state.py +0 -36
  476. cosmotech-api-3.1.1/test/test_scenario_run_status.py +0 -40
  477. cosmotech-api-3.1.1/test/test_scenario_run_status_node.py +0 -38
  478. cosmotech-api-3.1.1/test/test_scenario_run_template_parameter_value.py +0 -36
  479. cosmotech-api-3.1.1/test/test_scenario_security.py +0 -38
  480. cosmotech-api-3.1.1/test/test_scenario_validation_status.py +0 -36
  481. cosmotech-api-3.1.1/test/test_scenariorun_api.py +0 -127
  482. cosmotech-api-3.1.1/test/test_scenariorunresult_api.py +0 -43
  483. cosmotech-api-3.1.1/test/test_solution.py +0 -44
  484. cosmotech-api-3.1.1/test/test_solution_access_control.py +0 -36
  485. cosmotech-api-3.1.1/test/test_solution_api.py +0 -183
  486. cosmotech-api-3.1.1/test/test_solution_role.py +0 -36
  487. cosmotech-api-3.1.1/test/test_solution_security.py +0 -38
  488. cosmotech-api-3.1.1/test/test_source_info.py +0 -36
  489. cosmotech-api-3.1.1/test/test_sub_dataset_graph_query.py +0 -36
  490. cosmotech-api-3.1.1/test/test_twin_graph_batch_result.py +0 -36
  491. cosmotech-api-3.1.1/test/test_twin_graph_hash.py +0 -36
  492. cosmotech-api-3.1.1/test/test_twin_graph_query.py +0 -36
  493. cosmotech-api-3.1.1/test/test_twingraph_api.py +0 -127
  494. cosmotech-api-3.1.1/test/test_validator.py +0 -36
  495. cosmotech-api-3.1.1/test/test_validator_api.py +0 -92
  496. cosmotech-api-3.1.1/test/test_validator_run.py +0 -36
  497. cosmotech-api-3.1.1/test/test_workspace.py +0 -42
  498. cosmotech-api-3.1.1/test/test_workspace_access_control.py +0 -36
  499. cosmotech-api-3.1.1/test/test_workspace_api.py +0 -174
  500. cosmotech-api-3.1.1/test/test_workspace_file.py +0 -36
  501. cosmotech-api-3.1.1/test/test_workspace_role.py +0 -36
  502. cosmotech-api-3.1.1/test/test_workspace_secret.py +0 -36
  503. cosmotech-api-3.1.1/test/test_workspace_security.py +0 -38
  504. cosmotech-api-3.1.1/test/test_workspace_solution.py +0 -36
  505. cosmotech-api-3.1.1/test/test_workspace_web_app.py +0 -36
  506. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/LICENSE +0 -0
  507. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/api/user_api.py +0 -0
  508. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/api_response.py +0 -0
  509. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/apis/__init__.py +0 -0
  510. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/__init__.py +0 -0
  511. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/organization_user.py +0 -0
  512. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/scenario_user.py +0 -0
  513. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/user.py +0 -0
  514. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/user_organization.py +0 -0
  515. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/user_workspace.py +0 -0
  516. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/model/workspace_user.py +0 -0
  517. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/models/scenario_run_result.py +0 -0
  518. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api/py.typed +0 -0
  519. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api.egg-info/dependency_links.txt +0 -0
  520. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/cosmotech_api.egg-info/top_level.txt +0 -0
  521. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/pyproject.toml +0 -0
  522. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/setup.cfg +0 -0
  523. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/test/test_organization_user.py +0 -0
  524. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/test/test_scenario_user.py +0 -0
  525. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/test/test_user.py +0 -0
  526. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/test/test_user_api.py +0 -0
  527. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/test/test_user_organization.py +0 -0
  528. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/test/test_user_workspace.py +0 -0
  529. {cosmotech-api-3.1.1 → cosmotech_api-3.2.0.post1}/test/test_workspace_user.py +0 -0
@@ -1,16 +1,18 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cosmotech-api
3
- Version: 3.1.1
3
+ Version: 3.2.0.post1
4
4
  Summary: Cosmo Tech Platform API
5
5
  Home-page:
6
6
  Author: Repository
7
7
  Author-email: platform@cosmotech.com
8
8
  License: MIT License
9
9
  Keywords: OpenAPI,OpenAPI-Generator,Cosmo Tech Platform API
10
- Requires-Python: >=3.6
10
+ Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
- Requires-Dist: urllib3>=1.25.3
12
+ Requires-Dist: urllib3<2.1.0,>=1.25.3
13
13
  Requires-Dist: python-dateutil
14
+ Requires-Dist: pydantic>=2
15
+ Requires-Dist: typing-extensions>=4.7.1
14
16
 
15
- Cosmo Tech Platform API # noqa: E501
17
+ Cosmo Tech Platform API
16
18
 
@@ -3,14 +3,14 @@ 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.1.1
6
+ - API version: 3.2.0
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)
10
10
 
11
11
  ## Requirements.
12
12
 
13
- Python >=3.6
13
+ Python 3.7+
14
14
 
15
15
  ## Installation & Usage
16
16
  ### pip install
@@ -41,17 +41,20 @@ Then import the package:
41
41
  import cosmotech_api
42
42
  ```
43
43
 
44
+ ### Tests
45
+
46
+ Execute `pytest` to run the tests.
47
+
44
48
  ## Getting Started
45
49
 
46
50
  Please follow the [installation procedure](#installation--usage) and then run the following:
47
51
 
48
52
  ```python
49
53
 
50
- import time
51
54
  import cosmotech_api
55
+ from cosmotech_api.rest import ApiException
52
56
  from pprint import pprint
53
- from cosmotech_api.api import connector_api
54
- from cosmotech_api.model.connector import Connector
57
+
55
58
  # Defining the host is optional and defaults to https://dev.api.cosmotech.com
56
59
  # See configuration.py for a list of all supported configuration parameters.
57
60
  configuration = cosmotech_api.Configuration(
@@ -63,26 +66,24 @@ configuration = cosmotech_api.Configuration(
63
66
  # Examples for each auth method are provided below, use the example that
64
67
  # satisfies your auth use case.
65
68
 
66
- # Configure OAuth2 access token for authorization: oAuth2AuthCode
67
- configuration = cosmotech_api.Configuration(
68
- host = "https://dev.api.cosmotech.com"
69
- )
70
- configuration.access_token = 'YOUR_ACCESS_TOKEN'
69
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
71
70
 
72
71
 
73
72
  # Enter a context with an instance of the API client
74
73
  with cosmotech_api.ApiClient(configuration) as api_client:
75
74
  # Create an instance of the API class
76
- api_instance = connector_api.ConnectorApi(api_client)
77
- page = 1 # int | page number to query (optional)
78
- size = 1 # int | amount of result by page (optional)
75
+ api_instance = cosmotech_api.ConnectorApi(api_client)
76
+ page = 56 # int | page number to query (optional)
77
+ size = 56 # int | amount of result by page (optional)
79
78
 
80
79
  try:
81
80
  # List all Connectors
82
81
  api_response = api_instance.find_all_connectors(page=page, size=size)
82
+ print("The response of ConnectorApi->find_all_connectors:\n")
83
83
  pprint(api_response)
84
- except cosmotech_api.ApiException as e:
84
+ except ApiException as e:
85
85
  print("Exception when calling ConnectorApi->find_all_connectors: %s\n" % e)
86
+
86
87
  ```
87
88
 
88
89
  ## Documentation for API Endpoints
@@ -149,6 +150,8 @@ Class | Method | HTTP request | Description
149
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
150
151
  *RunApi* | [**get_run_status**](docs/RunApi.md#get_run_status) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}/status | get the status for the Run
151
152
  *RunApi* | [**list_runs**](docs/RunApi.md#list_runs) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs | get the list of Runs for the Runner
153
+ *RunApi* | [**query_run_data**](docs/RunApi.md#query_run_data) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}/data/query | query the run data
154
+ *RunApi* | [**send_run_data**](docs/RunApi.md#send_run_data) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}/data/send | Send data associated to a run
152
155
  *RunnerApi* | [**add_runner_access_control**](docs/RunnerApi.md#add_runner_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access | Add a control access to the Runner
153
156
  *RunnerApi* | [**create_runner**](docs/RunnerApi.md#create_runner) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners | Create a new Runner
154
157
  *RunnerApi* | [**delete_runner**](docs/RunnerApi.md#delete_runner) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Delete a runner
@@ -200,8 +203,6 @@ Class | Method | HTTP request | Description
200
203
  *ScenariorunApi* | [**search_scenario_runs**](docs/ScenariorunApi.md#search_scenario_runs) | **POST** /organizations/{organization_id}/scenarioruns/search | Search ScenarioRuns
201
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
202
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
203
- *ScenariorunresultApi* | [**get_scenario_run_result**](docs/ScenariorunresultApi.md#get_scenario_run_result) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/scenarioruns/{scenariorun_id}/probes/{probe_id} | Get a ScenarioRunResult in the Organization
204
- *ScenariorunresultApi* | [**send_scenario_run_result**](docs/ScenariorunresultApi.md#send_scenario_run_result) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/scenarioruns/{scenariorun_id}/probes/{probe_id} | Create a new ScenarioRunResult in the Organization
205
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
206
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
207
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
@@ -238,15 +239,6 @@ Class | Method | HTTP request | Description
238
239
  *TwingraphApi* | [**query**](docs/TwingraphApi.md#query) | **POST** /organizations/{organization_id}/twingraph/{graph_id}/query | Run a query on a graph instance
239
240
  *TwingraphApi* | [**update_entities**](docs/TwingraphApi.md#update_entities) | **PATCH** /organizations/{organization_id}/twingraph/{graph_id}/entity/{type} | Update entities in a graph instance
240
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
241
- *ValidatorApi* | [**create_validator**](docs/ValidatorApi.md#create_validator) | **POST** /organizations/{organization_id}/datasets/validators | Register a new validator
242
- *ValidatorApi* | [**create_validator_run**](docs/ValidatorApi.md#create_validator_run) | **POST** /organizations/{organization_id}/datasets/validators/{validator_id}/history | Register a new validator run
243
- *ValidatorApi* | [**delete_validator**](docs/ValidatorApi.md#delete_validator) | **DELETE** /organizations/{organization_id}/datasets/validators/{validator_id} | Delete a validator
244
- *ValidatorApi* | [**delete_validator_run**](docs/ValidatorApi.md#delete_validator_run) | **DELETE** /organizations/{organization_id}/datasets/validators/{validator_id}/history/{validatorrun_id} | Delete a validator run
245
- *ValidatorApi* | [**find_all_validator_runs**](docs/ValidatorApi.md#find_all_validator_runs) | **GET** /organizations/{organization_id}/datasets/validators/{validator_id}/history | List all Validator Runs
246
- *ValidatorApi* | [**find_all_validators**](docs/ValidatorApi.md#find_all_validators) | **GET** /organizations/{organization_id}/datasets/validators | List all Validators
247
- *ValidatorApi* | [**find_validator_by_id**](docs/ValidatorApi.md#find_validator_by_id) | **GET** /organizations/{organization_id}/datasets/validators/{validator_id} | Get the details of a validator
248
- *ValidatorApi* | [**find_validator_run_by_id**](docs/ValidatorApi.md#find_validator_run_by_id) | **GET** /organizations/{organization_id}/datasets/validators/{validator_id}/history/{validatorrun_id} | Get the details of a validator run
249
- *ValidatorApi* | [**run_validator**](docs/ValidatorApi.md#run_validator) | **POST** /organizations/{organization_id}/datasets/validators/{validator_id}/run | Run a Validator
250
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
251
243
  *WorkspaceApi* | [**create_secret**](docs/WorkspaceApi.md#create_secret) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/secret | Create a secret for the Workspace
252
244
  *WorkspaceApi* | [**create_workspace**](docs/WorkspaceApi.md#create_workspace) | **POST** /organizations/{organization_id}/workspaces | Create a new workspace
@@ -300,11 +292,14 @@ Class | Method | HTTP request | Description
300
292
  - [OrganizationSecurity](docs/OrganizationSecurity.md)
301
293
  - [OrganizationService](docs/OrganizationService.md)
302
294
  - [OrganizationServices](docs/OrganizationServices.md)
295
+ - [QueryResult](docs/QueryResult.md)
303
296
  - [ResourceSizeInfo](docs/ResourceSizeInfo.md)
304
297
  - [Run](docs/Run.md)
305
298
  - [RunContainer](docs/RunContainer.md)
306
299
  - [RunContainerArtifact](docs/RunContainerArtifact.md)
307
300
  - [RunContainerLogs](docs/RunContainerLogs.md)
301
+ - [RunData](docs/RunData.md)
302
+ - [RunDataQuery](docs/RunDataQuery.md)
308
303
  - [RunLogs](docs/RunLogs.md)
309
304
  - [RunResourceRequested](docs/RunResourceRequested.md)
310
305
  - [RunSearch](docs/RunSearch.md)
@@ -328,8 +323,10 @@ Class | Method | HTTP request | Description
328
323
  - [RunnerDataDownloadJob](docs/RunnerDataDownloadJob.md)
329
324
  - [RunnerJobState](docs/RunnerJobState.md)
330
325
  - [RunnerLastRun](docs/RunnerLastRun.md)
326
+ - [RunnerParentLastRun](docs/RunnerParentLastRun.md)
331
327
  - [RunnerResourceSizing](docs/RunnerResourceSizing.md)
332
328
  - [RunnerRole](docs/RunnerRole.md)
329
+ - [RunnerRootLastRun](docs/RunnerRootLastRun.md)
333
330
  - [RunnerRunTemplateParameterValue](docs/RunnerRunTemplateParameterValue.md)
334
331
  - [RunnerSecurity](docs/RunnerSecurity.md)
335
332
  - [RunnerValidationStatus](docs/RunnerValidationStatus.md)
@@ -349,7 +346,6 @@ Class | Method | HTTP request | Description
349
346
  - [ScenarioRunContainerLogs](docs/ScenarioRunContainerLogs.md)
350
347
  - [ScenarioRunLogs](docs/ScenarioRunLogs.md)
351
348
  - [ScenarioRunResourceRequested](docs/ScenarioRunResourceRequested.md)
352
- - [ScenarioRunResult](docs/ScenarioRunResult.md)
353
349
  - [ScenarioRunSearch](docs/ScenarioRunSearch.md)
354
350
  - [ScenarioRunStartContainers](docs/ScenarioRunStartContainers.md)
355
351
  - [ScenarioRunState](docs/ScenarioRunState.md)
@@ -358,13 +354,13 @@ Class | Method | HTTP request | Description
358
354
  - [ScenarioRunTemplateParameterValue](docs/ScenarioRunTemplateParameterValue.md)
359
355
  - [ScenarioSecurity](docs/ScenarioSecurity.md)
360
356
  - [ScenarioValidationStatus](docs/ScenarioValidationStatus.md)
357
+ - [SendRunDataRequest](docs/SendRunDataRequest.md)
361
358
  - [Solution](docs/Solution.md)
362
359
  - [SolutionAccessControl](docs/SolutionAccessControl.md)
363
360
  - [SolutionRole](docs/SolutionRole.md)
364
361
  - [SolutionSecurity](docs/SolutionSecurity.md)
365
362
  - [SourceInfo](docs/SourceInfo.md)
366
363
  - [SubDatasetGraphQuery](docs/SubDatasetGraphQuery.md)
367
- - [TranslatedLabels](docs/TranslatedLabels.md)
368
364
  - [TwinGraphBatchResult](docs/TwinGraphBatchResult.md)
369
365
  - [TwinGraphHash](docs/TwinGraphHash.md)
370
366
  - [TwinGraphQuery](docs/TwinGraphQuery.md)
@@ -380,10 +376,13 @@ Class | Method | HTTP request | Description
380
376
  - [WorkspaceWebApp](docs/WorkspaceWebApp.md)
381
377
 
382
378
 
379
+ <a id="documentation-for-authorization"></a>
383
380
  ## Documentation For Authorization
384
381
 
385
382
 
386
- ## oAuth2AuthCode
383
+ Authentication schemes defined for the API:
384
+ <a id="oAuth2AuthCode"></a>
385
+ ### oAuth2AuthCode
387
386
 
388
387
  - **Type**: OAuth
389
388
  - **Flow**: implicit
@@ -397,22 +396,3 @@ Class | Method | HTTP request | Description
397
396
  platform@cosmotech.com
398
397
 
399
398
 
400
- ## Notes for Large OpenAPI documents
401
- If the OpenAPI document is large, imports in cosmotech_api.apis and cosmotech_api.models may fail with a
402
- RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:
403
-
404
- Solution 1:
405
- Use specific imports for apis and models like:
406
- - `from cosmotech_api.api.default_api import DefaultApi`
407
- - `from cosmotech_api.model.pet import Pet`
408
-
409
- Solution 2:
410
- Before importing the package, adjust the maximum recursion limit as shown below:
411
- ```
412
- import sys
413
- sys.setrecursionlimit(1500)
414
- import cosmotech_api
415
- from cosmotech_api.apis import *
416
- from cosmotech_api.models import *
417
- ```
418
-
@@ -0,0 +1,153 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Cosmo Tech Platform API
7
+
8
+ Cosmo Tech Platform API
9
+
10
+ The version of the OpenAPI document: 3.2.0
11
+ Contact: platform@cosmotech.com
12
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
13
+
14
+ Do not edit the class manually.
15
+ """ # noqa: E501
16
+
17
+
18
+ __version__ = "1.0.0"
19
+
20
+ # import apis into sdk package
21
+ from cosmotech_api.api.connector_api import ConnectorApi
22
+ from cosmotech_api.api.dataset_api import DatasetApi
23
+ from cosmotech_api.api.organization_api import OrganizationApi
24
+ from cosmotech_api.api.run_api import RunApi
25
+ from cosmotech_api.api.runner_api import RunnerApi
26
+ from cosmotech_api.api.scenario_api import ScenarioApi
27
+ from cosmotech_api.api.scenariorun_api import ScenariorunApi
28
+ from cosmotech_api.api.solution_api import SolutionApi
29
+ from cosmotech_api.api.twingraph_api import TwingraphApi
30
+ from cosmotech_api.api.workspace_api import WorkspaceApi
31
+
32
+ # import ApiClient
33
+ from cosmotech_api.api_response import ApiResponse
34
+ from cosmotech_api.api_client import ApiClient
35
+ from cosmotech_api.configuration import Configuration
36
+ from cosmotech_api.exceptions import OpenApiException
37
+ from cosmotech_api.exceptions import ApiTypeError
38
+ from cosmotech_api.exceptions import ApiValueError
39
+ from cosmotech_api.exceptions import ApiKeyError
40
+ from cosmotech_api.exceptions import ApiAttributeError
41
+ from cosmotech_api.exceptions import ApiException
42
+
43
+ # import models into sdk package
44
+ from cosmotech_api.models.component_role_permissions import ComponentRolePermissions
45
+ from cosmotech_api.models.connector import Connector
46
+ from cosmotech_api.models.connector_parameter import ConnectorParameter
47
+ from cosmotech_api.models.connector_parameter_group import ConnectorParameterGroup
48
+ from cosmotech_api.models.container_resource_size_info import ContainerResourceSizeInfo
49
+ from cosmotech_api.models.container_resource_sizing import ContainerResourceSizing
50
+ from cosmotech_api.models.dataset import Dataset
51
+ from cosmotech_api.models.dataset_access_control import DatasetAccessControl
52
+ from cosmotech_api.models.dataset_compatibility import DatasetCompatibility
53
+ from cosmotech_api.models.dataset_connector import DatasetConnector
54
+ from cosmotech_api.models.dataset_copy_parameters import DatasetCopyParameters
55
+ from cosmotech_api.models.dataset_role import DatasetRole
56
+ from cosmotech_api.models.dataset_search import DatasetSearch
57
+ from cosmotech_api.models.dataset_security import DatasetSecurity
58
+ from cosmotech_api.models.dataset_source_type import DatasetSourceType
59
+ from cosmotech_api.models.dataset_twin_graph_hash import DatasetTwinGraphHash
60
+ from cosmotech_api.models.dataset_twin_graph_info import DatasetTwinGraphInfo
61
+ from cosmotech_api.models.dataset_twin_graph_query import DatasetTwinGraphQuery
62
+ from cosmotech_api.models.delete_historical_data import DeleteHistoricalData
63
+ from cosmotech_api.models.file_upload_metadata import FileUploadMetadata
64
+ from cosmotech_api.models.file_upload_validation import FileUploadValidation
65
+ from cosmotech_api.models.graph_properties import GraphProperties
66
+ from cosmotech_api.models.organization import Organization
67
+ from cosmotech_api.models.organization_access_control import OrganizationAccessControl
68
+ from cosmotech_api.models.organization_role import OrganizationRole
69
+ from cosmotech_api.models.organization_security import OrganizationSecurity
70
+ from cosmotech_api.models.organization_service import OrganizationService
71
+ from cosmotech_api.models.organization_services import OrganizationServices
72
+ from cosmotech_api.models.query_result import QueryResult
73
+ from cosmotech_api.models.resource_size_info import ResourceSizeInfo
74
+ from cosmotech_api.models.run import Run
75
+ from cosmotech_api.models.run_container import RunContainer
76
+ from cosmotech_api.models.run_container_artifact import RunContainerArtifact
77
+ from cosmotech_api.models.run_container_logs import RunContainerLogs
78
+ from cosmotech_api.models.run_data import RunData
79
+ from cosmotech_api.models.run_data_query import RunDataQuery
80
+ from cosmotech_api.models.run_logs import RunLogs
81
+ from cosmotech_api.models.run_resource_requested import RunResourceRequested
82
+ from cosmotech_api.models.run_search import RunSearch
83
+ from cosmotech_api.models.run_start_containers import RunStartContainers
84
+ from cosmotech_api.models.run_state import RunState
85
+ from cosmotech_api.models.run_status import RunStatus
86
+ from cosmotech_api.models.run_status_node import RunStatusNode
87
+ from cosmotech_api.models.run_template import RunTemplate
88
+ from cosmotech_api.models.run_template_handler_id import RunTemplateHandlerId
89
+ from cosmotech_api.models.run_template_orchestrator import RunTemplateOrchestrator
90
+ from cosmotech_api.models.run_template_parameter import RunTemplateParameter
91
+ from cosmotech_api.models.run_template_parameter_group import RunTemplateParameterGroup
92
+ from cosmotech_api.models.run_template_parameter_value import RunTemplateParameterValue
93
+ from cosmotech_api.models.run_template_resource_sizing import RunTemplateResourceSizing
94
+ from cosmotech_api.models.run_template_step_source import RunTemplateStepSource
95
+ from cosmotech_api.models.runner import Runner
96
+ from cosmotech_api.models.runner_access_control import RunnerAccessControl
97
+ from cosmotech_api.models.runner_changed_parameter_value import RunnerChangedParameterValue
98
+ from cosmotech_api.models.runner_comparison_result import RunnerComparisonResult
99
+ from cosmotech_api.models.runner_data_download_info import RunnerDataDownloadInfo
100
+ from cosmotech_api.models.runner_data_download_job import RunnerDataDownloadJob
101
+ from cosmotech_api.models.runner_job_state import RunnerJobState
102
+ from cosmotech_api.models.runner_last_run import RunnerLastRun
103
+ from cosmotech_api.models.runner_parent_last_run import RunnerParentLastRun
104
+ from cosmotech_api.models.runner_resource_sizing import RunnerResourceSizing
105
+ from cosmotech_api.models.runner_role import RunnerRole
106
+ from cosmotech_api.models.runner_root_last_run import RunnerRootLastRun
107
+ from cosmotech_api.models.runner_run_template_parameter_value import RunnerRunTemplateParameterValue
108
+ from cosmotech_api.models.runner_security import RunnerSecurity
109
+ from cosmotech_api.models.runner_validation_status import RunnerValidationStatus
110
+ from cosmotech_api.models.scenario import Scenario
111
+ from cosmotech_api.models.scenario_access_control import ScenarioAccessControl
112
+ from cosmotech_api.models.scenario_changed_parameter_value import ScenarioChangedParameterValue
113
+ from cosmotech_api.models.scenario_comparison_result import ScenarioComparisonResult
114
+ from cosmotech_api.models.scenario_data_download_info import ScenarioDataDownloadInfo
115
+ from cosmotech_api.models.scenario_data_download_job import ScenarioDataDownloadJob
116
+ from cosmotech_api.models.scenario_job_state import ScenarioJobState
117
+ from cosmotech_api.models.scenario_last_run import ScenarioLastRun
118
+ from cosmotech_api.models.scenario_resource_sizing import ScenarioResourceSizing
119
+ from cosmotech_api.models.scenario_role import ScenarioRole
120
+ from cosmotech_api.models.scenario_run import ScenarioRun
121
+ from cosmotech_api.models.scenario_run_container import ScenarioRunContainer
122
+ from cosmotech_api.models.scenario_run_container_artifact import ScenarioRunContainerArtifact
123
+ from cosmotech_api.models.scenario_run_container_logs import ScenarioRunContainerLogs
124
+ from cosmotech_api.models.scenario_run_logs import ScenarioRunLogs
125
+ from cosmotech_api.models.scenario_run_resource_requested import ScenarioRunResourceRequested
126
+ from cosmotech_api.models.scenario_run_search import ScenarioRunSearch
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
+ from cosmotech_api.models.send_run_data_request import SendRunDataRequest
135
+ from cosmotech_api.models.solution import Solution
136
+ from cosmotech_api.models.solution_access_control import SolutionAccessControl
137
+ from cosmotech_api.models.solution_role import SolutionRole
138
+ from cosmotech_api.models.solution_security import SolutionSecurity
139
+ from cosmotech_api.models.source_info import SourceInfo
140
+ from cosmotech_api.models.sub_dataset_graph_query import SubDatasetGraphQuery
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
144
+ from cosmotech_api.models.validator import Validator
145
+ from cosmotech_api.models.validator_run import ValidatorRun
146
+ from cosmotech_api.models.workspace import Workspace
147
+ from cosmotech_api.models.workspace_access_control import WorkspaceAccessControl
148
+ from cosmotech_api.models.workspace_file import WorkspaceFile
149
+ from cosmotech_api.models.workspace_role import WorkspaceRole
150
+ from cosmotech_api.models.workspace_secret import WorkspaceSecret
151
+ from cosmotech_api.models.workspace_security import WorkspaceSecurity
152
+ from cosmotech_api.models.workspace_solution import WorkspaceSolution
153
+ from cosmotech_api.models.workspace_web_app import WorkspaceWebApp
@@ -0,0 +1,14 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from cosmotech_api.api.connector_api import ConnectorApi
5
+ from cosmotech_api.api.dataset_api import DatasetApi
6
+ from cosmotech_api.api.organization_api import OrganizationApi
7
+ from cosmotech_api.api.run_api import RunApi
8
+ from cosmotech_api.api.runner_api import RunnerApi
9
+ from cosmotech_api.api.scenario_api import ScenarioApi
10
+ from cosmotech_api.api.scenariorun_api import ScenariorunApi
11
+ from cosmotech_api.api.solution_api import SolutionApi
12
+ from cosmotech_api.api.twingraph_api import TwingraphApi
13
+ from cosmotech_api.api.workspace_api import WorkspaceApi
14
+