cosmotech-modeling-api 12.2.0__py3-none-any.whl

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 (34) hide show
  1. cosmotech_modeling_api/__init__.py +87 -0
  2. cosmotech_modeling_api/api/__init__.py +11 -0
  3. cosmotech_modeling_api/api/conceptual_model_api.py +8203 -0
  4. cosmotech_modeling_api/api/file_api.py +1426 -0
  5. cosmotech_modeling_api/api/meta_api.py +1022 -0
  6. cosmotech_modeling_api/api/project_api.py +2407 -0
  7. cosmotech_modeling_api/api/project_build_api.py +1663 -0
  8. cosmotech_modeling_api/api/simulator_api.py +3766 -0
  9. cosmotech_modeling_api/api/transformations_api.py +4927 -0
  10. cosmotech_modeling_api/api_client.py +805 -0
  11. cosmotech_modeling_api/api_response.py +21 -0
  12. cosmotech_modeling_api/configuration.py +597 -0
  13. cosmotech_modeling_api/exceptions.py +219 -0
  14. cosmotech_modeling_api/models/__init__.py +30 -0
  15. cosmotech_modeling_api/models/about_info.py +108 -0
  16. cosmotech_modeling_api/models/about_info_version.py +114 -0
  17. cosmotech_modeling_api/models/problem_details.py +108 -0
  18. cosmotech_modeling_api/models/problem_details_semantic_errors.py +118 -0
  19. cosmotech_modeling_api/models/project.py +113 -0
  20. cosmotech_modeling_api/models/project_build.py +108 -0
  21. cosmotech_modeling_api/models/project_build_request.py +118 -0
  22. cosmotech_modeling_api/models/project_build_request_build_config.py +106 -0
  23. cosmotech_modeling_api/models/project_build_request_docker_simulator_image.py +106 -0
  24. cosmotech_modeling_api/models/project_build_status.py +116 -0
  25. cosmotech_modeling_api/models/project_request.py +104 -0
  26. cosmotech_modeling_api/models/semantic_error.py +108 -0
  27. cosmotech_modeling_api/models/semantic_error_nodes.py +104 -0
  28. cosmotech_modeling_api/py.typed +0 -0
  29. cosmotech_modeling_api/rest.py +264 -0
  30. cosmotech_modeling_api-12.2.0.dist-info/METADATA +219 -0
  31. cosmotech_modeling_api-12.2.0.dist-info/RECORD +34 -0
  32. cosmotech_modeling_api-12.2.0.dist-info/WHEEL +5 -0
  33. cosmotech_modeling_api-12.2.0.dist-info/licenses/LICENSE +10 -0
  34. cosmotech_modeling_api-12.2.0.dist-info/top_level.txt +1 -0
@@ -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
+