terra-scientific-pipelines-service-api-client 1.1.0__py3-none-any.whl → 1.1.1__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.1.0"
17
+ __version__ = "1.1.1"
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.1.0/python'
93
+ self.user_agent = 'terra-scientific-pipelines-service-api-client/1.1.1/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.1.0".\
402
+ "SDK Package Version: 1.1.1".\
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, StrictInt, StrictStr
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, 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
@@ -31,7 +31,8 @@ class PreparePipelineRunRequestBody(BaseModel):
31
31
  pipeline_version: Optional[StrictInt] = Field(default=None, description="An identifier Integer for the Pipeline Version. ", alias="pipelineVersion")
32
32
  pipeline_inputs: Dict[str, Any] = Field(description="A map(string:object) of user-provided inputs for the Pipeline. ", alias="pipelineInputs")
33
33
  description: Optional[StrictStr] = Field(default=None, description="The user-provided description for the pipeline run. ")
34
- __properties: ClassVar[List[str]] = ["jobId", "pipelineName", "pipelineVersion", "pipelineInputs", "description"]
34
+ use_resumable_uploads: Optional[StrictBool] = Field(default=False, description="Whether to use resumable uploads for input files. Default false.", alias="useResumableUploads")
35
+ __properties: ClassVar[List[str]] = ["jobId", "pipelineName", "pipelineVersion", "pipelineInputs", "description", "useResumableUploads"]
35
36
 
36
37
  model_config = ConfigDict(
37
38
  populate_by_name=True,
@@ -88,7 +89,8 @@ class PreparePipelineRunRequestBody(BaseModel):
88
89
  "pipelineName": obj.get("pipelineName"),
89
90
  "pipelineVersion": obj.get("pipelineVersion"),
90
91
  "pipelineInputs": obj.get("pipelineInputs"),
91
- "description": obj.get("description")
92
+ "description": obj.get("description"),
93
+ "useResumableUploads": obj.get("useResumableUploads") if obj.get("useResumableUploads") is not None else False
92
94
  })
93
95
  return _obj
94
96
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: terra-scientific-pipelines-service-api-client
3
- Version: 1.1.0
3
+ Version: 1.1.1
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=2VprxBBUrpeOxcdUsV0S3vMgsIrFBqW6zxrGPlbwKWA,3291
2
- teaspoons_client/api_client.py,sha256=kjshkc6vthHT1P9wiQI3oPoSWhxoTa6m-q3EKBuw12A,27534
1
+ teaspoons_client/__init__.py,sha256=U6gijEh2hOQzuF1ANtlxetHF8LYYBkGHxzwvx6RRmzA,3291
2
+ teaspoons_client/api_client.py,sha256=R5OMENXNXvPUghvUbcE0RFzv2zatLqoulKOq1WIEGmU,27534
3
3
  teaspoons_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- teaspoons_client/configuration.py,sha256=b3CxXPltvQX5TrQrtL8msJjJeR5LAzuMFPlSTf1eJG8,15584
4
+ teaspoons_client/configuration.py,sha256=g3zrgwle3dK7-ZPT_-AkT7O4u-XlA62HBMa6C5AiTpk,15584
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
@@ -30,7 +30,7 @@ teaspoons_client/models/pipeline_run.py,sha256=KWfU6xljqiDzGF7IBBFd0dUGy3esAzOqv
30
30
  teaspoons_client/models/pipeline_run_report.py,sha256=ul4o41vBFVLAiLyHxaToqnsVdXQRo16wEY8V5rjaMP8,3636
31
31
  teaspoons_client/models/pipeline_user_provided_input_definition.py,sha256=b1W1Ja9PnaEjZHV3MoW1ylisPqnSwFO9bVXrkySOzqQ,3252
32
32
  teaspoons_client/models/pipeline_with_details.py,sha256=IpAUDmJtHIUffJhC61SPvcPPKuEFP7u4DhvCNY0ci7A,4612
33
- teaspoons_client/models/prepare_pipeline_run_request_body.py,sha256=w9vX95YfdBM26oNM06LiiyWWVz_WVl6UCBxnfJTTM10,3558
33
+ teaspoons_client/models/prepare_pipeline_run_request_body.py,sha256=mW6L2AWwt-h4MRd7sMoo1GmePf19JRIFpO6ltDO_548,3897
34
34
  teaspoons_client/models/prepare_pipeline_run_response.py,sha256=1lSm1DAgTfPlBIEXkhnciAgMBY0eC3sjlEEJOY7MtyA,2890
35
35
  teaspoons_client/models/quota_with_details.py,sha256=wO1xczv8PxCIEs_1r9Uz5BuVdm1nld1SfvpIJNB2how,3225
36
36
  teaspoons_client/models/start_pipeline_run_request_body.py,sha256=l5UJEXac-WLXDi4tAgMJpFZcIIWuhsKuKHQc0ihheGE,2959
@@ -39,7 +39,7 @@ teaspoons_client/models/system_status_systems_value.py,sha256=lKuq0aDpRne858ta4g
39
39
  teaspoons_client/models/update_pipeline_request_body.py,sha256=DJeqxOAwDQdQDApDQdGbASbDtsb2hqRSfuV1F7yrL6o,3232
40
40
  teaspoons_client/models/update_quota_limit_request_body.py,sha256=sOCNcTbsdTJisAn9YxHMIWUvm_UrxV1HZ5EziIUOgIk,2731
41
41
  teaspoons_client/models/version_properties.py,sha256=pnx1pduz4vnw-wx_sdASU_-zRqE1wf3JdNm4OLDJ2i8,2888
42
- terra_scientific_pipelines_service_api_client-1.1.0.dist-info/METADATA,sha256=VqZhxl-XU1Sp26xaxxdLse6Omjx9WArJHNs__rUWbQc,739
43
- terra_scientific_pipelines_service_api_client-1.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
44
- terra_scientific_pipelines_service_api_client-1.1.0.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
45
- terra_scientific_pipelines_service_api_client-1.1.0.dist-info/RECORD,,
42
+ terra_scientific_pipelines_service_api_client-1.1.1.dist-info/METADATA,sha256=0jLn8wans1I-DDGevmPznHxD2XZBoPkjbYHpXwYLSmQ,739
43
+ terra_scientific_pipelines_service_api_client-1.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
44
+ terra_scientific_pipelines_service_api_client-1.1.1.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
45
+ terra_scientific_pipelines_service_api_client-1.1.1.dist-info/RECORD,,