terra-scientific-pipelines-service-api-client 0.1.28__py3-none-any.whl → 0.1.29__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__ = "0.1.28"
17
+ __version__ = "0.1.29"
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/0.1.28/python'
93
+ self.user_agent = 'terra-scientific-pipelines-service-api-client/0.1.29/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: 0.1.28".\
402
+ "SDK Package Version: 0.1.29".\
403
403
  format(env=sys.platform, pyversion=sys.version)
404
404
 
405
405
  def get_host_settings(self):
@@ -30,7 +30,8 @@ class PipelineRunReport(BaseModel):
30
30
  pipeline_version: StrictInt = Field(description="An identifier Integer for the Pipeline Version. ", alias="pipelineVersion")
31
31
  wdl_method_version: StrictStr = Field(description="An identifier string for the Pipeline Wdl Version i.e. github repo tag/branch/release ", alias="wdlMethodVersion")
32
32
  outputs: Optional[Dict[str, Any]] = Field(default=None, description="The output(s) of a successful pipeline run. ")
33
- __properties: ClassVar[List[str]] = ["pipelineName", "pipelineVersion", "wdlMethodVersion", "outputs"]
33
+ output_expiration_date: Optional[StrictStr] = Field(default=None, description="The Date when the pipeline outputs will expire. ", alias="outputExpirationDate")
34
+ __properties: ClassVar[List[str]] = ["pipelineName", "pipelineVersion", "wdlMethodVersion", "outputs", "outputExpirationDate"]
34
35
 
35
36
  model_config = ConfigDict(
36
37
  populate_by_name=True,
@@ -86,7 +87,8 @@ class PipelineRunReport(BaseModel):
86
87
  "pipelineName": obj.get("pipelineName"),
87
88
  "pipelineVersion": obj.get("pipelineVersion"),
88
89
  "wdlMethodVersion": obj.get("wdlMethodVersion"),
89
- "outputs": obj.get("outputs")
90
+ "outputs": obj.get("outputs"),
91
+ "outputExpirationDate": obj.get("outputExpirationDate")
90
92
  })
91
93
  return _obj
92
94
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: terra-scientific-pipelines-service-api-client
3
- Version: 0.1.28
3
+ Version: 0.1.29
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=IIXartB-qScgozzyAjW44jPo865xcDVmxBP1kR_UgNQ,3227
2
- teaspoons_client/api_client.py,sha256=TEkhPIneXV3g_ImFJRDEN2akBSb5zuZ9yMeP3-R4S68,27535
1
+ teaspoons_client/__init__.py,sha256=-jKcWKIkvIkLD65krNejjhJL6vbNTO35AfBApJcxVvA,3227
2
+ teaspoons_client/api_client.py,sha256=fZjzN7Z5vzGghqRlCwQH_sSSYFz34_45WOQi0OIsXVA,27535
3
3
  teaspoons_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- teaspoons_client/configuration.py,sha256=aEnNNeUeRYckb8Zhnmoccs9pEtrQUkCFIIsJz7RHOoI,15585
4
+ teaspoons_client/configuration.py,sha256=0k5-zdNy_lmh_De0bahtWm3Yfm_PrtGgBLhpMvM7k2g,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
@@ -26,7 +26,7 @@ teaspoons_client/models/job_report.py,sha256=q5ijrPgVmGqXjrTZKzEyOswUlWKsMD6v-oT
26
26
  teaspoons_client/models/job_result.py,sha256=WWZRoqmTuh5ZP9ugMENGZUx5zrzADHx9O0m2Bhh--yg,3337
27
27
  teaspoons_client/models/pipeline.py,sha256=KiEoZb6w9MMTAr1-Scr70XBNDr7eox69g9ZLa8ORRLE,3224
28
28
  teaspoons_client/models/pipeline_run.py,sha256=g2ZyCAa9FYFAybyGtiGZQXSgW_EBoIbykC8q6or4MTU,3622
29
- teaspoons_client/models/pipeline_run_report.py,sha256=tNKVjeeIj3pAT_7tIE73znY4ddW8QsvA6q9mOoQHCaE,3404
29
+ teaspoons_client/models/pipeline_run_report.py,sha256=hyrJycEU8udu66krrlB_ZP-EMCnUdzRX_zMyDWyz-dg,3661
30
30
  teaspoons_client/models/pipeline_user_provided_input_definition.py,sha256=jEC7yUCrcMKtu01EAdRhIRBmrdCjBbhPeOef7loyick,3056
31
31
  teaspoons_client/models/pipeline_with_details.py,sha256=YcihzByz3nk6z7pnPDHYSN7Qm2iuT98Yrit_b37qdao,4147
32
32
  teaspoons_client/models/prepare_pipeline_run_request_body.py,sha256=w9vX95YfdBM26oNM06LiiyWWVz_WVl6UCBxnfJTTM10,3558
@@ -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=OYjf_6SVBg00GjGzq9aftbeLJkUHikm80sqFQQSWvUQ,3257
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-0.1.28.dist-info/METADATA,sha256=YsW5SwUqm5JrAqJkBW1cvNB1_3L38nG4UkLHOcSTzI8,740
42
- terra_scientific_pipelines_service_api_client-0.1.28.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
43
- terra_scientific_pipelines_service_api_client-0.1.28.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
44
- terra_scientific_pipelines_service_api_client-0.1.28.dist-info/RECORD,,
41
+ terra_scientific_pipelines_service_api_client-0.1.29.dist-info/METADATA,sha256=VoxvtbnxYF9-kTpsMQYQx3Xg9UEHAw78m9jex5T4bVU,740
42
+ terra_scientific_pipelines_service_api_client-0.1.29.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
43
+ terra_scientific_pipelines_service_api_client-0.1.29.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
44
+ terra_scientific_pipelines_service_api_client-0.1.29.dist-info/RECORD,,