cosmotech-api 3.2.0.post1__tar.gz → 3.2.6__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 (411) hide show
  1. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/PKG-INFO +1 -1
  2. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/README.md +6 -6
  3. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/__init__.py +6 -6
  4. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api/connector_api.py +1 -1
  5. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api/dataset_api.py +6 -6
  6. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api/organization_api.py +1 -1
  7. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api/run_api.py +1 -1
  8. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api/runner_api.py +6 -7
  9. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api/scenario_api.py +1 -1
  10. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api/scenariorun_api.py +1 -1
  11. cosmotech_api-3.2.6/cosmotech_api/api/scenariorunresult_api.py +386 -0
  12. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api/solution_api.py +1 -1
  13. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api/twingraph_api.py +1 -1
  14. cosmotech_api-3.2.6/cosmotech_api/api/validator_api.py +1314 -0
  15. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api/workspace_api.py +1 -1
  16. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api_client.py +1 -1
  17. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/configuration.py +2 -2
  18. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/exceptions.py +1 -1
  19. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/component_role_permissions.py +1 -1
  20. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/connector.py +1 -1
  21. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/connector_parameter.py +1 -1
  22. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/connector_parameter_group.py +1 -1
  23. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/container_resource_size_info.py +1 -1
  24. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/container_resource_sizing.py +1 -1
  25. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/dataset.py +1 -1
  26. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/dataset_access_control.py +1 -1
  27. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/dataset_compatibility.py +1 -1
  28. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/dataset_connector.py +1 -1
  29. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/dataset_copy_parameters.py +1 -1
  30. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/dataset_role.py +1 -1
  31. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/dataset_search.py +1 -1
  32. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/dataset_security.py +1 -1
  33. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/dataset_source_type.py +1 -1
  34. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/dataset_twin_graph_hash.py +1 -1
  35. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/dataset_twin_graph_info.py +1 -1
  36. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/dataset_twin_graph_query.py +1 -1
  37. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/delete_historical_data.py +1 -1
  38. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/file_upload_metadata.py +1 -1
  39. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/file_upload_validation.py +1 -1
  40. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/graph_properties.py +1 -1
  41. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/organization.py +1 -1
  42. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/organization_access_control.py +1 -1
  43. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/organization_role.py +1 -1
  44. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/organization_security.py +1 -1
  45. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/organization_service.py +1 -1
  46. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/organization_services.py +1 -1
  47. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/resource_size_info.py +1 -1
  48. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run.py +1 -1
  49. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_container.py +1 -1
  50. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_container_artifact.py +1 -1
  51. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_container_logs.py +1 -1
  52. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_logs.py +1 -1
  53. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_resource_requested.py +1 -1
  54. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_search.py +1 -1
  55. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_start_containers.py +1 -1
  56. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_state.py +1 -1
  57. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_status.py +1 -1
  58. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_status_node.py +1 -1
  59. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_template.py +1 -1
  60. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_template_handler_id.py +1 -1
  61. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_template_orchestrator.py +1 -1
  62. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_template_parameter.py +1 -1
  63. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_template_parameter_group.py +1 -1
  64. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_template_parameter_value.py +1 -1
  65. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_template_resource_sizing.py +1 -1
  66. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/run_template_step_source.py +1 -1
  67. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner.py +5 -21
  68. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner_access_control.py +1 -1
  69. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner_changed_parameter_value.py +1 -1
  70. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner_comparison_result.py +1 -1
  71. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner_data_download_info.py +1 -11
  72. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner_data_download_job.py +1 -1
  73. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner_job_state.py +1 -1
  74. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner_last_run.py +1 -1
  75. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner_resource_sizing.py +1 -1
  76. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner_role.py +1 -1
  77. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner_run_template_parameter_value.py +1 -1
  78. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner_security.py +1 -1
  79. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/runner_validation_status.py +1 -1
  80. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario.py +1 -1
  81. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_access_control.py +1 -1
  82. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_changed_parameter_value.py +1 -1
  83. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_comparison_result.py +1 -1
  84. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_data_download_info.py +1 -1
  85. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_data_download_job.py +1 -1
  86. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_job_state.py +1 -1
  87. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_last_run.py +1 -1
  88. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_resource_sizing.py +1 -1
  89. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_role.py +1 -1
  90. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run.py +1 -1
  91. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run_container.py +1 -1
  92. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run_container_artifact.py +1 -1
  93. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run_container_logs.py +1 -1
  94. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run_logs.py +1 -1
  95. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run_resource_requested.py +1 -1
  96. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run_result.py +1 -1
  97. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run_search.py +1 -1
  98. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run_start_containers.py +1 -1
  99. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run_state.py +1 -1
  100. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run_status.py +1 -1
  101. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run_status_node.py +1 -1
  102. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_run_template_parameter_value.py +1 -1
  103. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_security.py +1 -1
  104. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_validation_status.py +1 -1
  105. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/solution.py +1 -1
  106. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/solution_access_control.py +1 -1
  107. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/solution_role.py +1 -1
  108. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/solution_security.py +1 -1
  109. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/source_info.py +1 -1
  110. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/sub_dataset_graph_query.py +1 -1
  111. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/translated_labels.py +1 -1
  112. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/twin_graph_batch_result.py +1 -1
  113. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/twin_graph_hash.py +1 -1
  114. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/twin_graph_query.py +1 -1
  115. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/validator.py +1 -1
  116. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/validator_run.py +1 -1
  117. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/workspace.py +1 -1
  118. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/workspace_access_control.py +1 -1
  119. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/workspace_file.py +1 -1
  120. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/workspace_role.py +1 -1
  121. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/workspace_secret.py +1 -1
  122. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/workspace_security.py +1 -1
  123. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/workspace_solution.py +1 -1
  124. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/workspace_web_app.py +1 -1
  125. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model_utils.py +1 -1
  126. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/__init__.py +6 -6
  127. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/component_role_permissions.py +1 -1
  128. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/connector.py +4 -14
  129. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/connector_parameter.py +1 -1
  130. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/connector_parameter_group.py +1 -1
  131. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/container_resource_size_info.py +1 -1
  132. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/container_resource_sizing.py +1 -1
  133. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/dataset.py +6 -24
  134. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/dataset_access_control.py +1 -1
  135. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/dataset_compatibility.py +1 -1
  136. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/dataset_connector.py +1 -1
  137. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/dataset_copy_parameters.py +1 -1
  138. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/dataset_role.py +1 -1
  139. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/dataset_search.py +1 -1
  140. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/dataset_security.py +1 -1
  141. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/dataset_source_type.py +1 -1
  142. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/dataset_twin_graph_hash.py +1 -1
  143. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/dataset_twin_graph_info.py +1 -1
  144. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/dataset_twin_graph_query.py +1 -1
  145. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/delete_historical_data.py +1 -1
  146. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/file_upload_metadata.py +1 -1
  147. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/file_upload_validation.py +1 -1
  148. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/graph_properties.py +1 -1
  149. cosmotech_api-3.2.6/cosmotech_api/models/ingestion_status_enum.py +40 -0
  150. cosmotech_api-3.2.6/cosmotech_api/models/io_types_enum.py +38 -0
  151. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/organization.py +1 -1
  152. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/organization_access_control.py +1 -1
  153. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/organization_role.py +1 -1
  154. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/organization_security.py +1 -1
  155. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/organization_service.py +1 -1
  156. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/organization_services.py +1 -1
  157. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/query_result.py +1 -1
  158. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/resource_size_info.py +1 -1
  159. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run.py +1 -1
  160. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_container.py +1 -1
  161. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_container_artifact.py +1 -1
  162. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_container_logs.py +1 -1
  163. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_data.py +1 -1
  164. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_data_query.py +1 -1
  165. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_logs.py +1 -1
  166. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_resource_requested.py +1 -1
  167. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_search.py +4 -13
  168. cosmotech_api-3.2.6/cosmotech_api/models/run_search_state.py +46 -0
  169. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_start_containers.py +1 -1
  170. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_state.py +1 -1
  171. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_status.py +1 -1
  172. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_status_node.py +1 -1
  173. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_template.py +1 -1
  174. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_template_handler_id.py +1 -1
  175. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_template_orchestrator.py +1 -1
  176. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_template_parameter.py +1 -1
  177. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_template_parameter_group.py +1 -1
  178. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_template_parameter_value.py +1 -1
  179. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_template_resource_sizing.py +1 -1
  180. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/run_template_step_source.py +1 -1
  181. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner.py +4 -23
  182. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_access_control.py +1 -1
  183. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_changed_parameter_value.py +1 -1
  184. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_comparison_result.py +1 -1
  185. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_data_download_info.py +3 -6
  186. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_data_download_job.py +1 -1
  187. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_job_state.py +1 -1
  188. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_last_run.py +1 -1
  189. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_parent_last_run.py +1 -1
  190. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_resource_sizing.py +1 -1
  191. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_role.py +1 -1
  192. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_root_last_run.py +1 -1
  193. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_run_template_parameter_value.py +1 -1
  194. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_security.py +1 -1
  195. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/runner_validation_status.py +1 -1
  196. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario.py +1 -1
  197. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_access_control.py +1 -1
  198. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_changed_parameter_value.py +1 -1
  199. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_comparison_result.py +1 -1
  200. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_data_download_info.py +1 -1
  201. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_data_download_job.py +1 -1
  202. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_job_state.py +1 -1
  203. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_last_run.py +1 -1
  204. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_resource_sizing.py +1 -1
  205. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_role.py +1 -1
  206. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run.py +1 -1
  207. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run_container.py +1 -1
  208. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run_container_artifact.py +1 -1
  209. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run_container_logs.py +1 -1
  210. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run_logs.py +1 -1
  211. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run_resource_requested.py +1 -1
  212. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run_search.py +4 -13
  213. cosmotech_api-3.2.6/cosmotech_api/models/scenario_run_search_state.py +46 -0
  214. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run_start_containers.py +1 -1
  215. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run_state.py +1 -1
  216. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run_status.py +1 -1
  217. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run_status_node.py +1 -1
  218. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run_template_parameter_value.py +1 -1
  219. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_security.py +1 -1
  220. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_validation_status.py +1 -1
  221. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/send_run_data_request.py +1 -1
  222. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/solution.py +1 -1
  223. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/solution_access_control.py +1 -1
  224. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/solution_role.py +1 -1
  225. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/solution_security.py +1 -1
  226. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/source_info.py +1 -1
  227. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/sub_dataset_graph_query.py +1 -1
  228. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/twin_graph_batch_result.py +1 -1
  229. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/twin_graph_hash.py +1 -1
  230. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/twin_graph_query.py +1 -1
  231. cosmotech_api-3.2.6/cosmotech_api/models/twincache_status_enum.py +38 -0
  232. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/validator.py +1 -1
  233. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/workspace.py +1 -1
  234. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/workspace_access_control.py +1 -1
  235. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/workspace_file.py +1 -1
  236. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/workspace_role.py +1 -1
  237. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/workspace_secret.py +1 -1
  238. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/workspace_security.py +1 -1
  239. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/workspace_solution.py +1 -1
  240. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/workspace_web_app.py +1 -1
  241. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/rest.py +1 -1
  242. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api.egg-info/PKG-INFO +1 -1
  243. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api.egg-info/SOURCES.txt +10 -0
  244. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/setup.py +2 -2
  245. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_component_role_permissions.py +1 -1
  246. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_connector.py +1 -1
  247. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_connector_api.py +1 -1
  248. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_connector_parameter.py +1 -1
  249. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_connector_parameter_group.py +1 -1
  250. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_container_resource_size_info.py +1 -1
  251. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_container_resource_sizing.py +1 -1
  252. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset.py +1 -1
  253. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset_access_control.py +1 -1
  254. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset_api.py +1 -1
  255. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset_compatibility.py +1 -1
  256. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset_connector.py +1 -1
  257. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset_copy_parameters.py +1 -1
  258. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset_role.py +1 -1
  259. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset_search.py +1 -1
  260. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset_security.py +1 -1
  261. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset_source_type.py +1 -1
  262. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset_twin_graph_hash.py +1 -1
  263. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset_twin_graph_info.py +1 -1
  264. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_dataset_twin_graph_query.py +1 -1
  265. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_delete_historical_data.py +1 -1
  266. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_file_upload_metadata.py +1 -1
  267. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_file_upload_validation.py +1 -1
  268. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_graph_properties.py +1 -1
  269. cosmotech_api-3.2.6/test/test_ingestion_status_enum.py +34 -0
  270. cosmotech_api-3.2.6/test/test_io_types_enum.py +34 -0
  271. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_organization.py +1 -1
  272. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_organization_access_control.py +1 -1
  273. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_organization_api.py +1 -1
  274. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_organization_role.py +1 -1
  275. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_organization_security.py +1 -1
  276. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_organization_service.py +1 -1
  277. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_organization_services.py +1 -1
  278. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_query_result.py +1 -1
  279. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_resource_size_info.py +1 -1
  280. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run.py +1 -1
  281. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_api.py +1 -1
  282. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_container.py +1 -1
  283. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_container_artifact.py +1 -1
  284. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_container_logs.py +1 -1
  285. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_data.py +1 -1
  286. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_data_query.py +1 -1
  287. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_logs.py +1 -1
  288. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_resource_requested.py +1 -1
  289. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_search.py +1 -1
  290. cosmotech_api-3.2.0.post1/test/test_runner_job_state.py → cosmotech_api-3.2.6/test/test_run_search_state.py +7 -7
  291. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_start_containers.py +1 -1
  292. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_state.py +1 -1
  293. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_status.py +1 -1
  294. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_status_node.py +1 -1
  295. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_template.py +1 -1
  296. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_template_handler_id.py +1 -1
  297. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_template_orchestrator.py +1 -1
  298. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_template_parameter.py +1 -1
  299. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_template_parameter_group.py +1 -1
  300. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_template_parameter_value.py +1 -1
  301. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_template_resource_sizing.py +1 -1
  302. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_run_template_step_source.py +1 -1
  303. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner.py +2 -5
  304. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_access_control.py +1 -1
  305. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_api.py +1 -1
  306. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_changed_parameter_value.py +1 -1
  307. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_comparison_result.py +1 -1
  308. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_data_download_info.py +2 -3
  309. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_data_download_job.py +1 -1
  310. cosmotech_api-3.2.6/test/test_runner_job_state.py +36 -0
  311. cosmotech_api-3.2.6/test/test_runner_last_run.py +36 -0
  312. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_parent_last_run.py +1 -1
  313. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_resource_sizing.py +1 -1
  314. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_role.py +1 -1
  315. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_root_last_run.py +1 -1
  316. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_run_template_parameter_value.py +1 -1
  317. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_security.py +1 -1
  318. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_runner_validation_status.py +1 -1
  319. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario.py +1 -1
  320. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_access_control.py +1 -1
  321. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_api.py +1 -1
  322. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_changed_parameter_value.py +1 -1
  323. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_comparison_result.py +1 -1
  324. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_data_download_info.py +1 -1
  325. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_data_download_job.py +1 -1
  326. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_job_state.py +1 -1
  327. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_last_run.py +1 -1
  328. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_resource_sizing.py +1 -1
  329. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_role.py +1 -1
  330. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_run.py +1 -1
  331. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_run_container.py +1 -1
  332. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_run_container_artifact.py +1 -1
  333. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_run_container_logs.py +1 -1
  334. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_run_logs.py +1 -1
  335. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_run_resource_requested.py +1 -1
  336. cosmotech_api-3.2.6/test/test_scenario_run_result.py +36 -0
  337. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_run_search.py +1 -1
  338. cosmotech_api-3.2.6/test/test_scenario_run_search_state.py +34 -0
  339. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_run_start_containers.py +1 -1
  340. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_run_state.py +1 -1
  341. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_run_status.py +1 -1
  342. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_run_status_node.py +1 -1
  343. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_run_template_parameter_value.py +1 -1
  344. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_security.py +1 -1
  345. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_validation_status.py +1 -1
  346. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenariorun_api.py +1 -1
  347. cosmotech_api-3.2.6/test/test_scenariorunresult_api.py +43 -0
  348. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_send_run_data_request.py +1 -1
  349. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_solution.py +1 -1
  350. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_solution_access_control.py +1 -1
  351. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_solution_api.py +1 -1
  352. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_solution_role.py +1 -1
  353. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_solution_security.py +1 -1
  354. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_source_info.py +1 -1
  355. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_sub_dataset_graph_query.py +1 -1
  356. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_translated_labels.py +1 -1
  357. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_twin_graph_batch_result.py +1 -1
  358. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_twin_graph_hash.py +1 -1
  359. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_twin_graph_query.py +1 -1
  360. cosmotech_api-3.2.6/test/test_twincache_status_enum.py +34 -0
  361. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_twingraph_api.py +1 -1
  362. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_validator.py +1 -1
  363. cosmotech_api-3.2.6/test/test_validator_api.py +92 -0
  364. cosmotech_api-3.2.6/test/test_validator_run.py +36 -0
  365. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_workspace.py +1 -1
  366. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_workspace_access_control.py +1 -1
  367. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_workspace_api.py +1 -1
  368. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_workspace_file.py +1 -1
  369. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_workspace_role.py +1 -1
  370. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_workspace_secret.py +1 -1
  371. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_workspace_security.py +1 -1
  372. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_workspace_solution.py +1 -1
  373. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_workspace_web_app.py +1 -1
  374. cosmotech_api-3.2.0.post1/cosmotech_api/api/scenariorunresult_api.py +0 -704
  375. cosmotech_api-3.2.0.post1/cosmotech_api/api/validator_api.py +0 -2566
  376. cosmotech_api-3.2.0.post1/test/test_runner_last_run.py +0 -55
  377. cosmotech_api-3.2.0.post1/test/test_scenario_run_result.py +0 -57
  378. cosmotech_api-3.2.0.post1/test/test_scenariorunresult_api.py +0 -46
  379. cosmotech_api-3.2.0.post1/test/test_validator_api.py +0 -95
  380. cosmotech_api-3.2.0.post1/test/test_validator_run.py +0 -60
  381. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/LICENSE +0 -0
  382. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api/__init__.py +0 -0
  383. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api/user_api.py +0 -0
  384. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/api_response.py +0 -0
  385. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/apis/__init__.py +0 -0
  386. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/__init__.py +0 -0
  387. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/organization_user.py +0 -0
  388. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/scenario_user.py +0 -0
  389. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/twin_graph_import.py +0 -0
  390. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/twin_graph_import_info.py +0 -0
  391. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/user.py +0 -0
  392. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/user_organization.py +0 -0
  393. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/user_workspace.py +0 -0
  394. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/model/workspace_user.py +0 -0
  395. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/scenario_run_result.py +0 -0
  396. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/models/validator_run.py +0 -0
  397. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api/py.typed +0 -0
  398. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api.egg-info/dependency_links.txt +0 -0
  399. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api.egg-info/requires.txt +0 -0
  400. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/cosmotech_api.egg-info/top_level.txt +0 -0
  401. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/pyproject.toml +0 -0
  402. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/setup.cfg +0 -0
  403. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_organization_user.py +0 -0
  404. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_scenario_user.py +0 -0
  405. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_twin_graph_import.py +0 -0
  406. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_twin_graph_import_info.py +0 -0
  407. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_user.py +0 -0
  408. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_user_api.py +0 -0
  409. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_user_organization.py +0 -0
  410. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/test/test_user_workspace.py +0 -0
  411. {cosmotech_api-3.2.0.post1 → cosmotech_api-3.2.6}/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.0.post1
3
+ Version: 3.2.6
4
4
  Summary: Cosmo Tech Platform API
5
5
  Home-page:
6
6
  Author: Repository
@@ -3,7 +3,7 @@ Cosmo Tech Platform API
3
3
 
4
4
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
5
 
6
- - API version: 3.2.0
6
+ - API version: 3.2.6
7
7
  - Package version: 1.0.0
8
8
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
9
9
  For more information, please visit [https://github.com/Cosmo-Tech/cosmotech-api](https://github.com/Cosmo-Tech/cosmotech-api)
@@ -286,6 +286,8 @@ Class | Method | HTTP request | Description
286
286
  - [FileUploadMetadata](docs/FileUploadMetadata.md)
287
287
  - [FileUploadValidation](docs/FileUploadValidation.md)
288
288
  - [GraphProperties](docs/GraphProperties.md)
289
+ - [IngestionStatusEnum](docs/IngestionStatusEnum.md)
290
+ - [IoTypesEnum](docs/IoTypesEnum.md)
289
291
  - [Organization](docs/Organization.md)
290
292
  - [OrganizationAccessControl](docs/OrganizationAccessControl.md)
291
293
  - [OrganizationRole](docs/OrganizationRole.md)
@@ -303,6 +305,7 @@ Class | Method | HTTP request | Description
303
305
  - [RunLogs](docs/RunLogs.md)
304
306
  - [RunResourceRequested](docs/RunResourceRequested.md)
305
307
  - [RunSearch](docs/RunSearch.md)
308
+ - [RunSearchState](docs/RunSearchState.md)
306
309
  - [RunStartContainers](docs/RunStartContainers.md)
307
310
  - [RunState](docs/RunState.md)
308
311
  - [RunStatus](docs/RunStatus.md)
@@ -321,12 +324,8 @@ Class | Method | HTTP request | Description
321
324
  - [RunnerComparisonResult](docs/RunnerComparisonResult.md)
322
325
  - [RunnerDataDownloadInfo](docs/RunnerDataDownloadInfo.md)
323
326
  - [RunnerDataDownloadJob](docs/RunnerDataDownloadJob.md)
324
- - [RunnerJobState](docs/RunnerJobState.md)
325
- - [RunnerLastRun](docs/RunnerLastRun.md)
326
- - [RunnerParentLastRun](docs/RunnerParentLastRun.md)
327
327
  - [RunnerResourceSizing](docs/RunnerResourceSizing.md)
328
328
  - [RunnerRole](docs/RunnerRole.md)
329
- - [RunnerRootLastRun](docs/RunnerRootLastRun.md)
330
329
  - [RunnerRunTemplateParameterValue](docs/RunnerRunTemplateParameterValue.md)
331
330
  - [RunnerSecurity](docs/RunnerSecurity.md)
332
331
  - [RunnerValidationStatus](docs/RunnerValidationStatus.md)
@@ -347,6 +346,7 @@ Class | Method | HTTP request | Description
347
346
  - [ScenarioRunLogs](docs/ScenarioRunLogs.md)
348
347
  - [ScenarioRunResourceRequested](docs/ScenarioRunResourceRequested.md)
349
348
  - [ScenarioRunSearch](docs/ScenarioRunSearch.md)
349
+ - [ScenarioRunSearchState](docs/ScenarioRunSearchState.md)
350
350
  - [ScenarioRunStartContainers](docs/ScenarioRunStartContainers.md)
351
351
  - [ScenarioRunState](docs/ScenarioRunState.md)
352
352
  - [ScenarioRunStatus](docs/ScenarioRunStatus.md)
@@ -364,8 +364,8 @@ Class | Method | HTTP request | Description
364
364
  - [TwinGraphBatchResult](docs/TwinGraphBatchResult.md)
365
365
  - [TwinGraphHash](docs/TwinGraphHash.md)
366
366
  - [TwinGraphQuery](docs/TwinGraphQuery.md)
367
+ - [TwincacheStatusEnum](docs/TwincacheStatusEnum.md)
367
368
  - [Validator](docs/Validator.md)
368
- - [ValidatorRun](docs/ValidatorRun.md)
369
369
  - [Workspace](docs/Workspace.md)
370
370
  - [WorkspaceAccessControl](docs/WorkspaceAccessControl.md)
371
371
  - [WorkspaceFile](docs/WorkspaceFile.md)
@@ -7,7 +7,7 @@
7
7
 
8
8
  Cosmo Tech Platform API
9
9
 
10
- The version of the OpenAPI document: 3.2.0
10
+ The version of the OpenAPI document: 3.2.6
11
11
  Contact: platform@cosmotech.com
12
12
  Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
 
@@ -63,6 +63,8 @@ from cosmotech_api.models.delete_historical_data import DeleteHistoricalData
63
63
  from cosmotech_api.models.file_upload_metadata import FileUploadMetadata
64
64
  from cosmotech_api.models.file_upload_validation import FileUploadValidation
65
65
  from cosmotech_api.models.graph_properties import GraphProperties
66
+ from cosmotech_api.models.ingestion_status_enum import IngestionStatusEnum
67
+ from cosmotech_api.models.io_types_enum import IoTypesEnum
66
68
  from cosmotech_api.models.organization import Organization
67
69
  from cosmotech_api.models.organization_access_control import OrganizationAccessControl
68
70
  from cosmotech_api.models.organization_role import OrganizationRole
@@ -80,6 +82,7 @@ from cosmotech_api.models.run_data_query import RunDataQuery
80
82
  from cosmotech_api.models.run_logs import RunLogs
81
83
  from cosmotech_api.models.run_resource_requested import RunResourceRequested
82
84
  from cosmotech_api.models.run_search import RunSearch
85
+ from cosmotech_api.models.run_search_state import RunSearchState
83
86
  from cosmotech_api.models.run_start_containers import RunStartContainers
84
87
  from cosmotech_api.models.run_state import RunState
85
88
  from cosmotech_api.models.run_status import RunStatus
@@ -98,12 +101,8 @@ from cosmotech_api.models.runner_changed_parameter_value import RunnerChangedPar
98
101
  from cosmotech_api.models.runner_comparison_result import RunnerComparisonResult
99
102
  from cosmotech_api.models.runner_data_download_info import RunnerDataDownloadInfo
100
103
  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
104
  from cosmotech_api.models.runner_resource_sizing import RunnerResourceSizing
105
105
  from cosmotech_api.models.runner_role import RunnerRole
106
- from cosmotech_api.models.runner_root_last_run import RunnerRootLastRun
107
106
  from cosmotech_api.models.runner_run_template_parameter_value import RunnerRunTemplateParameterValue
108
107
  from cosmotech_api.models.runner_security import RunnerSecurity
109
108
  from cosmotech_api.models.runner_validation_status import RunnerValidationStatus
@@ -124,6 +123,7 @@ from cosmotech_api.models.scenario_run_container_logs import ScenarioRunContaine
124
123
  from cosmotech_api.models.scenario_run_logs import ScenarioRunLogs
125
124
  from cosmotech_api.models.scenario_run_resource_requested import ScenarioRunResourceRequested
126
125
  from cosmotech_api.models.scenario_run_search import ScenarioRunSearch
126
+ from cosmotech_api.models.scenario_run_search_state import ScenarioRunSearchState
127
127
  from cosmotech_api.models.scenario_run_start_containers import ScenarioRunStartContainers
128
128
  from cosmotech_api.models.scenario_run_state import ScenarioRunState
129
129
  from cosmotech_api.models.scenario_run_status import ScenarioRunStatus
@@ -141,8 +141,8 @@ from cosmotech_api.models.sub_dataset_graph_query import SubDatasetGraphQuery
141
141
  from cosmotech_api.models.twin_graph_batch_result import TwinGraphBatchResult
142
142
  from cosmotech_api.models.twin_graph_hash import TwinGraphHash
143
143
  from cosmotech_api.models.twin_graph_query import TwinGraphQuery
144
+ from cosmotech_api.models.twincache_status_enum import TwincacheStatusEnum
144
145
  from cosmotech_api.models.validator import Validator
145
- from cosmotech_api.models.validator_run import ValidatorRun
146
146
  from cosmotech_api.models.workspace import Workspace
147
147
  from cosmotech_api.models.workspace_access_control import WorkspaceAccessControl
148
148
  from cosmotech_api.models.workspace_file import WorkspaceFile
@@ -5,7 +5,7 @@
5
5
 
6
6
  Cosmo Tech Platform API
7
7
 
8
- The version of the OpenAPI document: 3.2.0
8
+ The version of the OpenAPI document: 3.2.6
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Cosmo Tech Platform API
7
7
 
8
- The version of the OpenAPI document: 3.2.0
8
+ The version of the OpenAPI document: 3.2.6
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -7328,7 +7328,7 @@ class DatasetApi:
7328
7328
  _content_type: Optional[StrictStr] = None,
7329
7329
  _headers: Optional[Dict[StrictStr, Any]] = None,
7330
7330
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
7331
- ) -> str:
7331
+ ) -> List[object]:
7332
7332
  """Return the result of a query made on the graph instance as a json
7333
7333
 
7334
7334
  Run a query on a graph instance and return the result as a json
@@ -7372,7 +7372,7 @@ class DatasetApi:
7372
7372
  )
7373
7373
 
7374
7374
  _response_types_map: Dict[str, Optional[str]] = {
7375
- '200': "str",
7375
+ '200': "List[object]",
7376
7376
  }
7377
7377
  response_data = self.api_client.call_api(
7378
7378
  *_param,
@@ -7403,7 +7403,7 @@ class DatasetApi:
7403
7403
  _content_type: Optional[StrictStr] = None,
7404
7404
  _headers: Optional[Dict[StrictStr, Any]] = None,
7405
7405
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
7406
- ) -> ApiResponse[str]:
7406
+ ) -> ApiResponse[List[object]]:
7407
7407
  """Return the result of a query made on the graph instance as a json
7408
7408
 
7409
7409
  Run a query on a graph instance and return the result as a json
@@ -7447,7 +7447,7 @@ class DatasetApi:
7447
7447
  )
7448
7448
 
7449
7449
  _response_types_map: Dict[str, Optional[str]] = {
7450
- '200': "str",
7450
+ '200': "List[object]",
7451
7451
  }
7452
7452
  response_data = self.api_client.call_api(
7453
7453
  *_param,
@@ -7522,7 +7522,7 @@ class DatasetApi:
7522
7522
  )
7523
7523
 
7524
7524
  _response_types_map: Dict[str, Optional[str]] = {
7525
- '200': "str",
7525
+ '200': "List[object]",
7526
7526
  }
7527
7527
  response_data = self.api_client.call_api(
7528
7528
  *_param,
@@ -5,7 +5,7 @@
5
5
 
6
6
  Cosmo Tech Platform API
7
7
 
8
- The version of the OpenAPI document: 3.2.0
8
+ The version of the OpenAPI document: 3.2.6
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Cosmo Tech Platform API
7
7
 
8
- The version of the OpenAPI document: 3.2.0
8
+ The version of the OpenAPI document: 3.2.6
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Cosmo Tech Platform API
7
7
 
8
- The version of the OpenAPI document: 3.2.0
8
+ The version of the OpenAPI document: 3.2.6
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -22,7 +22,6 @@ from typing import Optional
22
22
  from typing_extensions import Annotated
23
23
  from cosmotech_api.models.runner import Runner
24
24
  from cosmotech_api.models.runner_access_control import RunnerAccessControl
25
- from cosmotech_api.models.runner_last_run import RunnerLastRun
26
25
  from cosmotech_api.models.runner_role import RunnerRole
27
26
  from cosmotech_api.models.runner_security import RunnerSecurity
28
27
 
@@ -3348,7 +3347,7 @@ class RunnerApi:
3348
3347
  _content_type: Optional[StrictStr] = None,
3349
3348
  _headers: Optional[Dict[StrictStr, Any]] = None,
3350
3349
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3351
- ) -> RunnerLastRun:
3350
+ ) -> str:
3352
3351
  """Start a run with runner parameters
3353
3352
 
3354
3353
 
@@ -3391,7 +3390,7 @@ class RunnerApi:
3391
3390
  )
3392
3391
 
3393
3392
  _response_types_map: Dict[str, Optional[str]] = {
3394
- '202': "RunnerLastRun",
3393
+ '202': "str",
3395
3394
  '404': None,
3396
3395
  }
3397
3396
  response_data = self.api_client.call_api(
@@ -3423,7 +3422,7 @@ class RunnerApi:
3423
3422
  _content_type: Optional[StrictStr] = None,
3424
3423
  _headers: Optional[Dict[StrictStr, Any]] = None,
3425
3424
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3426
- ) -> ApiResponse[RunnerLastRun]:
3425
+ ) -> ApiResponse[str]:
3427
3426
  """Start a run with runner parameters
3428
3427
 
3429
3428
 
@@ -3466,7 +3465,7 @@ class RunnerApi:
3466
3465
  )
3467
3466
 
3468
3467
  _response_types_map: Dict[str, Optional[str]] = {
3469
- '202': "RunnerLastRun",
3468
+ '202': "str",
3470
3469
  '404': None,
3471
3470
  }
3472
3471
  response_data = self.api_client.call_api(
@@ -3541,7 +3540,7 @@ class RunnerApi:
3541
3540
  )
3542
3541
 
3543
3542
  _response_types_map: Dict[str, Optional[str]] = {
3544
- '202': "RunnerLastRun",
3543
+ '202': "str",
3545
3544
  '404': None,
3546
3545
  }
3547
3546
  response_data = self.api_client.call_api(
@@ -5,7 +5,7 @@
5
5
 
6
6
  Cosmo Tech Platform API
7
7
 
8
- The version of the OpenAPI document: 3.2.0
8
+ The version of the OpenAPI document: 3.2.6
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Cosmo Tech Platform API
7
7
 
8
- The version of the OpenAPI document: 3.2.0
8
+ The version of the OpenAPI document: 3.2.6
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -0,0 +1,386 @@
1
+ """
2
+ Cosmo Tech Platform API
3
+
4
+ Cosmo Tech Platform API # noqa: E501
5
+
6
+ The version of the OpenAPI document: 3.1.9
7
+ Contact: platform@cosmotech.com
8
+ Generated by: https://openapi-generator.tech
9
+ """
10
+
11
+
12
+ import re # noqa: F401
13
+ import sys # noqa: F401
14
+
15
+ from cosmotech_api.api_client import ApiClient, Endpoint as _Endpoint
16
+ from cosmotech_api.model_utils import ( # noqa: F401
17
+ check_allowed_values,
18
+ check_validations,
19
+ date,
20
+ datetime,
21
+ file_type,
22
+ none_type,
23
+ validate_and_convert_types
24
+ )
25
+ from cosmotech_api.model.scenario_run_result import ScenarioRunResult
26
+
27
+
28
+ class ScenariorunresultApi(object):
29
+ """NOTE: This class is auto generated by OpenAPI Generator
30
+ Ref: https://openapi-generator.tech
31
+
32
+ Do not edit the class manually.
33
+ """
34
+
35
+ def __init__(self, api_client=None):
36
+ if api_client is None:
37
+ api_client = ApiClient()
38
+ self.api_client = api_client
39
+ self.get_scenario_run_result_endpoint = _Endpoint(
40
+ settings={
41
+ 'response_type': (ScenarioRunResult,),
42
+ 'auth': [
43
+ 'oAuth2AuthCode'
44
+ ],
45
+ 'endpoint_path': '/organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/scenarioruns/{scenariorun_id}/probes/{probe_id}',
46
+ 'operation_id': 'get_scenario_run_result',
47
+ 'http_method': 'GET',
48
+ 'servers': None,
49
+ },
50
+ params_map={
51
+ 'all': [
52
+ 'organization_id',
53
+ 'workspace_id',
54
+ 'scenario_id',
55
+ 'scenariorun_id',
56
+ 'probe_id',
57
+ ],
58
+ 'required': [
59
+ 'organization_id',
60
+ 'workspace_id',
61
+ 'scenario_id',
62
+ 'scenariorun_id',
63
+ 'probe_id',
64
+ ],
65
+ 'nullable': [
66
+ ],
67
+ 'enum': [
68
+ ],
69
+ 'validation': [
70
+ ]
71
+ },
72
+ root_map={
73
+ 'validations': {
74
+ },
75
+ 'allowed_values': {
76
+ },
77
+ 'openapi_types': {
78
+ 'organization_id':
79
+ (str,),
80
+ 'workspace_id':
81
+ (str,),
82
+ 'scenario_id':
83
+ (str,),
84
+ 'scenariorun_id':
85
+ (str,),
86
+ 'probe_id':
87
+ (str,),
88
+ },
89
+ 'attribute_map': {
90
+ 'organization_id': 'organization_id',
91
+ 'workspace_id': 'workspace_id',
92
+ 'scenario_id': 'scenario_id',
93
+ 'scenariorun_id': 'scenariorun_id',
94
+ 'probe_id': 'probe_id',
95
+ },
96
+ 'location_map': {
97
+ 'organization_id': 'path',
98
+ 'workspace_id': 'path',
99
+ 'scenario_id': 'path',
100
+ 'scenariorun_id': 'path',
101
+ 'probe_id': 'path',
102
+ },
103
+ 'collection_format_map': {
104
+ }
105
+ },
106
+ headers_map={
107
+ 'accept': [
108
+ 'application/json'
109
+ ],
110
+ 'content_type': [],
111
+ },
112
+ api_client=api_client
113
+ )
114
+ self.send_scenario_run_result_endpoint = _Endpoint(
115
+ settings={
116
+ 'response_type': (ScenarioRunResult,),
117
+ 'auth': [
118
+ 'oAuth2AuthCode'
119
+ ],
120
+ 'endpoint_path': '/organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/scenarioruns/{scenariorun_id}/probes/{probe_id}',
121
+ 'operation_id': 'send_scenario_run_result',
122
+ 'http_method': 'POST',
123
+ 'servers': None,
124
+ },
125
+ params_map={
126
+ 'all': [
127
+ 'organization_id',
128
+ 'workspace_id',
129
+ 'scenario_id',
130
+ 'scenariorun_id',
131
+ 'probe_id',
132
+ 'request_body',
133
+ ],
134
+ 'required': [
135
+ 'organization_id',
136
+ 'workspace_id',
137
+ 'scenario_id',
138
+ 'scenariorun_id',
139
+ 'probe_id',
140
+ 'request_body',
141
+ ],
142
+ 'nullable': [
143
+ ],
144
+ 'enum': [
145
+ ],
146
+ 'validation': [
147
+ ]
148
+ },
149
+ root_map={
150
+ 'validations': {
151
+ },
152
+ 'allowed_values': {
153
+ },
154
+ 'openapi_types': {
155
+ 'organization_id':
156
+ (str,),
157
+ 'workspace_id':
158
+ (str,),
159
+ 'scenario_id':
160
+ (str,),
161
+ 'scenariorun_id':
162
+ (str,),
163
+ 'probe_id':
164
+ (str,),
165
+ 'request_body':
166
+ ({str: (str,)},),
167
+ },
168
+ 'attribute_map': {
169
+ 'organization_id': 'organization_id',
170
+ 'workspace_id': 'workspace_id',
171
+ 'scenario_id': 'scenario_id',
172
+ 'scenariorun_id': 'scenariorun_id',
173
+ 'probe_id': 'probe_id',
174
+ },
175
+ 'location_map': {
176
+ 'organization_id': 'path',
177
+ 'workspace_id': 'path',
178
+ 'scenario_id': 'path',
179
+ 'scenariorun_id': 'path',
180
+ 'probe_id': 'path',
181
+ 'request_body': 'body',
182
+ },
183
+ 'collection_format_map': {
184
+ }
185
+ },
186
+ headers_map={
187
+ 'accept': [
188
+ 'application/json'
189
+ ],
190
+ 'content_type': [
191
+ 'application/json'
192
+ ]
193
+ },
194
+ api_client=api_client
195
+ )
196
+
197
+ def get_scenario_run_result(
198
+ self,
199
+ organization_id,
200
+ workspace_id,
201
+ scenario_id,
202
+ scenariorun_id,
203
+ probe_id,
204
+ **kwargs
205
+ ):
206
+ """Get a ScenarioRunResult in the Organization # noqa: E501
207
+
208
+ This method makes a synchronous HTTP request by default. To make an
209
+ asynchronous HTTP request, please pass async_req=True
210
+
211
+ >>> thread = api.get_scenario_run_result(organization_id, workspace_id, scenario_id, scenariorun_id, probe_id, async_req=True)
212
+ >>> result = thread.get()
213
+
214
+ Args:
215
+ organization_id (str): the Organization identifier
216
+ workspace_id (str): the Workspace identifier
217
+ scenario_id (str): the Scenario identifier
218
+ scenariorun_id (str): the ScenarioRun identifier
219
+ probe_id (str): the Probe identifier
220
+
221
+ Keyword Args:
222
+ _return_http_data_only (bool): response data without head status
223
+ code and headers. Default is True.
224
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
225
+ will be returned without reading/decoding response data.
226
+ Default is True.
227
+ _request_timeout (int/float/tuple): timeout setting for this request. If
228
+ one number provided, it will be total request timeout. It can also
229
+ be a pair (tuple) of (connection, read) timeouts.
230
+ Default is None.
231
+ _check_input_type (bool): specifies if type checking
232
+ should be done one the data sent to the server.
233
+ Default is True.
234
+ _check_return_type (bool): specifies if type checking
235
+ should be done one the data received from the server.
236
+ Default is True.
237
+ _spec_property_naming (bool): True if the variable names in the input data
238
+ are serialized names, as specified in the OpenAPI document.
239
+ False if the variable names in the input data
240
+ are pythonic names, e.g. snake case (default)
241
+ _content_type (str/None): force body content-type.
242
+ Default is None and content-type will be predicted by allowed
243
+ content-types and body.
244
+ _host_index (int/None): specifies the index of the server
245
+ that we want to use.
246
+ Default is read from the configuration.
247
+ async_req (bool): execute request asynchronously
248
+
249
+ Returns:
250
+ ScenarioRunResult
251
+ If the method is called asynchronously, returns the request
252
+ thread.
253
+ """
254
+ kwargs['async_req'] = kwargs.get(
255
+ 'async_req', False
256
+ )
257
+ kwargs['_return_http_data_only'] = kwargs.get(
258
+ '_return_http_data_only', True
259
+ )
260
+ kwargs['_preload_content'] = kwargs.get(
261
+ '_preload_content', True
262
+ )
263
+ kwargs['_request_timeout'] = kwargs.get(
264
+ '_request_timeout', None
265
+ )
266
+ kwargs['_check_input_type'] = kwargs.get(
267
+ '_check_input_type', True
268
+ )
269
+ kwargs['_check_return_type'] = kwargs.get(
270
+ '_check_return_type', True
271
+ )
272
+ kwargs['_spec_property_naming'] = kwargs.get(
273
+ '_spec_property_naming', False
274
+ )
275
+ kwargs['_content_type'] = kwargs.get(
276
+ '_content_type')
277
+ kwargs['_host_index'] = kwargs.get('_host_index')
278
+ kwargs['organization_id'] = \
279
+ organization_id
280
+ kwargs['workspace_id'] = \
281
+ workspace_id
282
+ kwargs['scenario_id'] = \
283
+ scenario_id
284
+ kwargs['scenariorun_id'] = \
285
+ scenariorun_id
286
+ kwargs['probe_id'] = \
287
+ probe_id
288
+ return self.get_scenario_run_result_endpoint.call_with_http_info(**kwargs)
289
+
290
+ def send_scenario_run_result(
291
+ self,
292
+ organization_id,
293
+ workspace_id,
294
+ scenario_id,
295
+ scenariorun_id,
296
+ probe_id,
297
+ request_body,
298
+ **kwargs
299
+ ):
300
+ """Create a new ScenarioRunResult in the Organization # noqa: E501
301
+
302
+ This method makes a synchronous HTTP request by default. To make an
303
+ asynchronous HTTP request, please pass async_req=True
304
+
305
+ >>> thread = api.send_scenario_run_result(organization_id, workspace_id, scenario_id, scenariorun_id, probe_id, request_body, async_req=True)
306
+ >>> result = thread.get()
307
+
308
+ Args:
309
+ organization_id (str): the Organization identifier
310
+ workspace_id (str): the Workspace identifier
311
+ scenario_id (str): the Scenario identifier
312
+ scenariorun_id (str): the ScenarioRun identifier
313
+ probe_id (str): the Probe identifier
314
+ request_body ({str: (str,)}): the ScenarioRunResult to register
315
+
316
+ Keyword Args:
317
+ _return_http_data_only (bool): response data without head status
318
+ code and headers. Default is True.
319
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
320
+ will be returned without reading/decoding response data.
321
+ Default is True.
322
+ _request_timeout (int/float/tuple): timeout setting for this request. If
323
+ one number provided, it will be total request timeout. It can also
324
+ be a pair (tuple) of (connection, read) timeouts.
325
+ Default is None.
326
+ _check_input_type (bool): specifies if type checking
327
+ should be done one the data sent to the server.
328
+ Default is True.
329
+ _check_return_type (bool): specifies if type checking
330
+ should be done one the data received from the server.
331
+ Default is True.
332
+ _spec_property_naming (bool): True if the variable names in the input data
333
+ are serialized names, as specified in the OpenAPI document.
334
+ False if the variable names in the input data
335
+ are pythonic names, e.g. snake case (default)
336
+ _content_type (str/None): force body content-type.
337
+ Default is None and content-type will be predicted by allowed
338
+ content-types and body.
339
+ _host_index (int/None): specifies the index of the server
340
+ that we want to use.
341
+ Default is read from the configuration.
342
+ async_req (bool): execute request asynchronously
343
+
344
+ Returns:
345
+ ScenarioRunResult
346
+ If the method is called asynchronously, returns the request
347
+ thread.
348
+ """
349
+ kwargs['async_req'] = kwargs.get(
350
+ 'async_req', False
351
+ )
352
+ kwargs['_return_http_data_only'] = kwargs.get(
353
+ '_return_http_data_only', True
354
+ )
355
+ kwargs['_preload_content'] = kwargs.get(
356
+ '_preload_content', True
357
+ )
358
+ kwargs['_request_timeout'] = kwargs.get(
359
+ '_request_timeout', None
360
+ )
361
+ kwargs['_check_input_type'] = kwargs.get(
362
+ '_check_input_type', True
363
+ )
364
+ kwargs['_check_return_type'] = kwargs.get(
365
+ '_check_return_type', True
366
+ )
367
+ kwargs['_spec_property_naming'] = kwargs.get(
368
+ '_spec_property_naming', False
369
+ )
370
+ kwargs['_content_type'] = kwargs.get(
371
+ '_content_type')
372
+ kwargs['_host_index'] = kwargs.get('_host_index')
373
+ kwargs['organization_id'] = \
374
+ organization_id
375
+ kwargs['workspace_id'] = \
376
+ workspace_id
377
+ kwargs['scenario_id'] = \
378
+ scenario_id
379
+ kwargs['scenariorun_id'] = \
380
+ scenariorun_id
381
+ kwargs['probe_id'] = \
382
+ probe_id
383
+ kwargs['request_body'] = \
384
+ request_body
385
+ return self.send_scenario_run_result_endpoint.call_with_http_info(**kwargs)
386
+
@@ -5,7 +5,7 @@
5
5
 
6
6
  Cosmo Tech Platform API
7
7
 
8
- The version of the OpenAPI document: 3.2.0
8
+ The version of the OpenAPI document: 3.2.6
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11