cosmotech-api 3.1.1__tar.gz → 3.2.0__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.
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/PKG-INFO +6 -4
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/README.md +27 -47
- cosmotech_api-3.2.0/cosmotech_api/__init__.py +153 -0
- cosmotech_api-3.2.0/cosmotech_api/api/__init__.py +14 -0
- cosmotech_api-3.2.0/cosmotech_api/api/connector_api.py +1351 -0
- cosmotech_api-3.2.0/cosmotech_api/api/dataset_api.py +9148 -0
- cosmotech_api-3.2.0/cosmotech_api/api/organization_api.py +4692 -0
- cosmotech_api-3.2.0/cosmotech_api/api/run_api.py +2227 -0
- cosmotech_api-3.2.0/cosmotech_api/api/runner_api.py +4551 -0
- cosmotech_api-3.2.0/cosmotech_api/api/scenario_api.py +6688 -0
- cosmotech_api-3.2.0/cosmotech_api/api/scenariorun_api.py +4092 -0
- cosmotech_api-3.2.0/cosmotech_api/api/scenariorunresult_api.py +704 -0
- cosmotech_api-3.2.0/cosmotech_api/api/solution_api.py +6472 -0
- cosmotech_api-3.2.0/cosmotech_api/api/twingraph_api.py +4201 -0
- cosmotech_api-3.2.0/cosmotech_api/api/validator_api.py +2566 -0
- cosmotech_api-3.2.0/cosmotech_api/api/workspace_api.py +6123 -0
- cosmotech_api-3.2.0/cosmotech_api/api_client.py +759 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/configuration.py +63 -73
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/exceptions.py +71 -31
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/component_role_permissions.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/connector.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/connector_parameter.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/connector_parameter_group.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/container_resource_size_info.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/container_resource_sizing.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/dataset.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/dataset_access_control.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/dataset_compatibility.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/dataset_connector.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/dataset_copy_parameters.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/dataset_role.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/dataset_search.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/dataset_security.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/dataset_source_type.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/dataset_twin_graph_hash.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/dataset_twin_graph_info.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/dataset_twin_graph_query.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/delete_historical_data.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/file_upload_metadata.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/file_upload_validation.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/graph_properties.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/organization.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/organization_access_control.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/organization_role.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/organization_security.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/organization_service.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/organization_services.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/resource_size_info.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_container.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_container_artifact.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_container_logs.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_logs.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_resource_requested.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_search.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_start_containers.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_state.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_status.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_status_node.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_template.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_template_handler_id.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_template_orchestrator.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_template_parameter.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_template_parameter_group.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_template_parameter_value.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_template_resource_sizing.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/run_template_step_source.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner_access_control.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner_changed_parameter_value.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner_comparison_result.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner_data_download_info.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner_data_download_job.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner_job_state.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner_last_run.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner_resource_sizing.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner_role.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner_run_template_parameter_value.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner_security.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/runner_validation_status.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_access_control.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_changed_parameter_value.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_comparison_result.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_data_download_info.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_data_download_job.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_job_state.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_last_run.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_resource_sizing.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_role.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run_container.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run_container_artifact.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run_container_logs.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run_logs.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run_resource_requested.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run_result.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run_search.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run_start_containers.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run_state.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run_status.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run_status_node.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_run_template_parameter_value.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_security.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_validation_status.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/solution.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/solution_access_control.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/solution_role.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/solution_security.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/source_info.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/sub_dataset_graph_query.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/translated_labels.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/twin_graph_batch_result.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/twin_graph_hash.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/twin_graph_import.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/twin_graph_import_info.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/twin_graph_query.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/validator.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/validator_run.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/workspace.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/workspace_access_control.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/workspace_file.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/workspace_role.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/workspace_secret.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/workspace_security.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/workspace_solution.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/workspace_web_app.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model_utils.py +1 -1
- cosmotech_api-3.2.0/cosmotech_api/models/__init__.py +127 -0
- cosmotech_api-3.2.0/cosmotech_api/models/query_result.py +88 -0
- cosmotech_api-3.2.0/cosmotech_api/models/run_data.py +92 -0
- cosmotech_api-3.2.0/cosmotech_api/models/run_data_query.py +88 -0
- cosmotech_api-3.2.0/cosmotech_api/models/send_run_data_request.py +90 -0
- cosmotech_api-3.2.0/cosmotech_api/rest.py +256 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api.egg-info/PKG-INFO +6 -4
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api.egg-info/SOURCES.txt +8 -0
- cosmotech_api-3.2.0/cosmotech_api.egg-info/requires.txt +4 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/setup.py +19 -12
- cosmotech_api-3.2.0/test/test_component_role_permissions.py +57 -0
- cosmotech_api-3.2.0/test/test_connector.py +83 -0
- cosmotech_api-3.2.0/test/test_connector_api.py +67 -0
- cosmotech_api-3.2.0/test/test_connector_parameter.py +61 -0
- cosmotech_api-3.2.0/test/test_connector_parameter_group.py +77 -0
- cosmotech_api-3.2.0/test/test_container_resource_size_info.py +55 -0
- cosmotech_api-3.2.0/test/test_container_resource_sizing.py +63 -0
- cosmotech_api-3.2.0/test/test_dataset.py +103 -0
- cosmotech_api-3.2.0/test/test_dataset_access_control.py +55 -0
- cosmotech_api-3.2.0/test/test_dataset_api.py +247 -0
- cosmotech_api-3.2.0/test/test_dataset_compatibility.py +55 -0
- cosmotech_api-3.2.0/test/test_dataset_connector.py +57 -0
- cosmotech_api-3.2.0/test/test_dataset_copy_parameters.py +54 -0
- cosmotech_api-3.2.0/test/test_dataset_role.py +53 -0
- cosmotech_api-3.2.0/test/test_dataset_search.py +57 -0
- cosmotech_api-3.2.0/test/test_dataset_security.py +63 -0
- cosmotech_api-3.2.0/test/test_dataset_source_type.py +34 -0
- cosmotech_api-3.2.0/test/test_dataset_twin_graph_hash.py +52 -0
- cosmotech_api-3.2.0/test/test_dataset_twin_graph_info.py +54 -0
- cosmotech_api-3.2.0/test/test_dataset_twin_graph_query.py +53 -0
- cosmotech_api-3.2.0/test/test_delete_historical_data.py +55 -0
- cosmotech_api-3.2.0/test/test_file_upload_metadata.py +53 -0
- cosmotech_api-3.2.0/test/test_file_upload_validation.py +61 -0
- cosmotech_api-3.2.0/test/test_graph_properties.py +56 -0
- cosmotech_api-3.2.0/test/test_organization.py +74 -0
- cosmotech_api-3.2.0/test/test_organization_access_control.py +55 -0
- cosmotech_api-3.2.0/test/test_organization_api.py +151 -0
- cosmotech_api-3.2.0/test/test_organization_role.py +53 -0
- cosmotech_api-3.2.0/test/test_organization_security.py +63 -0
- cosmotech_api-3.2.0/test/test_organization_service.py +56 -0
- cosmotech_api-3.2.0/test/test_organization_services.py +64 -0
- cosmotech_api-3.2.0/test/test_query_result.py +54 -0
- cosmotech_api-3.2.0/test/test_resource_size_info.py +55 -0
- cosmotech_api-3.2.0/test/test_run.py +109 -0
- cosmotech_api-3.2.0/test/test_run_api.py +81 -0
- cosmotech_api-3.2.0/test/test_run_container.py +83 -0
- cosmotech_api-3.2.0/test/test_run_container_artifact.py +53 -0
- cosmotech_api-3.2.0/test/test_run_container_logs.py +57 -0
- cosmotech_api-3.2.0/test/test_run_data.py +56 -0
- cosmotech_api-3.2.0/test/test_run_data_query.py +53 -0
- cosmotech_api-3.2.0/test/test_run_logs.py +61 -0
- cosmotech_api-3.2.0/test/test_run_resource_requested.py +53 -0
- cosmotech_api-3.2.0/test/test_run_search.py +59 -0
- cosmotech_api-3.2.0/test/test_run_start_containers.py +124 -0
- cosmotech_api-3.2.0/test/test_run_state.py +34 -0
- cosmotech_api-3.2.0/test/test_run_status.py +83 -0
- cosmotech_api-3.2.0/test/test_run_status_node.py +67 -0
- cosmotech_api-3.2.0/test/test_run_template.py +101 -0
- cosmotech_api-3.2.0/test/test_run_template_handler_id.py +34 -0
- cosmotech_api-3.2.0/test/test_run_template_orchestrator.py +34 -0
- cosmotech_api-3.2.0/test/test_run_template_parameter.py +62 -0
- cosmotech_api-3.2.0/test/test_run_template_parameter_group.py +62 -0
- cosmotech_api-3.2.0/test/test_run_template_parameter_value.py +56 -0
- cosmotech_api-3.2.0/test/test_run_template_resource_sizing.py +63 -0
- cosmotech_api-3.2.0/test/test_run_template_step_source.py +34 -0
- cosmotech_api-3.2.0/test/test_runner.py +98 -0
- cosmotech_api-3.2.0/test/test_runner_access_control.py +55 -0
- cosmotech_api-3.2.0/test/test_runner_api.py +137 -0
- cosmotech_api-3.2.0/test/test_runner_changed_parameter_value.py +55 -0
- cosmotech_api-3.2.0/test/test_runner_comparison_result.py +60 -0
- cosmotech_api-3.2.0/test/test_runner_data_download_info.py +53 -0
- cosmotech_api-3.2.0/test/test_runner_data_download_job.py +52 -0
- cosmotech_api-3.2.0/test/test_runner_job_state.py +34 -0
- cosmotech_api-3.2.0/test/test_runner_last_run.py +55 -0
- cosmotech_api-3.2.0/test/test_runner_resource_sizing.py +63 -0
- cosmotech_api-3.2.0/test/test_runner_role.py +53 -0
- cosmotech_api-3.2.0/test/test_runner_run_template_parameter_value.py +57 -0
- cosmotech_api-3.2.0/test/test_runner_security.py +63 -0
- cosmotech_api-3.2.0/test/test_runner_validation_status.py +34 -0
- cosmotech_api-3.2.0/test/test_scenario.py +110 -0
- cosmotech_api-3.2.0/test/test_scenario_access_control.py +55 -0
- cosmotech_api-3.2.0/test/test_scenario_api.py +186 -0
- cosmotech_api-3.2.0/test/test_scenario_changed_parameter_value.py +55 -0
- cosmotech_api-3.2.0/test/test_scenario_comparison_result.py +60 -0
- cosmotech_api-3.2.0/test/test_scenario_data_download_info.py +53 -0
- cosmotech_api-3.2.0/test/test_scenario_data_download_job.py +52 -0
- cosmotech_api-3.2.0/test/test_scenario_job_state.py +34 -0
- cosmotech_api-3.2.0/test/test_scenario_last_run.py +55 -0
- cosmotech_api-3.2.0/test/test_scenario_resource_sizing.py +63 -0
- cosmotech_api-3.2.0/test/test_scenario_role.py +53 -0
- cosmotech_api-3.2.0/test/test_scenario_run.py +113 -0
- cosmotech_api-3.2.0/test/test_scenario_run_container.py +83 -0
- cosmotech_api-3.2.0/test/test_scenario_run_container_artifact.py +53 -0
- cosmotech_api-3.2.0/test/test_scenario_run_container_logs.py +57 -0
- cosmotech_api-3.2.0/test/test_scenario_run_logs.py +61 -0
- cosmotech_api-3.2.0/test/test_scenario_run_resource_requested.py +53 -0
- cosmotech_api-3.2.0/test/test_scenario_run_result.py +57 -0
- cosmotech_api-3.2.0/test/test_scenario_run_search.py +59 -0
- cosmotech_api-3.2.0/test/test_scenario_run_start_containers.py +124 -0
- cosmotech_api-3.2.0/test/test_scenario_run_state.py +34 -0
- cosmotech_api-3.2.0/test/test_scenario_run_status.py +81 -0
- cosmotech_api-3.2.0/test/test_scenario_run_status_node.py +67 -0
- cosmotech_api-3.2.0/test/test_scenario_run_template_parameter_value.py +57 -0
- cosmotech_api-3.2.0/test/test_scenario_security.py +63 -0
- cosmotech_api-3.2.0/test/test_scenario_validation_status.py +34 -0
- cosmotech_api-3.2.0/test/test_scenariorun_api.py +130 -0
- cosmotech_api-3.2.0/test/test_scenariorunresult_api.py +46 -0
- cosmotech_api-3.2.0/test/test_send_run_data_request.py +55 -0
- cosmotech_api-3.2.0/test/test_solution.py +151 -0
- cosmotech_api-3.2.0/test/test_solution_access_control.py +55 -0
- cosmotech_api-3.2.0/test/test_solution_api.py +186 -0
- cosmotech_api-3.2.0/test/test_solution_role.py +53 -0
- cosmotech_api-3.2.0/test/test_solution_security.py +63 -0
- cosmotech_api-3.2.0/test/test_source_info.py +56 -0
- cosmotech_api-3.2.0/test/test_sub_dataset_graph_query.py +57 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/test/test_translated_labels.py +1 -1
- cosmotech_api-3.2.0/test/test_twin_graph_batch_result.py +61 -0
- cosmotech_api-3.2.0/test/test_twin_graph_hash.py +52 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/test/test_twin_graph_import.py +1 -1
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/test/test_twin_graph_import_info.py +1 -1
- cosmotech_api-3.2.0/test/test_twin_graph_query.py +54 -0
- cosmotech_api-3.2.0/test/test_twingraph_api.py +130 -0
- cosmotech_api-3.2.0/test/test_validator.py +65 -0
- cosmotech_api-3.2.0/test/test_validator_api.py +95 -0
- cosmotech_api-3.2.0/test/test_validator_run.py +60 -0
- cosmotech_api-3.2.0/test/test_workspace.py +96 -0
- cosmotech_api-3.2.0/test/test_workspace_access_control.py +55 -0
- cosmotech_api-3.2.0/test/test_workspace_api.py +177 -0
- cosmotech_api-3.2.0/test/test_workspace_file.py +52 -0
- cosmotech_api-3.2.0/test/test_workspace_role.py +53 -0
- cosmotech_api-3.2.0/test/test_workspace_secret.py +52 -0
- cosmotech_api-3.2.0/test/test_workspace_security.py +63 -0
- cosmotech_api-3.2.0/test/test_workspace_solution.py +56 -0
- cosmotech_api-3.2.0/test/test_workspace_web_app.py +55 -0
- cosmotech-api-3.1.1/cosmotech_api/__init__.py +0 -28
- cosmotech-api-3.1.1/cosmotech_api/api/__init__.py +0 -3
- cosmotech-api-3.1.1/cosmotech_api/api/connector_api.py +0 -679
- cosmotech-api-3.1.1/cosmotech_api/api/dataset_api.py +0 -4639
- cosmotech-api-3.1.1/cosmotech_api/api/organization_api.py +0 -2328
- cosmotech-api-3.1.1/cosmotech_api/api/run_api.py +0 -831
- cosmotech-api-3.1.1/cosmotech_api/api/runner_api.py +0 -2348
- cosmotech-api-3.1.1/cosmotech_api/api/scenario_api.py +0 -3409
- cosmotech-api-3.1.1/cosmotech_api/api/scenariorun_api.py +0 -2045
- cosmotech-api-3.1.1/cosmotech_api/api/scenariorunresult_api.py +0 -386
- cosmotech-api-3.1.1/cosmotech_api/api/solution_api.py +0 -3271
- cosmotech-api-3.1.1/cosmotech_api/api/twingraph_api.py +0 -2144
- cosmotech-api-3.1.1/cosmotech_api/api/validator_api.py +0 -1314
- cosmotech-api-3.1.1/cosmotech_api/api/workspace_api.py +0 -3101
- cosmotech-api-3.1.1/cosmotech_api/api_client.py +0 -867
- cosmotech-api-3.1.1/cosmotech_api/models/__init__.py +0 -117
- cosmotech-api-3.1.1/cosmotech_api/rest.py +0 -347
- cosmotech-api-3.1.1/cosmotech_api.egg-info/requires.txt +0 -2
- cosmotech-api-3.1.1/test/test_component_role_permissions.py +0 -36
- cosmotech-api-3.1.1/test/test_connector.py +0 -38
- cosmotech-api-3.1.1/test/test_connector_api.py +0 -64
- cosmotech-api-3.1.1/test/test_connector_parameter.py +0 -36
- cosmotech-api-3.1.1/test/test_connector_parameter_group.py +0 -38
- cosmotech-api-3.1.1/test/test_container_resource_size_info.py +0 -36
- cosmotech-api-3.1.1/test/test_container_resource_sizing.py +0 -38
- cosmotech-api-3.1.1/test/test_dataset.py +0 -46
- cosmotech-api-3.1.1/test/test_dataset_access_control.py +0 -36
- cosmotech-api-3.1.1/test/test_dataset_api.py +0 -244
- cosmotech-api-3.1.1/test/test_dataset_compatibility.py +0 -36
- cosmotech-api-3.1.1/test/test_dataset_connector.py +0 -36
- cosmotech-api-3.1.1/test/test_dataset_copy_parameters.py +0 -36
- cosmotech-api-3.1.1/test/test_dataset_role.py +0 -36
- cosmotech-api-3.1.1/test/test_dataset_search.py +0 -36
- cosmotech-api-3.1.1/test/test_dataset_security.py +0 -38
- cosmotech-api-3.1.1/test/test_dataset_source_type.py +0 -36
- cosmotech-api-3.1.1/test/test_dataset_twin_graph_hash.py +0 -36
- cosmotech-api-3.1.1/test/test_dataset_twin_graph_info.py +0 -36
- cosmotech-api-3.1.1/test/test_dataset_twin_graph_query.py +0 -36
- cosmotech-api-3.1.1/test/test_delete_historical_data.py +0 -36
- cosmotech-api-3.1.1/test/test_file_upload_metadata.py +0 -36
- cosmotech-api-3.1.1/test/test_file_upload_validation.py +0 -38
- cosmotech-api-3.1.1/test/test_graph_properties.py +0 -36
- cosmotech-api-3.1.1/test/test_organization.py +0 -40
- cosmotech-api-3.1.1/test/test_organization_access_control.py +0 -36
- cosmotech-api-3.1.1/test/test_organization_api.py +0 -148
- cosmotech-api-3.1.1/test/test_organization_role.py +0 -36
- cosmotech-api-3.1.1/test/test_organization_security.py +0 -38
- cosmotech-api-3.1.1/test/test_organization_service.py +0 -36
- cosmotech-api-3.1.1/test/test_organization_services.py +0 -38
- cosmotech-api-3.1.1/test/test_resource_size_info.py +0 -36
- cosmotech-api-3.1.1/test/test_run.py +0 -42
- cosmotech-api-3.1.1/test/test_run_api.py +0 -64
- cosmotech-api-3.1.1/test/test_run_container.py +0 -40
- cosmotech-api-3.1.1/test/test_run_container_artifact.py +0 -36
- cosmotech-api-3.1.1/test/test_run_container_logs.py +0 -36
- cosmotech-api-3.1.1/test/test_run_logs.py +0 -38
- cosmotech-api-3.1.1/test/test_run_resource_requested.py +0 -36
- cosmotech-api-3.1.1/test/test_run_search.py +0 -36
- cosmotech-api-3.1.1/test/test_run_start_containers.py +0 -38
- cosmotech-api-3.1.1/test/test_run_state.py +0 -36
- cosmotech-api-3.1.1/test/test_run_status.py +0 -40
- cosmotech-api-3.1.1/test/test_run_status_node.py +0 -38
- cosmotech-api-3.1.1/test/test_run_template.py +0 -46
- cosmotech-api-3.1.1/test/test_run_template_handler_id.py +0 -36
- cosmotech-api-3.1.1/test/test_run_template_orchestrator.py +0 -36
- cosmotech-api-3.1.1/test/test_run_template_parameter.py +0 -38
- cosmotech-api-3.1.1/test/test_run_template_parameter_group.py +0 -38
- cosmotech-api-3.1.1/test/test_run_template_parameter_value.py +0 -36
- cosmotech-api-3.1.1/test/test_run_template_resource_sizing.py +0 -38
- cosmotech-api-3.1.1/test/test_run_template_step_source.py +0 -36
- cosmotech-api-3.1.1/test/test_runner.py +0 -48
- cosmotech-api-3.1.1/test/test_runner_access_control.py +0 -36
- cosmotech-api-3.1.1/test/test_runner_api.py +0 -134
- cosmotech-api-3.1.1/test/test_runner_changed_parameter_value.py +0 -36
- cosmotech-api-3.1.1/test/test_runner_comparison_result.py +0 -38
- cosmotech-api-3.1.1/test/test_runner_data_download_info.py +0 -38
- cosmotech-api-3.1.1/test/test_runner_data_download_job.py +0 -36
- cosmotech-api-3.1.1/test/test_runner_job_state.py +0 -36
- cosmotech-api-3.1.1/test/test_runner_last_run.py +0 -36
- cosmotech-api-3.1.1/test/test_runner_resource_sizing.py +0 -38
- cosmotech-api-3.1.1/test/test_runner_role.py +0 -36
- cosmotech-api-3.1.1/test/test_runner_run_template_parameter_value.py +0 -36
- cosmotech-api-3.1.1/test/test_runner_security.py +0 -38
- cosmotech-api-3.1.1/test/test_runner_validation_status.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario.py +0 -48
- cosmotech-api-3.1.1/test/test_scenario_access_control.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_api.py +0 -183
- cosmotech-api-3.1.1/test/test_scenario_changed_parameter_value.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_comparison_result.py +0 -38
- cosmotech-api-3.1.1/test/test_scenario_data_download_info.py +0 -38
- cosmotech-api-3.1.1/test/test_scenario_data_download_job.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_job_state.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_last_run.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_resource_sizing.py +0 -38
- cosmotech-api-3.1.1/test/test_scenario_role.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_run.py +0 -42
- cosmotech-api-3.1.1/test/test_scenario_run_container.py +0 -40
- cosmotech-api-3.1.1/test/test_scenario_run_container_artifact.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_run_container_logs.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_run_logs.py +0 -38
- cosmotech-api-3.1.1/test/test_scenario_run_resource_requested.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_run_result.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_run_search.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_run_start_containers.py +0 -38
- cosmotech-api-3.1.1/test/test_scenario_run_state.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_run_status.py +0 -40
- cosmotech-api-3.1.1/test/test_scenario_run_status_node.py +0 -38
- cosmotech-api-3.1.1/test/test_scenario_run_template_parameter_value.py +0 -36
- cosmotech-api-3.1.1/test/test_scenario_security.py +0 -38
- cosmotech-api-3.1.1/test/test_scenario_validation_status.py +0 -36
- cosmotech-api-3.1.1/test/test_scenariorun_api.py +0 -127
- cosmotech-api-3.1.1/test/test_scenariorunresult_api.py +0 -43
- cosmotech-api-3.1.1/test/test_solution.py +0 -44
- cosmotech-api-3.1.1/test/test_solution_access_control.py +0 -36
- cosmotech-api-3.1.1/test/test_solution_api.py +0 -183
- cosmotech-api-3.1.1/test/test_solution_role.py +0 -36
- cosmotech-api-3.1.1/test/test_solution_security.py +0 -38
- cosmotech-api-3.1.1/test/test_source_info.py +0 -36
- cosmotech-api-3.1.1/test/test_sub_dataset_graph_query.py +0 -36
- cosmotech-api-3.1.1/test/test_twin_graph_batch_result.py +0 -36
- cosmotech-api-3.1.1/test/test_twin_graph_hash.py +0 -36
- cosmotech-api-3.1.1/test/test_twin_graph_query.py +0 -36
- cosmotech-api-3.1.1/test/test_twingraph_api.py +0 -127
- cosmotech-api-3.1.1/test/test_validator.py +0 -36
- cosmotech-api-3.1.1/test/test_validator_api.py +0 -92
- cosmotech-api-3.1.1/test/test_validator_run.py +0 -36
- cosmotech-api-3.1.1/test/test_workspace.py +0 -42
- cosmotech-api-3.1.1/test/test_workspace_access_control.py +0 -36
- cosmotech-api-3.1.1/test/test_workspace_api.py +0 -174
- cosmotech-api-3.1.1/test/test_workspace_file.py +0 -36
- cosmotech-api-3.1.1/test/test_workspace_role.py +0 -36
- cosmotech-api-3.1.1/test/test_workspace_secret.py +0 -36
- cosmotech-api-3.1.1/test/test_workspace_security.py +0 -38
- cosmotech-api-3.1.1/test/test_workspace_solution.py +0 -36
- cosmotech-api-3.1.1/test/test_workspace_web_app.py +0 -36
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/LICENSE +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/api/user_api.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/api_response.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/apis/__init__.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/__init__.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/organization_user.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/scenario_user.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/user.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/user_organization.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/user_workspace.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/model/workspace_user.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/component_role_permissions.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/connector.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/connector_parameter.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/connector_parameter_group.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/container_resource_size_info.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/container_resource_sizing.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/dataset.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/dataset_access_control.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/dataset_compatibility.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/dataset_connector.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/dataset_copy_parameters.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/dataset_role.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/dataset_search.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/dataset_security.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/dataset_source_type.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/dataset_twin_graph_hash.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/dataset_twin_graph_info.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/dataset_twin_graph_query.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/delete_historical_data.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/file_upload_metadata.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/file_upload_validation.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/graph_properties.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/organization.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/organization_access_control.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/organization_role.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/organization_security.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/organization_service.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/organization_services.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/resource_size_info.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_container.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_container_artifact.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_container_logs.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_logs.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_resource_requested.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_search.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_start_containers.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_state.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_status.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_status_node.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_template.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_template_handler_id.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_template_orchestrator.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_template_parameter.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_template_parameter_group.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_template_parameter_value.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_template_resource_sizing.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/run_template_step_source.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_access_control.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_changed_parameter_value.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_comparison_result.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_data_download_info.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_data_download_job.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_job_state.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_last_run.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_parent_last_run.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_resource_sizing.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_role.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_root_last_run.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_run_template_parameter_value.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_security.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/runner_validation_status.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_access_control.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_changed_parameter_value.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_comparison_result.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_data_download_info.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_data_download_job.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_job_state.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_last_run.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_resource_sizing.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_role.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run_container.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run_container_artifact.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run_container_logs.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run_logs.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run_resource_requested.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run_result.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run_search.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run_start_containers.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run_state.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run_status.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run_status_node.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_run_template_parameter_value.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_security.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/scenario_validation_status.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/solution.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/solution_access_control.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/solution_role.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/solution_security.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/source_info.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/sub_dataset_graph_query.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/twin_graph_batch_result.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/twin_graph_hash.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/twin_graph_query.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/validator.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/validator_run.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/workspace.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/workspace_access_control.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/workspace_file.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/workspace_role.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/workspace_secret.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/workspace_security.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/workspace_solution.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/models/workspace_web_app.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api/py.typed +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api.egg-info/dependency_links.txt +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/cosmotech_api.egg-info/top_level.txt +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/pyproject.toml +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/setup.cfg +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/test/test_organization_user.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/test/test_runner_parent_last_run.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/test/test_runner_root_last_run.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/test/test_scenario_user.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/test/test_user.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/test/test_user_api.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/test/test_user_organization.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/test/test_user_workspace.py +0 -0
- {cosmotech-api-3.1.1 → cosmotech_api-3.2.0}/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.
|
|
3
|
+
Version: 3.2.0
|
|
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
|
-
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
11
|
License-File: LICENSE
|
|
12
|
-
Requires-Dist: urllib3
|
|
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
|
|
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.1.1-SNAPSHOT
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
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 =
|
|
77
|
-
page =
|
|
78
|
-
size =
|
|
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
|
|
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
|
-
|
|
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.1.1-SNAPSHOT
|
|
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
|
+
|