terra-scientific-pipelines-service-api-client 0.1.28__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.
Potentially problematic release.
This version of terra-scientific-pipelines-service-api-client might be problematic. Click here for more details.
- teaspoons_client/__init__.py +63 -0
- teaspoons_client/api/__init__.py +10 -0
- teaspoons_client/api/admin_api.py +1229 -0
- teaspoons_client/api/jobs_api.py +592 -0
- teaspoons_client/api/pipeline_runs_api.py +1166 -0
- teaspoons_client/api/pipelines_api.py +581 -0
- teaspoons_client/api/public_api.py +532 -0
- teaspoons_client/api/quotas_api.py +303 -0
- teaspoons_client/api_client.py +797 -0
- teaspoons_client/api_response.py +21 -0
- teaspoons_client/configuration.py +465 -0
- teaspoons_client/exceptions.py +199 -0
- teaspoons_client/models/__init__.py +41 -0
- teaspoons_client/models/admin_pipeline.py +103 -0
- teaspoons_client/models/admin_quota.py +93 -0
- teaspoons_client/models/async_pipeline_run_response.py +103 -0
- teaspoons_client/models/error_report.py +91 -0
- teaspoons_client/models/get_jobs_response.py +99 -0
- teaspoons_client/models/get_pipeline_details_request_body.py +87 -0
- teaspoons_client/models/get_pipeline_runs_response.py +97 -0
- teaspoons_client/models/get_pipelines_result.py +95 -0
- teaspoons_client/models/job_control.py +87 -0
- teaspoons_client/models/job_report.py +106 -0
- teaspoons_client/models/job_result.py +97 -0
- teaspoons_client/models/pipeline.py +93 -0
- teaspoons_client/models/pipeline_run.py +97 -0
- teaspoons_client/models/pipeline_run_report.py +93 -0
- teaspoons_client/models/pipeline_user_provided_input_definition.py +91 -0
- teaspoons_client/models/pipeline_with_details.py +105 -0
- teaspoons_client/models/prepare_pipeline_run_request_body.py +95 -0
- teaspoons_client/models/prepare_pipeline_run_response.py +89 -0
- teaspoons_client/models/quota_with_details.py +91 -0
- teaspoons_client/models/start_pipeline_run_request_body.py +91 -0
- teaspoons_client/models/system_status.py +102 -0
- teaspoons_client/models/system_status_systems_value.py +89 -0
- teaspoons_client/models/update_pipeline_request_body.py +91 -0
- teaspoons_client/models/update_quota_limit_request_body.py +87 -0
- teaspoons_client/models/version_properties.py +93 -0
- teaspoons_client/py.typed +0 -0
- teaspoons_client/rest.py +257 -0
- terra_scientific_pipelines_service_api_client-0.1.28.dist-info/METADATA +23 -0
- terra_scientific_pipelines_service_api_client-0.1.28.dist-info/RECORD +44 -0
- terra_scientific_pipelines_service_api_client-0.1.28.dist-info/WHEEL +5 -0
- terra_scientific_pipelines_service_api_client-0.1.28.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,63 @@
|
|
|
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.1.28"
|
|
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
|
+
from teaspoons_client.api.quotas_api import QuotasApi
|
|
26
|
+
|
|
27
|
+
# import ApiClient
|
|
28
|
+
from teaspoons_client.api_response import ApiResponse
|
|
29
|
+
from teaspoons_client.api_client import ApiClient
|
|
30
|
+
from teaspoons_client.configuration import Configuration
|
|
31
|
+
from teaspoons_client.exceptions import OpenApiException
|
|
32
|
+
from teaspoons_client.exceptions import ApiTypeError
|
|
33
|
+
from teaspoons_client.exceptions import ApiValueError
|
|
34
|
+
from teaspoons_client.exceptions import ApiKeyError
|
|
35
|
+
from teaspoons_client.exceptions import ApiAttributeError
|
|
36
|
+
from teaspoons_client.exceptions import ApiException
|
|
37
|
+
|
|
38
|
+
# import models into sdk package
|
|
39
|
+
from teaspoons_client.models.admin_pipeline import AdminPipeline
|
|
40
|
+
from teaspoons_client.models.admin_quota import AdminQuota
|
|
41
|
+
from teaspoons_client.models.async_pipeline_run_response import AsyncPipelineRunResponse
|
|
42
|
+
from teaspoons_client.models.error_report import ErrorReport
|
|
43
|
+
from teaspoons_client.models.get_jobs_response import GetJobsResponse
|
|
44
|
+
from teaspoons_client.models.get_pipeline_details_request_body import GetPipelineDetailsRequestBody
|
|
45
|
+
from teaspoons_client.models.get_pipeline_runs_response import GetPipelineRunsResponse
|
|
46
|
+
from teaspoons_client.models.get_pipelines_result import GetPipelinesResult
|
|
47
|
+
from teaspoons_client.models.job_control import JobControl
|
|
48
|
+
from teaspoons_client.models.job_report import JobReport
|
|
49
|
+
from teaspoons_client.models.job_result import JobResult
|
|
50
|
+
from teaspoons_client.models.pipeline import Pipeline
|
|
51
|
+
from teaspoons_client.models.pipeline_run import PipelineRun
|
|
52
|
+
from teaspoons_client.models.pipeline_run_report import PipelineRunReport
|
|
53
|
+
from teaspoons_client.models.pipeline_user_provided_input_definition import PipelineUserProvidedInputDefinition
|
|
54
|
+
from teaspoons_client.models.pipeline_with_details import PipelineWithDetails
|
|
55
|
+
from teaspoons_client.models.prepare_pipeline_run_request_body import PreparePipelineRunRequestBody
|
|
56
|
+
from teaspoons_client.models.prepare_pipeline_run_response import PreparePipelineRunResponse
|
|
57
|
+
from teaspoons_client.models.quota_with_details import QuotaWithDetails
|
|
58
|
+
from teaspoons_client.models.start_pipeline_run_request_body import StartPipelineRunRequestBody
|
|
59
|
+
from teaspoons_client.models.system_status import SystemStatus
|
|
60
|
+
from teaspoons_client.models.system_status_systems_value import SystemStatusSystemsValue
|
|
61
|
+
from teaspoons_client.models.update_pipeline_request_body import UpdatePipelineRequestBody
|
|
62
|
+
from teaspoons_client.models.update_quota_limit_request_body import UpdateQuotaLimitRequestBody
|
|
63
|
+
from teaspoons_client.models.version_properties import VersionProperties
|
|
@@ -0,0 +1,10 @@
|
|
|
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
|
+
from teaspoons_client.api.quotas_api import QuotasApi
|
|
10
|
+
|