cosmotech-api 3.2.6.dev2__tar.gz → 3.3.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cosmotech-api might be problematic. Click here for more details.
- cosmotech_api-3.3.4/PKG-INFO +26 -0
- cosmotech_api-3.3.4/README.md +403 -0
- cosmotech_api-3.3.4/cosmotech_api/__init__.py +157 -0
- cosmotech_api-3.3.4/cosmotech_api/api/connector_api.py +1355 -0
- cosmotech_api-3.3.4/cosmotech_api/api/dataset_api.py +9179 -0
- cosmotech_api-3.3.4/cosmotech_api/api/meta_api.py +281 -0
- cosmotech_api-3.3.4/cosmotech_api/api/organization_api.py +4710 -0
- cosmotech_api-3.3.4/cosmotech_api/api/run_api.py +2235 -0
- cosmotech_api-3.3.4/cosmotech_api/api/runner_api.py +4564 -0
- cosmotech_api-3.3.4/cosmotech_api/api/scenario_api.py +6708 -0
- cosmotech_api-3.3.4/cosmotech_api/api/scenariorun_api.py +4102 -0
- cosmotech_api-3.3.4/cosmotech_api/api/scenariorunresult_api.py +386 -0
- cosmotech_api-3.3.4/cosmotech_api/api/solution_api.py +6491 -0
- cosmotech_api-3.3.4/cosmotech_api/api/twingraph_api.py +4212 -0
- cosmotech_api-3.3.4/cosmotech_api/api/validator_api.py +1314 -0
- cosmotech_api-3.3.4/cosmotech_api/api/workspace_api.py +6134 -0
- cosmotech_api-3.3.4/cosmotech_api/api_client.py +789 -0
- cosmotech_api-3.3.4/cosmotech_api/configuration.py +467 -0
- cosmotech_api-3.3.4/cosmotech_api/exceptions.py +200 -0
- cosmotech_api-3.3.4/cosmotech_api/model/component_role_permissions.py +260 -0
- cosmotech_api-3.3.4/cosmotech_api/model/connector.py +330 -0
- cosmotech_api-3.3.4/cosmotech_api/model/connector_parameter.py +284 -0
- cosmotech_api-3.3.4/cosmotech_api/model/connector_parameter_group.py +280 -0
- cosmotech_api-3.3.4/cosmotech_api/model/container_resource_size_info.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/container_resource_sizing.py +274 -0
- cosmotech_api-3.3.4/cosmotech_api/model/dataset.py +376 -0
- cosmotech_api-3.3.4/cosmotech_api/model/dataset_access_control.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/dataset_compatibility.py +270 -0
- cosmotech_api-3.3.4/cosmotech_api/model/dataset_connector.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/dataset_copy_parameters.py +264 -0
- cosmotech_api-3.3.4/cosmotech_api/model/dataset_role.py +262 -0
- cosmotech_api-3.3.4/cosmotech_api/model/dataset_search.py +262 -0
- cosmotech_api-3.3.4/cosmotech_api/model/dataset_security.py +274 -0
- cosmotech_api-3.3.4/cosmotech_api/model/dataset_source_type.py +287 -0
- cosmotech_api-3.3.4/cosmotech_api/model/dataset_twin_graph_hash.py +256 -0
- cosmotech_api-3.3.4/cosmotech_api/model/dataset_twin_graph_info.py +264 -0
- cosmotech_api-3.3.4/cosmotech_api/model/dataset_twin_graph_query.py +262 -0
- cosmotech_api-3.3.4/cosmotech_api/model/delete_historical_data.py +272 -0
- cosmotech_api-3.3.4/cosmotech_api/model/file_upload_metadata.py +260 -0
- cosmotech_api-3.3.4/cosmotech_api/model/file_upload_validation.py +266 -0
- cosmotech_api-3.3.4/cosmotech_api/model/graph_properties.py +272 -0
- cosmotech_api-3.3.4/cosmotech_api/model/organization.py +282 -0
- cosmotech_api-3.3.4/cosmotech_api/model/organization_access_control.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/organization_role.py +262 -0
- cosmotech_api-3.3.4/cosmotech_api/model/organization_security.py +274 -0
- cosmotech_api-3.3.4/cosmotech_api/model/organization_service.py +272 -0
- cosmotech_api-3.3.4/cosmotech_api/model/organization_services.py +270 -0
- cosmotech_api-3.3.4/cosmotech_api/model/resource_size_info.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run.py +351 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_container.py +318 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_container_artifact.py +260 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_container_logs.py +272 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_logs.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_resource_requested.py +260 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_search.py +296 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_start_containers.py +286 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_state.py +285 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_status.py +316 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_status_node.py +307 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_template.py +408 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_template_handler_id.py +287 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_template_orchestrator.py +283 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_template_parameter.py +296 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_template_parameter_group.py +288 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_template_parameter_value.py +273 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_template_resource_sizing.py +274 -0
- cosmotech_api-3.3.4/cosmotech_api/model/run_template_step_source.py +285 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner.py +379 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner_access_control.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner_changed_parameter_value.py +272 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner_comparison_result.py +273 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner_data_download_info.py +267 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner_data_download_job.py +257 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner_job_state.py +287 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner_last_run.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner_resource_sizing.py +274 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner_role.py +262 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner_run_template_parameter_value.py +277 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner_security.py +274 -0
- cosmotech_api-3.3.4/cosmotech_api/model/runner_validation_status.py +285 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario.py +379 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_access_control.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_changed_parameter_value.py +272 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_comparison_result.py +273 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_data_download_info.py +267 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_data_download_job.py +257 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_job_state.py +287 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_last_run.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_resource_sizing.py +274 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_role.py +262 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run.py +369 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_container.py +318 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_container_artifact.py +260 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_container_logs.py +272 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_logs.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_resource_requested.py +260 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_result.py +260 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_search.py +296 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_start_containers.py +286 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_state.py +287 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_status.py +308 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_status_node.py +307 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_run_template_parameter_value.py +277 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_security.py +274 -0
- cosmotech_api-3.3.4/cosmotech_api/model/scenario_validation_status.py +285 -0
- cosmotech_api-3.3.4/cosmotech_api/model/solution.py +335 -0
- cosmotech_api-3.3.4/cosmotech_api/model/solution_access_control.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/solution_role.py +262 -0
- cosmotech_api-3.3.4/cosmotech_api/model/solution_security.py +274 -0
- cosmotech_api-3.3.4/cosmotech_api/model/source_info.py +274 -0
- cosmotech_api-3.3.4/cosmotech_api/model/sub_dataset_graph_query.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/translated_labels.py +252 -0
- cosmotech_api-3.3.4/cosmotech_api/model/twin_graph_batch_result.py +274 -0
- cosmotech_api-3.3.4/cosmotech_api/model/twin_graph_hash.py +256 -0
- cosmotech_api-3.3.4/cosmotech_api/model/twin_graph_query.py +266 -0
- cosmotech_api-3.3.4/cosmotech_api/model/validator.py +295 -0
- cosmotech_api-3.3.4/cosmotech_api/model/validator_run.py +302 -0
- cosmotech_api-3.3.4/cosmotech_api/model/workspace.py +351 -0
- cosmotech_api-3.3.4/cosmotech_api/model/workspace_access_control.py +268 -0
- cosmotech_api-3.3.4/cosmotech_api/model/workspace_file.py +256 -0
- cosmotech_api-3.3.4/cosmotech_api/model/workspace_role.py +262 -0
- cosmotech_api-3.3.4/cosmotech_api/model/workspace_secret.py +256 -0
- cosmotech_api-3.3.4/cosmotech_api/model/workspace_security.py +274 -0
- cosmotech_api-3.3.4/cosmotech_api/model/workspace_solution.py +264 -0
- cosmotech_api-3.3.4/cosmotech_api/model/workspace_web_app.py +270 -0
- cosmotech_api-3.3.4/cosmotech_api/model_utils.py +2038 -0
- cosmotech_api-3.3.4/cosmotech_api/models/__init__.py +131 -0
- cosmotech_api-3.3.4/cosmotech_api/models/about_info.py +92 -0
- cosmotech_api-3.3.4/cosmotech_api/models/about_info_version.py +100 -0
- cosmotech_api-3.3.4/cosmotech_api/models/component_role_permissions.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/connector.py +125 -0
- cosmotech_api-3.3.4/cosmotech_api/models/connector_parameter.py +98 -0
- cosmotech_api-3.3.4/cosmotech_api/models/connector_parameter_group.py +100 -0
- cosmotech_api-3.3.4/cosmotech_api/models/container_resource_size_info.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/container_resource_sizing.py +97 -0
- cosmotech_api-3.3.4/cosmotech_api/models/created_run.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/dataset.py +177 -0
- cosmotech_api-3.3.4/cosmotech_api/models/dataset_access_control.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/dataset_compatibility.py +92 -0
- cosmotech_api-3.3.4/cosmotech_api/models/dataset_connector.py +94 -0
- cosmotech_api-3.3.4/cosmotech_api/models/dataset_copy_parameters.py +92 -0
- cosmotech_api-3.3.4/cosmotech_api/models/dataset_role.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/dataset_search.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/dataset_security.py +98 -0
- cosmotech_api-3.3.4/cosmotech_api/models/dataset_source_type.py +42 -0
- cosmotech_api-3.3.4/cosmotech_api/models/dataset_twin_graph_hash.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/dataset_twin_graph_info.py +92 -0
- cosmotech_api-3.3.4/cosmotech_api/models/dataset_twin_graph_query.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/delete_historical_data.py +92 -0
- cosmotech_api-3.3.4/cosmotech_api/models/file_upload_metadata.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/file_upload_validation.py +105 -0
- cosmotech_api-3.3.4/cosmotech_api/models/graph_properties.py +96 -0
- cosmotech_api-3.3.4/cosmotech_api/models/ingestion_status_enum.py +40 -0
- cosmotech_api-3.3.4/cosmotech_api/models/io_types_enum.py +38 -0
- cosmotech_api-3.3.4/cosmotech_api/models/organization.py +108 -0
- cosmotech_api-3.3.4/cosmotech_api/models/organization_access_control.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/organization_create_request.py +95 -0
- cosmotech_api-3.3.4/cosmotech_api/models/organization_role.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/organization_security.py +98 -0
- cosmotech_api-3.3.4/cosmotech_api/models/organization_service.py +96 -0
- cosmotech_api-3.3.4/cosmotech_api/models/organization_services.py +99 -0
- cosmotech_api-3.3.4/cosmotech_api/models/organization_update_request.py +89 -0
- cosmotech_api-3.3.4/cosmotech_api/models/query_result.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/resource_size_info.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run.py +167 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_container.py +126 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_container_artifact.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_container_logs.py +102 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_data.py +92 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_data_query.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_logs.py +107 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_logs_entry.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_resource_requested.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_search.py +103 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_search_state.py +46 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_start_containers.py +104 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_state.py +40 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_status.py +123 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_status_node.py +116 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_template.py +164 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_template_handler_id.py +42 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_template_orchestrator.py +38 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_template_parameter.py +102 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_template_parameter_group.py +98 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_template_parameter_value.py +94 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_template_resource_sizing.py +97 -0
- cosmotech_api-3.3.4/cosmotech_api/models/run_template_step_source.py +40 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner.py +188 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_access_control.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_changed_parameter_value.py +102 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_comparison_result.py +106 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_create_request.py +154 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_data_download_info.py +93 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_data_download_job.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_job_state.py +42 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_last_run.py +94 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_parent_last_run.py +94 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_resource_sizing.py +97 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_role.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_root_last_run.py +94 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_run_template_parameter_value.py +96 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_security.py +98 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_update_request.py +123 -0
- cosmotech_api-3.3.4/cosmotech_api/models/runner_validation_status.py +40 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario.py +186 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_access_control.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_changed_parameter_value.py +102 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_comparison_result.py +106 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_data_download_info.py +93 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_data_download_job.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_job_state.py +42 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_last_run.py +94 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_resource_sizing.py +97 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_role.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run.py +179 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_container.py +126 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_container_artifact.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_container_logs.py +102 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_logs.py +107 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_resource_requested.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_search.py +103 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_search_state.py +46 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_start_containers.py +104 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_state.py +42 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_status.py +119 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_status_node.py +116 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_run_template_parameter_value.py +96 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_security.py +98 -0
- cosmotech_api-3.3.4/cosmotech_api/models/scenario_validation_status.py +40 -0
- cosmotech_api-3.3.4/cosmotech_api/models/send_run_data_request.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/solution.py +154 -0
- cosmotech_api-3.3.4/cosmotech_api/models/solution_access_control.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/solution_create_request.py +143 -0
- cosmotech_api-3.3.4/cosmotech_api/models/solution_role.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/solution_security.py +98 -0
- cosmotech_api-3.3.4/cosmotech_api/models/solution_update_request.py +107 -0
- cosmotech_api-3.3.4/cosmotech_api/models/source_info.py +94 -0
- cosmotech_api-3.3.4/cosmotech_api/models/sub_dataset_graph_query.py +94 -0
- cosmotech_api-3.3.4/cosmotech_api/models/twin_graph_batch_result.py +92 -0
- cosmotech_api-3.3.4/cosmotech_api/models/twin_graph_hash.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/twin_graph_query.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/twincache_status_enum.py +38 -0
- cosmotech_api-3.3.4/cosmotech_api/models/validator.py +106 -0
- cosmotech_api-3.3.4/cosmotech_api/models/workspace.py +142 -0
- cosmotech_api-3.3.4/cosmotech_api/models/workspace_access_control.py +90 -0
- cosmotech_api-3.3.4/cosmotech_api/models/workspace_create_request.py +117 -0
- cosmotech_api-3.3.4/cosmotech_api/models/workspace_file.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/workspace_role.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/workspace_secret.py +88 -0
- cosmotech_api-3.3.4/cosmotech_api/models/workspace_security.py +98 -0
- cosmotech_api-3.3.4/cosmotech_api/models/workspace_solution.py +92 -0
- cosmotech_api-3.3.4/cosmotech_api/models/workspace_update_request.py +109 -0
- cosmotech_api-3.3.4/cosmotech_api/models/workspace_web_app.py +92 -0
- cosmotech_api-3.3.4/cosmotech_api/rest.py +258 -0
- cosmotech_api-3.3.4/cosmotech_api.egg-info/PKG-INFO +26 -0
- cosmotech_api-3.3.4/cosmotech_api.egg-info/SOURCES.txt +426 -0
- cosmotech_api-3.3.4/setup.py +51 -0
- cosmotech_api-3.3.4/test/test_about_info.py +67 -0
- cosmotech_api-3.3.4/test/test_about_info_version.py +65 -0
- cosmotech_api-3.3.4/test/test_component_role_permissions.py +57 -0
- cosmotech_api-3.3.4/test/test_connector.py +83 -0
- cosmotech_api-3.3.4/test/test_connector_api.py +67 -0
- cosmotech_api-3.3.4/test/test_connector_parameter.py +61 -0
- cosmotech_api-3.3.4/test/test_connector_parameter_group.py +77 -0
- cosmotech_api-3.3.4/test/test_container_resource_size_info.py +55 -0
- cosmotech_api-3.3.4/test/test_container_resource_sizing.py +63 -0
- cosmotech_api-3.3.4/test/test_created_run.py +53 -0
- cosmotech_api-3.3.4/test/test_dataset.py +103 -0
- cosmotech_api-3.3.4/test/test_dataset_access_control.py +55 -0
- cosmotech_api-3.3.4/test/test_dataset_api.py +247 -0
- cosmotech_api-3.3.4/test/test_dataset_compatibility.py +55 -0
- cosmotech_api-3.3.4/test/test_dataset_connector.py +57 -0
- cosmotech_api-3.3.4/test/test_dataset_copy_parameters.py +54 -0
- cosmotech_api-3.3.4/test/test_dataset_role.py +53 -0
- cosmotech_api-3.3.4/test/test_dataset_search.py +57 -0
- cosmotech_api-3.3.4/test/test_dataset_security.py +63 -0
- cosmotech_api-3.3.4/test/test_dataset_source_type.py +34 -0
- cosmotech_api-3.3.4/test/test_dataset_twin_graph_hash.py +52 -0
- cosmotech_api-3.3.4/test/test_dataset_twin_graph_info.py +54 -0
- cosmotech_api-3.3.4/test/test_dataset_twin_graph_query.py +53 -0
- cosmotech_api-3.3.4/test/test_delete_historical_data.py +55 -0
- cosmotech_api-3.3.4/test/test_file_upload_metadata.py +53 -0
- cosmotech_api-3.3.4/test/test_file_upload_validation.py +61 -0
- cosmotech_api-3.3.4/test/test_graph_properties.py +56 -0
- cosmotech_api-3.3.4/test/test_ingestion_status_enum.py +34 -0
- cosmotech_api-3.3.4/test/test_io_types_enum.py +34 -0
- cosmotech_api-3.3.4/test/test_meta_api.py +39 -0
- cosmotech_api-3.3.4/test/test_organization.py +74 -0
- cosmotech_api-3.3.4/test/test_organization_access_control.py +55 -0
- cosmotech_api-3.3.4/test/test_organization_api.py +151 -0
- cosmotech_api-3.3.4/test/test_organization_create_request.py +60 -0
- cosmotech_api-3.3.4/test/test_organization_role.py +53 -0
- cosmotech_api-3.3.4/test/test_organization_security.py +63 -0
- cosmotech_api-3.3.4/test/test_organization_service.py +56 -0
- cosmotech_api-3.3.4/test/test_organization_services.py +64 -0
- cosmotech_api-3.3.4/test/test_organization_update_request.py +52 -0
- cosmotech_api-3.3.4/test/test_query_result.py +54 -0
- cosmotech_api-3.3.4/test/test_resource_size_info.py +55 -0
- cosmotech_api-3.3.4/test/test_run.py +109 -0
- cosmotech_api-3.3.4/test/test_run_api.py +81 -0
- cosmotech_api-3.3.4/test/test_run_container.py +83 -0
- cosmotech_api-3.3.4/test/test_run_container_artifact.py +53 -0
- cosmotech_api-3.3.4/test/test_run_container_logs.py +57 -0
- cosmotech_api-3.3.4/test/test_run_data.py +56 -0
- cosmotech_api-3.3.4/test/test_run_data_query.py +53 -0
- cosmotech_api-3.3.4/test/test_run_logs.py +61 -0
- cosmotech_api-3.3.4/test/test_run_logs_entry.py +53 -0
- cosmotech_api-3.3.4/test/test_run_resource_requested.py +53 -0
- cosmotech_api-3.3.4/test/test_run_search.py +59 -0
- cosmotech_api-3.3.4/test/test_run_search_state.py +34 -0
- cosmotech_api-3.3.4/test/test_run_start_containers.py +124 -0
- cosmotech_api-3.3.4/test/test_run_state.py +34 -0
- cosmotech_api-3.3.4/test/test_run_status.py +83 -0
- cosmotech_api-3.3.4/test/test_run_status_node.py +67 -0
- cosmotech_api-3.3.4/test/test_run_template.py +101 -0
- cosmotech_api-3.3.4/test/test_run_template_handler_id.py +34 -0
- cosmotech_api-3.3.4/test/test_run_template_orchestrator.py +34 -0
- cosmotech_api-3.3.4/test/test_run_template_parameter.py +62 -0
- cosmotech_api-3.3.4/test/test_run_template_parameter_group.py +62 -0
- cosmotech_api-3.3.4/test/test_run_template_parameter_value.py +56 -0
- cosmotech_api-3.3.4/test/test_run_template_resource_sizing.py +63 -0
- cosmotech_api-3.3.4/test/test_run_template_step_source.py +34 -0
- cosmotech_api-3.3.4/test/test_runner.py +98 -0
- cosmotech_api-3.3.4/test/test_runner_access_control.py +55 -0
- cosmotech_api-3.3.4/test/test_runner_api.py +137 -0
- cosmotech_api-3.3.4/test/test_runner_changed_parameter_value.py +55 -0
- cosmotech_api-3.3.4/test/test_runner_comparison_result.py +60 -0
- cosmotech_api-3.3.4/test/test_runner_create_request.py +90 -0
- cosmotech_api-3.3.4/test/test_runner_data_download_info.py +53 -0
- cosmotech_api-3.3.4/test/test_runner_data_download_job.py +52 -0
- cosmotech_api-3.3.4/test/test_runner_job_state.py +34 -0
- cosmotech_api-3.3.4/test/test_runner_last_run.py +55 -0
- cosmotech_api-3.3.4/test/test_runner_parent_last_run.py +55 -0
- cosmotech_api-3.3.4/test/test_runner_resource_sizing.py +63 -0
- cosmotech_api-3.3.4/test/test_runner_role.py +53 -0
- cosmotech_api-3.3.4/test/test_runner_root_last_run.py +55 -0
- cosmotech_api-3.3.4/test/test_runner_run_template_parameter_value.py +57 -0
- cosmotech_api-3.3.4/test/test_runner_security.py +63 -0
- cosmotech_api-3.3.4/test/test_runner_update_request.py +77 -0
- cosmotech_api-3.3.4/test/test_runner_validation_status.py +34 -0
- cosmotech_api-3.3.4/test/test_scenario.py +110 -0
- cosmotech_api-3.3.4/test/test_scenario_access_control.py +55 -0
- cosmotech_api-3.3.4/test/test_scenario_api.py +186 -0
- cosmotech_api-3.3.4/test/test_scenario_changed_parameter_value.py +55 -0
- cosmotech_api-3.3.4/test/test_scenario_comparison_result.py +60 -0
- cosmotech_api-3.3.4/test/test_scenario_data_download_info.py +53 -0
- cosmotech_api-3.3.4/test/test_scenario_data_download_job.py +52 -0
- cosmotech_api-3.3.4/test/test_scenario_job_state.py +34 -0
- cosmotech_api-3.3.4/test/test_scenario_last_run.py +55 -0
- cosmotech_api-3.3.4/test/test_scenario_resource_sizing.py +63 -0
- cosmotech_api-3.3.4/test/test_scenario_role.py +53 -0
- cosmotech_api-3.3.4/test/test_scenario_run.py +113 -0
- cosmotech_api-3.3.4/test/test_scenario_run_container.py +83 -0
- cosmotech_api-3.3.4/test/test_scenario_run_container_artifact.py +53 -0
- cosmotech_api-3.3.4/test/test_scenario_run_container_logs.py +57 -0
- cosmotech_api-3.3.4/test/test_scenario_run_logs.py +61 -0
- cosmotech_api-3.3.4/test/test_scenario_run_resource_requested.py +53 -0
- cosmotech_api-3.3.4/test/test_scenario_run_result.py +36 -0
- cosmotech_api-3.3.4/test/test_scenario_run_search.py +59 -0
- cosmotech_api-3.3.4/test/test_scenario_run_search_state.py +34 -0
- cosmotech_api-3.3.4/test/test_scenario_run_start_containers.py +124 -0
- cosmotech_api-3.3.4/test/test_scenario_run_state.py +34 -0
- cosmotech_api-3.3.4/test/test_scenario_run_status.py +81 -0
- cosmotech_api-3.3.4/test/test_scenario_run_status_node.py +67 -0
- cosmotech_api-3.3.4/test/test_scenario_run_template_parameter_value.py +57 -0
- cosmotech_api-3.3.4/test/test_scenario_security.py +63 -0
- cosmotech_api-3.3.4/test/test_scenario_validation_status.py +34 -0
- cosmotech_api-3.3.4/test/test_scenariorun_api.py +130 -0
- cosmotech_api-3.3.4/test/test_send_run_data_request.py +55 -0
- cosmotech_api-3.3.4/test/test_solution.py +151 -0
- cosmotech_api-3.3.4/test/test_solution_access_control.py +55 -0
- cosmotech_api-3.3.4/test/test_solution_api.py +186 -0
- cosmotech_api-3.3.4/test/test_solution_create_request.py +123 -0
- cosmotech_api-3.3.4/test/test_solution_role.py +53 -0
- cosmotech_api-3.3.4/test/test_solution_security.py +63 -0
- cosmotech_api-3.3.4/test/test_solution_update_request.py +61 -0
- cosmotech_api-3.3.4/test/test_source_info.py +56 -0
- cosmotech_api-3.3.4/test/test_sub_dataset_graph_query.py +57 -0
- cosmotech_api-3.3.4/test/test_translated_labels.py +36 -0
- cosmotech_api-3.3.4/test/test_twin_graph_batch_result.py +61 -0
- cosmotech_api-3.3.4/test/test_twin_graph_hash.py +52 -0
- cosmotech_api-3.3.4/test/test_twin_graph_query.py +54 -0
- cosmotech_api-3.3.4/test/test_twincache_status_enum.py +34 -0
- cosmotech_api-3.3.4/test/test_twingraph_api.py +130 -0
- cosmotech_api-3.3.4/test/test_validator.py +65 -0
- cosmotech_api-3.3.4/test/test_validator_run.py +36 -0
- cosmotech_api-3.3.4/test/test_workspace.py +96 -0
- cosmotech_api-3.3.4/test/test_workspace_access_control.py +55 -0
- cosmotech_api-3.3.4/test/test_workspace_api.py +177 -0
- cosmotech_api-3.3.4/test/test_workspace_create_request.py +84 -0
- cosmotech_api-3.3.4/test/test_workspace_file.py +52 -0
- cosmotech_api-3.3.4/test/test_workspace_role.py +53 -0
- cosmotech_api-3.3.4/test/test_workspace_secret.py +52 -0
- cosmotech_api-3.3.4/test/test_workspace_security.py +63 -0
- cosmotech_api-3.3.4/test/test_workspace_solution.py +56 -0
- cosmotech_api-3.3.4/test/test_workspace_update_request.py +68 -0
- cosmotech_api-3.3.4/test/test_workspace_web_app.py +55 -0
- cosmotech_api-3.2.6.dev2/PKG-INFO +0 -18
- cosmotech_api-3.2.6.dev2/README.md +0 -398
- cosmotech_api-3.2.6.dev2/cosmotech_api/__init__.py +0 -153
- cosmotech_api-3.2.6.dev2/cosmotech_api/api/connector_api.py +0 -1351
- cosmotech_api-3.2.6.dev2/cosmotech_api/api/dataset_api.py +0 -9148
- cosmotech_api-3.2.6.dev2/cosmotech_api/api/organization_api.py +0 -4692
- cosmotech_api-3.2.6.dev2/cosmotech_api/api/run_api.py +0 -2227
- cosmotech_api-3.2.6.dev2/cosmotech_api/api/runner_api.py +0 -4550
- cosmotech_api-3.2.6.dev2/cosmotech_api/api/scenario_api.py +0 -6688
- cosmotech_api-3.2.6.dev2/cosmotech_api/api/scenariorun_api.py +0 -4092
- cosmotech_api-3.2.6.dev2/cosmotech_api/api/scenariorunresult_api.py +0 -386
- cosmotech_api-3.2.6.dev2/cosmotech_api/api/solution_api.py +0 -6472
- cosmotech_api-3.2.6.dev2/cosmotech_api/api/twingraph_api.py +0 -4201
- cosmotech_api-3.2.6.dev2/cosmotech_api/api/validator_api.py +0 -1314
- cosmotech_api-3.2.6.dev2/cosmotech_api/api/workspace_api.py +0 -6123
- cosmotech_api-3.2.6.dev2/cosmotech_api/api_client.py +0 -759
- cosmotech_api-3.2.6.dev2/cosmotech_api/configuration.py +0 -453
- cosmotech_api-3.2.6.dev2/cosmotech_api/exceptions.py +0 -200
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/component_role_permissions.py +0 -260
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/connector.py +0 -330
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/connector_parameter.py +0 -284
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/connector_parameter_group.py +0 -280
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/container_resource_size_info.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/container_resource_sizing.py +0 -274
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/dataset.py +0 -376
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/dataset_access_control.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/dataset_compatibility.py +0 -270
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/dataset_connector.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/dataset_copy_parameters.py +0 -264
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/dataset_role.py +0 -262
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/dataset_search.py +0 -262
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/dataset_security.py +0 -274
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/dataset_source_type.py +0 -287
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/dataset_twin_graph_hash.py +0 -256
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/dataset_twin_graph_info.py +0 -264
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/dataset_twin_graph_query.py +0 -262
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/delete_historical_data.py +0 -272
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/file_upload_metadata.py +0 -260
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/file_upload_validation.py +0 -266
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/graph_properties.py +0 -272
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/organization.py +0 -282
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/organization_access_control.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/organization_role.py +0 -262
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/organization_security.py +0 -274
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/organization_service.py +0 -272
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/organization_services.py +0 -270
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/resource_size_info.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run.py +0 -351
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_container.py +0 -318
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_container_artifact.py +0 -260
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_container_logs.py +0 -272
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_logs.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_resource_requested.py +0 -260
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_search.py +0 -296
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_start_containers.py +0 -286
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_state.py +0 -285
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_status.py +0 -316
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_status_node.py +0 -307
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_template.py +0 -408
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_template_handler_id.py +0 -287
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_template_orchestrator.py +0 -283
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_template_parameter.py +0 -296
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_template_parameter_group.py +0 -288
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_template_parameter_value.py +0 -273
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_template_resource_sizing.py +0 -274
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/run_template_step_source.py +0 -285
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner.py +0 -363
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner_access_control.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner_changed_parameter_value.py +0 -272
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner_comparison_result.py +0 -273
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner_data_download_info.py +0 -257
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner_data_download_job.py +0 -257
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner_job_state.py +0 -287
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner_last_run.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner_resource_sizing.py +0 -274
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner_role.py +0 -262
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner_run_template_parameter_value.py +0 -277
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner_security.py +0 -274
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/runner_validation_status.py +0 -285
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario.py +0 -379
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_access_control.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_changed_parameter_value.py +0 -272
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_comparison_result.py +0 -273
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_data_download_info.py +0 -267
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_data_download_job.py +0 -257
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_job_state.py +0 -287
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_last_run.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_resource_sizing.py +0 -274
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_role.py +0 -262
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run.py +0 -369
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run_container.py +0 -318
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run_container_artifact.py +0 -260
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run_container_logs.py +0 -272
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run_logs.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run_resource_requested.py +0 -260
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run_result.py +0 -260
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run_search.py +0 -296
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run_start_containers.py +0 -286
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run_state.py +0 -287
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run_status.py +0 -308
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run_status_node.py +0 -307
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_run_template_parameter_value.py +0 -277
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_security.py +0 -274
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/scenario_validation_status.py +0 -285
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/solution.py +0 -335
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/solution_access_control.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/solution_role.py +0 -262
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/solution_security.py +0 -274
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/source_info.py +0 -274
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/sub_dataset_graph_query.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/translated_labels.py +0 -252
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/twin_graph_batch_result.py +0 -274
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/twin_graph_hash.py +0 -256
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/twin_graph_query.py +0 -266
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/validator.py +0 -295
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/validator_run.py +0 -302
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/workspace.py +0 -351
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/workspace_access_control.py +0 -268
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/workspace_file.py +0 -256
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/workspace_role.py +0 -262
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/workspace_secret.py +0 -256
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/workspace_security.py +0 -274
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/workspace_solution.py +0 -264
- cosmotech_api-3.2.6.dev2/cosmotech_api/model/workspace_web_app.py +0 -270
- cosmotech_api-3.2.6.dev2/cosmotech_api/model_utils.py +0 -2038
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/__init__.py +0 -127
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/component_role_permissions.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/connector.py +0 -125
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/connector_parameter.py +0 -98
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/connector_parameter_group.py +0 -100
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/container_resource_size_info.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/container_resource_sizing.py +0 -97
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/dataset.py +0 -177
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/dataset_access_control.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/dataset_compatibility.py +0 -92
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/dataset_connector.py +0 -94
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/dataset_copy_parameters.py +0 -92
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/dataset_role.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/dataset_search.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/dataset_security.py +0 -98
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/dataset_source_type.py +0 -42
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/dataset_twin_graph_hash.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/dataset_twin_graph_info.py +0 -92
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/dataset_twin_graph_query.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/delete_historical_data.py +0 -92
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/file_upload_metadata.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/file_upload_validation.py +0 -105
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/graph_properties.py +0 -96
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/ingestion_status_enum.py +0 -40
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/io_types_enum.py +0 -38
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/organization.py +0 -108
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/organization_access_control.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/organization_role.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/organization_security.py +0 -98
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/organization_service.py +0 -96
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/organization_services.py +0 -99
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/query_result.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/resource_size_info.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run.py +0 -167
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_container.py +0 -126
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_container_artifact.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_container_logs.py +0 -102
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_data.py +0 -92
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_data_query.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_logs.py +0 -107
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_resource_requested.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_search.py +0 -103
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_search_state.py +0 -46
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_start_containers.py +0 -104
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_state.py +0 -40
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_status.py +0 -123
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_status_node.py +0 -116
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_template.py +0 -164
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_template_handler_id.py +0 -42
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_template_orchestrator.py +0 -38
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_template_parameter.py +0 -102
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_template_parameter_group.py +0 -98
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_template_parameter_value.py +0 -94
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_template_resource_sizing.py +0 -97
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/run_template_step_source.py +0 -40
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner.py +0 -169
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_access_control.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_changed_parameter_value.py +0 -102
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_comparison_result.py +0 -106
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_data_download_info.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_data_download_job.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_job_state.py +0 -42
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_last_run.py +0 -94
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_parent_last_run.py +0 -94
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_resource_sizing.py +0 -97
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_role.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_root_last_run.py +0 -94
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_run_template_parameter_value.py +0 -96
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_security.py +0 -98
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/runner_validation_status.py +0 -40
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario.py +0 -186
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_access_control.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_changed_parameter_value.py +0 -102
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_comparison_result.py +0 -106
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_data_download_info.py +0 -93
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_data_download_job.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_job_state.py +0 -42
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_last_run.py +0 -94
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_resource_sizing.py +0 -97
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_role.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run.py +0 -179
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run_container.py +0 -126
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run_container_artifact.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run_container_logs.py +0 -102
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run_logs.py +0 -107
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run_resource_requested.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run_search.py +0 -103
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run_search_state.py +0 -46
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run_start_containers.py +0 -104
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run_state.py +0 -42
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run_status.py +0 -119
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run_status_node.py +0 -116
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_run_template_parameter_value.py +0 -96
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_security.py +0 -98
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/scenario_validation_status.py +0 -40
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/send_run_data_request.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/solution.py +0 -154
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/solution_access_control.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/solution_role.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/solution_security.py +0 -98
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/source_info.py +0 -94
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/sub_dataset_graph_query.py +0 -94
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/twin_graph_batch_result.py +0 -92
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/twin_graph_hash.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/twin_graph_query.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/twincache_status_enum.py +0 -38
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/validator.py +0 -106
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/workspace.py +0 -142
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/workspace_access_control.py +0 -90
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/workspace_file.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/workspace_role.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/workspace_secret.py +0 -88
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/workspace_security.py +0 -98
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/workspace_solution.py +0 -92
- cosmotech_api-3.2.6.dev2/cosmotech_api/models/workspace_web_app.py +0 -92
- cosmotech_api-3.2.6.dev2/cosmotech_api/rest.py +0 -256
- cosmotech_api-3.2.6.dev2/cosmotech_api.egg-info/PKG-INFO +0 -18
- cosmotech_api-3.2.6.dev2/cosmotech_api.egg-info/SOURCES.txt +0 -403
- cosmotech_api-3.2.6.dev2/setup.py +0 -51
- cosmotech_api-3.2.6.dev2/test/test_component_role_permissions.py +0 -57
- cosmotech_api-3.2.6.dev2/test/test_connector.py +0 -83
- cosmotech_api-3.2.6.dev2/test/test_connector_api.py +0 -67
- cosmotech_api-3.2.6.dev2/test/test_connector_parameter.py +0 -61
- cosmotech_api-3.2.6.dev2/test/test_connector_parameter_group.py +0 -77
- cosmotech_api-3.2.6.dev2/test/test_container_resource_size_info.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_container_resource_sizing.py +0 -63
- cosmotech_api-3.2.6.dev2/test/test_dataset.py +0 -103
- cosmotech_api-3.2.6.dev2/test/test_dataset_access_control.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_dataset_api.py +0 -247
- cosmotech_api-3.2.6.dev2/test/test_dataset_compatibility.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_dataset_connector.py +0 -57
- cosmotech_api-3.2.6.dev2/test/test_dataset_copy_parameters.py +0 -54
- cosmotech_api-3.2.6.dev2/test/test_dataset_role.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_dataset_search.py +0 -57
- cosmotech_api-3.2.6.dev2/test/test_dataset_security.py +0 -63
- cosmotech_api-3.2.6.dev2/test/test_dataset_source_type.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_dataset_twin_graph_hash.py +0 -52
- cosmotech_api-3.2.6.dev2/test/test_dataset_twin_graph_info.py +0 -54
- cosmotech_api-3.2.6.dev2/test/test_dataset_twin_graph_query.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_delete_historical_data.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_file_upload_metadata.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_file_upload_validation.py +0 -61
- cosmotech_api-3.2.6.dev2/test/test_graph_properties.py +0 -56
- cosmotech_api-3.2.6.dev2/test/test_ingestion_status_enum.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_io_types_enum.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_organization.py +0 -74
- cosmotech_api-3.2.6.dev2/test/test_organization_access_control.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_organization_api.py +0 -151
- cosmotech_api-3.2.6.dev2/test/test_organization_role.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_organization_security.py +0 -63
- cosmotech_api-3.2.6.dev2/test/test_organization_service.py +0 -56
- cosmotech_api-3.2.6.dev2/test/test_organization_services.py +0 -64
- cosmotech_api-3.2.6.dev2/test/test_query_result.py +0 -54
- cosmotech_api-3.2.6.dev2/test/test_resource_size_info.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_run.py +0 -109
- cosmotech_api-3.2.6.dev2/test/test_run_api.py +0 -81
- cosmotech_api-3.2.6.dev2/test/test_run_container.py +0 -83
- cosmotech_api-3.2.6.dev2/test/test_run_container_artifact.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_run_container_logs.py +0 -57
- cosmotech_api-3.2.6.dev2/test/test_run_data.py +0 -56
- cosmotech_api-3.2.6.dev2/test/test_run_data_query.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_run_logs.py +0 -61
- cosmotech_api-3.2.6.dev2/test/test_run_resource_requested.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_run_search.py +0 -59
- cosmotech_api-3.2.6.dev2/test/test_run_search_state.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_run_start_containers.py +0 -124
- cosmotech_api-3.2.6.dev2/test/test_run_state.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_run_status.py +0 -83
- cosmotech_api-3.2.6.dev2/test/test_run_status_node.py +0 -67
- cosmotech_api-3.2.6.dev2/test/test_run_template.py +0 -101
- cosmotech_api-3.2.6.dev2/test/test_run_template_handler_id.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_run_template_orchestrator.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_run_template_parameter.py +0 -62
- cosmotech_api-3.2.6.dev2/test/test_run_template_parameter_group.py +0 -62
- cosmotech_api-3.2.6.dev2/test/test_run_template_parameter_value.py +0 -56
- cosmotech_api-3.2.6.dev2/test/test_run_template_resource_sizing.py +0 -63
- cosmotech_api-3.2.6.dev2/test/test_run_template_step_source.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_runner.py +0 -95
- cosmotech_api-3.2.6.dev2/test/test_runner_access_control.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_runner_api.py +0 -137
- cosmotech_api-3.2.6.dev2/test/test_runner_changed_parameter_value.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_runner_comparison_result.py +0 -60
- cosmotech_api-3.2.6.dev2/test/test_runner_data_download_info.py +0 -52
- cosmotech_api-3.2.6.dev2/test/test_runner_data_download_job.py +0 -52
- cosmotech_api-3.2.6.dev2/test/test_runner_job_state.py +0 -36
- cosmotech_api-3.2.6.dev2/test/test_runner_last_run.py +0 -36
- cosmotech_api-3.2.6.dev2/test/test_runner_parent_last_run.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_runner_resource_sizing.py +0 -63
- cosmotech_api-3.2.6.dev2/test/test_runner_role.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_runner_root_last_run.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_runner_run_template_parameter_value.py +0 -57
- cosmotech_api-3.2.6.dev2/test/test_runner_security.py +0 -63
- cosmotech_api-3.2.6.dev2/test/test_runner_validation_status.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_scenario.py +0 -110
- cosmotech_api-3.2.6.dev2/test/test_scenario_access_control.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_scenario_api.py +0 -186
- cosmotech_api-3.2.6.dev2/test/test_scenario_changed_parameter_value.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_scenario_comparison_result.py +0 -60
- cosmotech_api-3.2.6.dev2/test/test_scenario_data_download_info.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_scenario_data_download_job.py +0 -52
- cosmotech_api-3.2.6.dev2/test/test_scenario_job_state.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_scenario_last_run.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_scenario_resource_sizing.py +0 -63
- cosmotech_api-3.2.6.dev2/test/test_scenario_role.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_scenario_run.py +0 -113
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_container.py +0 -83
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_container_artifact.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_container_logs.py +0 -57
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_logs.py +0 -61
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_resource_requested.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_result.py +0 -36
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_search.py +0 -59
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_search_state.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_start_containers.py +0 -124
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_state.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_status.py +0 -81
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_status_node.py +0 -67
- cosmotech_api-3.2.6.dev2/test/test_scenario_run_template_parameter_value.py +0 -57
- cosmotech_api-3.2.6.dev2/test/test_scenario_security.py +0 -63
- cosmotech_api-3.2.6.dev2/test/test_scenario_validation_status.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_scenariorun_api.py +0 -130
- cosmotech_api-3.2.6.dev2/test/test_scenariorunresult_api.py +0 -43
- cosmotech_api-3.2.6.dev2/test/test_send_run_data_request.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_solution.py +0 -151
- cosmotech_api-3.2.6.dev2/test/test_solution_access_control.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_solution_api.py +0 -186
- cosmotech_api-3.2.6.dev2/test/test_solution_role.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_solution_security.py +0 -63
- cosmotech_api-3.2.6.dev2/test/test_source_info.py +0 -56
- cosmotech_api-3.2.6.dev2/test/test_sub_dataset_graph_query.py +0 -57
- cosmotech_api-3.2.6.dev2/test/test_translated_labels.py +0 -36
- cosmotech_api-3.2.6.dev2/test/test_twin_graph_batch_result.py +0 -61
- cosmotech_api-3.2.6.dev2/test/test_twin_graph_hash.py +0 -52
- cosmotech_api-3.2.6.dev2/test/test_twin_graph_query.py +0 -54
- cosmotech_api-3.2.6.dev2/test/test_twincache_status_enum.py +0 -34
- cosmotech_api-3.2.6.dev2/test/test_twingraph_api.py +0 -130
- cosmotech_api-3.2.6.dev2/test/test_user_api.py +0 -99
- cosmotech_api-3.2.6.dev2/test/test_validator.py +0 -65
- cosmotech_api-3.2.6.dev2/test/test_validator_api.py +0 -92
- cosmotech_api-3.2.6.dev2/test/test_validator_run.py +0 -36
- cosmotech_api-3.2.6.dev2/test/test_workspace.py +0 -96
- cosmotech_api-3.2.6.dev2/test/test_workspace_access_control.py +0 -55
- cosmotech_api-3.2.6.dev2/test/test_workspace_api.py +0 -177
- cosmotech_api-3.2.6.dev2/test/test_workspace_file.py +0 -52
- cosmotech_api-3.2.6.dev2/test/test_workspace_role.py +0 -53
- cosmotech_api-3.2.6.dev2/test/test_workspace_secret.py +0 -52
- cosmotech_api-3.2.6.dev2/test/test_workspace_security.py +0 -63
- cosmotech_api-3.2.6.dev2/test/test_workspace_solution.py +0 -56
- cosmotech_api-3.2.6.dev2/test/test_workspace_web_app.py +0 -55
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/LICENSE +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/api/__init__.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/api/user_api.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/api_response.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/apis/__init__.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/model/__init__.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/model/organization_user.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/model/scenario_user.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/model/twin_graph_import.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/model/twin_graph_import_info.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/model/user.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/model/user_organization.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/model/user_workspace.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/model/workspace_user.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/models/scenario_run_result.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/models/validator_run.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api/py.typed +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api.egg-info/dependency_links.txt +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api.egg-info/requires.txt +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/cosmotech_api.egg-info/top_level.txt +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/pyproject.toml +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/setup.cfg +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/test/test_organization_user.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/test/test_scenario_user.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/test/test_twin_graph_import.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/test/test_twin_graph_import_info.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/test/test_user.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/test/test_user_organization.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/test/test_user_workspace.py +0 -0
- {cosmotech_api-3.2.6.dev2 → cosmotech_api-3.3.4}/test/test_workspace_user.py +0 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: cosmotech-api
|
|
3
|
+
Version: 3.3.4
|
|
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<2.1.0,>=1.25.3
|
|
13
|
+
Requires-Dist: python-dateutil
|
|
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: requires-dist
|
|
23
|
+
Dynamic: summary
|
|
24
|
+
|
|
25
|
+
Cosmo Tech Platform API
|
|
26
|
+
|
|
@@ -0,0 +1,403 @@
|
|
|
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: 3.3.4
|
|
7
|
+
- Package version: 1.0.0
|
|
8
|
+
- Generator version: 7.8.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.7+
|
|
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 https://dev.api.cosmotech.com
|
|
60
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
61
|
+
configuration = cosmotech_api.Configuration(
|
|
62
|
+
host = "https://dev.api.cosmotech.com"
|
|
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.ConnectorApi(api_client)
|
|
77
|
+
page = 56 # int | page number to query (optional)
|
|
78
|
+
size = 56 # int | amount of result by page (optional)
|
|
79
|
+
|
|
80
|
+
try:
|
|
81
|
+
# List all Connectors
|
|
82
|
+
api_response = api_instance.find_all_connectors(page=page, size=size)
|
|
83
|
+
print("The response of ConnectorApi->find_all_connectors:\n")
|
|
84
|
+
pprint(api_response)
|
|
85
|
+
except ApiException as e:
|
|
86
|
+
print("Exception when calling ConnectorApi->find_all_connectors: %s\n" % e)
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
## Documentation for API Endpoints
|
|
91
|
+
|
|
92
|
+
All URIs are relative to *https://dev.api.cosmotech.com*
|
|
93
|
+
|
|
94
|
+
Class | Method | HTTP request | Description
|
|
95
|
+
------------ | ------------- | ------------- | -------------
|
|
96
|
+
*ConnectorApi* | [**find_all_connectors**](docs/ConnectorApi.md#find_all_connectors) | **GET** /connectors | List all Connectors
|
|
97
|
+
*ConnectorApi* | [**find_connector_by_id**](docs/ConnectorApi.md#find_connector_by_id) | **GET** /connectors/{connector_id} | Get the details of a connector
|
|
98
|
+
*ConnectorApi* | [**find_connector_by_name**](docs/ConnectorApi.md#find_connector_by_name) | **GET** /connectors/name/{connector_name} | Get the details of a connector
|
|
99
|
+
*ConnectorApi* | [**register_connector**](docs/ConnectorApi.md#register_connector) | **POST** /connectors | Register a new connector
|
|
100
|
+
*ConnectorApi* | [**unregister_connector**](docs/ConnectorApi.md#unregister_connector) | **DELETE** /connectors/{connector_id} | Unregister a connector
|
|
101
|
+
*DatasetApi* | [**add_dataset_access_control**](docs/DatasetApi.md#add_dataset_access_control) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/security/access | Add a control access to the Dataset
|
|
102
|
+
*DatasetApi* | [**add_or_replace_dataset_compatibility_elements**](docs/DatasetApi.md#add_or_replace_dataset_compatibility_elements) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/compatibility | Add Dataset Compatibility elements.
|
|
103
|
+
*DatasetApi* | [**copy_dataset**](docs/DatasetApi.md#copy_dataset) | **POST** /organizations/{organization_id}/datasets/copy | Copy a Dataset to another Dataset.
|
|
104
|
+
*DatasetApi* | [**create_dataset**](docs/DatasetApi.md#create_dataset) | **POST** /organizations/{organization_id}/datasets | Create a new Dataset
|
|
105
|
+
*DatasetApi* | [**create_sub_dataset**](docs/DatasetApi.md#create_sub_dataset) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/subdataset | Create a sub-dataset from the dataset in parameter
|
|
106
|
+
*DatasetApi* | [**create_twingraph_entities**](docs/DatasetApi.md#create_twingraph_entities) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/twingraph/{type} | Create new entities in a graph instance
|
|
107
|
+
*DatasetApi* | [**delete_dataset**](docs/DatasetApi.md#delete_dataset) | **DELETE** /organizations/{organization_id}/datasets/{dataset_id} | Delete a dataset
|
|
108
|
+
*DatasetApi* | [**delete_twingraph_entities**](docs/DatasetApi.md#delete_twingraph_entities) | **DELETE** /organizations/{organization_id}/datasets/{dataset_id}/twingraph/{type} | Delete entities in a graph instance
|
|
109
|
+
*DatasetApi* | [**download_twingraph**](docs/DatasetApi.md#download_twingraph) | **GET** /organizations/{organization_id}/datasets/twingraph/download/{hash} | Download a graph as a zip file
|
|
110
|
+
*DatasetApi* | [**find_all_datasets**](docs/DatasetApi.md#find_all_datasets) | **GET** /organizations/{organization_id}/datasets | List all Datasets
|
|
111
|
+
*DatasetApi* | [**find_dataset_by_id**](docs/DatasetApi.md#find_dataset_by_id) | **GET** /organizations/{organization_id}/datasets/{dataset_id} | Get the details of a Dataset
|
|
112
|
+
*DatasetApi* | [**get_dataset_access_control**](docs/DatasetApi.md#get_dataset_access_control) | **GET** /organizations/{organization_id}/datasets/{dataset_id}/security/access/{identity_id} | Get a control access for the Dataset
|
|
113
|
+
*DatasetApi* | [**get_dataset_security**](docs/DatasetApi.md#get_dataset_security) | **GET** /organizations/{organization_id}/datasets/{dataset_id}/security | Get the Dataset security information
|
|
114
|
+
*DatasetApi* | [**get_dataset_security_users**](docs/DatasetApi.md#get_dataset_security_users) | **GET** /organizations/{organization_id}/datasets/{dataset_id}/security/users | Get the Dataset security users list
|
|
115
|
+
*DatasetApi* | [**get_dataset_twingraph_status**](docs/DatasetApi.md#get_dataset_twingraph_status) | **GET** /organizations/{organization_id}/datasets/{dataset_id}/status | Get the dataset's refresh job status
|
|
116
|
+
*DatasetApi* | [**get_twingraph_entities**](docs/DatasetApi.md#get_twingraph_entities) | **GET** /organizations/{organization_id}/datasets/{dataset_id}/twingraph/{type} | Get entities in a graph instance
|
|
117
|
+
*DatasetApi* | [**link_workspace**](docs/DatasetApi.md#link_workspace) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/link |
|
|
118
|
+
*DatasetApi* | [**refresh_dataset**](docs/DatasetApi.md#refresh_dataset) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/refresh | Refresh data on dataset from dataset's source
|
|
119
|
+
*DatasetApi* | [**remove_all_dataset_compatibility_elements**](docs/DatasetApi.md#remove_all_dataset_compatibility_elements) | **DELETE** /organizations/{organization_id}/datasets/{dataset_id}/compatibility | Remove all Dataset Compatibility elements from the Dataset specified
|
|
120
|
+
*DatasetApi* | [**remove_dataset_access_control**](docs/DatasetApi.md#remove_dataset_access_control) | **DELETE** /organizations/{organization_id}/datasets/{dataset_id}/security/access/{identity_id} | Remove the specified access from the given Dataset
|
|
121
|
+
*DatasetApi* | [**rollback_refresh**](docs/DatasetApi.md#rollback_refresh) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/refresh/rollback | Rollback the dataset after a failed refresh
|
|
122
|
+
*DatasetApi* | [**search_datasets**](docs/DatasetApi.md#search_datasets) | **POST** /organizations/{organization_id}/datasets/search | Search Datasets by tags
|
|
123
|
+
*DatasetApi* | [**set_dataset_default_security**](docs/DatasetApi.md#set_dataset_default_security) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/security/default | Set the Dataset default security
|
|
124
|
+
*DatasetApi* | [**twingraph_batch_query**](docs/DatasetApi.md#twingraph_batch_query) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/batch-query | Run a query on a graph instance and return the result as a zip file in async mode
|
|
125
|
+
*DatasetApi* | [**twingraph_batch_update**](docs/DatasetApi.md#twingraph_batch_update) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/batch | Async batch update by loading a CSV file on a graph instance
|
|
126
|
+
*DatasetApi* | [**twingraph_query**](docs/DatasetApi.md#twingraph_query) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/twingraph | Return the result of a query made on the graph instance as a json
|
|
127
|
+
*DatasetApi* | [**unlink_workspace**](docs/DatasetApi.md#unlink_workspace) | **POST** /organizations/{organization_id}/datasets/{dataset_id}/unlink |
|
|
128
|
+
*DatasetApi* | [**update_dataset**](docs/DatasetApi.md#update_dataset) | **PATCH** /organizations/{organization_id}/datasets/{dataset_id} | Update a dataset
|
|
129
|
+
*DatasetApi* | [**update_dataset_access_control**](docs/DatasetApi.md#update_dataset_access_control) | **PATCH** /organizations/{organization_id}/datasets/{dataset_id}/security/access/{identity_id} | Update the specified access to User for a Dataset
|
|
130
|
+
*DatasetApi* | [**update_twingraph_entities**](docs/DatasetApi.md#update_twingraph_entities) | **PATCH** /organizations/{organization_id}/datasets/{dataset_id}/twingraph/{type} | Update entities in a graph instance
|
|
131
|
+
*DatasetApi* | [**upload_twingraph**](docs/DatasetApi.md#upload_twingraph) | **POST** /organizations/{organization_id}/datasets/{dataset_id} | Upload data from zip file to dataset's twingraph
|
|
132
|
+
*OrganizationApi* | [**add_organization_access_control**](docs/OrganizationApi.md#add_organization_access_control) | **POST** /organizations/{organization_id}/security/access | Add a control access to the Organization
|
|
133
|
+
*OrganizationApi* | [**find_all_organizations**](docs/OrganizationApi.md#find_all_organizations) | **GET** /organizations | List all Organizations
|
|
134
|
+
*OrganizationApi* | [**find_organization_by_id**](docs/OrganizationApi.md#find_organization_by_id) | **GET** /organizations/{organization_id} | Get the details of an Organization
|
|
135
|
+
*OrganizationApi* | [**get_all_permissions**](docs/OrganizationApi.md#get_all_permissions) | **GET** /organizations/permissions | Get all permissions per components
|
|
136
|
+
*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
|
|
137
|
+
*OrganizationApi* | [**get_organization_permissions**](docs/OrganizationApi.md#get_organization_permissions) | **GET** /organizations/{organization_id}/permissions/{role} | Get the Organization permissions by given role
|
|
138
|
+
*OrganizationApi* | [**get_organization_security**](docs/OrganizationApi.md#get_organization_security) | **GET** /organizations/{organization_id}/security | Get the Organization security information
|
|
139
|
+
*OrganizationApi* | [**get_organization_security_users**](docs/OrganizationApi.md#get_organization_security_users) | **GET** /organizations/{organization_id}/security/users | Get the Organization security users list
|
|
140
|
+
*OrganizationApi* | [**register_organization**](docs/OrganizationApi.md#register_organization) | **POST** /organizations | Register a new organization
|
|
141
|
+
*OrganizationApi* | [**remove_organization_access_control**](docs/OrganizationApi.md#remove_organization_access_control) | **DELETE** /organizations/{organization_id}/security/access/{identity_id} | Remove the specified access from the given Organization
|
|
142
|
+
*OrganizationApi* | [**set_organization_default_security**](docs/OrganizationApi.md#set_organization_default_security) | **POST** /organizations/{organization_id}/security/default | Set the Organization default security
|
|
143
|
+
*OrganizationApi* | [**unregister_organization**](docs/OrganizationApi.md#unregister_organization) | **DELETE** /organizations/{organization_id} | Unregister an organization
|
|
144
|
+
*OrganizationApi* | [**update_organization**](docs/OrganizationApi.md#update_organization) | **PATCH** /organizations/{organization_id} | Update an Organization
|
|
145
|
+
*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
|
|
146
|
+
*OrganizationApi* | [**update_solutions_container_registry_by_organization_id**](docs/OrganizationApi.md#update_solutions_container_registry_by_organization_id) | **PATCH** /organizations/{organization_id}/services/solutionsContainerRegistry | Update the solutions container registry configuration for the Organization specified
|
|
147
|
+
*OrganizationApi* | [**update_storage_by_organization_id**](docs/OrganizationApi.md#update_storage_by_organization_id) | **PATCH** /organizations/{organization_id}/services/storage | Update storage configuration for the Organization specified
|
|
148
|
+
*OrganizationApi* | [**update_tenant_credentials_by_organization_id**](docs/OrganizationApi.md#update_tenant_credentials_by_organization_id) | **PATCH** /organizations/{organization_id}/services/tenantCredentials | Update tenant credentials for the Organization specified
|
|
149
|
+
*RunApi* | [**delete_run**](docs/RunApi.md#delete_run) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id} | Delete a run
|
|
150
|
+
*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
|
|
151
|
+
*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
|
|
152
|
+
*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
|
|
153
|
+
*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
|
|
154
|
+
*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
|
|
155
|
+
*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
|
|
156
|
+
*RunnerApi* | [**add_runner_access_control**](docs/RunnerApi.md#add_runner_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access | Add a control access to the Runner
|
|
157
|
+
*RunnerApi* | [**create_runner**](docs/RunnerApi.md#create_runner) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners | Create a new Runner
|
|
158
|
+
*RunnerApi* | [**delete_runner**](docs/RunnerApi.md#delete_runner) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Delete a runner
|
|
159
|
+
*RunnerApi* | [**get_runner**](docs/RunnerApi.md#get_runner) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Get the details of an runner
|
|
160
|
+
*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
|
|
161
|
+
*RunnerApi* | [**get_runner_permissions**](docs/RunnerApi.md#get_runner_permissions) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/permissions/{role} | Get the Runner permission by given role
|
|
162
|
+
*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
|
|
163
|
+
*RunnerApi* | [**get_runner_security_users**](docs/RunnerApi.md#get_runner_security_users) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/users | Get the Runner security users list
|
|
164
|
+
*RunnerApi* | [**list_runners**](docs/RunnerApi.md#list_runners) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/runners | List all Runners
|
|
165
|
+
*RunnerApi* | [**remove_runner_access_control**](docs/RunnerApi.md#remove_runner_access_control) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access/{identity_id} | Remove the specified access from the given Organization Runner
|
|
166
|
+
*RunnerApi* | [**set_runner_default_security**](docs/RunnerApi.md#set_runner_default_security) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/default | Set the Runner default security
|
|
167
|
+
*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
|
|
168
|
+
*RunnerApi* | [**stop_run**](docs/RunnerApi.md#stop_run) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/stop | Stop the last run
|
|
169
|
+
*RunnerApi* | [**update_runner**](docs/RunnerApi.md#update_runner) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id} | Update a runner
|
|
170
|
+
*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
|
|
171
|
+
*ScenarioApi* | [**add_or_replace_scenario_parameter_values**](docs/ScenarioApi.md#add_or_replace_scenario_parameter_values) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/parameterValues | Add (or replace) Parameter Values for the Scenario specified
|
|
172
|
+
*ScenarioApi* | [**add_scenario_access_control**](docs/ScenarioApi.md#add_scenario_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/access | Add a control access to the Scenario
|
|
173
|
+
*ScenarioApi* | [**compare_scenarios**](docs/ScenarioApi.md#compare_scenarios) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/compare/{compared_scenario_id} | Compare the Scenario with another one and returns the difference for parameters values
|
|
174
|
+
*ScenarioApi* | [**create_scenario**](docs/ScenarioApi.md#create_scenario) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios | Create a new Scenario
|
|
175
|
+
*ScenarioApi* | [**delete_all_scenarios**](docs/ScenarioApi.md#delete_all_scenarios) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios | Delete all Scenarios of the Workspace
|
|
176
|
+
*ScenarioApi* | [**delete_scenario**](docs/ScenarioApi.md#delete_scenario) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id} | Delete a scenario
|
|
177
|
+
*ScenarioApi* | [**download_scenario_data**](docs/ScenarioApi.md#download_scenario_data) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/downloads | Download Scenario data
|
|
178
|
+
*ScenarioApi* | [**find_all_scenarios**](docs/ScenarioApi.md#find_all_scenarios) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios | List all Scenarios
|
|
179
|
+
*ScenarioApi* | [**find_all_scenarios_by_validation_status**](docs/ScenarioApi.md#find_all_scenarios_by_validation_status) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/{validationStatus} | List all Scenarios by validation status
|
|
180
|
+
*ScenarioApi* | [**find_scenario_by_id**](docs/ScenarioApi.md#find_scenario_by_id) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id} | Get the details of an scenario
|
|
181
|
+
*ScenarioApi* | [**get_scenario_access_control**](docs/ScenarioApi.md#get_scenario_access_control) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/access/{identity_id} | Get a control access for the Scenario
|
|
182
|
+
*ScenarioApi* | [**get_scenario_data_download_job_info**](docs/ScenarioApi.md#get_scenario_data_download_job_info) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/downloads/{download_id} | Get Scenario data download URL
|
|
183
|
+
*ScenarioApi* | [**get_scenario_permissions**](docs/ScenarioApi.md#get_scenario_permissions) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/permissions/{role} | Get the Scenario permission by given role
|
|
184
|
+
*ScenarioApi* | [**get_scenario_security**](docs/ScenarioApi.md#get_scenario_security) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security | Get the Scenario security information
|
|
185
|
+
*ScenarioApi* | [**get_scenario_security_users**](docs/ScenarioApi.md#get_scenario_security_users) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/users | Get the Scenario security users list
|
|
186
|
+
*ScenarioApi* | [**get_scenario_validation_status_by_id**](docs/ScenarioApi.md#get_scenario_validation_status_by_id) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/ValidationStatus | Get the validation status of an scenario
|
|
187
|
+
*ScenarioApi* | [**get_scenarios_tree**](docs/ScenarioApi.md#get_scenarios_tree) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/tree | Get the Scenarios Tree
|
|
188
|
+
*ScenarioApi* | [**remove_all_scenario_parameter_values**](docs/ScenarioApi.md#remove_all_scenario_parameter_values) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/parameterValues | Remove all Parameter Values from the Scenario specified
|
|
189
|
+
*ScenarioApi* | [**remove_scenario_access_control**](docs/ScenarioApi.md#remove_scenario_access_control) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/access/{identity_id} | Remove the specified access from the given Organization Scenario
|
|
190
|
+
*ScenarioApi* | [**set_scenario_default_security**](docs/ScenarioApi.md#set_scenario_default_security) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/default | Set the Scenario default security
|
|
191
|
+
*ScenarioApi* | [**update_scenario**](docs/ScenarioApi.md#update_scenario) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id} | Update a scenario
|
|
192
|
+
*ScenarioApi* | [**update_scenario_access_control**](docs/ScenarioApi.md#update_scenario_access_control) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/access/{identity_id} | Update the specified access to User for a Scenario
|
|
193
|
+
*ScenariorunApi* | [**delete_historical_data_organization**](docs/ScenariorunApi.md#delete_historical_data_organization) | **DELETE** /organizations/{organization_id}/scenarioruns/historicaldata | Delete all historical ScenarioRuns in the Organization
|
|
194
|
+
*ScenariorunApi* | [**delete_historical_data_scenario**](docs/ScenariorunApi.md#delete_historical_data_scenario) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/scenarioruns/historicaldata | Delete all historical ScenarioRuns in the Scenario
|
|
195
|
+
*ScenariorunApi* | [**delete_historical_data_workspace**](docs/ScenariorunApi.md#delete_historical_data_workspace) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/scenarioruns/historicaldata | Delete all historical ScenarioRuns in the Workspace
|
|
196
|
+
*ScenariorunApi* | [**delete_scenario_run**](docs/ScenariorunApi.md#delete_scenario_run) | **DELETE** /organizations/{organization_id}/scenarioruns/{scenariorun_id} | Delete a scenariorun
|
|
197
|
+
*ScenariorunApi* | [**find_scenario_run_by_id**](docs/ScenariorunApi.md#find_scenario_run_by_id) | **GET** /organizations/{organization_id}/scenarioruns/{scenariorun_id} | Get the details of a scenariorun
|
|
198
|
+
*ScenariorunApi* | [**get_scenario_run_cumulated_logs**](docs/ScenariorunApi.md#get_scenario_run_cumulated_logs) | **GET** /organizations/{organization_id}/scenarioruns/{scenariorun_id}/cumulatedlogs | Get the cumulated logs of a scenariorun
|
|
199
|
+
*ScenariorunApi* | [**get_scenario_run_logs**](docs/ScenariorunApi.md#get_scenario_run_logs) | **GET** /organizations/{organization_id}/scenarioruns/{scenariorun_id}/logs | get the logs for the ScenarioRun
|
|
200
|
+
*ScenariorunApi* | [**get_scenario_run_status**](docs/ScenariorunApi.md#get_scenario_run_status) | **GET** /organizations/{organization_id}/scenarioruns/{scenariorun_id}/status | get the status for the ScenarioRun
|
|
201
|
+
*ScenariorunApi* | [**get_scenario_runs**](docs/ScenariorunApi.md#get_scenario_runs) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/scenarioruns | get the list of ScenarioRuns for the Scenario
|
|
202
|
+
*ScenariorunApi* | [**get_workspace_scenario_runs**](docs/ScenariorunApi.md#get_workspace_scenario_runs) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/scenarioruns | get the list of ScenarioRuns for the Workspace
|
|
203
|
+
*ScenariorunApi* | [**run_scenario**](docs/ScenariorunApi.md#run_scenario) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/run | run a ScenarioRun for the Scenario
|
|
204
|
+
*ScenariorunApi* | [**search_scenario_runs**](docs/ScenariorunApi.md#search_scenario_runs) | **POST** /organizations/{organization_id}/scenarioruns/search | Search ScenarioRuns
|
|
205
|
+
*ScenariorunApi* | [**start_scenario_run_containers**](docs/ScenariorunApi.md#start_scenario_run_containers) | **POST** /organizations/{organization_id}/scenarioruns/startcontainers | Start a new scenariorun with raw containers definition
|
|
206
|
+
*ScenariorunApi* | [**stop_scenario_run**](docs/ScenariorunApi.md#stop_scenario_run) | **POST** /organizations/{organization_id}/scenarioruns/{scenariorun_id}/stop | stop a ScenarioRun for the Scenario
|
|
207
|
+
*SolutionApi* | [**add_or_replace_parameter_groups**](docs/SolutionApi.md#add_or_replace_parameter_groups) | **POST** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups | Add Parameter Groups. Any item with the same ID will be overwritten
|
|
208
|
+
*SolutionApi* | [**add_or_replace_parameters**](docs/SolutionApi.md#add_or_replace_parameters) | **POST** /organizations/{organization_id}/solutions/{solution_id}/parameters | Add Parameters. Any item with the same ID will be overwritten
|
|
209
|
+
*SolutionApi* | [**add_or_replace_run_templates**](docs/SolutionApi.md#add_or_replace_run_templates) | **POST** /organizations/{organization_id}/solutions/{solution_id}/runTemplates | Add Run Templates. Any item with the same ID will be overwritten
|
|
210
|
+
*SolutionApi* | [**add_solution_access_control**](docs/SolutionApi.md#add_solution_access_control) | **POST** /organizations/{organization_id}/solutions/{solution_id}/security/access | Add a control access to the Solution
|
|
211
|
+
*SolutionApi* | [**create_solution**](docs/SolutionApi.md#create_solution) | **POST** /organizations/{organization_id}/solutions | Register a new solution
|
|
212
|
+
*SolutionApi* | [**delete_solution**](docs/SolutionApi.md#delete_solution) | **DELETE** /organizations/{organization_id}/solutions/{solution_id} | Delete a solution
|
|
213
|
+
*SolutionApi* | [**delete_solution_run_template**](docs/SolutionApi.md#delete_solution_run_template) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/runTemplates/{run_template_id} | Remove the specified Solution Run Template
|
|
214
|
+
*SolutionApi* | [**download_run_template_handler**](docs/SolutionApi.md#download_run_template_handler) | **GET** /organizations/{organization_id}/solutions/{solution_id}/runtemplates/{run_template_id}/handlers/{handler_id}/download | Download a Run Template step handler zip file
|
|
215
|
+
*SolutionApi* | [**find_all_solutions**](docs/SolutionApi.md#find_all_solutions) | **GET** /organizations/{organization_id}/solutions | List all Solutions
|
|
216
|
+
*SolutionApi* | [**find_solution_by_id**](docs/SolutionApi.md#find_solution_by_id) | **GET** /organizations/{organization_id}/solutions/{solution_id} | Get the details of a solution
|
|
217
|
+
*SolutionApi* | [**get_solution_access_control**](docs/SolutionApi.md#get_solution_access_control) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id} | Get a control access for the Solution
|
|
218
|
+
*SolutionApi* | [**get_solution_security**](docs/SolutionApi.md#get_solution_security) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security | Get the Solution security information
|
|
219
|
+
*SolutionApi* | [**get_solution_security_users**](docs/SolutionApi.md#get_solution_security_users) | **GET** /organizations/{organization_id}/solutions/{solution_id}/security/users | Get the Solution security users list
|
|
220
|
+
*SolutionApi* | [**remove_all_run_templates**](docs/SolutionApi.md#remove_all_run_templates) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/runTemplates | Remove all Run Templates from the Solution specified
|
|
221
|
+
*SolutionApi* | [**remove_all_solution_parameter_groups**](docs/SolutionApi.md#remove_all_solution_parameter_groups) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/parameterGroups | Remove all Parameter Groups from the Solution specified
|
|
222
|
+
*SolutionApi* | [**remove_all_solution_parameters**](docs/SolutionApi.md#remove_all_solution_parameters) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/parameters | Remove all Parameters from the Solution specified
|
|
223
|
+
*SolutionApi* | [**remove_solution_access_control**](docs/SolutionApi.md#remove_solution_access_control) | **DELETE** /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id} | Remove the specified access from the given Organization Solution
|
|
224
|
+
*SolutionApi* | [**set_solution_default_security**](docs/SolutionApi.md#set_solution_default_security) | **POST** /organizations/{organization_id}/solutions/{solution_id}/security/default | Set the Solution default security
|
|
225
|
+
*SolutionApi* | [**update_solution**](docs/SolutionApi.md#update_solution) | **PATCH** /organizations/{organization_id}/solutions/{solution_id} | Update a solution
|
|
226
|
+
*SolutionApi* | [**update_solution_access_control**](docs/SolutionApi.md#update_solution_access_control) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id} | Update the specified access to User for a Solution
|
|
227
|
+
*SolutionApi* | [**update_solution_run_template**](docs/SolutionApi.md#update_solution_run_template) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/runTemplates/{run_template_id} | Update the specified Solution Run Template
|
|
228
|
+
*SolutionApi* | [**upload_run_template_handler**](docs/SolutionApi.md#upload_run_template_handler) | **POST** /organizations/{organization_id}/solutions/{solution_id}/runtemplates/{run_template_id}/handlers/{handler_id}/upload | Upload a Run Template step handler zip file
|
|
229
|
+
*TwingraphApi* | [**batch_query**](docs/TwingraphApi.md#batch_query) | **POST** /organizations/{organization_id}/twingraph/{graph_id}/batch-query | Run a query on a graph instance and return the result as a zip file in async mode
|
|
230
|
+
*TwingraphApi* | [**batch_upload_update**](docs/TwingraphApi.md#batch_upload_update) | **POST** /organizations/{organization_id}/twingraph/{graph_id}/batch | Async batch update by loading a CSV file on a graph instance
|
|
231
|
+
*TwingraphApi* | [**create_entities**](docs/TwingraphApi.md#create_entities) | **POST** /organizations/{organization_id}/twingraph/{graph_id}/entity/{type} | Create new entities in a graph instance
|
|
232
|
+
*TwingraphApi* | [**create_graph**](docs/TwingraphApi.md#create_graph) | **POST** /organizations/{organization_id}/twingraph/{graph_id} | Create a new graph
|
|
233
|
+
*TwingraphApi* | [**delete**](docs/TwingraphApi.md#delete) | **DELETE** /organizations/{organization_id}/twingraph/{graph_id} | Delete all versions of a graph and his metadatas
|
|
234
|
+
*TwingraphApi* | [**delete_entities**](docs/TwingraphApi.md#delete_entities) | **DELETE** /organizations/{organization_id}/twingraph/{graph_id}/entity/{type} | Delete entities in a graph instance
|
|
235
|
+
*TwingraphApi* | [**download_graph**](docs/TwingraphApi.md#download_graph) | **GET** /organizations/{organization_id}/twingraph/download/{hash} | Download a graph compressed in a zip file
|
|
236
|
+
*TwingraphApi* | [**find_all_twingraphs**](docs/TwingraphApi.md#find_all_twingraphs) | **GET** /organizations/{organization_id}/twingraphs | Return the list of all graphs stored in the organization
|
|
237
|
+
*TwingraphApi* | [**get_entities**](docs/TwingraphApi.md#get_entities) | **GET** /organizations/{organization_id}/twingraph/{graph_id}/entity/{type} | Get entities in a graph instance
|
|
238
|
+
*TwingraphApi* | [**get_graph_meta_data**](docs/TwingraphApi.md#get_graph_meta_data) | **GET** /organizations/{organization_id}/twingraph/{graph_id}/metadata | Return the metaData of the specified graph
|
|
239
|
+
*TwingraphApi* | [**job_status**](docs/TwingraphApi.md#job_status) | **GET** /organizations/{organization_id}/job/{job_id}/status | Get the status of a job
|
|
240
|
+
*TwingraphApi* | [**query**](docs/TwingraphApi.md#query) | **POST** /organizations/{organization_id}/twingraph/{graph_id}/query | Run a query on a graph instance
|
|
241
|
+
*TwingraphApi* | [**update_entities**](docs/TwingraphApi.md#update_entities) | **PATCH** /organizations/{organization_id}/twingraph/{graph_id}/entity/{type} | Update entities in a graph instance
|
|
242
|
+
*TwingraphApi* | [**update_graph_meta_data**](docs/TwingraphApi.md#update_graph_meta_data) | **PATCH** /organizations/{organization_id}/twingraph/{graph_id}/metadata | Update the metaData of the specified graph
|
|
243
|
+
*WorkspaceApi* | [**add_workspace_access_control**](docs/WorkspaceApi.md#add_workspace_access_control) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/security/access | Add a control access to the Workspace
|
|
244
|
+
*WorkspaceApi* | [**create_secret**](docs/WorkspaceApi.md#create_secret) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/secret | Create a secret for the Workspace
|
|
245
|
+
*WorkspaceApi* | [**create_workspace**](docs/WorkspaceApi.md#create_workspace) | **POST** /organizations/{organization_id}/workspaces | Create a new workspace
|
|
246
|
+
*WorkspaceApi* | [**delete_all_workspace_files**](docs/WorkspaceApi.md#delete_all_workspace_files) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/files | Delete all Workspace files
|
|
247
|
+
*WorkspaceApi* | [**delete_workspace**](docs/WorkspaceApi.md#delete_workspace) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id} | Delete a workspace
|
|
248
|
+
*WorkspaceApi* | [**delete_workspace_file**](docs/WorkspaceApi.md#delete_workspace_file) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/files/delete | Delete a workspace file
|
|
249
|
+
*WorkspaceApi* | [**download_workspace_file**](docs/WorkspaceApi.md#download_workspace_file) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/files/download | Download the Workspace File specified
|
|
250
|
+
*WorkspaceApi* | [**find_all_workspace_files**](docs/WorkspaceApi.md#find_all_workspace_files) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/files | List all Workspace files
|
|
251
|
+
*WorkspaceApi* | [**find_all_workspaces**](docs/WorkspaceApi.md#find_all_workspaces) | **GET** /organizations/{organization_id}/workspaces | List all Workspaces
|
|
252
|
+
*WorkspaceApi* | [**find_workspace_by_id**](docs/WorkspaceApi.md#find_workspace_by_id) | **GET** /organizations/{organization_id}/workspaces/{workspace_id} | Get the details of an workspace
|
|
253
|
+
*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
|
|
254
|
+
*WorkspaceApi* | [**get_workspace_permissions**](docs/WorkspaceApi.md#get_workspace_permissions) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/permissions/{role} | Get the Workspace permission by given role
|
|
255
|
+
*WorkspaceApi* | [**get_workspace_security**](docs/WorkspaceApi.md#get_workspace_security) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/security | Get the Workspace security information
|
|
256
|
+
*WorkspaceApi* | [**get_workspace_security_users**](docs/WorkspaceApi.md#get_workspace_security_users) | **GET** /organizations/{organization_id}/workspaces/{workspace_id}/security/users | Get the Workspace security users list
|
|
257
|
+
*WorkspaceApi* | [**link_dataset**](docs/WorkspaceApi.md#link_dataset) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/link |
|
|
258
|
+
*WorkspaceApi* | [**remove_workspace_access_control**](docs/WorkspaceApi.md#remove_workspace_access_control) | **DELETE** /organizations/{organization_id}/workspaces/{workspace_id}/security/access/{identity_id} | Remove the specified access from the given Organization Workspace
|
|
259
|
+
*WorkspaceApi* | [**set_workspace_default_security**](docs/WorkspaceApi.md#set_workspace_default_security) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/security/default | Set the Workspace default security
|
|
260
|
+
*WorkspaceApi* | [**unlink_dataset**](docs/WorkspaceApi.md#unlink_dataset) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/unlink |
|
|
261
|
+
*WorkspaceApi* | [**update_workspace**](docs/WorkspaceApi.md#update_workspace) | **PATCH** /organizations/{organization_id}/workspaces/{workspace_id} | Update a workspace
|
|
262
|
+
*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
|
|
263
|
+
*WorkspaceApi* | [**upload_workspace_file**](docs/WorkspaceApi.md#upload_workspace_file) | **POST** /organizations/{organization_id}/workspaces/{workspace_id}/files | Upload a file for the Workspace
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
## Documentation For Models
|
|
267
|
+
|
|
268
|
+
- [ComponentRolePermissions](docs/ComponentRolePermissions.md)
|
|
269
|
+
- [Connector](docs/Connector.md)
|
|
270
|
+
- [ConnectorParameter](docs/ConnectorParameter.md)
|
|
271
|
+
- [ConnectorParameterGroup](docs/ConnectorParameterGroup.md)
|
|
272
|
+
- [ContainerResourceSizeInfo](docs/ContainerResourceSizeInfo.md)
|
|
273
|
+
- [ContainerResourceSizing](docs/ContainerResourceSizing.md)
|
|
274
|
+
- [Dataset](docs/Dataset.md)
|
|
275
|
+
- [DatasetAccessControl](docs/DatasetAccessControl.md)
|
|
276
|
+
- [DatasetCompatibility](docs/DatasetCompatibility.md)
|
|
277
|
+
- [DatasetConnector](docs/DatasetConnector.md)
|
|
278
|
+
- [DatasetCopyParameters](docs/DatasetCopyParameters.md)
|
|
279
|
+
- [DatasetRole](docs/DatasetRole.md)
|
|
280
|
+
- [DatasetSearch](docs/DatasetSearch.md)
|
|
281
|
+
- [DatasetSecurity](docs/DatasetSecurity.md)
|
|
282
|
+
- [DatasetSourceType](docs/DatasetSourceType.md)
|
|
283
|
+
- [DatasetTwinGraphHash](docs/DatasetTwinGraphHash.md)
|
|
284
|
+
- [DatasetTwinGraphInfo](docs/DatasetTwinGraphInfo.md)
|
|
285
|
+
- [DatasetTwinGraphQuery](docs/DatasetTwinGraphQuery.md)
|
|
286
|
+
- [DeleteHistoricalData](docs/DeleteHistoricalData.md)
|
|
287
|
+
- [FileUploadMetadata](docs/FileUploadMetadata.md)
|
|
288
|
+
- [FileUploadValidation](docs/FileUploadValidation.md)
|
|
289
|
+
- [GraphProperties](docs/GraphProperties.md)
|
|
290
|
+
- [IngestionStatusEnum](docs/IngestionStatusEnum.md)
|
|
291
|
+
- [IoTypesEnum](docs/IoTypesEnum.md)
|
|
292
|
+
- [Organization](docs/Organization.md)
|
|
293
|
+
- [OrganizationAccessControl](docs/OrganizationAccessControl.md)
|
|
294
|
+
- [OrganizationRole](docs/OrganizationRole.md)
|
|
295
|
+
- [OrganizationSecurity](docs/OrganizationSecurity.md)
|
|
296
|
+
- [OrganizationService](docs/OrganizationService.md)
|
|
297
|
+
- [OrganizationServices](docs/OrganizationServices.md)
|
|
298
|
+
- [QueryResult](docs/QueryResult.md)
|
|
299
|
+
- [ResourceSizeInfo](docs/ResourceSizeInfo.md)
|
|
300
|
+
- [Run](docs/Run.md)
|
|
301
|
+
- [RunContainer](docs/RunContainer.md)
|
|
302
|
+
- [RunContainerArtifact](docs/RunContainerArtifact.md)
|
|
303
|
+
- [RunContainerLogs](docs/RunContainerLogs.md)
|
|
304
|
+
- [RunData](docs/RunData.md)
|
|
305
|
+
- [RunDataQuery](docs/RunDataQuery.md)
|
|
306
|
+
- [RunLogs](docs/RunLogs.md)
|
|
307
|
+
- [RunResourceRequested](docs/RunResourceRequested.md)
|
|
308
|
+
- [RunSearch](docs/RunSearch.md)
|
|
309
|
+
- [RunSearchState](docs/RunSearchState.md)
|
|
310
|
+
- [RunStartContainers](docs/RunStartContainers.md)
|
|
311
|
+
- [RunState](docs/RunState.md)
|
|
312
|
+
- [RunStatus](docs/RunStatus.md)
|
|
313
|
+
- [RunStatusNode](docs/RunStatusNode.md)
|
|
314
|
+
- [RunTemplate](docs/RunTemplate.md)
|
|
315
|
+
- [RunTemplateHandlerId](docs/RunTemplateHandlerId.md)
|
|
316
|
+
- [RunTemplateOrchestrator](docs/RunTemplateOrchestrator.md)
|
|
317
|
+
- [RunTemplateParameter](docs/RunTemplateParameter.md)
|
|
318
|
+
- [RunTemplateParameterGroup](docs/RunTemplateParameterGroup.md)
|
|
319
|
+
- [RunTemplateParameterValue](docs/RunTemplateParameterValue.md)
|
|
320
|
+
- [RunTemplateResourceSizing](docs/RunTemplateResourceSizing.md)
|
|
321
|
+
- [RunTemplateStepSource](docs/RunTemplateStepSource.md)
|
|
322
|
+
- [Runner](docs/Runner.md)
|
|
323
|
+
- [RunnerAccessControl](docs/RunnerAccessControl.md)
|
|
324
|
+
- [RunnerChangedParameterValue](docs/RunnerChangedParameterValue.md)
|
|
325
|
+
- [RunnerComparisonResult](docs/RunnerComparisonResult.md)
|
|
326
|
+
- [RunnerDataDownloadInfo](docs/RunnerDataDownloadInfo.md)
|
|
327
|
+
- [RunnerDataDownloadJob](docs/RunnerDataDownloadJob.md)
|
|
328
|
+
- [RunnerJobState](docs/RunnerJobState.md)
|
|
329
|
+
- [RunnerLastRun](docs/RunnerLastRun.md)
|
|
330
|
+
- [RunnerParentLastRun](docs/RunnerParentLastRun.md)
|
|
331
|
+
- [RunnerResourceSizing](docs/RunnerResourceSizing.md)
|
|
332
|
+
- [RunnerRole](docs/RunnerRole.md)
|
|
333
|
+
- [RunnerRootLastRun](docs/RunnerRootLastRun.md)
|
|
334
|
+
- [RunnerRunTemplateParameterValue](docs/RunnerRunTemplateParameterValue.md)
|
|
335
|
+
- [RunnerSecurity](docs/RunnerSecurity.md)
|
|
336
|
+
- [RunnerValidationStatus](docs/RunnerValidationStatus.md)
|
|
337
|
+
- [Scenario](docs/Scenario.md)
|
|
338
|
+
- [ScenarioAccessControl](docs/ScenarioAccessControl.md)
|
|
339
|
+
- [ScenarioChangedParameterValue](docs/ScenarioChangedParameterValue.md)
|
|
340
|
+
- [ScenarioComparisonResult](docs/ScenarioComparisonResult.md)
|
|
341
|
+
- [ScenarioDataDownloadInfo](docs/ScenarioDataDownloadInfo.md)
|
|
342
|
+
- [ScenarioDataDownloadJob](docs/ScenarioDataDownloadJob.md)
|
|
343
|
+
- [ScenarioJobState](docs/ScenarioJobState.md)
|
|
344
|
+
- [ScenarioLastRun](docs/ScenarioLastRun.md)
|
|
345
|
+
- [ScenarioResourceSizing](docs/ScenarioResourceSizing.md)
|
|
346
|
+
- [ScenarioRole](docs/ScenarioRole.md)
|
|
347
|
+
- [ScenarioRun](docs/ScenarioRun.md)
|
|
348
|
+
- [ScenarioRunContainer](docs/ScenarioRunContainer.md)
|
|
349
|
+
- [ScenarioRunContainerArtifact](docs/ScenarioRunContainerArtifact.md)
|
|
350
|
+
- [ScenarioRunContainerLogs](docs/ScenarioRunContainerLogs.md)
|
|
351
|
+
- [ScenarioRunLogs](docs/ScenarioRunLogs.md)
|
|
352
|
+
- [ScenarioRunResourceRequested](docs/ScenarioRunResourceRequested.md)
|
|
353
|
+
- [ScenarioRunSearch](docs/ScenarioRunSearch.md)
|
|
354
|
+
- [ScenarioRunSearchState](docs/ScenarioRunSearchState.md)
|
|
355
|
+
- [ScenarioRunStartContainers](docs/ScenarioRunStartContainers.md)
|
|
356
|
+
- [ScenarioRunState](docs/ScenarioRunState.md)
|
|
357
|
+
- [ScenarioRunStatus](docs/ScenarioRunStatus.md)
|
|
358
|
+
- [ScenarioRunStatusNode](docs/ScenarioRunStatusNode.md)
|
|
359
|
+
- [ScenarioRunTemplateParameterValue](docs/ScenarioRunTemplateParameterValue.md)
|
|
360
|
+
- [ScenarioSecurity](docs/ScenarioSecurity.md)
|
|
361
|
+
- [ScenarioValidationStatus](docs/ScenarioValidationStatus.md)
|
|
362
|
+
- [SendRunDataRequest](docs/SendRunDataRequest.md)
|
|
363
|
+
- [Solution](docs/Solution.md)
|
|
364
|
+
- [SolutionAccessControl](docs/SolutionAccessControl.md)
|
|
365
|
+
- [SolutionRole](docs/SolutionRole.md)
|
|
366
|
+
- [SolutionSecurity](docs/SolutionSecurity.md)
|
|
367
|
+
- [SourceInfo](docs/SourceInfo.md)
|
|
368
|
+
- [SubDatasetGraphQuery](docs/SubDatasetGraphQuery.md)
|
|
369
|
+
- [TwinGraphBatchResult](docs/TwinGraphBatchResult.md)
|
|
370
|
+
- [TwinGraphHash](docs/TwinGraphHash.md)
|
|
371
|
+
- [TwinGraphQuery](docs/TwinGraphQuery.md)
|
|
372
|
+
- [TwincacheStatusEnum](docs/TwincacheStatusEnum.md)
|
|
373
|
+
- [Validator](docs/Validator.md)
|
|
374
|
+
- [Workspace](docs/Workspace.md)
|
|
375
|
+
- [WorkspaceAccessControl](docs/WorkspaceAccessControl.md)
|
|
376
|
+
- [WorkspaceFile](docs/WorkspaceFile.md)
|
|
377
|
+
- [WorkspaceRole](docs/WorkspaceRole.md)
|
|
378
|
+
- [WorkspaceSecret](docs/WorkspaceSecret.md)
|
|
379
|
+
- [WorkspaceSecurity](docs/WorkspaceSecurity.md)
|
|
380
|
+
- [WorkspaceSolution](docs/WorkspaceSolution.md)
|
|
381
|
+
- [WorkspaceWebApp](docs/WorkspaceWebApp.md)
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
<a id="documentation-for-authorization"></a>
|
|
385
|
+
## Documentation For Authorization
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
Authentication schemes defined for the API:
|
|
389
|
+
<a id="oAuth2AuthCode"></a>
|
|
390
|
+
### oAuth2AuthCode
|
|
391
|
+
|
|
392
|
+
- **Type**: OAuth
|
|
393
|
+
- **Flow**: implicit
|
|
394
|
+
- **Authorization URL**: https://login.microsoftonline.com/common/oauth2/v2.0/authorize
|
|
395
|
+
- **Scopes**:
|
|
396
|
+
- **http://dev.api.cosmotech.com/platform**: Platform scope
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
## Author
|
|
400
|
+
|
|
401
|
+
platform@cosmotech.com
|
|
402
|
+
|
|
403
|
+
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Cosmo Tech Platform API
|
|
7
|
+
|
|
8
|
+
Cosmo Tech Platform API
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 3.3.4
|
|
11
|
+
Contact: platform@cosmotech.com
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
|
+
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "1.0.0"
|
|
19
|
+
|
|
20
|
+
# import apis into sdk package
|
|
21
|
+
from cosmotech_api.api.connector_api import ConnectorApi
|
|
22
|
+
from cosmotech_api.api.dataset_api import DatasetApi
|
|
23
|
+
from cosmotech_api.api.organization_api import OrganizationApi
|
|
24
|
+
from cosmotech_api.api.run_api import RunApi
|
|
25
|
+
from cosmotech_api.api.runner_api import RunnerApi
|
|
26
|
+
from cosmotech_api.api.scenario_api import ScenarioApi
|
|
27
|
+
from cosmotech_api.api.scenariorun_api import ScenariorunApi
|
|
28
|
+
from cosmotech_api.api.solution_api import SolutionApi
|
|
29
|
+
from cosmotech_api.api.twingraph_api import TwingraphApi
|
|
30
|
+
from cosmotech_api.api.workspace_api import WorkspaceApi
|
|
31
|
+
|
|
32
|
+
# import ApiClient
|
|
33
|
+
from cosmotech_api.api_response import ApiResponse
|
|
34
|
+
from cosmotech_api.api_client import ApiClient
|
|
35
|
+
from cosmotech_api.configuration import Configuration
|
|
36
|
+
from cosmotech_api.exceptions import OpenApiException
|
|
37
|
+
from cosmotech_api.exceptions import ApiTypeError
|
|
38
|
+
from cosmotech_api.exceptions import ApiValueError
|
|
39
|
+
from cosmotech_api.exceptions import ApiKeyError
|
|
40
|
+
from cosmotech_api.exceptions import ApiAttributeError
|
|
41
|
+
from cosmotech_api.exceptions import ApiException
|
|
42
|
+
|
|
43
|
+
# import models into sdk package
|
|
44
|
+
from cosmotech_api.models.component_role_permissions import ComponentRolePermissions
|
|
45
|
+
from cosmotech_api.models.connector import Connector
|
|
46
|
+
from cosmotech_api.models.connector_parameter import ConnectorParameter
|
|
47
|
+
from cosmotech_api.models.connector_parameter_group import ConnectorParameterGroup
|
|
48
|
+
from cosmotech_api.models.container_resource_size_info import ContainerResourceSizeInfo
|
|
49
|
+
from cosmotech_api.models.container_resource_sizing import ContainerResourceSizing
|
|
50
|
+
from cosmotech_api.models.dataset import Dataset
|
|
51
|
+
from cosmotech_api.models.dataset_access_control import DatasetAccessControl
|
|
52
|
+
from cosmotech_api.models.dataset_compatibility import DatasetCompatibility
|
|
53
|
+
from cosmotech_api.models.dataset_connector import DatasetConnector
|
|
54
|
+
from cosmotech_api.models.dataset_copy_parameters import DatasetCopyParameters
|
|
55
|
+
from cosmotech_api.models.dataset_role import DatasetRole
|
|
56
|
+
from cosmotech_api.models.dataset_search import DatasetSearch
|
|
57
|
+
from cosmotech_api.models.dataset_security import DatasetSecurity
|
|
58
|
+
from cosmotech_api.models.dataset_source_type import DatasetSourceType
|
|
59
|
+
from cosmotech_api.models.dataset_twin_graph_hash import DatasetTwinGraphHash
|
|
60
|
+
from cosmotech_api.models.dataset_twin_graph_info import DatasetTwinGraphInfo
|
|
61
|
+
from cosmotech_api.models.dataset_twin_graph_query import DatasetTwinGraphQuery
|
|
62
|
+
from cosmotech_api.models.delete_historical_data import DeleteHistoricalData
|
|
63
|
+
from cosmotech_api.models.file_upload_metadata import FileUploadMetadata
|
|
64
|
+
from cosmotech_api.models.file_upload_validation import FileUploadValidation
|
|
65
|
+
from cosmotech_api.models.graph_properties import GraphProperties
|
|
66
|
+
from cosmotech_api.models.ingestion_status_enum import IngestionStatusEnum
|
|
67
|
+
from cosmotech_api.models.io_types_enum import IoTypesEnum
|
|
68
|
+
from cosmotech_api.models.organization import Organization
|
|
69
|
+
from cosmotech_api.models.organization_access_control import OrganizationAccessControl
|
|
70
|
+
from cosmotech_api.models.organization_role import OrganizationRole
|
|
71
|
+
from cosmotech_api.models.organization_security import OrganizationSecurity
|
|
72
|
+
from cosmotech_api.models.organization_service import OrganizationService
|
|
73
|
+
from cosmotech_api.models.organization_services import OrganizationServices
|
|
74
|
+
from cosmotech_api.models.query_result import QueryResult
|
|
75
|
+
from cosmotech_api.models.resource_size_info import ResourceSizeInfo
|
|
76
|
+
from cosmotech_api.models.run import Run
|
|
77
|
+
from cosmotech_api.models.run_container import RunContainer
|
|
78
|
+
from cosmotech_api.models.run_container_artifact import RunContainerArtifact
|
|
79
|
+
from cosmotech_api.models.run_container_logs import RunContainerLogs
|
|
80
|
+
from cosmotech_api.models.run_data import RunData
|
|
81
|
+
from cosmotech_api.models.run_data_query import RunDataQuery
|
|
82
|
+
from cosmotech_api.models.run_logs import RunLogs
|
|
83
|
+
from cosmotech_api.models.run_resource_requested import RunResourceRequested
|
|
84
|
+
from cosmotech_api.models.run_search import RunSearch
|
|
85
|
+
from cosmotech_api.models.run_search_state import RunSearchState
|
|
86
|
+
from cosmotech_api.models.run_start_containers import RunStartContainers
|
|
87
|
+
from cosmotech_api.models.run_state import RunState
|
|
88
|
+
from cosmotech_api.models.run_status import RunStatus
|
|
89
|
+
from cosmotech_api.models.run_status_node import RunStatusNode
|
|
90
|
+
from cosmotech_api.models.run_template import RunTemplate
|
|
91
|
+
from cosmotech_api.models.run_template_handler_id import RunTemplateHandlerId
|
|
92
|
+
from cosmotech_api.models.run_template_orchestrator import RunTemplateOrchestrator
|
|
93
|
+
from cosmotech_api.models.run_template_parameter import RunTemplateParameter
|
|
94
|
+
from cosmotech_api.models.run_template_parameter_group import RunTemplateParameterGroup
|
|
95
|
+
from cosmotech_api.models.run_template_parameter_value import RunTemplateParameterValue
|
|
96
|
+
from cosmotech_api.models.run_template_resource_sizing import RunTemplateResourceSizing
|
|
97
|
+
from cosmotech_api.models.run_template_step_source import RunTemplateStepSource
|
|
98
|
+
from cosmotech_api.models.runner import Runner
|
|
99
|
+
from cosmotech_api.models.runner_access_control import RunnerAccessControl
|
|
100
|
+
from cosmotech_api.models.runner_changed_parameter_value import RunnerChangedParameterValue
|
|
101
|
+
from cosmotech_api.models.runner_comparison_result import RunnerComparisonResult
|
|
102
|
+
from cosmotech_api.models.runner_data_download_info import RunnerDataDownloadInfo
|
|
103
|
+
from cosmotech_api.models.runner_data_download_job import RunnerDataDownloadJob
|
|
104
|
+
from cosmotech_api.models.runner_job_state import RunnerJobState
|
|
105
|
+
from cosmotech_api.models.runner_last_run import RunnerLastRun
|
|
106
|
+
from cosmotech_api.models.runner_parent_last_run import RunnerParentLastRun
|
|
107
|
+
from cosmotech_api.models.runner_resource_sizing import RunnerResourceSizing
|
|
108
|
+
from cosmotech_api.models.runner_role import RunnerRole
|
|
109
|
+
from cosmotech_api.models.runner_root_last_run import RunnerRootLastRun
|
|
110
|
+
from cosmotech_api.models.runner_run_template_parameter_value import RunnerRunTemplateParameterValue
|
|
111
|
+
from cosmotech_api.models.runner_security import RunnerSecurity
|
|
112
|
+
from cosmotech_api.models.runner_validation_status import RunnerValidationStatus
|
|
113
|
+
from cosmotech_api.models.scenario import Scenario
|
|
114
|
+
from cosmotech_api.models.scenario_access_control import ScenarioAccessControl
|
|
115
|
+
from cosmotech_api.models.scenario_changed_parameter_value import ScenarioChangedParameterValue
|
|
116
|
+
from cosmotech_api.models.scenario_comparison_result import ScenarioComparisonResult
|
|
117
|
+
from cosmotech_api.models.scenario_data_download_info import ScenarioDataDownloadInfo
|
|
118
|
+
from cosmotech_api.models.scenario_data_download_job import ScenarioDataDownloadJob
|
|
119
|
+
from cosmotech_api.models.scenario_job_state import ScenarioJobState
|
|
120
|
+
from cosmotech_api.models.scenario_last_run import ScenarioLastRun
|
|
121
|
+
from cosmotech_api.models.scenario_resource_sizing import ScenarioResourceSizing
|
|
122
|
+
from cosmotech_api.models.scenario_role import ScenarioRole
|
|
123
|
+
from cosmotech_api.models.scenario_run import ScenarioRun
|
|
124
|
+
from cosmotech_api.models.scenario_run_container import ScenarioRunContainer
|
|
125
|
+
from cosmotech_api.models.scenario_run_container_artifact import ScenarioRunContainerArtifact
|
|
126
|
+
from cosmotech_api.models.scenario_run_container_logs import ScenarioRunContainerLogs
|
|
127
|
+
from cosmotech_api.models.scenario_run_logs import ScenarioRunLogs
|
|
128
|
+
from cosmotech_api.models.scenario_run_resource_requested import ScenarioRunResourceRequested
|
|
129
|
+
from cosmotech_api.models.scenario_run_search import ScenarioRunSearch
|
|
130
|
+
from cosmotech_api.models.scenario_run_search_state import ScenarioRunSearchState
|
|
131
|
+
from cosmotech_api.models.scenario_run_start_containers import ScenarioRunStartContainers
|
|
132
|
+
from cosmotech_api.models.scenario_run_state import ScenarioRunState
|
|
133
|
+
from cosmotech_api.models.scenario_run_status import ScenarioRunStatus
|
|
134
|
+
from cosmotech_api.models.scenario_run_status_node import ScenarioRunStatusNode
|
|
135
|
+
from cosmotech_api.models.scenario_run_template_parameter_value import ScenarioRunTemplateParameterValue
|
|
136
|
+
from cosmotech_api.models.scenario_security import ScenarioSecurity
|
|
137
|
+
from cosmotech_api.models.scenario_validation_status import ScenarioValidationStatus
|
|
138
|
+
from cosmotech_api.models.send_run_data_request import SendRunDataRequest
|
|
139
|
+
from cosmotech_api.models.solution import Solution
|
|
140
|
+
from cosmotech_api.models.solution_access_control import SolutionAccessControl
|
|
141
|
+
from cosmotech_api.models.solution_role import SolutionRole
|
|
142
|
+
from cosmotech_api.models.solution_security import SolutionSecurity
|
|
143
|
+
from cosmotech_api.models.source_info import SourceInfo
|
|
144
|
+
from cosmotech_api.models.sub_dataset_graph_query import SubDatasetGraphQuery
|
|
145
|
+
from cosmotech_api.models.twin_graph_batch_result import TwinGraphBatchResult
|
|
146
|
+
from cosmotech_api.models.twin_graph_hash import TwinGraphHash
|
|
147
|
+
from cosmotech_api.models.twin_graph_query import TwinGraphQuery
|
|
148
|
+
from cosmotech_api.models.twincache_status_enum import TwincacheStatusEnum
|
|
149
|
+
from cosmotech_api.models.validator import Validator
|
|
150
|
+
from cosmotech_api.models.workspace import Workspace
|
|
151
|
+
from cosmotech_api.models.workspace_access_control import WorkspaceAccessControl
|
|
152
|
+
from cosmotech_api.models.workspace_file import WorkspaceFile
|
|
153
|
+
from cosmotech_api.models.workspace_role import WorkspaceRole
|
|
154
|
+
from cosmotech_api.models.workspace_secret import WorkspaceSecret
|
|
155
|
+
from cosmotech_api.models.workspace_security import WorkspaceSecurity
|
|
156
|
+
from cosmotech_api.models.workspace_solution import WorkspaceSolution
|
|
157
|
+
from cosmotech_api.models.workspace_web_app import WorkspaceWebApp
|