cosmotech-modeling-api 12.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. cosmotech_modeling_api-12.2.0/LICENSE +10 -0
  2. cosmotech_modeling_api-12.2.0/PKG-INFO +219 -0
  3. cosmotech_modeling_api-12.2.0/README.md +200 -0
  4. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/__init__.py +87 -0
  5. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/api/__init__.py +11 -0
  6. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/api/conceptual_model_api.py +8203 -0
  7. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/api/file_api.py +1426 -0
  8. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/api/meta_api.py +1022 -0
  9. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/api/project_api.py +2407 -0
  10. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/api/project_build_api.py +1663 -0
  11. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/api/simulator_api.py +3766 -0
  12. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/api/transformations_api.py +4927 -0
  13. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/api_client.py +805 -0
  14. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/api_response.py +21 -0
  15. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/configuration.py +597 -0
  16. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/exceptions.py +219 -0
  17. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/__init__.py +30 -0
  18. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/about_info.py +108 -0
  19. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/about_info_version.py +114 -0
  20. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/problem_details.py +108 -0
  21. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/problem_details_semantic_errors.py +118 -0
  22. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/project.py +113 -0
  23. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/project_build.py +108 -0
  24. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/project_build_request.py +118 -0
  25. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/project_build_request_build_config.py +106 -0
  26. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/project_build_request_docker_simulator_image.py +106 -0
  27. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/project_build_status.py +116 -0
  28. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/project_request.py +104 -0
  29. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/semantic_error.py +108 -0
  30. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/models/semantic_error_nodes.py +104 -0
  31. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/py.typed +0 -0
  32. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api/rest.py +264 -0
  33. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api.egg-info/PKG-INFO +219 -0
  34. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api.egg-info/SOURCES.txt +59 -0
  35. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api.egg-info/dependency_links.txt +1 -0
  36. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api.egg-info/requires.txt +4 -0
  37. cosmotech_modeling_api-12.2.0/cosmotech_modeling_api.egg-info/top_level.txt +1 -0
  38. cosmotech_modeling_api-12.2.0/pyproject.toml +94 -0
  39. cosmotech_modeling_api-12.2.0/setup.cfg +7 -0
  40. cosmotech_modeling_api-12.2.0/setup.py +48 -0
  41. cosmotech_modeling_api-12.2.0/test/test_about_info.py +69 -0
  42. cosmotech_modeling_api-12.2.0/test/test_about_info_version.py +65 -0
  43. cosmotech_modeling_api-12.2.0/test/test_conceptual_model_api.py +228 -0
  44. cosmotech_modeling_api-12.2.0/test/test_file_api.py +67 -0
  45. cosmotech_modeling_api-12.2.0/test/test_meta_api.py +60 -0
  46. cosmotech_modeling_api-12.2.0/test/test_problem_details.py +59 -0
  47. cosmotech_modeling_api-12.2.0/test/test_problem_details_semantic_errors.py +77 -0
  48. cosmotech_modeling_api-12.2.0/test/test_project.py +60 -0
  49. cosmotech_modeling_api-12.2.0/test/test_project_api.py +95 -0
  50. cosmotech_modeling_api-12.2.0/test/test_project_build.py +63 -0
  51. cosmotech_modeling_api-12.2.0/test/test_project_build_api.py +74 -0
  52. cosmotech_modeling_api-12.2.0/test/test_project_build_request.py +64 -0
  53. cosmotech_modeling_api-12.2.0/test/test_project_build_request_build_config.py +56 -0
  54. cosmotech_modeling_api-12.2.0/test/test_project_build_request_docker_simulator_image.py +55 -0
  55. cosmotech_modeling_api-12.2.0/test/test_project_build_status.py +56 -0
  56. cosmotech_modeling_api-12.2.0/test/test_project_request.py +53 -0
  57. cosmotech_modeling_api-12.2.0/test/test_semantic_error.py +63 -0
  58. cosmotech_modeling_api-12.2.0/test/test_semantic_error_nodes.py +56 -0
  59. cosmotech_modeling_api-12.2.0/test/test_simulator_api.py +123 -0
  60. cosmotech_modeling_api-12.2.0/test/test_transformations_api.py +151 -0
@@ -0,0 +1,10 @@
1
+ Copyright (C) 2026-2026 Cosmo Tech
2
+
3
+ You are authorized to use this software following the execution of a specific agreement with Cosmo Tech or with an authorized licensee of Cosmo Tech.
4
+ Accordingly you should refer to this specific agreement for the purpose of the extent of the use that is permitted. This use shall mainly consist in using, displaying and executing the software for your own needs.
5
+ Except otherwise provided in the above-mentioned specific agreement:
6
+ - you are not allowed to use this software for commercial purpose or to redistribute it without prior authorization from Cosmo Tech;
7
+ - you are not allowed to copy, duplicate, modify, adapt and translate this software except as authorized under section L122-6-1 of the French Intellectual Property Code or specifically under the specific agreement with Cosmo Tech;
8
+ - you must not removed this notice or any mention related to the copyright of Cosmo Tech;
9
+ This software is provided 'as is', without any express or implied warranty towards the users.
10
+ Any Software generated through the use of the software shall be your own property to the extent this Software does not contain any part of software source code.
@@ -0,0 +1,219 @@
1
+ Metadata-Version: 2.4
2
+ Name: cosmotech_modeling_api
3
+ Version: 12.2.0
4
+ Summary: Cosmo Tech Modeling API
5
+ Home-page:
6
+ Author: OpenAPI Generator community
7
+ Author-email: OpenAPI Generator Community <platform@cosmotech.com>
8
+ Project-URL: Repository, https://github.com/cosmo-tech/cosmotech-modeling-api-python-client
9
+ Keywords: OpenAPI,OpenAPI-Generator,Cosmo Tech Modeling API
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: urllib3<3.0.0,>=2.1.0
14
+ Requires-Dist: python-dateutil>=2.8.2
15
+ Requires-Dist: pydantic>=2.11
16
+ Requires-Dist: typing-extensions>=4.7.1
17
+ Dynamic: author
18
+ Dynamic: license-file
19
+
20
+ # cosmotech-modeling-api
21
+ Cosmo Tech Modeling API (12.2.0-40480.6d6a465d)
22
+
23
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
24
+
25
+ - API version: 12.2.0
26
+ - Package version: 12.2.0
27
+ - Generator version: 7.22.0
28
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
29
+
30
+ ## Requirements.
31
+
32
+ Python 3.10+
33
+
34
+ ## Installation & Usage
35
+ ### pip install
36
+
37
+ If the python package is hosted on a repository, you can install directly using:
38
+
39
+ ```sh
40
+ pip install git+https://github.com/cosmo-tech/cosmotech-modeling-api-python-client.git
41
+ ```
42
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/cosmo-tech/cosmotech-modeling-api-python-client.git`)
43
+
44
+ Then import the package:
45
+ ```python
46
+ import cosmotech_modeling_api
47
+ ```
48
+
49
+ ### Setuptools
50
+
51
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
52
+
53
+ ```sh
54
+ python setup.py install --user
55
+ ```
56
+ (or `sudo python setup.py install` to install the package for all users)
57
+
58
+ Then import the package:
59
+ ```python
60
+ import cosmotech_modeling_api
61
+ ```
62
+
63
+ ### Tests
64
+
65
+ Execute `pytest` to run the tests.
66
+
67
+ ## Getting Started
68
+
69
+ Please follow the [installation procedure](#installation--usage) and then run the following:
70
+
71
+ ```python
72
+
73
+ import cosmotech_modeling_api
74
+ from cosmotech_modeling_api.rest import ApiException
75
+ from pprint import pprint
76
+
77
+ # Defining the host is optional and defaults to http://localhost
78
+ # See configuration.py for a list of all supported configuration parameters.
79
+ configuration = cosmotech_modeling_api.Configuration(
80
+ host = "http://localhost"
81
+ )
82
+
83
+
84
+
85
+ # Enter a context with an instance of the API client
86
+ with cosmotech_modeling_api.ApiClient(configuration) as api_client:
87
+ # Create an instance of the API class
88
+ api_instance = cosmotech_modeling_api.ConceptualModelApi(api_client)
89
+ project_id = 'project_id_example' # str | The project identifier
90
+ body = None # object | Conceptual model content
91
+
92
+ try:
93
+ # Check the semantic of a submitted conceptual model
94
+ api_response = api_instance.check_conceptual_model_semantic_errors(project_id, body)
95
+ print("The response of ConceptualModelApi->check_conceptual_model_semantic_errors:\n")
96
+ pprint(api_response)
97
+ except ApiException as e:
98
+ print("Exception when calling ConceptualModelApi->check_conceptual_model_semantic_errors: %s\n" % e)
99
+
100
+ ```
101
+
102
+ ## Documentation for API Endpoints
103
+
104
+ All URIs are relative to *http://localhost*
105
+
106
+ Class | Method | HTTP request | Description
107
+ ------------ | ------------- | ------------- | -------------
108
+ *ConceptualModelApi* | [**check_conceptual_model_semantic_errors**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#check_conceptual_model_semantic_errors) | **POST** /projects/{projectId}/conceptualModels/semantic | Check the semantic of a submitted conceptual model
109
+ *ConceptualModelApi* | [**create_category**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#create_category) | **POST** /projects/{projectId}/conceptualModels/{conceptualModelId}/categories | Create a new category
110
+ *ConceptualModelApi* | [**create_conceptual_model**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#create_conceptual_model) | **POST** /projects/{projectId}/conceptualModels/{conceptualModelId} | Create a new conceptual model
111
+ *ConceptualModelApi* | [**create_data_type**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#create_data_type) | **POST** /projects/{projectId}/conceptualModels/{conceptualModelId}/dataTypes | Create a new data type
112
+ *ConceptualModelApi* | [**create_entity**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#create_entity) | **POST** /projects/{projectId}/conceptualModels/{conceptualModelId}/entities | Create a new entity
113
+ *ConceptualModelApi* | [**create_environment**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#create_environment) | **POST** /projects/{projectId}/conceptualModels/{conceptualModelId}/environments | Create a new environment
114
+ *ConceptualModelApi* | [**delete_category**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#delete_category) | **DELETE** /projects/{projectId}/conceptualModels/{conceptualModelId}/categories/{categoryId} | Delete a category
115
+ *ConceptualModelApi* | [**delete_conceptual_model**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#delete_conceptual_model) | **DELETE** /projects/{projectId}/conceptualModels/{conceptualModelId} | Delete a conceptal model
116
+ *ConceptualModelApi* | [**delete_data_type**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#delete_data_type) | **DELETE** /projects/{projectId}/conceptualModels/{conceptualModelId}/dataTypes/{dataTypeId} | Delete a data type
117
+ *ConceptualModelApi* | [**delete_entity**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#delete_entity) | **DELETE** /projects/{projectId}/conceptualModels/{conceptualModelId}/entities/{entityId} | Delete an entity
118
+ *ConceptualModelApi* | [**delete_environment**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#delete_environment) | **DELETE** /projects/{projectId}/conceptualModels/{conceptualModelId}/environments/{environmentId} | Delete an environment
119
+ *ConceptualModelApi* | [**get_category**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#get_category) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/categories/{categoryId} | Get a category definition
120
+ *ConceptualModelApi* | [**get_conceptual_model**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#get_conceptual_model) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId} | Get the content of a conceptual model
121
+ *ConceptualModelApi* | [**get_conceptual_model_semantic_errors**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#get_conceptual_model_semantic_errors) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/semantic | Check the semantic of a submitted conceptual model
122
+ *ConceptualModelApi* | [**get_data_type**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#get_data_type) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/dataTypes/{dataTypeId} | Get a data type definition
123
+ *ConceptualModelApi* | [**get_entity**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#get_entity) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/entities/{entityId} | Get an entity definition
124
+ *ConceptualModelApi* | [**get_environment**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#get_environment) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/environments/{environmentId} | Get an environment definition
125
+ *ConceptualModelApi* | [**list_categories**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#list_categories) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/categories | Get the list of categories of a model
126
+ *ConceptualModelApi* | [**list_conceptual_models**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#list_conceptual_models) | **GET** /projects/{projectId}/conceptualModels | List the conceptual models of a project
127
+ *ConceptualModelApi* | [**list_data_types**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#list_data_types) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/dataTypes | Get the list of data types of a model
128
+ *ConceptualModelApi* | [**list_entities**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#list_entities) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/entities | Get the list of entities of a model
129
+ *ConceptualModelApi* | [**list_environments**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#list_environments) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/environments | Get the list of environments of a model
130
+ *ConceptualModelApi* | [**replace_category**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#replace_category) | **PUT** /projects/{projectId}/conceptualModels/{conceptualModelId}/categories/{categoryId} | Replace a category definition
131
+ *ConceptualModelApi* | [**replace_conceptual_model**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#replace_conceptual_model) | **PUT** /projects/{projectId}/conceptualModels/{conceptualModelId} | Replace the content of a conceptual model
132
+ *ConceptualModelApi* | [**replace_data_type**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#replace_data_type) | **PUT** /projects/{projectId}/conceptualModels/{conceptualModelId}/dataTypes/{dataTypeId} | Replace a data type definition
133
+ *ConceptualModelApi* | [**replace_entity**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#replace_entity) | **PUT** /projects/{projectId}/conceptualModels/{conceptualModelId}/entities/{entityId} | Replace an entity definition
134
+ *ConceptualModelApi* | [**replace_environment**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#replace_environment) | **PUT** /projects/{projectId}/conceptualModels/{conceptualModelId}/environments/{environmentId} | Replace an environment definition
135
+ *ConceptualModelApi* | [**update_conceptual_model**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#update_conceptual_model) | **PATCH** /projects/{projectId}/conceptualModels/{conceptualModelId} | Update the content of a conceptual model
136
+ *FileApi* | [**create_project_file**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/FileApi.md#create_project_file) | **POST** /projects/{projectId}/files/raw | Create a new project file
137
+ *FileApi* | [**delete_project_file**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/FileApi.md#delete_project_file) | **DELETE** /projects/{projectId}/files/raw | Delete a project file
138
+ *FileApi* | [**get_project_file**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/FileApi.md#get_project_file) | **GET** /projects/{projectId}/files/raw | Get the content of a project file
139
+ *FileApi* | [**list_project_files**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/FileApi.md#list_project_files) | **GET** /projects/{projectId}/files | List all files of a project
140
+ *FileApi* | [**replace_project_file**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/FileApi.md#replace_project_file) | **PUT** /projects/{projectId}/files/raw | Replace a project file
141
+ *MetaApi* | [**about**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/MetaApi.md#about) | **GET** /about | Retrieve API info
142
+ *MetaApi* | [**get_openapi**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/MetaApi.md#get_openapi) | **GET** /openapi.yaml | Get the OpenAPI description file
143
+ *MetaApi* | [**get_schema**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/MetaApi.md#get_schema) | **GET** /schemas/{schemaId} | Get a schema content
144
+ *MetaApi* | [**list_schemas**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/MetaApi.md#list_schemas) | **GET** /schemas | List all known JSON schemas
145
+ *ProjectApi* | [**create_project**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#create_project) | **POST** /projects | Create new a project
146
+ *ProjectApi* | [**delete_project**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#delete_project) | **DELETE** /projects/{projectId} | Delete a project
147
+ *ProjectApi* | [**delete_project_archive**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#delete_project_archive) | **DELETE** /projects/{projectId}/archive | Delete the project archive
148
+ *ProjectApi* | [**get_project**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#get_project) | **GET** /projects/{projectId} | List a project details
149
+ *ProjectApi* | [**get_project_archive**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#get_project_archive) | **GET** /projects/{projectId}/archive | Get the current project archive
150
+ *ProjectApi* | [**list_projects**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#list_projects) | **GET** /projects | List all projects
151
+ *ProjectApi* | [**replace_project_archive**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#replace_project_archive) | **PUT** /projects/{projectId}/archive | Upload a replacement project source archive
152
+ *ProjectApi* | [**update_project**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#update_project) | **PATCH** /projects/{projectId} | Update a project
153
+ *ProjectApi* | [**upload_project_archive**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#upload_project_archive) | **POST** /projects/{projectId}/archive | Upload the initial project source archive
154
+ *ProjectBuildApi* | [**build_project**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildApi.md#build_project) | **POST** /projects/{projectId}/builds | Build a project
155
+ *ProjectBuildApi* | [**delete_project_build**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildApi.md#delete_project_build) | **DELETE** /projects/{projectId}/builds/{buildId} | Delete a project build
156
+ *ProjectBuildApi* | [**get_project_build**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildApi.md#get_project_build) | **GET** /projects/{projectId}/builds/{buildId} | List a project build details
157
+ *ProjectBuildApi* | [**get_project_build_logs**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildApi.md#get_project_build_logs) | **GET** /projects/{projectId}/builds/{buildId}/logs | Get a project build logs
158
+ *ProjectBuildApi* | [**get_project_build_package**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildApi.md#get_project_build_package) | **GET** /projects/{projectId}/builds/{buildId}/package | Get the produced built package
159
+ *ProjectBuildApi* | [**list_project_builds**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildApi.md#list_project_builds) | **GET** /projects/{projectId}/builds | List all builds of a project
160
+ *SimulatorApi* | [**check_simulator_semantic_errors**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#check_simulator_semantic_errors) | **POST** /projects/{projectId}/simulators/semantic | Check the semantic of a submitted simulator
161
+ *SimulatorApi* | [**create_probe**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#create_probe) | **POST** /projects/{projectId}/simulators/{simulatorId}/probes | Create a new probe
162
+ *SimulatorApi* | [**create_simulator**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#create_simulator) | **POST** /projects/{projectId}/simulators/{simulatorId} | Create a new simulator
163
+ *SimulatorApi* | [**delete_probe**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#delete_probe) | **DELETE** /projects/{projectId}/simulators/{simulatorId}/probes/{probeId} | Delete a probe
164
+ *SimulatorApi* | [**delete_simulator**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#delete_simulator) | **DELETE** /projects/{projectId}/simulators/{simulatorId} | Delete a simulator
165
+ *SimulatorApi* | [**get_probe**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#get_probe) | **GET** /projects/{projectId}/simulators/{simulatorId}/probes/{probeId} | Get a probe definition
166
+ *SimulatorApi* | [**get_simulator**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#get_simulator) | **GET** /projects/{projectId}/simulators/{simulatorId} | Get the content of a simulator
167
+ *SimulatorApi* | [**get_simulator_semantic_errors**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#get_simulator_semantic_errors) | **GET** /projects/{projectId}/simulators/{simulatorId}/semantic | Check the semantic of a submitted simulator
168
+ *SimulatorApi* | [**list_probes**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#list_probes) | **GET** /projects/{projectId}/simulators/{simulatorId}/probes | Get the list of probes of a simulator
169
+ *SimulatorApi* | [**list_simulators**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#list_simulators) | **GET** /projects/{projectId}/simulators | List the simulators of a project
170
+ *SimulatorApi* | [**replace_probe**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#replace_probe) | **PUT** /projects/{projectId}/simulators/{simulatorId}/probes/{probeId} | Replace a probe definition
171
+ *SimulatorApi* | [**replace_simulator**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#replace_simulator) | **PUT** /projects/{projectId}/simulators/{simulatorId} | Replace the content of a simulator
172
+ *SimulatorApi* | [**update_simulator**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#update_simulator) | **PATCH** /projects/{projectId}/simulators/{simulatorId} | Update the content of a simulator
173
+ *TransformationsApi* | [**check_transformations_semantic_errors**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#check_transformations_semantic_errors) | **POST** /projects/{projectId}/transformations/semantic | Check the semantic of a submitted transformations
174
+ *TransformationsApi* | [**create_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#create_operation) | **POST** /projects/{projectId}/transformations/{transformationsId}/operations | Create a new operation
175
+ *TransformationsApi* | [**create_transformations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#create_transformations) | **POST** /projects/{projectId}/transformations/{transformationsId} | Create a new transformations
176
+ *TransformationsApi* | [**delete_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#delete_operation) | **DELETE** /projects/{projectId}/transformations/{transformationsId}/operations/{operationId} | Delete an operation
177
+ *TransformationsApi* | [**delete_transformations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#delete_transformations) | **DELETE** /projects/{projectId}/transformations/{transformationsId} | Delete a transformations
178
+ *TransformationsApi* | [**get_building_workspace_for_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_building_workspace_for_operation) | **GET** /projects/{projectId}/transformations/{transformationsId}/operations/{operationId}/buildingWorkspace | Get the building workspace on which an operation can work
179
+ *TransformationsApi* | [**get_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_operation) | **GET** /projects/{projectId}/transformations/{transformationsId}/operations/{operationId} | Get an operation definition
180
+ *TransformationsApi* | [**get_resulting_model**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_resulting_model) | **GET** /projects/{projectId}/transformations/{transformationsId}/resultingModel | Get the final resulting model of a transformations resource
181
+ *TransformationsApi* | [**get_resulting_model_after_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_resulting_model_after_operation) | **GET** /projects/{projectId}/transformations/{transformationsId}/operations/{operationId}/resultingModel | Get the resulting model after a specific operation of a transformations resource
182
+ *TransformationsApi* | [**get_semantic_errors_for_resulting_model_after_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_semantic_errors_for_resulting_model_after_operation) | **GET** /projects/{projectId}/transformations/{transformationsId}/operations/{operationId}/resultingModel/semantic | Get the semantic errors of a resulting model after a specific operations of transformations
183
+ *TransformationsApi* | [**get_transformations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_transformations) | **GET** /projects/{projectId}/transformations/{transformationsId} | Get the content of a transformations
184
+ *TransformationsApi* | [**get_transformations_semantic_errors**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_transformations_semantic_errors) | **GET** /projects/{projectId}/transformations/{transformationsId}/semantic | Check the semantic of a submitted transformations
185
+ *TransformationsApi* | [**list_operations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#list_operations) | **GET** /projects/{projectId}/transformations/{transformationsId}/operations | Get the list of operations of a transformations
186
+ *TransformationsApi* | [**list_transformations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#list_transformations) | **GET** /projects/{projectId}/transformations | List the transformations of a project
187
+ *TransformationsApi* | [**replace_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#replace_operation) | **PUT** /projects/{projectId}/transformations/{transformationsId}/operations/{operationId} | Replace an operation definition
188
+ *TransformationsApi* | [**replace_transformations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#replace_transformations) | **PUT** /projects/{projectId}/transformations/{transformationsId} | Replace the content of a transformations
189
+ *TransformationsApi* | [**update_transformations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#update_transformations) | **PATCH** /projects/{projectId}/transformations/{transformationsId} | Update the content of a transformations
190
+
191
+
192
+ ## Documentation For Models
193
+
194
+ - [AboutInfo](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/AboutInfo.md)
195
+ - [AboutInfoVersion](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/AboutInfoVersion.md)
196
+ - [ProblemDetails](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProblemDetails.md)
197
+ - [ProblemDetailsSemanticErrors](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProblemDetailsSemanticErrors.md)
198
+ - [Project](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/Project.md)
199
+ - [ProjectBuild](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuild.md)
200
+ - [ProjectBuildRequest](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildRequest.md)
201
+ - [ProjectBuildRequestBuildConfig](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildRequestBuildConfig.md)
202
+ - [ProjectBuildRequestDockerSimulatorImage](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildRequestDockerSimulatorImage.md)
203
+ - [ProjectBuildStatus](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildStatus.md)
204
+ - [ProjectRequest](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectRequest.md)
205
+ - [SemanticError](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SemanticError.md)
206
+ - [SemanticErrorNodes](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SemanticErrorNodes.md)
207
+
208
+
209
+ <a id="documentation-for-authorization"></a>
210
+ ## Documentation For Authorization
211
+
212
+ Endpoints do not require authorization.
213
+
214
+
215
+ ## Author
216
+
217
+ platform@cosmotech.com
218
+
219
+
@@ -0,0 +1,200 @@
1
+ # cosmotech-modeling-api
2
+ Cosmo Tech Modeling API (12.2.0-40480.6d6a465d)
3
+
4
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
+
6
+ - API version: 12.2.0
7
+ - Package version: 12.2.0
8
+ - Generator version: 7.22.0
9
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
+
11
+ ## Requirements.
12
+
13
+ Python 3.10+
14
+
15
+ ## Installation & Usage
16
+ ### pip install
17
+
18
+ If the python package is hosted on a repository, you can install directly using:
19
+
20
+ ```sh
21
+ pip install git+https://github.com/cosmo-tech/cosmotech-modeling-api-python-client.git
22
+ ```
23
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/cosmo-tech/cosmotech-modeling-api-python-client.git`)
24
+
25
+ Then import the package:
26
+ ```python
27
+ import cosmotech_modeling_api
28
+ ```
29
+
30
+ ### Setuptools
31
+
32
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
33
+
34
+ ```sh
35
+ python setup.py install --user
36
+ ```
37
+ (or `sudo python setup.py install` to install the package for all users)
38
+
39
+ Then import the package:
40
+ ```python
41
+ import cosmotech_modeling_api
42
+ ```
43
+
44
+ ### Tests
45
+
46
+ Execute `pytest` to run the tests.
47
+
48
+ ## Getting Started
49
+
50
+ Please follow the [installation procedure](#installation--usage) and then run the following:
51
+
52
+ ```python
53
+
54
+ import cosmotech_modeling_api
55
+ from cosmotech_modeling_api.rest import ApiException
56
+ from pprint import pprint
57
+
58
+ # Defining the host is optional and defaults to http://localhost
59
+ # See configuration.py for a list of all supported configuration parameters.
60
+ configuration = cosmotech_modeling_api.Configuration(
61
+ host = "http://localhost"
62
+ )
63
+
64
+
65
+
66
+ # Enter a context with an instance of the API client
67
+ with cosmotech_modeling_api.ApiClient(configuration) as api_client:
68
+ # Create an instance of the API class
69
+ api_instance = cosmotech_modeling_api.ConceptualModelApi(api_client)
70
+ project_id = 'project_id_example' # str | The project identifier
71
+ body = None # object | Conceptual model content
72
+
73
+ try:
74
+ # Check the semantic of a submitted conceptual model
75
+ api_response = api_instance.check_conceptual_model_semantic_errors(project_id, body)
76
+ print("The response of ConceptualModelApi->check_conceptual_model_semantic_errors:\n")
77
+ pprint(api_response)
78
+ except ApiException as e:
79
+ print("Exception when calling ConceptualModelApi->check_conceptual_model_semantic_errors: %s\n" % e)
80
+
81
+ ```
82
+
83
+ ## Documentation for API Endpoints
84
+
85
+ All URIs are relative to *http://localhost*
86
+
87
+ Class | Method | HTTP request | Description
88
+ ------------ | ------------- | ------------- | -------------
89
+ *ConceptualModelApi* | [**check_conceptual_model_semantic_errors**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#check_conceptual_model_semantic_errors) | **POST** /projects/{projectId}/conceptualModels/semantic | Check the semantic of a submitted conceptual model
90
+ *ConceptualModelApi* | [**create_category**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#create_category) | **POST** /projects/{projectId}/conceptualModels/{conceptualModelId}/categories | Create a new category
91
+ *ConceptualModelApi* | [**create_conceptual_model**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#create_conceptual_model) | **POST** /projects/{projectId}/conceptualModels/{conceptualModelId} | Create a new conceptual model
92
+ *ConceptualModelApi* | [**create_data_type**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#create_data_type) | **POST** /projects/{projectId}/conceptualModels/{conceptualModelId}/dataTypes | Create a new data type
93
+ *ConceptualModelApi* | [**create_entity**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#create_entity) | **POST** /projects/{projectId}/conceptualModels/{conceptualModelId}/entities | Create a new entity
94
+ *ConceptualModelApi* | [**create_environment**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#create_environment) | **POST** /projects/{projectId}/conceptualModels/{conceptualModelId}/environments | Create a new environment
95
+ *ConceptualModelApi* | [**delete_category**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#delete_category) | **DELETE** /projects/{projectId}/conceptualModels/{conceptualModelId}/categories/{categoryId} | Delete a category
96
+ *ConceptualModelApi* | [**delete_conceptual_model**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#delete_conceptual_model) | **DELETE** /projects/{projectId}/conceptualModels/{conceptualModelId} | Delete a conceptal model
97
+ *ConceptualModelApi* | [**delete_data_type**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#delete_data_type) | **DELETE** /projects/{projectId}/conceptualModels/{conceptualModelId}/dataTypes/{dataTypeId} | Delete a data type
98
+ *ConceptualModelApi* | [**delete_entity**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#delete_entity) | **DELETE** /projects/{projectId}/conceptualModels/{conceptualModelId}/entities/{entityId} | Delete an entity
99
+ *ConceptualModelApi* | [**delete_environment**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#delete_environment) | **DELETE** /projects/{projectId}/conceptualModels/{conceptualModelId}/environments/{environmentId} | Delete an environment
100
+ *ConceptualModelApi* | [**get_category**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#get_category) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/categories/{categoryId} | Get a category definition
101
+ *ConceptualModelApi* | [**get_conceptual_model**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#get_conceptual_model) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId} | Get the content of a conceptual model
102
+ *ConceptualModelApi* | [**get_conceptual_model_semantic_errors**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#get_conceptual_model_semantic_errors) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/semantic | Check the semantic of a submitted conceptual model
103
+ *ConceptualModelApi* | [**get_data_type**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#get_data_type) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/dataTypes/{dataTypeId} | Get a data type definition
104
+ *ConceptualModelApi* | [**get_entity**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#get_entity) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/entities/{entityId} | Get an entity definition
105
+ *ConceptualModelApi* | [**get_environment**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#get_environment) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/environments/{environmentId} | Get an environment definition
106
+ *ConceptualModelApi* | [**list_categories**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#list_categories) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/categories | Get the list of categories of a model
107
+ *ConceptualModelApi* | [**list_conceptual_models**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#list_conceptual_models) | **GET** /projects/{projectId}/conceptualModels | List the conceptual models of a project
108
+ *ConceptualModelApi* | [**list_data_types**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#list_data_types) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/dataTypes | Get the list of data types of a model
109
+ *ConceptualModelApi* | [**list_entities**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#list_entities) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/entities | Get the list of entities of a model
110
+ *ConceptualModelApi* | [**list_environments**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#list_environments) | **GET** /projects/{projectId}/conceptualModels/{conceptualModelId}/environments | Get the list of environments of a model
111
+ *ConceptualModelApi* | [**replace_category**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#replace_category) | **PUT** /projects/{projectId}/conceptualModels/{conceptualModelId}/categories/{categoryId} | Replace a category definition
112
+ *ConceptualModelApi* | [**replace_conceptual_model**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#replace_conceptual_model) | **PUT** /projects/{projectId}/conceptualModels/{conceptualModelId} | Replace the content of a conceptual model
113
+ *ConceptualModelApi* | [**replace_data_type**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#replace_data_type) | **PUT** /projects/{projectId}/conceptualModels/{conceptualModelId}/dataTypes/{dataTypeId} | Replace a data type definition
114
+ *ConceptualModelApi* | [**replace_entity**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#replace_entity) | **PUT** /projects/{projectId}/conceptualModels/{conceptualModelId}/entities/{entityId} | Replace an entity definition
115
+ *ConceptualModelApi* | [**replace_environment**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#replace_environment) | **PUT** /projects/{projectId}/conceptualModels/{conceptualModelId}/environments/{environmentId} | Replace an environment definition
116
+ *ConceptualModelApi* | [**update_conceptual_model**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ConceptualModelApi.md#update_conceptual_model) | **PATCH** /projects/{projectId}/conceptualModels/{conceptualModelId} | Update the content of a conceptual model
117
+ *FileApi* | [**create_project_file**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/FileApi.md#create_project_file) | **POST** /projects/{projectId}/files/raw | Create a new project file
118
+ *FileApi* | [**delete_project_file**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/FileApi.md#delete_project_file) | **DELETE** /projects/{projectId}/files/raw | Delete a project file
119
+ *FileApi* | [**get_project_file**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/FileApi.md#get_project_file) | **GET** /projects/{projectId}/files/raw | Get the content of a project file
120
+ *FileApi* | [**list_project_files**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/FileApi.md#list_project_files) | **GET** /projects/{projectId}/files | List all files of a project
121
+ *FileApi* | [**replace_project_file**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/FileApi.md#replace_project_file) | **PUT** /projects/{projectId}/files/raw | Replace a project file
122
+ *MetaApi* | [**about**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/MetaApi.md#about) | **GET** /about | Retrieve API info
123
+ *MetaApi* | [**get_openapi**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/MetaApi.md#get_openapi) | **GET** /openapi.yaml | Get the OpenAPI description file
124
+ *MetaApi* | [**get_schema**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/MetaApi.md#get_schema) | **GET** /schemas/{schemaId} | Get a schema content
125
+ *MetaApi* | [**list_schemas**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/MetaApi.md#list_schemas) | **GET** /schemas | List all known JSON schemas
126
+ *ProjectApi* | [**create_project**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#create_project) | **POST** /projects | Create new a project
127
+ *ProjectApi* | [**delete_project**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#delete_project) | **DELETE** /projects/{projectId} | Delete a project
128
+ *ProjectApi* | [**delete_project_archive**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#delete_project_archive) | **DELETE** /projects/{projectId}/archive | Delete the project archive
129
+ *ProjectApi* | [**get_project**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#get_project) | **GET** /projects/{projectId} | List a project details
130
+ *ProjectApi* | [**get_project_archive**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#get_project_archive) | **GET** /projects/{projectId}/archive | Get the current project archive
131
+ *ProjectApi* | [**list_projects**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#list_projects) | **GET** /projects | List all projects
132
+ *ProjectApi* | [**replace_project_archive**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#replace_project_archive) | **PUT** /projects/{projectId}/archive | Upload a replacement project source archive
133
+ *ProjectApi* | [**update_project**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#update_project) | **PATCH** /projects/{projectId} | Update a project
134
+ *ProjectApi* | [**upload_project_archive**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectApi.md#upload_project_archive) | **POST** /projects/{projectId}/archive | Upload the initial project source archive
135
+ *ProjectBuildApi* | [**build_project**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildApi.md#build_project) | **POST** /projects/{projectId}/builds | Build a project
136
+ *ProjectBuildApi* | [**delete_project_build**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildApi.md#delete_project_build) | **DELETE** /projects/{projectId}/builds/{buildId} | Delete a project build
137
+ *ProjectBuildApi* | [**get_project_build**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildApi.md#get_project_build) | **GET** /projects/{projectId}/builds/{buildId} | List a project build details
138
+ *ProjectBuildApi* | [**get_project_build_logs**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildApi.md#get_project_build_logs) | **GET** /projects/{projectId}/builds/{buildId}/logs | Get a project build logs
139
+ *ProjectBuildApi* | [**get_project_build_package**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildApi.md#get_project_build_package) | **GET** /projects/{projectId}/builds/{buildId}/package | Get the produced built package
140
+ *ProjectBuildApi* | [**list_project_builds**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildApi.md#list_project_builds) | **GET** /projects/{projectId}/builds | List all builds of a project
141
+ *SimulatorApi* | [**check_simulator_semantic_errors**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#check_simulator_semantic_errors) | **POST** /projects/{projectId}/simulators/semantic | Check the semantic of a submitted simulator
142
+ *SimulatorApi* | [**create_probe**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#create_probe) | **POST** /projects/{projectId}/simulators/{simulatorId}/probes | Create a new probe
143
+ *SimulatorApi* | [**create_simulator**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#create_simulator) | **POST** /projects/{projectId}/simulators/{simulatorId} | Create a new simulator
144
+ *SimulatorApi* | [**delete_probe**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#delete_probe) | **DELETE** /projects/{projectId}/simulators/{simulatorId}/probes/{probeId} | Delete a probe
145
+ *SimulatorApi* | [**delete_simulator**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#delete_simulator) | **DELETE** /projects/{projectId}/simulators/{simulatorId} | Delete a simulator
146
+ *SimulatorApi* | [**get_probe**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#get_probe) | **GET** /projects/{projectId}/simulators/{simulatorId}/probes/{probeId} | Get a probe definition
147
+ *SimulatorApi* | [**get_simulator**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#get_simulator) | **GET** /projects/{projectId}/simulators/{simulatorId} | Get the content of a simulator
148
+ *SimulatorApi* | [**get_simulator_semantic_errors**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#get_simulator_semantic_errors) | **GET** /projects/{projectId}/simulators/{simulatorId}/semantic | Check the semantic of a submitted simulator
149
+ *SimulatorApi* | [**list_probes**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#list_probes) | **GET** /projects/{projectId}/simulators/{simulatorId}/probes | Get the list of probes of a simulator
150
+ *SimulatorApi* | [**list_simulators**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#list_simulators) | **GET** /projects/{projectId}/simulators | List the simulators of a project
151
+ *SimulatorApi* | [**replace_probe**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#replace_probe) | **PUT** /projects/{projectId}/simulators/{simulatorId}/probes/{probeId} | Replace a probe definition
152
+ *SimulatorApi* | [**replace_simulator**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#replace_simulator) | **PUT** /projects/{projectId}/simulators/{simulatorId} | Replace the content of a simulator
153
+ *SimulatorApi* | [**update_simulator**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SimulatorApi.md#update_simulator) | **PATCH** /projects/{projectId}/simulators/{simulatorId} | Update the content of a simulator
154
+ *TransformationsApi* | [**check_transformations_semantic_errors**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#check_transformations_semantic_errors) | **POST** /projects/{projectId}/transformations/semantic | Check the semantic of a submitted transformations
155
+ *TransformationsApi* | [**create_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#create_operation) | **POST** /projects/{projectId}/transformations/{transformationsId}/operations | Create a new operation
156
+ *TransformationsApi* | [**create_transformations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#create_transformations) | **POST** /projects/{projectId}/transformations/{transformationsId} | Create a new transformations
157
+ *TransformationsApi* | [**delete_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#delete_operation) | **DELETE** /projects/{projectId}/transformations/{transformationsId}/operations/{operationId} | Delete an operation
158
+ *TransformationsApi* | [**delete_transformations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#delete_transformations) | **DELETE** /projects/{projectId}/transformations/{transformationsId} | Delete a transformations
159
+ *TransformationsApi* | [**get_building_workspace_for_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_building_workspace_for_operation) | **GET** /projects/{projectId}/transformations/{transformationsId}/operations/{operationId}/buildingWorkspace | Get the building workspace on which an operation can work
160
+ *TransformationsApi* | [**get_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_operation) | **GET** /projects/{projectId}/transformations/{transformationsId}/operations/{operationId} | Get an operation definition
161
+ *TransformationsApi* | [**get_resulting_model**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_resulting_model) | **GET** /projects/{projectId}/transformations/{transformationsId}/resultingModel | Get the final resulting model of a transformations resource
162
+ *TransformationsApi* | [**get_resulting_model_after_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_resulting_model_after_operation) | **GET** /projects/{projectId}/transformations/{transformationsId}/operations/{operationId}/resultingModel | Get the resulting model after a specific operation of a transformations resource
163
+ *TransformationsApi* | [**get_semantic_errors_for_resulting_model_after_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_semantic_errors_for_resulting_model_after_operation) | **GET** /projects/{projectId}/transformations/{transformationsId}/operations/{operationId}/resultingModel/semantic | Get the semantic errors of a resulting model after a specific operations of transformations
164
+ *TransformationsApi* | [**get_transformations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_transformations) | **GET** /projects/{projectId}/transformations/{transformationsId} | Get the content of a transformations
165
+ *TransformationsApi* | [**get_transformations_semantic_errors**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#get_transformations_semantic_errors) | **GET** /projects/{projectId}/transformations/{transformationsId}/semantic | Check the semantic of a submitted transformations
166
+ *TransformationsApi* | [**list_operations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#list_operations) | **GET** /projects/{projectId}/transformations/{transformationsId}/operations | Get the list of operations of a transformations
167
+ *TransformationsApi* | [**list_transformations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#list_transformations) | **GET** /projects/{projectId}/transformations | List the transformations of a project
168
+ *TransformationsApi* | [**replace_operation**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#replace_operation) | **PUT** /projects/{projectId}/transformations/{transformationsId}/operations/{operationId} | Replace an operation definition
169
+ *TransformationsApi* | [**replace_transformations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#replace_transformations) | **PUT** /projects/{projectId}/transformations/{transformationsId} | Replace the content of a transformations
170
+ *TransformationsApi* | [**update_transformations**](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/TransformationsApi.md#update_transformations) | **PATCH** /projects/{projectId}/transformations/{transformationsId} | Update the content of a transformations
171
+
172
+
173
+ ## Documentation For Models
174
+
175
+ - [AboutInfo](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/AboutInfo.md)
176
+ - [AboutInfoVersion](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/AboutInfoVersion.md)
177
+ - [ProblemDetails](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProblemDetails.md)
178
+ - [ProblemDetailsSemanticErrors](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProblemDetailsSemanticErrors.md)
179
+ - [Project](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/Project.md)
180
+ - [ProjectBuild](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuild.md)
181
+ - [ProjectBuildRequest](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildRequest.md)
182
+ - [ProjectBuildRequestBuildConfig](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildRequestBuildConfig.md)
183
+ - [ProjectBuildRequestDockerSimulatorImage](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildRequestDockerSimulatorImage.md)
184
+ - [ProjectBuildStatus](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectBuildStatus.md)
185
+ - [ProjectRequest](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/ProjectRequest.md)
186
+ - [SemanticError](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SemanticError.md)
187
+ - [SemanticErrorNodes](https://github.com/Cosmo-Tech/cosmotech-modeling-api-python-client/tree/12.2.0/docs/SemanticErrorNodes.md)
188
+
189
+
190
+ <a id="documentation-for-authorization"></a>
191
+ ## Documentation For Authorization
192
+
193
+ Endpoints do not require authorization.
194
+
195
+
196
+ ## Author
197
+
198
+ platform@cosmotech.com
199
+
200
+
@@ -0,0 +1,87 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Cosmo Tech Modeling API
7
+
8
+ Cosmo Tech Modeling API (12.2.0-40480.6d6a465d)
9
+
10
+ The version of the OpenAPI document: 12.2.0
11
+ Contact: platform@cosmotech.com
12
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
13
+
14
+ Do not edit the class manually.
15
+ """ # noqa: E501
16
+
17
+
18
+ __version__ = "12.2.0"
19
+
20
+ # Define package exports
21
+ __all__ = [
22
+ "ConceptualModelApi",
23
+ "FileApi",
24
+ "MetaApi",
25
+ "ProjectApi",
26
+ "ProjectBuildApi",
27
+ "SimulatorApi",
28
+ "TransformationsApi",
29
+ "ApiResponse",
30
+ "ApiClient",
31
+ "Configuration",
32
+ "OpenApiException",
33
+ "ApiTypeError",
34
+ "ApiValueError",
35
+ "ApiKeyError",
36
+ "ApiAttributeError",
37
+ "ApiException",
38
+ "AboutInfo",
39
+ "AboutInfoVersion",
40
+ "ProblemDetails",
41
+ "ProblemDetailsSemanticErrors",
42
+ "Project",
43
+ "ProjectBuild",
44
+ "ProjectBuildRequest",
45
+ "ProjectBuildRequestBuildConfig",
46
+ "ProjectBuildRequestDockerSimulatorImage",
47
+ "ProjectBuildStatus",
48
+ "ProjectRequest",
49
+ "SemanticError",
50
+ "SemanticErrorNodes",
51
+ ]
52
+
53
+ # import apis into sdk package
54
+ from cosmotech_modeling_api.api.conceptual_model_api import ConceptualModelApi as ConceptualModelApi
55
+ from cosmotech_modeling_api.api.file_api import FileApi as FileApi
56
+ from cosmotech_modeling_api.api.meta_api import MetaApi as MetaApi
57
+ from cosmotech_modeling_api.api.project_api import ProjectApi as ProjectApi
58
+ from cosmotech_modeling_api.api.project_build_api import ProjectBuildApi as ProjectBuildApi
59
+ from cosmotech_modeling_api.api.simulator_api import SimulatorApi as SimulatorApi
60
+ from cosmotech_modeling_api.api.transformations_api import TransformationsApi as TransformationsApi
61
+
62
+ # import ApiClient
63
+ from cosmotech_modeling_api.api_response import ApiResponse as ApiResponse
64
+ from cosmotech_modeling_api.api_client import ApiClient as ApiClient
65
+ from cosmotech_modeling_api.configuration import Configuration as Configuration
66
+ from cosmotech_modeling_api.exceptions import OpenApiException as OpenApiException
67
+ from cosmotech_modeling_api.exceptions import ApiTypeError as ApiTypeError
68
+ from cosmotech_modeling_api.exceptions import ApiValueError as ApiValueError
69
+ from cosmotech_modeling_api.exceptions import ApiKeyError as ApiKeyError
70
+ from cosmotech_modeling_api.exceptions import ApiAttributeError as ApiAttributeError
71
+ from cosmotech_modeling_api.exceptions import ApiException as ApiException
72
+
73
+ # import models into sdk package
74
+ from cosmotech_modeling_api.models.about_info import AboutInfo as AboutInfo
75
+ from cosmotech_modeling_api.models.about_info_version import AboutInfoVersion as AboutInfoVersion
76
+ from cosmotech_modeling_api.models.problem_details import ProblemDetails as ProblemDetails
77
+ from cosmotech_modeling_api.models.problem_details_semantic_errors import ProblemDetailsSemanticErrors as ProblemDetailsSemanticErrors
78
+ from cosmotech_modeling_api.models.project import Project as Project
79
+ from cosmotech_modeling_api.models.project_build import ProjectBuild as ProjectBuild
80
+ from cosmotech_modeling_api.models.project_build_request import ProjectBuildRequest as ProjectBuildRequest
81
+ from cosmotech_modeling_api.models.project_build_request_build_config import ProjectBuildRequestBuildConfig as ProjectBuildRequestBuildConfig
82
+ from cosmotech_modeling_api.models.project_build_request_docker_simulator_image import ProjectBuildRequestDockerSimulatorImage as ProjectBuildRequestDockerSimulatorImage
83
+ from cosmotech_modeling_api.models.project_build_status import ProjectBuildStatus as ProjectBuildStatus
84
+ from cosmotech_modeling_api.models.project_request import ProjectRequest as ProjectRequest
85
+ from cosmotech_modeling_api.models.semantic_error import SemanticError as SemanticError
86
+ from cosmotech_modeling_api.models.semantic_error_nodes import SemanticErrorNodes as SemanticErrorNodes
87
+
@@ -0,0 +1,11 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from cosmotech_modeling_api.api.conceptual_model_api import ConceptualModelApi
5
+ from cosmotech_modeling_api.api.file_api import FileApi
6
+ from cosmotech_modeling_api.api.meta_api import MetaApi
7
+ from cosmotech_modeling_api.api.project_api import ProjectApi
8
+ from cosmotech_modeling_api.api.project_build_api import ProjectBuildApi
9
+ from cosmotech_modeling_api.api.simulator_api import SimulatorApi
10
+ from cosmotech_modeling_api.api.transformations_api import TransformationsApi
11
+