terra-scientific-pipelines-service-api-client 0.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of terra-scientific-pipelines-service-api-client might be problematic. Click here for more details.

Files changed (71) hide show
  1. terra_scientific_pipelines_service_api_client-0.0.0/PKG-INFO +16 -0
  2. terra_scientific_pipelines_service_api_client-0.0.0/README.md +161 -0
  3. terra_scientific_pipelines_service_api_client-0.0.0/pyproject.toml +71 -0
  4. terra_scientific_pipelines_service_api_client-0.0.0/setup.cfg +7 -0
  5. terra_scientific_pipelines_service_api_client-0.0.0/setup.py +49 -0
  6. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/__init__.py +58 -0
  7. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/api/__init__.py +9 -0
  8. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/api/admin_api.py +599 -0
  9. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/api/jobs_api.py +588 -0
  10. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/api/pipeline_runs_api.py +1203 -0
  11. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/api/pipelines_api.py +547 -0
  12. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/api/public_api.py +528 -0
  13. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/api_client.py +788 -0
  14. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/api_response.py +21 -0
  15. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/configuration.py +465 -0
  16. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/exceptions.py +199 -0
  17. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/__init__.py +37 -0
  18. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/admin_pipeline.py +101 -0
  19. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/async_pipeline_run_response.py +103 -0
  20. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/error_report.py +91 -0
  21. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/get_jobs_response.py +99 -0
  22. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/get_pipeline_runs_response.py +97 -0
  23. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/get_pipelines_result.py +95 -0
  24. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/job_control.py +87 -0
  25. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/job_report.py +106 -0
  26. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/job_result.py +97 -0
  27. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/pipeline.py +91 -0
  28. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/pipeline_run.py +91 -0
  29. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/pipeline_run_report.py +93 -0
  30. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/pipeline_user_provided_input_definition.py +91 -0
  31. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/pipeline_with_details.py +103 -0
  32. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/prepare_pipeline_run_request_body.py +91 -0
  33. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/prepare_pipeline_run_response.py +89 -0
  34. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/start_pipeline_run_request_body.py +93 -0
  35. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/system_status.py +102 -0
  36. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/system_status_systems_value.py +89 -0
  37. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/update_pipeline_request_body.py +91 -0
  38. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/models/version_properties.py +93 -0
  39. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/py.typed +0 -0
  40. terra_scientific_pipelines_service_api_client-0.0.0/teaspoons_client/rest.py +257 -0
  41. terra_scientific_pipelines_service_api_client-0.0.0/terra_scientific_pipelines_service_api_client.egg-info/PKG-INFO +16 -0
  42. terra_scientific_pipelines_service_api_client-0.0.0/terra_scientific_pipelines_service_api_client.egg-info/SOURCES.txt +70 -0
  43. terra_scientific_pipelines_service_api_client-0.0.0/terra_scientific_pipelines_service_api_client.egg-info/dependency_links.txt +1 -0
  44. terra_scientific_pipelines_service_api_client-0.0.0/terra_scientific_pipelines_service_api_client.egg-info/requires.txt +4 -0
  45. terra_scientific_pipelines_service_api_client-0.0.0/terra_scientific_pipelines_service_api_client.egg-info/top_level.txt +1 -0
  46. terra_scientific_pipelines_service_api_client-0.0.0/test/test_admin_api.py +45 -0
  47. terra_scientific_pipelines_service_api_client-0.0.0/test/test_admin_pipeline.py +66 -0
  48. terra_scientific_pipelines_service_api_client-0.0.0/test/test_async_pipeline_run_response.py +86 -0
  49. terra_scientific_pipelines_service_api_client-0.0.0/test/test_error_report.py +60 -0
  50. terra_scientific_pipelines_service_api_client-0.0.0/test/test_get_jobs_response.py +62 -0
  51. terra_scientific_pipelines_service_api_client-0.0.0/test/test_get_pipeline_runs_response.py +57 -0
  52. terra_scientific_pipelines_service_api_client-0.0.0/test/test_get_pipelines_result.py +56 -0
  53. terra_scientific_pipelines_service_api_client-0.0.0/test/test_job_control.py +52 -0
  54. terra_scientific_pipelines_service_api_client-0.0.0/test/test_job_report.py +61 -0
  55. terra_scientific_pipelines_service_api_client-0.0.0/test/test_job_result.py +72 -0
  56. terra_scientific_pipelines_service_api_client-0.0.0/test/test_jobs_api.py +45 -0
  57. terra_scientific_pipelines_service_api_client-0.0.0/test/test_pipeline.py +56 -0
  58. terra_scientific_pipelines_service_api_client-0.0.0/test/test_pipeline_run.py +54 -0
  59. terra_scientific_pipelines_service_api_client-0.0.0/test/test_pipeline_run_report.py +59 -0
  60. terra_scientific_pipelines_service_api_client-0.0.0/test/test_pipeline_runs_api.py +59 -0
  61. terra_scientific_pipelines_service_api_client-0.0.0/test/test_pipeline_user_provided_input_definition.py +53 -0
  62. terra_scientific_pipelines_service_api_client-0.0.0/test/test_pipeline_with_details.py +70 -0
  63. terra_scientific_pipelines_service_api_client-0.0.0/test/test_pipelines_api.py +45 -0
  64. terra_scientific_pipelines_service_api_client-0.0.0/test/test_prepare_pipeline_run_request_body.py +60 -0
  65. terra_scientific_pipelines_service_api_client-0.0.0/test/test_prepare_pipeline_run_response.py +56 -0
  66. terra_scientific_pipelines_service_api_client-0.0.0/test/test_public_api.py +45 -0
  67. terra_scientific_pipelines_service_api_client-0.0.0/test/test_start_pipeline_run_request_body.py +55 -0
  68. terra_scientific_pipelines_service_api_client-0.0.0/test/test_system_status.py +66 -0
  69. terra_scientific_pipelines_service_api_client-0.0.0/test/test_system_status_systems_value.py +54 -0
  70. terra_scientific_pipelines_service_api_client-0.0.0/test/test_update_pipeline_request_body.py +56 -0
  71. terra_scientific_pipelines_service_api_client-0.0.0/test/test_version_properties.py +54 -0
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: terra-scientific-pipelines-service-api-client
3
+ Version: 0.0.0
4
+ Summary: Terra Scientific Pipelines Service
5
+ Home-page:
6
+ Author: OpenAPI Generator community
7
+ Author-email: team@openapitools.org
8
+ Keywords: OpenAPI,OpenAPI-Generator,Terra Scientific Pipelines Service
9
+ Description-Content-Type: text/markdown
10
+ Requires-Dist: urllib3<2.1.0,>=1.25.3
11
+ Requires-Dist: python-dateutil
12
+ Requires-Dist: pydantic>=2
13
+ Requires-Dist: typing-extensions>=4.7.1
14
+
15
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
16
+
@@ -0,0 +1,161 @@
1
+ # terra-scientific-pipelines-service-api-client
2
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
+
6
+ - API version: 1.0.0
7
+ - Package version: 0.0.0
8
+ - Generator version: 7.8.0
9
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
+
11
+ ## Requirements.
12
+
13
+ Python 3.7+
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/GIT_USER_ID/GIT_REPO_ID.git
22
+ ```
23
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
24
+
25
+ Then import the package:
26
+ ```python
27
+ import teaspoons_client
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 teaspoons_client
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 teaspoons_client
55
+ from teaspoons_client.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 = teaspoons_client.Configuration(
61
+ host = "http://localhost"
62
+ )
63
+
64
+ # The client must configure the authentication and authorization parameters
65
+ # in accordance with the API server security policy.
66
+ # Examples for each auth method are provided below, use the example that
67
+ # satisfies your auth use case.
68
+
69
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
70
+
71
+ # Configure Bearer authorization: bearerAuth
72
+ configuration = teaspoons_client.Configuration(
73
+ access_token = os.environ["BEARER_TOKEN"]
74
+ )
75
+
76
+
77
+ # Enter a context with an instance of the API client
78
+ with teaspoons_client.ApiClient(configuration) as api_client:
79
+ # Create an instance of the API class
80
+ api_instance = teaspoons_client.AdminApi(api_client)
81
+ pipeline_name = 'pipeline_name_example' # str | A string identifier to used to identify a pipeline in the service.
82
+
83
+ try:
84
+ # Get description for a given pipeline.
85
+ api_response = api_instance.get_pipeline(pipeline_name)
86
+ print("The response of AdminApi->get_pipeline:\n")
87
+ pprint(api_response)
88
+ except ApiException as e:
89
+ print("Exception when calling AdminApi->get_pipeline: %s\n" % e)
90
+
91
+ ```
92
+
93
+ ## Documentation for API Endpoints
94
+
95
+ All URIs are relative to *http://localhost*
96
+
97
+ Class | Method | HTTP request | Description
98
+ ------------ | ------------- | ------------- | -------------
99
+ *AdminApi* | [**get_pipeline**](docs/AdminApi.md#get_pipeline) | **GET** /api/admin/v1/pipeline/{pipelineName} | Get description for a given pipeline.
100
+ *AdminApi* | [**update_pipeline**](docs/AdminApi.md#update_pipeline) | **PATCH** /api/admin/v1/pipeline/{pipelineName} | Update attributes for a given pipeline.
101
+ *JobsApi* | [**get_all_jobs**](docs/JobsApi.md#get_all_jobs) | **GET** /api/job/v1/jobs | Return a list of all jobs the caller has access to
102
+ *JobsApi* | [**get_job**](docs/JobsApi.md#get_job) | **GET** /api/job/v1/jobs/{jobId} | Retrieve a specified job
103
+ *PipelineRunsApi* | [**get_all_pipeline_runs**](docs/PipelineRunsApi.md#get_all_pipeline_runs) | **GET** /api/pipelineruns/v1/pipelineruns | Return a paginated list of all pipeline runs the caller has access to
104
+ *PipelineRunsApi* | [**get_pipeline_run_result**](docs/PipelineRunsApi.md#get_pipeline_run_result) | **GET** /api/pipelineruns/v1/{pipelineName}/result/{jobId} | Retrieve result for a specified pipeline run
105
+ *PipelineRunsApi* | [**prepare_pipeline_run**](docs/PipelineRunsApi.md#prepare_pipeline_run) | **POST** /api/pipelineruns/v1/{pipelineName}/prepare | Prepare a new pipeline run
106
+ *PipelineRunsApi* | [**start_pipeline_run**](docs/PipelineRunsApi.md#start_pipeline_run) | **POST** /api/pipelineruns/v1/{pipelineName}/start | Start a prepared pipeline run
107
+ *PipelinesApi* | [**get_pipeline_details**](docs/PipelinesApi.md#get_pipeline_details) | **GET** /api/pipelines/v1/{pipelineName} | Return info about the specified pipeline
108
+ *PipelinesApi* | [**get_pipelines**](docs/PipelinesApi.md#get_pipelines) | **GET** /api/pipelines/v1 | Return all available Pipelines
109
+ *PublicApi* | [**get_status**](docs/PublicApi.md#get_status) | **GET** /status | Check status of the service.
110
+ *PublicApi* | [**get_version**](docs/PublicApi.md#get_version) | **GET** /version | Get version info of the deployed service.
111
+
112
+
113
+ ## Documentation For Models
114
+
115
+ - [AdminPipeline](docs/AdminPipeline.md)
116
+ - [AsyncPipelineRunResponse](docs/AsyncPipelineRunResponse.md)
117
+ - [ErrorReport](docs/ErrorReport.md)
118
+ - [GetJobsResponse](docs/GetJobsResponse.md)
119
+ - [GetPipelineRunsResponse](docs/GetPipelineRunsResponse.md)
120
+ - [GetPipelinesResult](docs/GetPipelinesResult.md)
121
+ - [JobControl](docs/JobControl.md)
122
+ - [JobReport](docs/JobReport.md)
123
+ - [JobResult](docs/JobResult.md)
124
+ - [Pipeline](docs/Pipeline.md)
125
+ - [PipelineRun](docs/PipelineRun.md)
126
+ - [PipelineRunReport](docs/PipelineRunReport.md)
127
+ - [PipelineUserProvidedInputDefinition](docs/PipelineUserProvidedInputDefinition.md)
128
+ - [PipelineWithDetails](docs/PipelineWithDetails.md)
129
+ - [PreparePipelineRunRequestBody](docs/PreparePipelineRunRequestBody.md)
130
+ - [PreparePipelineRunResponse](docs/PreparePipelineRunResponse.md)
131
+ - [StartPipelineRunRequestBody](docs/StartPipelineRunRequestBody.md)
132
+ - [SystemStatus](docs/SystemStatus.md)
133
+ - [SystemStatusSystemsValue](docs/SystemStatusSystemsValue.md)
134
+ - [UpdatePipelineRequestBody](docs/UpdatePipelineRequestBody.md)
135
+ - [VersionProperties](docs/VersionProperties.md)
136
+
137
+
138
+ <a id="documentation-for-authorization"></a>
139
+ ## Documentation For Authorization
140
+
141
+
142
+ Authentication schemes defined for the API:
143
+ <a id="oidc"></a>
144
+ ### oidc
145
+
146
+ - **Type**: OAuth
147
+ - **Flow**: accessCode
148
+ - **Authorization URL**: [[${authorityEndpoint}]]
149
+ - **Scopes**: N/A
150
+
151
+ <a id="bearerAuth"></a>
152
+ ### bearerAuth
153
+
154
+ - **Type**: Bearer authentication
155
+
156
+
157
+ ## Author
158
+
159
+
160
+
161
+
@@ -0,0 +1,71 @@
1
+ [tool.poetry]
2
+ name = "teaspoons_client"
3
+ version = "0.0.0"
4
+ description = "Terra Scientific Pipelines Service"
5
+ authors = ["OpenAPI Generator Community <team@openapitools.org>"]
6
+ license = "NoLicense"
7
+ readme = "README.md"
8
+ repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
9
+ keywords = ["OpenAPI", "OpenAPI-Generator", "Terra Scientific Pipelines Service"]
10
+ include = ["teaspoons_client/py.typed"]
11
+
12
+ [tool.poetry.dependencies]
13
+ python = "^3.7"
14
+
15
+ urllib3 = ">= 1.25.3"
16
+ python-dateutil = ">=2.8.2"
17
+ pydantic = ">=2"
18
+ typing-extensions = ">=4.7.1"
19
+
20
+ [tool.poetry.dev-dependencies]
21
+ pytest = ">=7.2.1"
22
+ tox = ">=3.9.0"
23
+ flake8 = ">=4.0.0"
24
+ types-python-dateutil = ">=2.8.19.14"
25
+ mypy = "1.4.1"
26
+
27
+
28
+ [build-system]
29
+ requires = ["setuptools"]
30
+ build-backend = "setuptools.build_meta"
31
+
32
+ [tool.pylint.'MESSAGES CONTROL']
33
+ extension-pkg-whitelist = "pydantic"
34
+
35
+ [tool.mypy]
36
+ files = [
37
+ "teaspoons_client",
38
+ #"test", # auto-generated tests
39
+ "tests", # hand-written tests
40
+ ]
41
+ # TODO: enable "strict" once all these individual checks are passing
42
+ # strict = true
43
+
44
+ # List from: https://mypy.readthedocs.io/en/stable/existing_code.html#introduce-stricter-options
45
+ warn_unused_configs = true
46
+ warn_redundant_casts = true
47
+ warn_unused_ignores = true
48
+
49
+ ## Getting these passing should be easy
50
+ strict_equality = true
51
+ strict_concatenate = true
52
+
53
+ ## Strongly recommend enabling this one as soon as you can
54
+ check_untyped_defs = true
55
+
56
+ ## These shouldn't be too much additional work, but may be tricky to
57
+ ## get passing if you use a lot of untyped libraries
58
+ disallow_subclassing_any = true
59
+ disallow_untyped_decorators = true
60
+ disallow_any_generics = true
61
+
62
+ ### These next few are various gradations of forcing use of type annotations
63
+ #disallow_untyped_calls = true
64
+ #disallow_incomplete_defs = true
65
+ #disallow_untyped_defs = true
66
+ #
67
+ ### This one isn't too hard to get passing, but return on investment is lower
68
+ #no_implicit_reexport = true
69
+ #
70
+ ### This one can be tricky to get passing if you use a lot of untyped libraries
71
+ #warn_return_any = true
@@ -0,0 +1,7 @@
1
+ [flake8]
2
+ max-line-length = 99
3
+
4
+ [egg_info]
5
+ tag_build =
6
+ tag_date = 0
7
+
@@ -0,0 +1,49 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Terra Scientific Pipelines Service
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from setuptools import setup, find_packages # noqa: H301
16
+
17
+ # To install the library, run the following
18
+ #
19
+ # python setup.py install
20
+ #
21
+ # prerequisite: setuptools
22
+ # http://pypi.python.org/pypi/setuptools
23
+ NAME = "terra-scientific-pipelines-service-api-client"
24
+ VERSION = "0.0.0"
25
+ PYTHON_REQUIRES = ">=3.7"
26
+ REQUIRES = [
27
+ "urllib3 >= 1.25.3, < 2.1.0",
28
+ "python-dateutil",
29
+ "pydantic >= 2",
30
+ "typing-extensions >= 4.7.1",
31
+ ]
32
+
33
+ setup(
34
+ name=NAME,
35
+ version=VERSION,
36
+ description="Terra Scientific Pipelines Service",
37
+ author="OpenAPI Generator community",
38
+ author_email="team@openapitools.org",
39
+ url="",
40
+ keywords=["OpenAPI", "OpenAPI-Generator", "Terra Scientific Pipelines Service"],
41
+ install_requires=REQUIRES,
42
+ packages=find_packages(exclude=["test", "tests"]),
43
+ include_package_data=True,
44
+ long_description_content_type='text/markdown',
45
+ long_description="""\
46
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
47
+ """, # noqa: E501
48
+ package_data={"teaspoons_client": ["py.typed"]},
49
+ )
@@ -0,0 +1,58 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Terra Scientific Pipelines Service
7
+
8
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
9
+
10
+ The version of the OpenAPI document: 1.0.0
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ __version__ = "0.0.0"
18
+
19
+ # import apis into sdk package
20
+ from teaspoons_client.api.admin_api import AdminApi
21
+ from teaspoons_client.api.jobs_api import JobsApi
22
+ from teaspoons_client.api.pipeline_runs_api import PipelineRunsApi
23
+ from teaspoons_client.api.pipelines_api import PipelinesApi
24
+ from teaspoons_client.api.public_api import PublicApi
25
+
26
+ # import ApiClient
27
+ from teaspoons_client.api_response import ApiResponse
28
+ from teaspoons_client.api_client import ApiClient
29
+ from teaspoons_client.configuration import Configuration
30
+ from teaspoons_client.exceptions import OpenApiException
31
+ from teaspoons_client.exceptions import ApiTypeError
32
+ from teaspoons_client.exceptions import ApiValueError
33
+ from teaspoons_client.exceptions import ApiKeyError
34
+ from teaspoons_client.exceptions import ApiAttributeError
35
+ from teaspoons_client.exceptions import ApiException
36
+
37
+ # import models into sdk package
38
+ from teaspoons_client.models.admin_pipeline import AdminPipeline
39
+ from teaspoons_client.models.async_pipeline_run_response import AsyncPipelineRunResponse
40
+ from teaspoons_client.models.error_report import ErrorReport
41
+ from teaspoons_client.models.get_jobs_response import GetJobsResponse
42
+ from teaspoons_client.models.get_pipeline_runs_response import GetPipelineRunsResponse
43
+ from teaspoons_client.models.get_pipelines_result import GetPipelinesResult
44
+ from teaspoons_client.models.job_control import JobControl
45
+ from teaspoons_client.models.job_report import JobReport
46
+ from teaspoons_client.models.job_result import JobResult
47
+ from teaspoons_client.models.pipeline import Pipeline
48
+ from teaspoons_client.models.pipeline_run import PipelineRun
49
+ from teaspoons_client.models.pipeline_run_report import PipelineRunReport
50
+ from teaspoons_client.models.pipeline_user_provided_input_definition import PipelineUserProvidedInputDefinition
51
+ from teaspoons_client.models.pipeline_with_details import PipelineWithDetails
52
+ from teaspoons_client.models.prepare_pipeline_run_request_body import PreparePipelineRunRequestBody
53
+ from teaspoons_client.models.prepare_pipeline_run_response import PreparePipelineRunResponse
54
+ from teaspoons_client.models.start_pipeline_run_request_body import StartPipelineRunRequestBody
55
+ from teaspoons_client.models.system_status import SystemStatus
56
+ from teaspoons_client.models.system_status_systems_value import SystemStatusSystemsValue
57
+ from teaspoons_client.models.update_pipeline_request_body import UpdatePipelineRequestBody
58
+ from teaspoons_client.models.version_properties import VersionProperties
@@ -0,0 +1,9 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from teaspoons_client.api.admin_api import AdminApi
5
+ from teaspoons_client.api.jobs_api import JobsApi
6
+ from teaspoons_client.api.pipeline_runs_api import PipelineRunsApi
7
+ from teaspoons_client.api.pipelines_api import PipelinesApi
8
+ from teaspoons_client.api.public_api import PublicApi
9
+