terra-scientific-pipelines-service-api-client 0.1.20__py3-none-any.whl → 0.1.22__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.20"
17
+ __version__ = "0.1.22"
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.20/python'
93
+ self.user_agent = 'terra-scientific-pipelines-service-api-client/0.1.22/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.20".\
402
+ "SDK Package Version: 0.1.22".\
403
403
  format(env=sys.platform, pyversion=sys.version)
404
404
 
405
405
  def get_host_settings(self):
@@ -30,7 +30,8 @@ class PreparePipelineRunRequestBody(BaseModel):
30
30
  pipeline_name: StrictStr = Field(description="The identifier string for the Pipeline. ", alias="pipelineName")
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
- __properties: ClassVar[List[str]] = ["jobId", "pipelineName", "pipelineVersion", "pipelineInputs"]
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
35
 
35
36
  model_config = ConfigDict(
36
37
  populate_by_name=True,
@@ -86,7 +87,8 @@ class PreparePipelineRunRequestBody(BaseModel):
86
87
  "jobId": obj.get("jobId"),
87
88
  "pipelineName": obj.get("pipelineName"),
88
89
  "pipelineVersion": obj.get("pipelineVersion"),
89
- "pipelineInputs": obj.get("pipelineInputs")
90
+ "pipelineInputs": obj.get("pipelineInputs"),
91
+ "description": obj.get("description")
90
92
  })
91
93
  return _obj
92
94
 
@@ -17,8 +17,8 @@ import pprint
17
17
  import re # noqa: F401
18
18
  import json
19
19
 
20
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
- from typing import Any, ClassVar, Dict, List, Optional
20
+ from pydantic import BaseModel, ConfigDict, Field
21
+ from typing import Any, ClassVar, Dict, List
22
22
  from teaspoons_client.models.job_control import JobControl
23
23
  from typing import Optional, Set
24
24
  from typing_extensions import Self
@@ -27,9 +27,8 @@ class StartPipelineRunRequestBody(BaseModel):
27
27
  """
28
28
  Object containing the user-provided information defining a pipeline run request.
29
29
  """ # noqa: E501
30
- description: Optional[StrictStr] = Field(default=None, description="User-provided description of the pipeline run.")
31
30
  job_control: JobControl = Field(alias="jobControl")
32
- __properties: ClassVar[List[str]] = ["description", "jobControl"]
31
+ __properties: ClassVar[List[str]] = ["jobControl"]
33
32
 
34
33
  model_config = ConfigDict(
35
34
  populate_by_name=True,
@@ -85,7 +84,6 @@ class StartPipelineRunRequestBody(BaseModel):
85
84
  return cls.model_validate(obj)
86
85
 
87
86
  _obj = cls.model_validate({
88
- "description": obj.get("description"),
89
87
  "jobControl": JobControl.from_dict(obj["jobControl"]) if obj.get("jobControl") is not None else None
90
88
  })
91
89
  return _obj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: terra-scientific-pipelines-service-api-client
3
- Version: 0.1.20
3
+ Version: 0.1.22
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=sOuCq7tKjQ8bWfE83XFQ7Rbps-CN0FQ2QKs4wbe1iPk,3227
2
- teaspoons_client/api_client.py,sha256=7uRnrjmY5L_mAnn2VApo_Hhn2HezA6t5kASaO2ofIcE,27535
1
+ teaspoons_client/__init__.py,sha256=3oP1wC2vIJ805J1SrrI7fwNtE-vShods6FHZQY8jt3w,3227
2
+ teaspoons_client/api_client.py,sha256=7FU60sgNg0JrmV8-_N649OHdhB0nwKlPhJZIw9mMAXo,27535
3
3
  teaspoons_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- teaspoons_client/configuration.py,sha256=iDuAZL4nfCMtQUwbXBEwGMMtLzN8t3l4qlrvNkSYCu4,15585
4
+ teaspoons_client/configuration.py,sha256=NNFO8zGDDRR5PtO_m4TDgZ-cyzJtillTCipAzVx8oXQ,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
@@ -29,16 +29,16 @@ teaspoons_client/models/pipeline_run.py,sha256=g2ZyCAa9FYFAybyGtiGZQXSgW_EBoIbyk
29
29
  teaspoons_client/models/pipeline_run_report.py,sha256=tNKVjeeIj3pAT_7tIE73znY4ddW8QsvA6q9mOoQHCaE,3404
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
- teaspoons_client/models/prepare_pipeline_run_request_body.py,sha256=nm7AfQQlk0eXgPvXQlyld-N_gc5BCco5bmmMxzemfCw,3365
32
+ teaspoons_client/models/prepare_pipeline_run_request_body.py,sha256=w9vX95YfdBM26oNM06LiiyWWVz_WVl6UCBxnfJTTM10,3558
33
33
  teaspoons_client/models/prepare_pipeline_run_response.py,sha256=5Y-NTPjxR13brTHbCWU-1YBXERUWRsg7ShNRK1bcyJM,2948
34
34
  teaspoons_client/models/quota_with_details.py,sha256=9f7y_SL5NQ17Jbi9PFAAMphXEc718AjQE1O3P8dRsq0,3066
35
- teaspoons_client/models/start_pipeline_run_request_body.py,sha256=Et4zcC9UVnINscI4OVtmHlhe1MvPgMq0819sNqyLLOw,3167
35
+ teaspoons_client/models/start_pipeline_run_request_body.py,sha256=l5UJEXac-WLXDi4tAgMJpFZcIIWuhsKuKHQc0ihheGE,2959
36
36
  teaspoons_client/models/system_status.py,sha256=615Ol6vBFowfewWesLeQe6aljaKMXIZb1rgWxt5FNsg,3305
37
37
  teaspoons_client/models/system_status_systems_value.py,sha256=lKuq0aDpRne858ta4gvSZL7JMqc7V3TJcVUmj9-OgOo,2675
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.20.dist-info/METADATA,sha256=Roadf1VCB6zZ2bNIZ7nQZZnZJIQhqO6EY_WYrWV5VV4,589
42
- terra_scientific_pipelines_service_api_client-0.1.20.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
43
- terra_scientific_pipelines_service_api_client-0.1.20.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
44
- terra_scientific_pipelines_service_api_client-0.1.20.dist-info/RECORD,,
41
+ terra_scientific_pipelines_service_api_client-0.1.22.dist-info/METADATA,sha256=g3QNDdgh-AHeQL2ZeBTKLZ08Z7JOipLwNPN4R-xIxk8,589
42
+ terra_scientific_pipelines_service_api_client-0.1.22.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
43
+ terra_scientific_pipelines_service_api_client-0.1.22.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
44
+ terra_scientific_pipelines_service_api_client-0.1.22.dist-info/RECORD,,