cosmotech-api 4.0.0.dev9__tar.gz → 5.0.0b4__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-5.0.0b4/LICENSE +17 -0
- cosmotech_api-5.0.0b4/PKG-INFO +27 -0
- cosmotech_api-5.0.0b4/README.md +306 -0
- cosmotech_api-5.0.0b4/cosmotech_api/__init__.py +117 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/__init__.py +11 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/connector_api.py +1110 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/dataset_api.py +6545 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/meta_api.py +281 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/organization_api.py +3886 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/run_api.py +2253 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/runner_api.py +4608 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/scenario_api.py +6708 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/scenariorun_api.py +4102 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/scenariorunresult_api.py +386 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/solution_api.py +9481 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/twingraph_api.py +4212 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/validator_api.py +1314 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api/workspace_api.py +5300 -0
- cosmotech_api-5.0.0b4/cosmotech_api/api_client.py +798 -0
- cosmotech_api-5.0.0b4/cosmotech_api/configuration.py +586 -0
- cosmotech_api-5.0.0b4/cosmotech_api/exceptions.py +217 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/component_role_permissions.py +260 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/connector.py +330 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/connector_parameter.py +284 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/connector_parameter_group.py +280 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/container_resource_size_info.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/container_resource_sizing.py +274 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/dataset.py +376 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_access_control.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_compatibility.py +270 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_connector.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_copy_parameters.py +264 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_role.py +262 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_search.py +262 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_security.py +274 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_source_type.py +287 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_twin_graph_hash.py +256 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_twin_graph_info.py +264 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/dataset_twin_graph_query.py +262 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/delete_historical_data.py +272 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/file_upload_metadata.py +260 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/file_upload_validation.py +266 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/graph_properties.py +272 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/organization.py +282 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/organization_access_control.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/organization_role.py +262 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/organization_security.py +274 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/organization_service.py +272 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/organization_services.py +270 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/resource_size_info.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run.py +351 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_container.py +318 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_container_artifact.py +260 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_container_logs.py +272 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_logs.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_resource_requested.py +260 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_search.py +296 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_start_containers.py +286 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_state.py +285 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_status.py +316 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_status_node.py +307 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_template.py +408 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_handler_id.py +287 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_orchestrator.py +283 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_parameter.py +296 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_parameter_group.py +288 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_parameter_value.py +273 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_resource_sizing.py +274 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/run_template_step_source.py +285 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner.py +379 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner_access_control.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner_changed_parameter_value.py +272 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner_comparison_result.py +273 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner_data_download_info.py +267 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner_data_download_job.py +257 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner_job_state.py +287 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner_last_run.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner_resource_sizing.py +274 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner_role.py +262 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner_run_template_parameter_value.py +277 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner_security.py +274 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/runner_validation_status.py +285 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario.py +379 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_access_control.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_changed_parameter_value.py +272 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_comparison_result.py +273 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_data_download_info.py +267 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_data_download_job.py +257 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_job_state.py +287 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_last_run.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_resource_sizing.py +274 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_role.py +262 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run.py +369 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_container.py +318 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_container_artifact.py +260 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_container_logs.py +272 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_logs.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_resource_requested.py +260 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_result.py +260 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_search.py +296 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_start_containers.py +286 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_state.py +287 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_status.py +308 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_status_node.py +307 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_run_template_parameter_value.py +277 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_security.py +274 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/scenario_validation_status.py +285 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/solution.py +335 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/solution_access_control.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/solution_role.py +262 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/solution_security.py +274 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/source_info.py +274 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/sub_dataset_graph_query.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/translated_labels.py +252 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/twin_graph_batch_result.py +274 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/twin_graph_hash.py +256 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/twin_graph_query.py +266 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/validator.py +295 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/validator_run.py +302 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/workspace.py +351 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_access_control.py +268 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_file.py +256 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_role.py +262 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_secret.py +256 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_security.py +274 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_solution.py +264 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model/workspace_web_app.py +270 -0
- cosmotech_api-5.0.0b4/cosmotech_api/model_utils.py +2038 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/__init__.py +94 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/about_info.py +92 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/about_info_version.py +100 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/component_role_permissions.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/connector.py +121 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/connector_parameter.py +98 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/connector_parameter_group.py +100 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/container_resource_size_info.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/container_resource_sizing.py +97 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/create_info.py +103 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/created_run.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset.py +138 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_access_control.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_compatibility.py +92 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_connector.py +94 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_copy_parameters.py +92 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_create_request.py +121 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_part.py +130 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_part_create_request.py +98 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_part_type_enum.py +38 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_part_update_request.py +93 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_role.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_search.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_security.py +98 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_source_type.py +42 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_twin_graph_hash.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_twin_graph_info.py +92 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_twin_graph_query.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/dataset_update_request.py +109 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/delete_historical_data.py +92 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/edit_info.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/file_upload_metadata.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/file_upload_validation.py +105 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/graph_properties.py +96 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/ingestion_status_enum.py +40 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/io_types_enum.py +38 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/last_run_info.py +100 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/organization.py +109 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/organization_access_control.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/organization_create_request.py +95 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/organization_edit_info.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/organization_role.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/organization_security.py +98 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/organization_service.py +96 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/organization_services.py +99 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/organization_update_request.py +89 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/query_result.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/resource_size_info.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run.py +165 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_container.py +116 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_container_artifact.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_container_logs.py +102 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_data.py +92 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_data_query.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_edit_info.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_logs.py +102 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_logs_entry.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_resource_requested.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_search.py +103 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_search_state.py +46 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_start_containers.py +104 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_state.py +41 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_status.py +129 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_status_node.py +116 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template.py +109 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_create_request.py +109 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_handler_id.py +42 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_orchestrator.py +38 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter.py +105 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter_create_request.py +105 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter_group.py +101 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter_group_create_request.py +101 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter_group_update_request.py +98 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter_update_request.py +103 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_parameter_value.py +94 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_resource_sizing.py +97 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_step_source.py +40 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/run_template_update_request.py +107 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner.py +172 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_access_control.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_changed_parameter_value.py +102 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_comparison_result.py +106 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_create_request.py +154 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_data_download_info.py +93 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_data_download_job.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_edit_info.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_job_state.py +42 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_last_run.py +94 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_parent_last_run.py +94 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_resource_sizing.py +97 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_role.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_root_last_run.py +94 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_run_template_parameter_value.py +96 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_security.py +98 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_update_request.py +123 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/runner_validation_status.py +40 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario.py +186 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_access_control.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_changed_parameter_value.py +102 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_comparison_result.py +106 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_data_download_info.py +93 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_data_download_job.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_job_state.py +42 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_last_run.py +94 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_resource_sizing.py +97 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_role.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run.py +179 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_container.py +126 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_container_artifact.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_container_logs.py +102 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_logs.py +107 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_resource_requested.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_search.py +103 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_search_state.py +46 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_start_containers.py +104 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_state.py +42 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_status.py +119 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_status_node.py +116 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_run_template_parameter_value.py +96 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_security.py +98 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/scenario_validation_status.py +40 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/send_run_data_request.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/solution.py +170 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/solution_access_control.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/solution_create_request.py +139 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/solution_edit_info.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/solution_file.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/solution_role.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/solution_security.py +98 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/solution_update_request.py +133 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/source_info.py +94 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/sub_dataset_graph_query.py +94 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/twin_graph_batch_result.py +92 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/twin_graph_hash.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/twin_graph_query.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/twincache_status_enum.py +38 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/validator.py +106 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/workspace.py +150 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_access_control.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_create_request.py +117 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_edit_info.py +90 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_file.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_role.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_secret.py +88 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_security.py +98 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_solution.py +100 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_update_request.py +109 -0
- cosmotech_api-5.0.0b4/cosmotech_api/models/workspace_web_app.py +92 -0
- cosmotech_api-5.0.0b4/cosmotech_api/rest.py +259 -0
- cosmotech_api-5.0.0b4/cosmotech_api.egg-info/PKG-INFO +27 -0
- cosmotech_api-5.0.0b4/cosmotech_api.egg-info/SOURCES.txt +468 -0
- cosmotech_api-5.0.0b4/cosmotech_api.egg-info/requires.txt +4 -0
- cosmotech_api-5.0.0b4/pyproject.toml +89 -0
- cosmotech_api-5.0.0b4/setup.py +51 -0
- cosmotech_api-5.0.0b4/test/test_about_info.py +67 -0
- cosmotech_api-5.0.0b4/test/test_about_info_version.py +65 -0
- cosmotech_api-5.0.0b4/test/test_component_role_permissions.py +63 -0
- cosmotech_api-5.0.0b4/test/test_connector.py +81 -0
- cosmotech_api-5.0.0b4/test/test_connector_api.py +60 -0
- cosmotech_api-5.0.0b4/test/test_connector_parameter.py +61 -0
- cosmotech_api-5.0.0b4/test/test_connector_parameter_group.py +77 -0
- cosmotech_api-5.0.0b4/test/test_container_resource_size_info.py +55 -0
- cosmotech_api-5.0.0b4/test/test_container_resource_sizing.py +63 -0
- cosmotech_api-5.0.0b4/test/test_create_info.py +56 -0
- cosmotech_api-5.0.0b4/test/test_created_run.py +53 -0
- cosmotech_api-5.0.0b4/test/test_dataset.py +126 -0
- cosmotech_api-5.0.0b4/test/test_dataset_access_control.py +55 -0
- cosmotech_api-5.0.0b4/test/test_dataset_api.py +172 -0
- cosmotech_api-5.0.0b4/test/test_dataset_compatibility.py +55 -0
- cosmotech_api-5.0.0b4/test/test_dataset_connector.py +57 -0
- cosmotech_api-5.0.0b4/test/test_dataset_copy_parameters.py +54 -0
- cosmotech_api-5.0.0b4/test/test_dataset_create_request.py +75 -0
- cosmotech_api-5.0.0b4/test/test_dataset_part.py +84 -0
- cosmotech_api-5.0.0b4/test/test_dataset_part_create_request.py +60 -0
- cosmotech_api-5.0.0b4/test/test_dataset_part_type_enum.py +34 -0
- cosmotech_api-5.0.0b4/test/test_dataset_part_update_request.py +56 -0
- cosmotech_api-5.0.0b4/test/test_dataset_role.py +53 -0
- cosmotech_api-5.0.0b4/test/test_dataset_search.py +57 -0
- cosmotech_api-5.0.0b4/test/test_dataset_security.py +63 -0
- cosmotech_api-5.0.0b4/test/test_dataset_source_type.py +34 -0
- cosmotech_api-5.0.0b4/test/test_dataset_twin_graph_hash.py +52 -0
- cosmotech_api-5.0.0b4/test/test_dataset_twin_graph_info.py +54 -0
- cosmotech_api-5.0.0b4/test/test_dataset_twin_graph_query.py +53 -0
- cosmotech_api-5.0.0b4/test/test_dataset_update_request.py +73 -0
- cosmotech_api-5.0.0b4/test/test_delete_historical_data.py +55 -0
- cosmotech_api-5.0.0b4/test/test_edit_info.py +55 -0
- cosmotech_api-5.0.0b4/test/test_file_upload_metadata.py +53 -0
- cosmotech_api-5.0.0b4/test/test_file_upload_validation.py +61 -0
- cosmotech_api-5.0.0b4/test/test_graph_properties.py +56 -0
- cosmotech_api-5.0.0b4/test/test_ingestion_status_enum.py +34 -0
- cosmotech_api-5.0.0b4/test/test_io_types_enum.py +34 -0
- cosmotech_api-5.0.0b4/test/test_last_run_info.py +53 -0
- cosmotech_api-5.0.0b4/test/test_meta_api.py +39 -0
- cosmotech_api-5.0.0b4/test/test_organization.py +81 -0
- cosmotech_api-5.0.0b4/test/test_organization_access_control.py +55 -0
- cosmotech_api-5.0.0b4/test/test_organization_api.py +130 -0
- cosmotech_api-5.0.0b4/test/test_organization_create_request.py +60 -0
- cosmotech_api-5.0.0b4/test/test_organization_edit_info.py +55 -0
- cosmotech_api-5.0.0b4/test/test_organization_role.py +53 -0
- cosmotech_api-5.0.0b4/test/test_organization_security.py +63 -0
- cosmotech_api-5.0.0b4/test/test_organization_service.py +56 -0
- cosmotech_api-5.0.0b4/test/test_organization_services.py +64 -0
- cosmotech_api-5.0.0b4/test/test_organization_update_request.py +52 -0
- cosmotech_api-5.0.0b4/test/test_query_result.py +54 -0
- cosmotech_api-5.0.0b4/test/test_resource_size_info.py +55 -0
- cosmotech_api-5.0.0b4/test/test_run.py +108 -0
- cosmotech_api-5.0.0b4/test/test_run_api.py +81 -0
- cosmotech_api-5.0.0b4/test/test_run_container.py +78 -0
- cosmotech_api-5.0.0b4/test/test_run_container_artifact.py +53 -0
- cosmotech_api-5.0.0b4/test/test_run_container_logs.py +57 -0
- cosmotech_api-5.0.0b4/test/test_run_data.py +56 -0
- cosmotech_api-5.0.0b4/test/test_run_data_query.py +53 -0
- cosmotech_api-5.0.0b4/test/test_run_edit_info.py +55 -0
- cosmotech_api-5.0.0b4/test/test_run_logs.py +61 -0
- cosmotech_api-5.0.0b4/test/test_run_logs_entry.py +53 -0
- cosmotech_api-5.0.0b4/test/test_run_resource_requested.py +53 -0
- cosmotech_api-5.0.0b4/test/test_run_search.py +59 -0
- cosmotech_api-5.0.0b4/test/test_run_search_state.py +34 -0
- cosmotech_api-5.0.0b4/test/test_run_start_containers.py +124 -0
- cosmotech_api-5.0.0b4/test/test_run_state.py +34 -0
- cosmotech_api-5.0.0b4/test/test_run_status.py +86 -0
- cosmotech_api-5.0.0b4/test/test_run_status_node.py +67 -0
- cosmotech_api-5.0.0b4/test/test_run_template.py +76 -0
- cosmotech_api-5.0.0b4/test/test_run_template_create_request.py +73 -0
- cosmotech_api-5.0.0b4/test/test_run_template_handler_id.py +34 -0
- cosmotech_api-5.0.0b4/test/test_run_template_orchestrator.py +34 -0
- cosmotech_api-5.0.0b4/test/test_run_template_parameter.py +64 -0
- cosmotech_api-5.0.0b4/test/test_run_template_parameter_create_request.py +64 -0
- cosmotech_api-5.0.0b4/test/test_run_template_parameter_group.py +67 -0
- cosmotech_api-5.0.0b4/test/test_run_template_parameter_group_create_request.py +63 -0
- cosmotech_api-5.0.0b4/test/test_run_template_parameter_group_update_request.py +61 -0
- cosmotech_api-5.0.0b4/test/test_run_template_parameter_update_request.py +61 -0
- cosmotech_api-5.0.0b4/test/test_run_template_parameter_value.py +56 -0
- cosmotech_api-5.0.0b4/test/test_run_template_resource_sizing.py +63 -0
- cosmotech_api-5.0.0b4/test/test_run_template_step_source.py +34 -0
- cosmotech_api-5.0.0b4/test/test_run_template_update_request.py +71 -0
- cosmotech_api-5.0.0b4/test/test_runner.py +134 -0
- cosmotech_api-5.0.0b4/test/test_runner_access_control.py +55 -0
- cosmotech_api-5.0.0b4/test/test_runner_api.py +137 -0
- cosmotech_api-5.0.0b4/test/test_runner_changed_parameter_value.py +55 -0
- cosmotech_api-5.0.0b4/test/test_runner_comparison_result.py +60 -0
- cosmotech_api-5.0.0b4/test/test_runner_create_request.py +90 -0
- cosmotech_api-5.0.0b4/test/test_runner_data_download_info.py +53 -0
- cosmotech_api-5.0.0b4/test/test_runner_data_download_job.py +52 -0
- cosmotech_api-5.0.0b4/test/test_runner_edit_info.py +55 -0
- cosmotech_api-5.0.0b4/test/test_runner_job_state.py +34 -0
- cosmotech_api-5.0.0b4/test/test_runner_last_run.py +55 -0
- cosmotech_api-5.0.0b4/test/test_runner_parent_last_run.py +55 -0
- cosmotech_api-5.0.0b4/test/test_runner_resource_sizing.py +63 -0
- cosmotech_api-5.0.0b4/test/test_runner_role.py +53 -0
- cosmotech_api-5.0.0b4/test/test_runner_root_last_run.py +55 -0
- cosmotech_api-5.0.0b4/test/test_runner_run_template_parameter_value.py +57 -0
- cosmotech_api-5.0.0b4/test/test_runner_security.py +63 -0
- cosmotech_api-5.0.0b4/test/test_runner_update_request.py +77 -0
- cosmotech_api-5.0.0b4/test/test_runner_validation_status.py +34 -0
- cosmotech_api-5.0.0b4/test/test_scenario.py +110 -0
- cosmotech_api-5.0.0b4/test/test_scenario_access_control.py +55 -0
- cosmotech_api-5.0.0b4/test/test_scenario_api.py +186 -0
- cosmotech_api-5.0.0b4/test/test_scenario_changed_parameter_value.py +55 -0
- cosmotech_api-5.0.0b4/test/test_scenario_comparison_result.py +60 -0
- cosmotech_api-5.0.0b4/test/test_scenario_data_download_info.py +53 -0
- cosmotech_api-5.0.0b4/test/test_scenario_data_download_job.py +52 -0
- cosmotech_api-5.0.0b4/test/test_scenario_job_state.py +34 -0
- cosmotech_api-5.0.0b4/test/test_scenario_last_run.py +55 -0
- cosmotech_api-5.0.0b4/test/test_scenario_resource_sizing.py +63 -0
- cosmotech_api-5.0.0b4/test/test_scenario_role.py +53 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run.py +113 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_container.py +83 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_container_artifact.py +53 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_container_logs.py +57 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_logs.py +61 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_resource_requested.py +53 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_result.py +36 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_search.py +59 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_search_state.py +34 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_start_containers.py +124 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_state.py +34 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_status.py +81 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_status_node.py +67 -0
- cosmotech_api-5.0.0b4/test/test_scenario_run_template_parameter_value.py +57 -0
- cosmotech_api-5.0.0b4/test/test_scenario_security.py +63 -0
- cosmotech_api-5.0.0b4/test/test_scenario_validation_status.py +34 -0
- cosmotech_api-5.0.0b4/test/test_scenariorun_api.py +130 -0
- cosmotech_api-5.0.0b4/test/test_send_run_data_request.py +59 -0
- cosmotech_api-5.0.0b4/test/test_solution.py +198 -0
- cosmotech_api-5.0.0b4/test/test_solution_access_control.py +55 -0
- cosmotech_api-5.0.0b4/test/test_solution_api.py +256 -0
- cosmotech_api-5.0.0b4/test/test_solution_create_request.py +122 -0
- cosmotech_api-5.0.0b4/test/test_solution_edit_info.py +55 -0
- cosmotech_api-5.0.0b4/test/test_solution_file.py +53 -0
- cosmotech_api-5.0.0b4/test/test_solution_role.py +53 -0
- cosmotech_api-5.0.0b4/test/test_solution_security.py +63 -0
- cosmotech_api-5.0.0b4/test/test_solution_update_request.py +111 -0
- cosmotech_api-5.0.0b4/test/test_source_info.py +56 -0
- cosmotech_api-5.0.0b4/test/test_sub_dataset_graph_query.py +57 -0
- cosmotech_api-5.0.0b4/test/test_translated_labels.py +36 -0
- cosmotech_api-5.0.0b4/test/test_twin_graph_batch_result.py +61 -0
- cosmotech_api-5.0.0b4/test/test_twin_graph_hash.py +52 -0
- cosmotech_api-5.0.0b4/test/test_twin_graph_query.py +54 -0
- cosmotech_api-5.0.0b4/test/test_twincache_status_enum.py +34 -0
- cosmotech_api-5.0.0b4/test/test_twingraph_api.py +130 -0
- cosmotech_api-5.0.0b4/test/test_validator.py +65 -0
- cosmotech_api-5.0.0b4/test/test_validator_run.py +36 -0
- cosmotech_api-5.0.0b4/test/test_workspace.py +107 -0
- cosmotech_api-5.0.0b4/test/test_workspace_access_control.py +55 -0
- cosmotech_api-5.0.0b4/test/test_workspace_api.py +158 -0
- cosmotech_api-5.0.0b4/test/test_workspace_create_request.py +84 -0
- cosmotech_api-5.0.0b4/test/test_workspace_edit_info.py +55 -0
- cosmotech_api-5.0.0b4/test/test_workspace_file.py +53 -0
- cosmotech_api-5.0.0b4/test/test_workspace_role.py +53 -0
- cosmotech_api-5.0.0b4/test/test_workspace_secret.py +52 -0
- cosmotech_api-5.0.0b4/test/test_workspace_security.py +63 -0
- cosmotech_api-5.0.0b4/test/test_workspace_solution.py +57 -0
- cosmotech_api-5.0.0b4/test/test_workspace_update_request.py +68 -0
- cosmotech_api-5.0.0b4/test/test_workspace_web_app.py +55 -0
- cosmotech_api-4.0.0.dev9/LICENSE +0 -17
- cosmotech_api-4.0.0.dev9/PKG-INFO +0 -18
- cosmotech_api-4.0.0.dev9/README.md +0 -302
- cosmotech_api-4.0.0.dev9/cosmotech_api/__init__.py +0 -111
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/__init__.py +0 -11
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/connector_api.py +0 -1099
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/dataset_api.py +0 -9175
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/organization_api.py +0 -3843
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/run_api.py +0 -2233
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/runner_api.py +0 -4563
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/scenario_api.py +0 -6688
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/scenariorun_api.py +0 -4092
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/scenariorunresult_api.py +0 -386
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/solution_api.py +0 -5835
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/twingraph_api.py +0 -4201
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/validator_api.py +0 -1314
- cosmotech_api-4.0.0.dev9/cosmotech_api/api/workspace_api.py +0 -5836
- cosmotech_api-4.0.0.dev9/cosmotech_api/api_client.py +0 -789
- cosmotech_api-4.0.0.dev9/cosmotech_api/configuration.py +0 -459
- cosmotech_api-4.0.0.dev9/cosmotech_api/exceptions.py +0 -200
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/component_role_permissions.py +0 -260
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/connector.py +0 -330
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/connector_parameter.py +0 -284
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/connector_parameter_group.py +0 -280
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/container_resource_size_info.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/container_resource_sizing.py +0 -274
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset.py +0 -376
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_access_control.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_compatibility.py +0 -270
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_connector.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_copy_parameters.py +0 -264
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_role.py +0 -262
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_search.py +0 -262
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_security.py +0 -274
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_source_type.py +0 -287
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_twin_graph_hash.py +0 -256
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_twin_graph_info.py +0 -264
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/dataset_twin_graph_query.py +0 -262
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/delete_historical_data.py +0 -272
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/file_upload_metadata.py +0 -260
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/file_upload_validation.py +0 -266
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/graph_properties.py +0 -272
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization.py +0 -282
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_access_control.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_role.py +0 -262
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_security.py +0 -274
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_service.py +0 -272
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/organization_services.py +0 -270
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/resource_size_info.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run.py +0 -351
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_container.py +0 -318
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_container_artifact.py +0 -260
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_container_logs.py +0 -272
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_logs.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_resource_requested.py +0 -260
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_search.py +0 -296
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_start_containers.py +0 -286
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_state.py +0 -285
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_status.py +0 -316
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_status_node.py +0 -307
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template.py +0 -408
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_handler_id.py +0 -287
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_orchestrator.py +0 -283
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_parameter.py +0 -296
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_parameter_group.py +0 -288
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_parameter_value.py +0 -273
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_resource_sizing.py +0 -274
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/run_template_step_source.py +0 -285
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner.py +0 -379
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_access_control.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_changed_parameter_value.py +0 -272
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_comparison_result.py +0 -273
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_data_download_info.py +0 -267
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_data_download_job.py +0 -257
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_job_state.py +0 -287
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_last_run.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_resource_sizing.py +0 -274
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_role.py +0 -262
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_run_template_parameter_value.py +0 -277
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_security.py +0 -274
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/runner_validation_status.py +0 -285
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario.py +0 -379
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_access_control.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_changed_parameter_value.py +0 -272
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_comparison_result.py +0 -273
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_data_download_info.py +0 -267
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_data_download_job.py +0 -257
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_job_state.py +0 -287
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_last_run.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_resource_sizing.py +0 -274
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_role.py +0 -262
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run.py +0 -369
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_container.py +0 -318
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_container_artifact.py +0 -260
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_container_logs.py +0 -272
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_logs.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_resource_requested.py +0 -260
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_result.py +0 -260
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_search.py +0 -296
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_start_containers.py +0 -286
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_state.py +0 -287
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_status.py +0 -308
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_status_node.py +0 -307
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_run_template_parameter_value.py +0 -277
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_security.py +0 -274
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/scenario_validation_status.py +0 -285
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/solution.py +0 -335
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/solution_access_control.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/solution_role.py +0 -262
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/solution_security.py +0 -274
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/source_info.py +0 -274
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/sub_dataset_graph_query.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/translated_labels.py +0 -252
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/twin_graph_batch_result.py +0 -274
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/twin_graph_hash.py +0 -256
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/twin_graph_query.py +0 -266
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/validator.py +0 -295
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/validator_run.py +0 -302
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace.py +0 -351
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_access_control.py +0 -268
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_file.py +0 -256
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_role.py +0 -262
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_secret.py +0 -256
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_security.py +0 -274
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_solution.py +0 -264
- cosmotech_api-4.0.0.dev9/cosmotech_api/model/workspace_web_app.py +0 -270
- cosmotech_api-4.0.0.dev9/cosmotech_api/model_utils.py +0 -2038
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/__init__.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/component_role_permissions.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/connector.py +0 -121
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/connector_parameter.py +0 -98
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/connector_parameter_group.py +0 -100
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/container_resource_size_info.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/container_resource_sizing.py +0 -97
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/created_run.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset.py +0 -177
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_access_control.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_compatibility.py +0 -92
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_connector.py +0 -94
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_copy_parameters.py +0 -92
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_role.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_search.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_security.py +0 -98
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_source_type.py +0 -42
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_twin_graph_hash.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_twin_graph_info.py +0 -92
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/dataset_twin_graph_query.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/delete_historical_data.py +0 -92
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/file_upload_metadata.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/file_upload_validation.py +0 -105
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/graph_properties.py +0 -96
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/ingestion_status_enum.py +0 -40
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/io_types_enum.py +0 -38
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization.py +0 -102
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_access_control.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_role.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_security.py +0 -98
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_service.py +0 -96
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/organization_services.py +0 -99
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/query_result.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/resource_size_info.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run.py +0 -167
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_container.py +0 -116
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_container_artifact.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_container_logs.py +0 -102
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_data.py +0 -92
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_data_query.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_logs.py +0 -102
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_logs_entry.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_resource_requested.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_search.py +0 -103
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_search_state.py +0 -46
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_start_containers.py +0 -104
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_state.py +0 -40
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_status.py +0 -123
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_status_node.py +0 -116
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template.py +0 -164
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_handler_id.py +0 -42
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_orchestrator.py +0 -38
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_parameter.py +0 -102
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_parameter_group.py +0 -98
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_parameter_value.py +0 -94
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_resource_sizing.py +0 -97
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/run_template_step_source.py +0 -40
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner.py +0 -169
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_access_control.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_changed_parameter_value.py +0 -102
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_comparison_result.py +0 -106
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_data_download_info.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_data_download_job.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_job_state.py +0 -42
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_last_run.py +0 -94
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_parent_last_run.py +0 -94
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_resource_sizing.py +0 -97
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_role.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_root_last_run.py +0 -94
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_run_template_parameter_value.py +0 -96
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_security.py +0 -98
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/runner_validation_status.py +0 -40
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario.py +0 -186
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_access_control.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_changed_parameter_value.py +0 -102
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_comparison_result.py +0 -106
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_data_download_info.py +0 -93
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_data_download_job.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_job_state.py +0 -42
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_last_run.py +0 -94
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_resource_sizing.py +0 -97
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_role.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run.py +0 -179
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_container.py +0 -126
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_container_artifact.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_container_logs.py +0 -102
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_logs.py +0 -107
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_resource_requested.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_search.py +0 -103
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_search_state.py +0 -46
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_start_containers.py +0 -104
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_state.py +0 -42
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_status.py +0 -119
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_status_node.py +0 -116
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_run_template_parameter_value.py +0 -96
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_security.py +0 -98
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/scenario_validation_status.py +0 -40
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/send_run_data_request.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/solution.py +0 -154
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/solution_access_control.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/solution_role.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/solution_security.py +0 -98
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/source_info.py +0 -94
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/sub_dataset_graph_query.py +0 -94
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/twin_graph_batch_result.py +0 -92
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/twin_graph_hash.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/twin_graph_query.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/twincache_status_enum.py +0 -38
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/validator.py +0 -106
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace.py +0 -142
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_access_control.py +0 -90
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_file.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_role.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_secret.py +0 -88
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_security.py +0 -98
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_solution.py +0 -92
- cosmotech_api-4.0.0.dev9/cosmotech_api/models/workspace_web_app.py +0 -92
- cosmotech_api-4.0.0.dev9/cosmotech_api/rest.py +0 -258
- cosmotech_api-4.0.0.dev9/cosmotech_api.egg-info/PKG-INFO +0 -18
- cosmotech_api-4.0.0.dev9/cosmotech_api.egg-info/SOURCES.txt +0 -407
- cosmotech_api-4.0.0.dev9/cosmotech_api.egg-info/requires.txt +0 -4
- cosmotech_api-4.0.0.dev9/pyproject.toml +0 -71
- cosmotech_api-4.0.0.dev9/setup.py +0 -51
- cosmotech_api-4.0.0.dev9/test/test_component_role_permissions.py +0 -57
- cosmotech_api-4.0.0.dev9/test/test_connector.py +0 -81
- cosmotech_api-4.0.0.dev9/test/test_connector_api.py +0 -60
- cosmotech_api-4.0.0.dev9/test/test_connector_parameter.py +0 -61
- cosmotech_api-4.0.0.dev9/test/test_connector_parameter_group.py +0 -77
- cosmotech_api-4.0.0.dev9/test/test_container_resource_size_info.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_container_resource_sizing.py +0 -63
- cosmotech_api-4.0.0.dev9/test/test_created_run.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_dataset.py +0 -103
- cosmotech_api-4.0.0.dev9/test/test_dataset_access_control.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_dataset_api.py +0 -247
- cosmotech_api-4.0.0.dev9/test/test_dataset_compatibility.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_dataset_connector.py +0 -57
- cosmotech_api-4.0.0.dev9/test/test_dataset_copy_parameters.py +0 -54
- cosmotech_api-4.0.0.dev9/test/test_dataset_role.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_dataset_search.py +0 -57
- cosmotech_api-4.0.0.dev9/test/test_dataset_security.py +0 -63
- cosmotech_api-4.0.0.dev9/test/test_dataset_source_type.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_dataset_twin_graph_hash.py +0 -52
- cosmotech_api-4.0.0.dev9/test/test_dataset_twin_graph_info.py +0 -54
- cosmotech_api-4.0.0.dev9/test/test_dataset_twin_graph_query.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_delete_historical_data.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_file_upload_metadata.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_file_upload_validation.py +0 -61
- cosmotech_api-4.0.0.dev9/test/test_graph_properties.py +0 -56
- cosmotech_api-4.0.0.dev9/test/test_ingestion_status_enum.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_io_types_enum.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_organization.py +0 -61
- cosmotech_api-4.0.0.dev9/test/test_organization_access_control.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_organization_api.py +0 -130
- cosmotech_api-4.0.0.dev9/test/test_organization_role.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_organization_security.py +0 -63
- cosmotech_api-4.0.0.dev9/test/test_organization_service.py +0 -56
- cosmotech_api-4.0.0.dev9/test/test_organization_services.py +0 -64
- cosmotech_api-4.0.0.dev9/test/test_query_result.py +0 -54
- cosmotech_api-4.0.0.dev9/test/test_resource_size_info.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_run.py +0 -104
- cosmotech_api-4.0.0.dev9/test/test_run_api.py +0 -81
- cosmotech_api-4.0.0.dev9/test/test_run_container.py +0 -78
- cosmotech_api-4.0.0.dev9/test/test_run_container_artifact.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_run_container_logs.py +0 -57
- cosmotech_api-4.0.0.dev9/test/test_run_data.py +0 -56
- cosmotech_api-4.0.0.dev9/test/test_run_data_query.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_run_logs.py +0 -61
- cosmotech_api-4.0.0.dev9/test/test_run_logs_entry.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_run_resource_requested.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_run_search.py +0 -59
- cosmotech_api-4.0.0.dev9/test/test_run_search_state.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_run_start_containers.py +0 -124
- cosmotech_api-4.0.0.dev9/test/test_run_state.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_run_status.py +0 -83
- cosmotech_api-4.0.0.dev9/test/test_run_status_node.py +0 -67
- cosmotech_api-4.0.0.dev9/test/test_run_template.py +0 -101
- cosmotech_api-4.0.0.dev9/test/test_run_template_handler_id.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_run_template_orchestrator.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_run_template_parameter.py +0 -62
- cosmotech_api-4.0.0.dev9/test/test_run_template_parameter_group.py +0 -62
- cosmotech_api-4.0.0.dev9/test/test_run_template_parameter_value.py +0 -56
- cosmotech_api-4.0.0.dev9/test/test_run_template_resource_sizing.py +0 -63
- cosmotech_api-4.0.0.dev9/test/test_run_template_step_source.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_runner.py +0 -98
- cosmotech_api-4.0.0.dev9/test/test_runner_access_control.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_runner_api.py +0 -137
- cosmotech_api-4.0.0.dev9/test/test_runner_changed_parameter_value.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_runner_comparison_result.py +0 -60
- cosmotech_api-4.0.0.dev9/test/test_runner_data_download_info.py +0 -52
- cosmotech_api-4.0.0.dev9/test/test_runner_data_download_job.py +0 -52
- cosmotech_api-4.0.0.dev9/test/test_runner_job_state.py +0 -36
- cosmotech_api-4.0.0.dev9/test/test_runner_last_run.py +0 -36
- cosmotech_api-4.0.0.dev9/test/test_runner_parent_last_run.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_runner_resource_sizing.py +0 -63
- cosmotech_api-4.0.0.dev9/test/test_runner_role.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_runner_root_last_run.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_runner_run_template_parameter_value.py +0 -57
- cosmotech_api-4.0.0.dev9/test/test_runner_security.py +0 -63
- cosmotech_api-4.0.0.dev9/test/test_runner_validation_status.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_scenario.py +0 -110
- cosmotech_api-4.0.0.dev9/test/test_scenario_access_control.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_scenario_api.py +0 -186
- cosmotech_api-4.0.0.dev9/test/test_scenario_changed_parameter_value.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_scenario_comparison_result.py +0 -60
- cosmotech_api-4.0.0.dev9/test/test_scenario_data_download_info.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_scenario_data_download_job.py +0 -52
- cosmotech_api-4.0.0.dev9/test/test_scenario_job_state.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_scenario_last_run.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_scenario_resource_sizing.py +0 -63
- cosmotech_api-4.0.0.dev9/test/test_scenario_role.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_scenario_run.py +0 -113
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_container.py +0 -83
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_container_artifact.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_container_logs.py +0 -57
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_logs.py +0 -61
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_resource_requested.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_result.py +0 -36
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_search.py +0 -59
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_search_state.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_start_containers.py +0 -124
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_state.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_status.py +0 -81
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_status_node.py +0 -67
- cosmotech_api-4.0.0.dev9/test/test_scenario_run_template_parameter_value.py +0 -57
- cosmotech_api-4.0.0.dev9/test/test_scenario_security.py +0 -63
- cosmotech_api-4.0.0.dev9/test/test_scenario_validation_status.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_scenariorun_api.py +0 -130
- cosmotech_api-4.0.0.dev9/test/test_scenariorunresult_api.py +0 -43
- cosmotech_api-4.0.0.dev9/test/test_send_run_data_request.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_solution.py +0 -203
- cosmotech_api-4.0.0.dev9/test/test_solution_access_control.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_solution_api.py +0 -172
- cosmotech_api-4.0.0.dev9/test/test_solution_role.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_solution_security.py +0 -63
- cosmotech_api-4.0.0.dev9/test/test_source_info.py +0 -56
- cosmotech_api-4.0.0.dev9/test/test_sub_dataset_graph_query.py +0 -57
- cosmotech_api-4.0.0.dev9/test/test_translated_labels.py +0 -36
- cosmotech_api-4.0.0.dev9/test/test_twin_graph_batch_result.py +0 -61
- cosmotech_api-4.0.0.dev9/test/test_twin_graph_hash.py +0 -52
- cosmotech_api-4.0.0.dev9/test/test_twin_graph_query.py +0 -54
- cosmotech_api-4.0.0.dev9/test/test_twincache_status_enum.py +0 -34
- cosmotech_api-4.0.0.dev9/test/test_twingraph_api.py +0 -130
- cosmotech_api-4.0.0.dev9/test/test_user_api.py +0 -99
- cosmotech_api-4.0.0.dev9/test/test_validator.py +0 -65
- cosmotech_api-4.0.0.dev9/test/test_validator_api.py +0 -92
- cosmotech_api-4.0.0.dev9/test/test_validator_run.py +0 -36
- cosmotech_api-4.0.0.dev9/test/test_workspace.py +0 -96
- cosmotech_api-4.0.0.dev9/test/test_workspace_access_control.py +0 -55
- cosmotech_api-4.0.0.dev9/test/test_workspace_api.py +0 -170
- cosmotech_api-4.0.0.dev9/test/test_workspace_file.py +0 -52
- cosmotech_api-4.0.0.dev9/test/test_workspace_role.py +0 -53
- cosmotech_api-4.0.0.dev9/test/test_workspace_secret.py +0 -52
- cosmotech_api-4.0.0.dev9/test/test_workspace_security.py +0 -63
- cosmotech_api-4.0.0.dev9/test/test_workspace_solution.py +0 -56
- cosmotech_api-4.0.0.dev9/test/test_workspace_web_app.py +0 -55
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/api/user_api.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/api_response.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/apis/__init__.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/__init__.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/organization_user.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/scenario_user.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/twin_graph_import.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/twin_graph_import_info.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/user.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/user_organization.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/user_workspace.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/model/workspace_user.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/models/scenario_run_result.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/models/validator_run.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api/py.typed +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api.egg-info/dependency_links.txt +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/cosmotech_api.egg-info/top_level.txt +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/setup.cfg +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_organization_user.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_scenario_user.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_twin_graph_import.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_twin_graph_import_info.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_user.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_user_organization.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_user_workspace.py +0 -0
- {cosmotech_api-4.0.0.dev9 → cosmotech_api-5.0.0b4}/test/test_workspace_user.py +0 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
=======
|
|
3
|
+
|
|
4
|
+
Copyright 2021-2025 Cosmo Tech
|
|
5
|
+
|
|
6
|
+
You are authorized to use this software following the execution of a specific agreement with Cosmo Tech or with an authorized licensee of Cosmo Tech.
|
|
7
|
+
|
|
8
|
+
Accordingly you should refer to this specific agreement for the purpose of the extent of the use that is permitted. This use shall mainly consist in using, displaying and executing the software for your own needs.
|
|
9
|
+
|
|
10
|
+
Except otherwise provided in the above-mentioned specific agreement:
|
|
11
|
+
- you are not allowed to use this software for commercial purpose or to redistribute it without prior authorization from Cosmo Tech;
|
|
12
|
+
- you are not allowed to copy, duplicate, modify, adapt and translate this software except as authorized under section L122-6-1 of the French Intellectual Property Code;
|
|
13
|
+
- you must not removed this notice or any mention related to the copyright of Cosmo Tech;
|
|
14
|
+
|
|
15
|
+
This software is provided 'as is', without any express or implied warranty towards the users.
|
|
16
|
+
|
|
17
|
+
Any Software generated through the use of the software shall be your own property to the extent this Software does not contain any part of software source code.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cosmotech-api
|
|
3
|
+
Version: 5.0.0b4
|
|
4
|
+
Summary: Cosmo Tech Platform API
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: Repository
|
|
7
|
+
Author-email: platform@cosmotech.com
|
|
8
|
+
License: MIT License
|
|
9
|
+
Keywords: OpenAPI,OpenAPI-Generator,Cosmo Tech Platform API
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Requires-Dist: urllib3<3.0.0,>=2.1.0
|
|
13
|
+
Requires-Dist: python-dateutil>=2.8.2
|
|
14
|
+
Requires-Dist: pydantic>=2
|
|
15
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
16
|
+
Dynamic: author
|
|
17
|
+
Dynamic: author-email
|
|
18
|
+
Dynamic: description
|
|
19
|
+
Dynamic: description-content-type
|
|
20
|
+
Dynamic: keywords
|
|
21
|
+
Dynamic: license
|
|
22
|
+
Dynamic: license-file
|
|
23
|
+
Dynamic: requires-dist
|
|
24
|
+
Dynamic: summary
|
|
25
|
+
|
|
26
|
+
Cosmo Tech Platform API
|
|
27
|
+
|
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
# cosmotech-api
|
|
2
|
+
Cosmo Tech Platform API
|
|
3
|
+
|
|
4
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
|
+
|
|
6
|
+
- API version: 5.0.0-beta4
|
|
7
|
+
- Package version: 1.0.0
|
|
8
|
+
- Generator version: 7.13.0
|
|
9
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
10
|
+
For more information, please visit [https://github.com/Cosmo-Tech/cosmotech-api](https://github.com/Cosmo-Tech/cosmotech-api)
|
|
11
|
+
|
|
12
|
+
## Requirements.
|
|
13
|
+
|
|
14
|
+
Python 3.9+
|
|
15
|
+
|
|
16
|
+
## Installation & Usage
|
|
17
|
+
### pip install
|
|
18
|
+
|
|
19
|
+
If the python package is hosted on a repository, you can install directly using:
|
|
20
|
+
|
|
21
|
+
```sh
|
|
22
|
+
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
|
|
23
|
+
```
|
|
24
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
|
|
25
|
+
|
|
26
|
+
Then import the package:
|
|
27
|
+
```python
|
|
28
|
+
import cosmotech_api
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Setuptools
|
|
32
|
+
|
|
33
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
python setup.py install --user
|
|
37
|
+
```
|
|
38
|
+
(or `sudo python setup.py install` to install the package for all users)
|
|
39
|
+
|
|
40
|
+
Then import the package:
|
|
41
|
+
```python
|
|
42
|
+
import cosmotech_api
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### Tests
|
|
46
|
+
|
|
47
|
+
Execute `pytest` to run the tests.
|
|
48
|
+
|
|
49
|
+
## Getting Started
|
|
50
|
+
|
|
51
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
52
|
+
|
|
53
|
+
```python
|
|
54
|
+
|
|
55
|
+
import cosmotech_api
|
|
56
|
+
from cosmotech_api.rest import ApiException
|
|
57
|
+
from pprint import pprint
|
|
58
|
+
|
|
59
|
+
# Defining the host is optional and defaults to http://localhost:8080
|
|
60
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
61
|
+
configuration = cosmotech_api.Configuration(
|
|
62
|
+
host = "http://localhost:8080"
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
# The client must configure the authentication and authorization parameters
|
|
66
|
+
# in accordance with the API server security policy.
|
|
67
|
+
# Examples for each auth method are provided below, use the example that
|
|
68
|
+
# satisfies your auth use case.
|
|
69
|
+
|
|
70
|
+
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
# Enter a context with an instance of the API client
|
|
74
|
+
with cosmotech_api.ApiClient(configuration) as api_client:
|
|
75
|
+
# Create an instance of the API class
|
|
76
|
+
api_instance = cosmotech_api.DatasetApi(api_client)
|
|
77
|
+
organization_id = 'organization_id_example' # str | the Organization identifier
|
|
78
|
+
workspace_id = 'workspace_id_example' # str | the Workspace identifier
|
|
79
|
+
dataset_create_request = cosmotech_api.DatasetCreateRequest() # DatasetCreateRequest |
|
|
80
|
+
files = None # List[bytearray] | Notes: - Each parts defined in dataset should have a file defined in this list - Please ensure that upload files order match with data parts list defined - First file uploaded will match with first dataset parts and so on (optional)
|
|
81
|
+
|
|
82
|
+
try:
|
|
83
|
+
# Create a Dataset
|
|
84
|
+
api_response = api_instance.create_dataset(organization_id, workspace_id, dataset_create_request, files=files)
|
|
85
|
+
print("The response of DatasetApi->create_dataset:\n")
|
|
86
|
+
pprint(api_response)
|
|
87
|
+
except ApiException as e:
|
|
88
|
+
print("Exception when calling DatasetApi->create_dataset: %s\n" % e)
|
|
89
|
+
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
## Documentation for API Endpoints
|
|
93
|
+
|
|
94
|
+
All URIs are relative to *http://localhost:8080*
|
|
95
|
+
|
|
96
|
+
Class | Method | HTTP request | Description
|
|
97
|
+
------------ | ------------- | ------------- | -------------
|
|
98
|
+
*DatasetApi* | [**create_dataset**](docs/DatasetApi.md#create_dataset) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/datasets | Create a Dataset
|
|
99
|
+
*DatasetApi* | [**create_dataset_access_control**](docs/DatasetApi.md#create_dataset_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/security/access | Add a control access to the Dataset
|
|
100
|
+
*DatasetApi* | [**create_dataset_part**](docs/DatasetApi.md#create_dataset_part) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts | Create a data part of a Dataset
|
|
101
|
+
*DatasetApi* | [**delete_dataset**](docs/DatasetApi.md#delete_dataset) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id} | Delete a Dataset
|
|
102
|
+
*DatasetApi* | [**delete_dataset_access_control**](docs/DatasetApi.md#delete_dataset_access_control) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/security/access/{identity_id} | Remove the specified access from the given Dataset
|
|
103
|
+
*DatasetApi* | [**delete_dataset_part**](docs/DatasetApi.md#delete_dataset_part) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts/{dataset_part_id} | Delete a Dataset part
|
|
104
|
+
*DatasetApi* | [**download_dataset_part**](docs/DatasetApi.md#download_dataset_part) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts/{dataset_part_id}/download | Download data from a dataset part
|
|
105
|
+
*DatasetApi* | [**get_dataset**](docs/DatasetApi.md#get_dataset) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id} | Retrieve a Dataset
|
|
106
|
+
*DatasetApi* | [**get_dataset_access_control**](docs/DatasetApi.md#get_dataset_access_control) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/security/access/{identity_id} | Get a control access for the Dataset
|
|
107
|
+
*DatasetApi* | [**get_dataset_part**](docs/DatasetApi.md#get_dataset_part) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts/{dataset_part_id} | Retrieve a data part of a Dataset
|
|
108
|
+
*DatasetApi* | [**list_dataset_parts**](docs/DatasetApi.md#list_dataset_parts) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts | Retrieve all dataset parts of a Dataset
|
|
109
|
+
*DatasetApi* | [**list_dataset_security_users**](docs/DatasetApi.md#list_dataset_security_users) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/security/users | Get the Dataset security users list
|
|
110
|
+
*DatasetApi* | [**list_datasets**](docs/DatasetApi.md#list_datasets) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets | Retrieve a list of defined Dataset
|
|
111
|
+
*DatasetApi* | [**query_data**](docs/DatasetApi.md#query_data) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts/{dataset_part_id}/query | Get data of a Dataset
|
|
112
|
+
*DatasetApi* | [**replace_dataset_part**](docs/DatasetApi.md#replace_dataset_part) | **PUT** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts/{dataset_part_id} | Replace existing dataset parts of a Dataset
|
|
113
|
+
*DatasetApi* | [**search_dataset_parts**](docs/DatasetApi.md#search_dataset_parts) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/parts/search | Search Dataset parts by tags
|
|
114
|
+
*DatasetApi* | [**search_datasets**](docs/DatasetApi.md#search_datasets) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/search | Search Datasets by tags
|
|
115
|
+
*DatasetApi* | [**update_dataset**](docs/DatasetApi.md#update_dataset) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id} | Update a Dataset
|
|
116
|
+
*DatasetApi* | [**update_dataset_access_control**](docs/DatasetApi.md#update_dataset_access_control) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/security/access/{identity_id} | Update the specified access to User for a Dataset
|
|
117
|
+
*DatasetApi* | [**update_dataset_default_security**](docs/DatasetApi.md#update_dataset_default_security) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/datasets/{dataset_id}/security/default | Set the Dataset default security
|
|
118
|
+
*MetaApi* | [**about**](docs/MetaApi.md#about) | **GET** /about | Get various information about the API
|
|
119
|
+
*OrganizationApi* | [**create_organization**](docs/OrganizationApi.md#create_organization) | **POST** /organizations | Create a new organization
|
|
120
|
+
*OrganizationApi* | [**create_organization_access_control**](docs/OrganizationApi.md#create_organization_access_control) | **POST** /organizations/{organization_id}/security/access | Add a control access to the Organization
|
|
121
|
+
*OrganizationApi* | [**delete_organization**](docs/OrganizationApi.md#delete_organization) | **DELETE** /organizations/{organization_id} | Delete an organization
|
|
122
|
+
*OrganizationApi* | [**delete_organization_access_control**](docs/OrganizationApi.md#delete_organization_access_control) | **DELETE** /organizations/{organization_id}/security/access/{identity_id} | Remove the specified access from the given Organization
|
|
123
|
+
*OrganizationApi* | [**get_organization**](docs/OrganizationApi.md#get_organization) | **GET** /organizations/{organization_id} | Get the details of an Organization
|
|
124
|
+
*OrganizationApi* | [**get_organization_access_control**](docs/OrganizationApi.md#get_organization_access_control) | **GET** /organizations/{organization_id}/security/access/{identity_id} | Get a control access for the Organization
|
|
125
|
+
*OrganizationApi* | [**get_organization_permissions**](docs/OrganizationApi.md#get_organization_permissions) | **GET** /organizations/{organization_id}/permissions/{role} | Get the Organization permissions by given role
|
|
126
|
+
*OrganizationApi* | [**get_organization_security**](docs/OrganizationApi.md#get_organization_security) | **GET** /organizations/{organization_id}/security | Get the Organization security information
|
|
127
|
+
*OrganizationApi* | [**list_organization_security_users**](docs/OrganizationApi.md#list_organization_security_users) | **GET** /organizations/{organization_id}/security/users | Get the Organization security users list
|
|
128
|
+
*OrganizationApi* | [**list_organizations**](docs/OrganizationApi.md#list_organizations) | **GET** /organizations | List all Organizations
|
|
129
|
+
*OrganizationApi* | [**list_permissions**](docs/OrganizationApi.md#list_permissions) | **GET** /organizations/permissions | Get all permissions per components
|
|
130
|
+
*OrganizationApi* | [**update_organization**](docs/OrganizationApi.md#update_organization) | **PATCH** /organizations/{organization_id} | Update an Organization
|
|
131
|
+
*OrganizationApi* | [**update_organization_access_control**](docs/OrganizationApi.md#update_organization_access_control) | **PATCH** /organizations/{organization_id}/security/access/{identity_id} | Update the specified access to User for an Organization
|
|
132
|
+
*OrganizationApi* | [**update_organization_default_security**](docs/OrganizationApi.md#update_organization_default_security) | **PATCH** /organizations/{organization_id}/security/default | Update the Organization default security
|
|
133
|
+
*RunApi* | [**delete_run**](docs/RunApi.md#delete_run) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id} | Delete a run
|
|
134
|
+
*RunApi* | [**get_run**](docs/RunApi.md#get_run) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id} | Get the details of a run
|
|
135
|
+
*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
|
|
136
|
+
*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
|
|
137
|
+
*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
|
|
138
|
+
*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
|
|
139
|
+
*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
|
|
140
|
+
*RunnerApi* | [**create_runner**](docs/RunnerApi.md#create_runner) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners | Create a new Runner
|
|
141
|
+
*RunnerApi* | [**create_runner_access_control**](docs/RunnerApi.md#create_runner_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access | Add a control access to the Runner
|
|
142
|
+
*RunnerApi* | [**delete_runner**](docs/RunnerApi.md#delete_runner) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Delete a runner
|
|
143
|
+
*RunnerApi* | [**delete_runner_access_control**](docs/RunnerApi.md#delete_runner_access_control) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access/{identity_id} | Remove the specified access from the given Runner
|
|
144
|
+
*RunnerApi* | [**get_runner**](docs/RunnerApi.md#get_runner) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Get the details of a runner
|
|
145
|
+
*RunnerApi* | [**get_runner_access_control**](docs/RunnerApi.md#get_runner_access_control) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access/{identity_id} | Get a control access for the Runner
|
|
146
|
+
*RunnerApi* | [**get_runner_security**](docs/RunnerApi.md#get_runner_security) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security | Get the Runner security information
|
|
147
|
+
*RunnerApi* | [**list_runner_permissions**](docs/RunnerApi.md#list_runner_permissions) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/permissions/{role} | Get the Runner permission by given role
|
|
148
|
+
*RunnerApi* | [**list_runner_security_users**](docs/RunnerApi.md#list_runner_security_users) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/users | Get the Runner security users list
|
|
149
|
+
*RunnerApi* | [**list_runners**](docs/RunnerApi.md#list_runners) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners | List all Runners
|
|
150
|
+
*RunnerApi* | [**start_run**](docs/RunnerApi.md#start_run) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/start | Start a run with runner parameters
|
|
151
|
+
*RunnerApi* | [**stop_run**](docs/RunnerApi.md#stop_run) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/stop | Stop the last run
|
|
152
|
+
*RunnerApi* | [**update_runner**](docs/RunnerApi.md#update_runner) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Update a runner
|
|
153
|
+
*RunnerApi* | [**update_runner_access_control**](docs/RunnerApi.md#update_runner_access_control) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access/{identity_id} | Update the specified access to User for a Runner
|
|
154
|
+
*RunnerApi* | [**update_runner_default_security**](docs/RunnerApi.md#update_runner_default_security) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/default | Set the Runner default security
|
|
155
|
+
*SolutionApi* | [**create_solution**](docs/SolutionApi.md#create_solution) | **POST** /organizations/{organization_id}/solutions | Create a new solution
|
|
156
|
+
*SolutionApi* | [**create_solution_access_control**](docs/SolutionApi.md#create_solution_access_control) | **POST** /organizations/{organization_id}/solutions/{solution_id}/security/access | Create solution access control
|
|
157
|
+
*SolutionApi* | [**create_solution_file**](docs/SolutionApi.md#create_solution_file) | **POST** /organizations/{organization_id}/solutions/{solution_id}/files | Upload a file for the Solution
|
|
158
|
+
*SolutionApi* | [**create_solution_parameter**](docs/SolutionApi.md#create_solution_parameter) | **POST** /organizations/{organization_id}/solutions/{solution_id}/parameters | Create solution parameter for a solution
|
|
159
|
+
*SolutionApi* | [**create_solution_parameter_group**](docs/SolutionApi.md#create_solution_parameter_group) | **POST** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups | Create a solution parameter group
|
|
160
|
+
*SolutionApi* | [**create_solution_run_template**](docs/SolutionApi.md#create_solution_run_template) | **POST** /organizations/{organization_id}/solutions/{solution_id}/runTemplates | Create a solution run template
|
|
161
|
+
*SolutionApi* | [**delete_solution**](docs/SolutionApi.md#delete_solution) | **DELETE** /organizations/{organization_id}/solutions/{solution_id} | Delete a solution
|
|
162
|
+
*SolutionApi* | [**delete_solution_access_control**](docs/SolutionApi.md#delete_solution_access_control) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id} | Delete solution access control
|
|
163
|
+
*SolutionApi* | [**delete_solution_file**](docs/SolutionApi.md#delete_solution_file) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/files/delete | Delete a solution file
|
|
164
|
+
*SolutionApi* | [**delete_solution_files**](docs/SolutionApi.md#delete_solution_files) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/files | Delete all Solution files
|
|
165
|
+
*SolutionApi* | [**delete_solution_parameter**](docs/SolutionApi.md#delete_solution_parameter) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/parameters/{parameter_id} | Delete specific parameter from the solution
|
|
166
|
+
*SolutionApi* | [**delete_solution_parameter_group**](docs/SolutionApi.md#delete_solution_parameter_group) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups/{parameter_group_id} | Delete a parameter group from the solution
|
|
167
|
+
*SolutionApi* | [**delete_solution_run_template**](docs/SolutionApi.md#delete_solution_run_template) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/runTemplates/{run_template_id} | Delete a specific run template
|
|
168
|
+
*SolutionApi* | [**get_run_template**](docs/SolutionApi.md#get_run_template) | **GET** /organizations/{organization_id}/solutions/{solution_id}/runTemplates/{run_template_id} | Retrieve a solution run templates
|
|
169
|
+
*SolutionApi* | [**get_solution**](docs/SolutionApi.md#get_solution) | **GET** /organizations/{organization_id}/solutions/{solution_id} | Get the details of a solution
|
|
170
|
+
*SolutionApi* | [**get_solution_access_control**](docs/SolutionApi.md#get_solution_access_control) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id} | Get solution access control
|
|
171
|
+
*SolutionApi* | [**get_solution_file**](docs/SolutionApi.md#get_solution_file) | **GET** /organizations/{organization_id}/solutions/{solution_id}/files/download | Download the Solution File specified
|
|
172
|
+
*SolutionApi* | [**get_solution_parameter**](docs/SolutionApi.md#get_solution_parameter) | **GET** /organizations/{organization_id}/solutions/{solution_id}/parameters/{parameter_id} | Get the details of a solution parameter
|
|
173
|
+
*SolutionApi* | [**get_solution_parameter_group**](docs/SolutionApi.md#get_solution_parameter_group) | **GET** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups/{parameter_group_id} | Get details of a solution parameter group
|
|
174
|
+
*SolutionApi* | [**get_solution_security**](docs/SolutionApi.md#get_solution_security) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security | Get solution security information
|
|
175
|
+
*SolutionApi* | [**list_run_templates**](docs/SolutionApi.md#list_run_templates) | **GET** /organizations/{organization_id}/solutions/{solution_id}/runTemplates | List all solution run templates
|
|
176
|
+
*SolutionApi* | [**list_solution_files**](docs/SolutionApi.md#list_solution_files) | **GET** /organizations/{organization_id}/solutions/{solution_id}/files | List all Solution files
|
|
177
|
+
*SolutionApi* | [**list_solution_parameter_groups**](docs/SolutionApi.md#list_solution_parameter_groups) | **GET** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups | List all solution parameter groups
|
|
178
|
+
*SolutionApi* | [**list_solution_parameters**](docs/SolutionApi.md#list_solution_parameters) | **GET** /organizations/{organization_id}/solutions/{solution_id}/parameters | List all solution parameters
|
|
179
|
+
*SolutionApi* | [**list_solution_security_users**](docs/SolutionApi.md#list_solution_security_users) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security/users | List solution security users
|
|
180
|
+
*SolutionApi* | [**list_solutions**](docs/SolutionApi.md#list_solutions) | **GET** /organizations/{organization_id}/solutions | List all Solutions
|
|
181
|
+
*SolutionApi* | [**update_solution**](docs/SolutionApi.md#update_solution) | **PATCH** /organizations/{organization_id}/solutions/{solution_id} | Update a solution
|
|
182
|
+
*SolutionApi* | [**update_solution_access_control**](docs/SolutionApi.md#update_solution_access_control) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id} | Update solution access control
|
|
183
|
+
*SolutionApi* | [**update_solution_default_security**](docs/SolutionApi.md#update_solution_default_security) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/security/default | Update solution default security
|
|
184
|
+
*SolutionApi* | [**update_solution_parameter**](docs/SolutionApi.md#update_solution_parameter) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/parameters/{parameter_id} | Update solution parameter
|
|
185
|
+
*SolutionApi* | [**update_solution_parameter_group**](docs/SolutionApi.md#update_solution_parameter_group) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups/{parameter_group_id} | Update a solution parameter group
|
|
186
|
+
*SolutionApi* | [**update_solution_run_template**](docs/SolutionApi.md#update_solution_run_template) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/runTemplates/{run_template_id} | Update a specific run template
|
|
187
|
+
*WorkspaceApi* | [**create_workspace**](docs/WorkspaceApi.md#create_workspace) | **POST** /organizations/{organization_id}/workspaces | Create a new workspace
|
|
188
|
+
*WorkspaceApi* | [**create_workspace_access_control**](docs/WorkspaceApi.md#create_workspace_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/security/access | Add a control access to the Workspace
|
|
189
|
+
*WorkspaceApi* | [**create_workspace_file**](docs/WorkspaceApi.md#create_workspace_file) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/files | Upload a file for the Workspace
|
|
190
|
+
*WorkspaceApi* | [**delete_workspace**](docs/WorkspaceApi.md#delete_workspace) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id} | Delete a workspace
|
|
191
|
+
*WorkspaceApi* | [**delete_workspace_access_control**](docs/WorkspaceApi.md#delete_workspace_access_control) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/security/access/{identity_id} | Remove the specified access from the given Workspace
|
|
192
|
+
*WorkspaceApi* | [**delete_workspace_file**](docs/WorkspaceApi.md#delete_workspace_file) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/files/delete | Delete a workspace file
|
|
193
|
+
*WorkspaceApi* | [**delete_workspace_files**](docs/WorkspaceApi.md#delete_workspace_files) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/files | Delete all Workspace files
|
|
194
|
+
*WorkspaceApi* | [**get_workspace**](docs/WorkspaceApi.md#get_workspace) | **GET** /organizations/{organization_id}/workspaces/{workspace_id} | Get the details of a workspace
|
|
195
|
+
*WorkspaceApi* | [**get_workspace_access_control**](docs/WorkspaceApi.md#get_workspace_access_control) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/security/access/{identity_id} | Get a control access for the Workspace
|
|
196
|
+
*WorkspaceApi* | [**get_workspace_file**](docs/WorkspaceApi.md#get_workspace_file) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/files/download | Download the Workspace File specified
|
|
197
|
+
*WorkspaceApi* | [**get_workspace_security**](docs/WorkspaceApi.md#get_workspace_security) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/security | Get the Workspace security information
|
|
198
|
+
*WorkspaceApi* | [**list_workspace_files**](docs/WorkspaceApi.md#list_workspace_files) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/files | List all Workspace files
|
|
199
|
+
*WorkspaceApi* | [**list_workspace_role_permissions**](docs/WorkspaceApi.md#list_workspace_role_permissions) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/permissions/{role} | Get the Workspace permission by given role
|
|
200
|
+
*WorkspaceApi* | [**list_workspace_security_users**](docs/WorkspaceApi.md#list_workspace_security_users) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/security/users | Get the Workspace security users list
|
|
201
|
+
*WorkspaceApi* | [**list_workspaces**](docs/WorkspaceApi.md#list_workspaces) | **GET** /organizations/{organization_id}/workspaces | List all Workspaces
|
|
202
|
+
*WorkspaceApi* | [**update_workspace**](docs/WorkspaceApi.md#update_workspace) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id} | Update a workspace
|
|
203
|
+
*WorkspaceApi* | [**update_workspace_access_control**](docs/WorkspaceApi.md#update_workspace_access_control) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/security/access/{identity_id} | Update the specified access to User for a Workspace
|
|
204
|
+
*WorkspaceApi* | [**update_workspace_default_security**](docs/WorkspaceApi.md#update_workspace_default_security) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/security/default | Update the Workspace default security
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
## Documentation For Models
|
|
208
|
+
|
|
209
|
+
- [AboutInfo](docs/AboutInfo.md)
|
|
210
|
+
- [AboutInfoVersion](docs/AboutInfoVersion.md)
|
|
211
|
+
- [ComponentRolePermissions](docs/ComponentRolePermissions.md)
|
|
212
|
+
- [ContainerResourceSizeInfo](docs/ContainerResourceSizeInfo.md)
|
|
213
|
+
- [ContainerResourceSizing](docs/ContainerResourceSizing.md)
|
|
214
|
+
- [CreateInfo](docs/CreateInfo.md)
|
|
215
|
+
- [CreatedRun](docs/CreatedRun.md)
|
|
216
|
+
- [Dataset](docs/Dataset.md)
|
|
217
|
+
- [DatasetAccessControl](docs/DatasetAccessControl.md)
|
|
218
|
+
- [DatasetCreateRequest](docs/DatasetCreateRequest.md)
|
|
219
|
+
- [DatasetPart](docs/DatasetPart.md)
|
|
220
|
+
- [DatasetPartCreateRequest](docs/DatasetPartCreateRequest.md)
|
|
221
|
+
- [DatasetPartTypeEnum](docs/DatasetPartTypeEnum.md)
|
|
222
|
+
- [DatasetPartUpdateRequest](docs/DatasetPartUpdateRequest.md)
|
|
223
|
+
- [DatasetRole](docs/DatasetRole.md)
|
|
224
|
+
- [DatasetSecurity](docs/DatasetSecurity.md)
|
|
225
|
+
- [DatasetUpdateRequest](docs/DatasetUpdateRequest.md)
|
|
226
|
+
- [EditInfo](docs/EditInfo.md)
|
|
227
|
+
- [LastRunInfo](docs/LastRunInfo.md)
|
|
228
|
+
- [Organization](docs/Organization.md)
|
|
229
|
+
- [OrganizationAccessControl](docs/OrganizationAccessControl.md)
|
|
230
|
+
- [OrganizationCreateRequest](docs/OrganizationCreateRequest.md)
|
|
231
|
+
- [OrganizationEditInfo](docs/OrganizationEditInfo.md)
|
|
232
|
+
- [OrganizationRole](docs/OrganizationRole.md)
|
|
233
|
+
- [OrganizationSecurity](docs/OrganizationSecurity.md)
|
|
234
|
+
- [OrganizationUpdateRequest](docs/OrganizationUpdateRequest.md)
|
|
235
|
+
- [QueryResult](docs/QueryResult.md)
|
|
236
|
+
- [ResourceSizeInfo](docs/ResourceSizeInfo.md)
|
|
237
|
+
- [Run](docs/Run.md)
|
|
238
|
+
- [RunContainer](docs/RunContainer.md)
|
|
239
|
+
- [RunData](docs/RunData.md)
|
|
240
|
+
- [RunDataQuery](docs/RunDataQuery.md)
|
|
241
|
+
- [RunEditInfo](docs/RunEditInfo.md)
|
|
242
|
+
- [RunResourceRequested](docs/RunResourceRequested.md)
|
|
243
|
+
- [RunState](docs/RunState.md)
|
|
244
|
+
- [RunStatus](docs/RunStatus.md)
|
|
245
|
+
- [RunStatusNode](docs/RunStatusNode.md)
|
|
246
|
+
- [RunTemplate](docs/RunTemplate.md)
|
|
247
|
+
- [RunTemplateCreateRequest](docs/RunTemplateCreateRequest.md)
|
|
248
|
+
- [RunTemplateParameter](docs/RunTemplateParameter.md)
|
|
249
|
+
- [RunTemplateParameterCreateRequest](docs/RunTemplateParameterCreateRequest.md)
|
|
250
|
+
- [RunTemplateParameterGroup](docs/RunTemplateParameterGroup.md)
|
|
251
|
+
- [RunTemplateParameterGroupCreateRequest](docs/RunTemplateParameterGroupCreateRequest.md)
|
|
252
|
+
- [RunTemplateParameterGroupUpdateRequest](docs/RunTemplateParameterGroupUpdateRequest.md)
|
|
253
|
+
- [RunTemplateParameterUpdateRequest](docs/RunTemplateParameterUpdateRequest.md)
|
|
254
|
+
- [RunTemplateParameterValue](docs/RunTemplateParameterValue.md)
|
|
255
|
+
- [RunTemplateResourceSizing](docs/RunTemplateResourceSizing.md)
|
|
256
|
+
- [RunTemplateUpdateRequest](docs/RunTemplateUpdateRequest.md)
|
|
257
|
+
- [Runner](docs/Runner.md)
|
|
258
|
+
- [RunnerAccessControl](docs/RunnerAccessControl.md)
|
|
259
|
+
- [RunnerCreateRequest](docs/RunnerCreateRequest.md)
|
|
260
|
+
- [RunnerEditInfo](docs/RunnerEditInfo.md)
|
|
261
|
+
- [RunnerResourceSizing](docs/RunnerResourceSizing.md)
|
|
262
|
+
- [RunnerRole](docs/RunnerRole.md)
|
|
263
|
+
- [RunnerRunTemplateParameterValue](docs/RunnerRunTemplateParameterValue.md)
|
|
264
|
+
- [RunnerSecurity](docs/RunnerSecurity.md)
|
|
265
|
+
- [RunnerUpdateRequest](docs/RunnerUpdateRequest.md)
|
|
266
|
+
- [RunnerValidationStatus](docs/RunnerValidationStatus.md)
|
|
267
|
+
- [SendRunDataRequest](docs/SendRunDataRequest.md)
|
|
268
|
+
- [Solution](docs/Solution.md)
|
|
269
|
+
- [SolutionAccessControl](docs/SolutionAccessControl.md)
|
|
270
|
+
- [SolutionCreateRequest](docs/SolutionCreateRequest.md)
|
|
271
|
+
- [SolutionEditInfo](docs/SolutionEditInfo.md)
|
|
272
|
+
- [SolutionFile](docs/SolutionFile.md)
|
|
273
|
+
- [SolutionRole](docs/SolutionRole.md)
|
|
274
|
+
- [SolutionSecurity](docs/SolutionSecurity.md)
|
|
275
|
+
- [SolutionUpdateRequest](docs/SolutionUpdateRequest.md)
|
|
276
|
+
- [Workspace](docs/Workspace.md)
|
|
277
|
+
- [WorkspaceAccessControl](docs/WorkspaceAccessControl.md)
|
|
278
|
+
- [WorkspaceCreateRequest](docs/WorkspaceCreateRequest.md)
|
|
279
|
+
- [WorkspaceEditInfo](docs/WorkspaceEditInfo.md)
|
|
280
|
+
- [WorkspaceFile](docs/WorkspaceFile.md)
|
|
281
|
+
- [WorkspaceRole](docs/WorkspaceRole.md)
|
|
282
|
+
- [WorkspaceSecurity](docs/WorkspaceSecurity.md)
|
|
283
|
+
- [WorkspaceSolution](docs/WorkspaceSolution.md)
|
|
284
|
+
- [WorkspaceUpdateRequest](docs/WorkspaceUpdateRequest.md)
|
|
285
|
+
- [WorkspaceWebApp](docs/WorkspaceWebApp.md)
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
<a id="documentation-for-authorization"></a>
|
|
289
|
+
## Documentation For Authorization
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
Authentication schemes defined for the API:
|
|
293
|
+
<a id="oAuth2AuthCode"></a>
|
|
294
|
+
### oAuth2AuthCode
|
|
295
|
+
|
|
296
|
+
- **Type**: OAuth
|
|
297
|
+
- **Flow**: accessCode
|
|
298
|
+
- **Authorization URL**: https://example.com/authorize
|
|
299
|
+
- **Scopes**: N/A
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
## Author
|
|
303
|
+
|
|
304
|
+
platform@cosmotech.com
|
|
305
|
+
|
|
306
|
+
|
|
@@ -0,0 +1,117 @@
|
|
|
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: 5.0.0-beta4
|
|
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.dataset_api import DatasetApi
|
|
22
|
+
from cosmotech_api.api.meta_api import MetaApi
|
|
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.solution_api import SolutionApi
|
|
27
|
+
from cosmotech_api.api.workspace_api import WorkspaceApi
|
|
28
|
+
|
|
29
|
+
# import ApiClient
|
|
30
|
+
from cosmotech_api.api_response import ApiResponse
|
|
31
|
+
from cosmotech_api.api_client import ApiClient
|
|
32
|
+
from cosmotech_api.configuration import Configuration
|
|
33
|
+
from cosmotech_api.exceptions import OpenApiException
|
|
34
|
+
from cosmotech_api.exceptions import ApiTypeError
|
|
35
|
+
from cosmotech_api.exceptions import ApiValueError
|
|
36
|
+
from cosmotech_api.exceptions import ApiKeyError
|
|
37
|
+
from cosmotech_api.exceptions import ApiAttributeError
|
|
38
|
+
from cosmotech_api.exceptions import ApiException
|
|
39
|
+
|
|
40
|
+
# import models into sdk package
|
|
41
|
+
from cosmotech_api.models.about_info import AboutInfo
|
|
42
|
+
from cosmotech_api.models.about_info_version import AboutInfoVersion
|
|
43
|
+
from cosmotech_api.models.component_role_permissions import ComponentRolePermissions
|
|
44
|
+
from cosmotech_api.models.container_resource_size_info import ContainerResourceSizeInfo
|
|
45
|
+
from cosmotech_api.models.container_resource_sizing import ContainerResourceSizing
|
|
46
|
+
from cosmotech_api.models.create_info import CreateInfo
|
|
47
|
+
from cosmotech_api.models.created_run import CreatedRun
|
|
48
|
+
from cosmotech_api.models.dataset import Dataset
|
|
49
|
+
from cosmotech_api.models.dataset_access_control import DatasetAccessControl
|
|
50
|
+
from cosmotech_api.models.dataset_create_request import DatasetCreateRequest
|
|
51
|
+
from cosmotech_api.models.dataset_part import DatasetPart
|
|
52
|
+
from cosmotech_api.models.dataset_part_create_request import DatasetPartCreateRequest
|
|
53
|
+
from cosmotech_api.models.dataset_part_type_enum import DatasetPartTypeEnum
|
|
54
|
+
from cosmotech_api.models.dataset_part_update_request import DatasetPartUpdateRequest
|
|
55
|
+
from cosmotech_api.models.dataset_role import DatasetRole
|
|
56
|
+
from cosmotech_api.models.dataset_security import DatasetSecurity
|
|
57
|
+
from cosmotech_api.models.dataset_update_request import DatasetUpdateRequest
|
|
58
|
+
from cosmotech_api.models.edit_info import EditInfo
|
|
59
|
+
from cosmotech_api.models.last_run_info import LastRunInfo
|
|
60
|
+
from cosmotech_api.models.organization import Organization
|
|
61
|
+
from cosmotech_api.models.organization_access_control import OrganizationAccessControl
|
|
62
|
+
from cosmotech_api.models.organization_create_request import OrganizationCreateRequest
|
|
63
|
+
from cosmotech_api.models.organization_edit_info import OrganizationEditInfo
|
|
64
|
+
from cosmotech_api.models.organization_role import OrganizationRole
|
|
65
|
+
from cosmotech_api.models.organization_security import OrganizationSecurity
|
|
66
|
+
from cosmotech_api.models.organization_update_request import OrganizationUpdateRequest
|
|
67
|
+
from cosmotech_api.models.query_result import QueryResult
|
|
68
|
+
from cosmotech_api.models.resource_size_info import ResourceSizeInfo
|
|
69
|
+
from cosmotech_api.models.run import Run
|
|
70
|
+
from cosmotech_api.models.run_container import RunContainer
|
|
71
|
+
from cosmotech_api.models.run_data import RunData
|
|
72
|
+
from cosmotech_api.models.run_data_query import RunDataQuery
|
|
73
|
+
from cosmotech_api.models.run_edit_info import RunEditInfo
|
|
74
|
+
from cosmotech_api.models.run_resource_requested import RunResourceRequested
|
|
75
|
+
from cosmotech_api.models.run_state import RunState
|
|
76
|
+
from cosmotech_api.models.run_status import RunStatus
|
|
77
|
+
from cosmotech_api.models.run_status_node import RunStatusNode
|
|
78
|
+
from cosmotech_api.models.run_template import RunTemplate
|
|
79
|
+
from cosmotech_api.models.run_template_create_request import RunTemplateCreateRequest
|
|
80
|
+
from cosmotech_api.models.run_template_parameter import RunTemplateParameter
|
|
81
|
+
from cosmotech_api.models.run_template_parameter_create_request import RunTemplateParameterCreateRequest
|
|
82
|
+
from cosmotech_api.models.run_template_parameter_group import RunTemplateParameterGroup
|
|
83
|
+
from cosmotech_api.models.run_template_parameter_group_create_request import RunTemplateParameterGroupCreateRequest
|
|
84
|
+
from cosmotech_api.models.run_template_parameter_group_update_request import RunTemplateParameterGroupUpdateRequest
|
|
85
|
+
from cosmotech_api.models.run_template_parameter_update_request import RunTemplateParameterUpdateRequest
|
|
86
|
+
from cosmotech_api.models.run_template_parameter_value import RunTemplateParameterValue
|
|
87
|
+
from cosmotech_api.models.run_template_resource_sizing import RunTemplateResourceSizing
|
|
88
|
+
from cosmotech_api.models.run_template_update_request import RunTemplateUpdateRequest
|
|
89
|
+
from cosmotech_api.models.runner import Runner
|
|
90
|
+
from cosmotech_api.models.runner_access_control import RunnerAccessControl
|
|
91
|
+
from cosmotech_api.models.runner_create_request import RunnerCreateRequest
|
|
92
|
+
from cosmotech_api.models.runner_edit_info import RunnerEditInfo
|
|
93
|
+
from cosmotech_api.models.runner_resource_sizing import RunnerResourceSizing
|
|
94
|
+
from cosmotech_api.models.runner_role import RunnerRole
|
|
95
|
+
from cosmotech_api.models.runner_run_template_parameter_value import RunnerRunTemplateParameterValue
|
|
96
|
+
from cosmotech_api.models.runner_security import RunnerSecurity
|
|
97
|
+
from cosmotech_api.models.runner_update_request import RunnerUpdateRequest
|
|
98
|
+
from cosmotech_api.models.runner_validation_status import RunnerValidationStatus
|
|
99
|
+
from cosmotech_api.models.send_run_data_request import SendRunDataRequest
|
|
100
|
+
from cosmotech_api.models.solution import Solution
|
|
101
|
+
from cosmotech_api.models.solution_access_control import SolutionAccessControl
|
|
102
|
+
from cosmotech_api.models.solution_create_request import SolutionCreateRequest
|
|
103
|
+
from cosmotech_api.models.solution_edit_info import SolutionEditInfo
|
|
104
|
+
from cosmotech_api.models.solution_file import SolutionFile
|
|
105
|
+
from cosmotech_api.models.solution_role import SolutionRole
|
|
106
|
+
from cosmotech_api.models.solution_security import SolutionSecurity
|
|
107
|
+
from cosmotech_api.models.solution_update_request import SolutionUpdateRequest
|
|
108
|
+
from cosmotech_api.models.workspace import Workspace
|
|
109
|
+
from cosmotech_api.models.workspace_access_control import WorkspaceAccessControl
|
|
110
|
+
from cosmotech_api.models.workspace_create_request import WorkspaceCreateRequest
|
|
111
|
+
from cosmotech_api.models.workspace_edit_info import WorkspaceEditInfo
|
|
112
|
+
from cosmotech_api.models.workspace_file import WorkspaceFile
|
|
113
|
+
from cosmotech_api.models.workspace_role import WorkspaceRole
|
|
114
|
+
from cosmotech_api.models.workspace_security import WorkspaceSecurity
|
|
115
|
+
from cosmotech_api.models.workspace_solution import WorkspaceSolution
|
|
116
|
+
from cosmotech_api.models.workspace_update_request import WorkspaceUpdateRequest
|
|
117
|
+
from cosmotech_api.models.workspace_web_app import WorkspaceWebApp
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from cosmotech_api.api.dataset_api import DatasetApi
|
|
5
|
+
from cosmotech_api.api.meta_api import MetaApi
|
|
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.solution_api import SolutionApi
|
|
10
|
+
from cosmotech_api.api.workspace_api import WorkspaceApi
|
|
11
|
+
|