terra-scientific-pipelines-service-api-client 1.0.13__py3-none-any.whl → 1.0.15__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.

@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "1.0.13"
17
+ __version__ = "1.0.15"
18
18
 
19
19
  # import apis into sdk package
20
20
  from teaspoons_client.api.admin_api import AdminApi
@@ -90,7 +90,7 @@ class ApiClient:
90
90
  self.default_headers[header_name] = header_value
91
91
  self.cookie = cookie
92
92
  # Set default User-Agent.
93
- self.user_agent = 'terra-scientific-pipelines-service-api-client/1.0.13/python'
93
+ self.user_agent = 'terra-scientific-pipelines-service-api-client/1.0.15/python'
94
94
  self.client_side_validation = configuration.client_side_validation
95
95
 
96
96
  def __enter__(self):
@@ -399,7 +399,7 @@ class Configuration:
399
399
  "OS: {env}\n"\
400
400
  "Python Version: {pyversion}\n"\
401
401
  "Version of the API: 1.0.0\n"\
402
- "SDK Package Version: 1.0.13".\
402
+ "SDK Package Version: 1.0.15".\
403
403
  format(env=sys.platform, pyversion=sys.version)
404
404
 
405
405
  def get_host_settings(self):
@@ -17,7 +17,7 @@ import pprint
17
17
  import re # noqa: F401
18
18
  import json
19
19
 
20
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
22
  from teaspoons_client.models.pipeline_run import PipelineRun
23
23
  from typing import Optional, Set
@@ -28,8 +28,9 @@ class GetPipelineRunsResponse(BaseModel):
28
28
  GetPipelineRunsResponse
29
29
  """ # noqa: E501
30
30
  page_token: Optional[StrictStr] = Field(default=None, alias="pageToken")
31
+ total_results: Optional[StrictInt] = Field(default=None, alias="totalResults")
31
32
  results: Optional[List[PipelineRun]] = Field(default=None, description="List of pipeline runs")
32
- __properties: ClassVar[List[str]] = ["pageToken", "results"]
33
+ __properties: ClassVar[List[str]] = ["pageToken", "totalResults", "results"]
33
34
 
34
35
  model_config = ConfigDict(
35
36
  populate_by_name=True,
@@ -90,6 +91,7 @@ class GetPipelineRunsResponse(BaseModel):
90
91
 
91
92
  _obj = cls.model_validate({
92
93
  "pageToken": obj.get("pageToken"),
94
+ "totalResults": obj.get("totalResults"),
93
95
  "results": [PipelineRun.from_dict(_item) for _item in obj["results"]] if obj.get("results") is not None else None
94
96
  })
95
97
  return _obj
@@ -17,7 +17,7 @@ import pprint
17
17
  import re # noqa: F401
18
18
  import json
19
19
 
20
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
22
  from typing import Optional, Set
23
23
  from typing_extensions import Self
@@ -32,7 +32,8 @@ class PipelineRun(BaseModel):
32
32
  description: Optional[StrictStr] = Field(default=None, description="The user-provided description for the pipeline run. ")
33
33
  time_submitted: StrictStr = Field(description="The time the job was submitted. ", alias="timeSubmitted")
34
34
  time_completed: Optional[StrictStr] = Field(default=None, description="The time the job was completed. ", alias="timeCompleted")
35
- __properties: ClassVar[List[str]] = ["jobId", "pipelineName", "status", "description", "timeSubmitted", "timeCompleted"]
35
+ quota_consumed: Optional[StrictInt] = Field(default=None, description="Quota consumed by the user ", alias="quotaConsumed")
36
+ __properties: ClassVar[List[str]] = ["jobId", "pipelineName", "status", "description", "timeSubmitted", "timeCompleted", "quotaConsumed"]
36
37
 
37
38
  model_config = ConfigDict(
38
39
  populate_by_name=True,
@@ -90,7 +91,8 @@ class PipelineRun(BaseModel):
90
91
  "status": obj.get("status"),
91
92
  "description": obj.get("description"),
92
93
  "timeSubmitted": obj.get("timeSubmitted"),
93
- "timeCompleted": obj.get("timeCompleted")
94
+ "timeCompleted": obj.get("timeCompleted"),
95
+ "quotaConsumed": obj.get("quotaConsumed")
94
96
  })
95
97
  return _obj
96
98
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: terra-scientific-pipelines-service-api-client
3
- Version: 1.0.13
3
+ Version: 1.0.15
4
4
  Summary: Terra Scientific Pipelines Service
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -1,7 +1,7 @@
1
- teaspoons_client/__init__.py,sha256=kCpVpAFT4am83wwlSo46x2_UJyB-OnUiRyz6skGENIY,3227
2
- teaspoons_client/api_client.py,sha256=UdTOkLJ7hbJ0LsK9bGqif3Pm2Z9XSkSiVHvW_7YGRFw,27535
1
+ teaspoons_client/__init__.py,sha256=RKcpCzWXQYTFUK-TT_KGQa4L2IGv9S88RIyfKY1-b0I,3227
2
+ teaspoons_client/api_client.py,sha256=UYpVgAbkZbEXe5YHkgZhG1tUcT0ciKDccRWVHg-hxDY,27535
3
3
  teaspoons_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- teaspoons_client/configuration.py,sha256=b4V_Tvz7JHp4iz1bbSIZ77aqgsvvILKZS0uWodXjgMg,15585
4
+ teaspoons_client/configuration.py,sha256=2gSSKb1xvSiaWPdGrj-UKhpZ6AoMJ3eug2iBlrP7nnE,15585
5
5
  teaspoons_client/exceptions.py,sha256=54himL4zduna12UfdUqGb8LEVunPChzEvjvPw0DjWjk,5999
6
6
  teaspoons_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  teaspoons_client/rest.py,sha256=wRFTSvE7v-UjFP1_9oozGWnt8ERYW-PReLkFJZHiWYI,9441
@@ -19,13 +19,13 @@ teaspoons_client/models/async_pipeline_run_response.py,sha256=c_Nj3tC41y2G0pqvVw
19
19
  teaspoons_client/models/error_report.py,sha256=3IsEF07EPxdcMSPCMW4yE1pXydE8EHmlIBYVScvXyXs,2714
20
20
  teaspoons_client/models/get_jobs_response.py,sha256=Vdz0yG4q4TjbkLuyI13xaabR6Qn_nF3LNxn04qjRPl8,3388
21
21
  teaspoons_client/models/get_pipeline_details_request_body.py,sha256=WzO6Ws8ypES4thkALyO0wGiOCwnWvidZCAcqxEfi0Zc,2797
22
- teaspoons_client/models/get_pipeline_runs_response.py,sha256=xX4XMQZazwYRrFtx-PWo54JtfCYG1UhbDU9D9wyQ9Vc,3252
22
+ teaspoons_client/models/get_pipeline_runs_response.py,sha256=-Tfa9bZyh_qOSgsNcKAZjZ0nKXeeRc3kVOzrALvNQlE,3415
23
23
  teaspoons_client/models/get_pipelines_result.py,sha256=kCeOtwA_PQ2nUFNpg5xw14oUsfh1s-yA4ccrDHTIywA,3057
24
24
  teaspoons_client/models/job_control.py,sha256=PkTmAKmm6JXxu7EUfa02UNdBaxoZvo0v0TRsHVdRTM0,2551
25
25
  teaspoons_client/models/job_report.py,sha256=q5ijrPgVmGqXjrTZKzEyOswUlWKsMD6v-oTFDUUdMRg,3974
26
26
  teaspoons_client/models/job_result.py,sha256=WWZRoqmTuh5ZP9ugMENGZUx5zrzADHx9O0m2Bhh--yg,3337
27
27
  teaspoons_client/models/pipeline.py,sha256=KiEoZb6w9MMTAr1-Scr70XBNDr7eox69g9ZLa8ORRLE,3224
28
- teaspoons_client/models/pipeline_run.py,sha256=g2ZyCAa9FYFAybyGtiGZQXSgW_EBoIbykC8q6or4MTU,3622
28
+ teaspoons_client/models/pipeline_run.py,sha256=QtRPKo6RYgwCE4b6rCBcUkyxu2RR6yeuNaCF-CBhrpE,3833
29
29
  teaspoons_client/models/pipeline_run_report.py,sha256=ul4o41vBFVLAiLyHxaToqnsVdXQRo16wEY8V5rjaMP8,3636
30
30
  teaspoons_client/models/pipeline_user_provided_input_definition.py,sha256=b1W1Ja9PnaEjZHV3MoW1ylisPqnSwFO9bVXrkySOzqQ,3252
31
31
  teaspoons_client/models/pipeline_with_details.py,sha256=YcihzByz3nk6z7pnPDHYSN7Qm2iuT98Yrit_b37qdao,4147
@@ -38,7 +38,7 @@ teaspoons_client/models/system_status_systems_value.py,sha256=lKuq0aDpRne858ta4g
38
38
  teaspoons_client/models/update_pipeline_request_body.py,sha256=DJeqxOAwDQdQDApDQdGbASbDtsb2hqRSfuV1F7yrL6o,3232
39
39
  teaspoons_client/models/update_quota_limit_request_body.py,sha256=sOCNcTbsdTJisAn9YxHMIWUvm_UrxV1HZ5EziIUOgIk,2731
40
40
  teaspoons_client/models/version_properties.py,sha256=pnx1pduz4vnw-wx_sdASU_-zRqE1wf3JdNm4OLDJ2i8,2888
41
- terra_scientific_pipelines_service_api_client-1.0.13.dist-info/METADATA,sha256=IygD5E8c-jtHhx2FnbwZHQjQMc7IYeqSc4tzCorM4-Q,740
42
- terra_scientific_pipelines_service_api_client-1.0.13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
43
- terra_scientific_pipelines_service_api_client-1.0.13.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
44
- terra_scientific_pipelines_service_api_client-1.0.13.dist-info/RECORD,,
41
+ terra_scientific_pipelines_service_api_client-1.0.15.dist-info/METADATA,sha256=Wr2RcQaT2-wCRoTlnj9ZVAH_DotJpR9ftQb5zDIQlz8,740
42
+ terra_scientific_pipelines_service_api_client-1.0.15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
43
+ terra_scientific_pipelines_service_api_client-1.0.15.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
44
+ terra_scientific_pipelines_service_api_client-1.0.15.dist-info/RECORD,,