terra-scientific-pipelines-service-api-client 0.1.10__py3-none-any.whl → 0.1.11__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.10"
17
+ __version__ = "0.1.11"
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.10/python'
93
+ self.user_agent = 'terra-scientific-pipelines-service-api-client/0.1.11/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.10".\
402
+ "SDK Package Version: 0.1.11".\
403
403
  format(env=sys.platform, pyversion=sys.version)
404
404
 
405
405
  def get_host_settings(self):
@@ -24,12 +24,14 @@ from typing_extensions import Self
24
24
 
25
25
  class PipelineRun(BaseModel):
26
26
  """
27
- Object containing the job id, status, and user-provided description of a Pipeline Run.
27
+ Object containing the job id, status, user-provided description, time submitted, and (if run is complete) time completed of a Pipeline Run.
28
28
  """ # noqa: E501
29
- job_id: Optional[StrictStr] = Field(default=None, description="Required unique identifier (UUID) for a job. ", alias="jobId")
30
- status: Optional[StrictStr] = Field(default=None, description="The current status of the pipeline run. ")
31
- description: StrictStr = Field(description="The user-provided description for the pipeline run. ")
32
- __properties: ClassVar[List[str]] = ["jobId", "status", "description"]
29
+ job_id: StrictStr = Field(description="Required unique identifier (UUID) for a job. ", alias="jobId")
30
+ status: StrictStr = Field(description="The current status of the pipeline run. ")
31
+ description: Optional[StrictStr] = Field(default=None, description="The user-provided description for the pipeline run. ")
32
+ time_submitted: StrictStr = Field(description="The time the job was submitted. ", alias="timeSubmitted")
33
+ time_completed: Optional[StrictStr] = Field(default=None, description="The time the job was completed. ", alias="timeCompleted")
34
+ __properties: ClassVar[List[str]] = ["jobId", "status", "description", "timeSubmitted", "timeCompleted"]
33
35
 
34
36
  model_config = ConfigDict(
35
37
  populate_by_name=True,
@@ -84,7 +86,9 @@ class PipelineRun(BaseModel):
84
86
  _obj = cls.model_validate({
85
87
  "jobId": obj.get("jobId"),
86
88
  "status": obj.get("status"),
87
- "description": obj.get("description")
89
+ "description": obj.get("description"),
90
+ "timeSubmitted": obj.get("timeSubmitted"),
91
+ "timeCompleted": obj.get("timeCompleted")
88
92
  })
89
93
  return _obj
90
94
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: terra-scientific-pipelines-service-api-client
3
- Version: 0.1.10
3
+ Version: 0.1.11
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=DJbjuBjMOzcxExbHcV-PZf-TFODjN34eReU1BdPyJfs,3127
2
- teaspoons_client/api_client.py,sha256=6_igxsG5fOtA5tgMSYxlf9mM_RFvc7rAKU4p4y2qjm8,27535
1
+ teaspoons_client/__init__.py,sha256=cmO4ZVtOcKVwQt9iRLFRDn4-j0N58eSMxTdI3lnxn3c,3127
2
+ teaspoons_client/api_client.py,sha256=w_uxKuTCMyO0pKJFr9L1hKOp9WuBrTxx35Wbz3w_iuM,27535
3
3
  teaspoons_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- teaspoons_client/configuration.py,sha256=-DEBZDt8cOalaDpOPp-R5Qeg7dOc9fJZqfXMeZWqeXA,15585
4
+ teaspoons_client/configuration.py,sha256=3XfCAjocEhORl-iOu0Yk6IFkacs6PGfZUgFIFbghObo,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
@@ -24,7 +24,7 @@ teaspoons_client/models/job_control.py,sha256=PkTmAKmm6JXxu7EUfa02UNdBaxoZvo0v0T
24
24
  teaspoons_client/models/job_report.py,sha256=q5ijrPgVmGqXjrTZKzEyOswUlWKsMD6v-oTFDUUdMRg,3974
25
25
  teaspoons_client/models/job_result.py,sha256=WWZRoqmTuh5ZP9ugMENGZUx5zrzADHx9O0m2Bhh--yg,3337
26
26
  teaspoons_client/models/pipeline.py,sha256=x0NNa8ub4Px6azC4axVvRncyP7wJ-D23EBI6uY2M0lI,3006
27
- teaspoons_client/models/pipeline_run.py,sha256=RWy1WrSyr6vBjgCd8papyqM5d8pJZ86VAcmvqHPYphY,3023
27
+ teaspoons_client/models/pipeline_run.py,sha256=KwaGdWlLKxpPa1FzL9S44iiRJGzIHTf1NisebO-KMd8,3438
28
28
  teaspoons_client/models/pipeline_run_report.py,sha256=tNKVjeeIj3pAT_7tIE73znY4ddW8QsvA6q9mOoQHCaE,3404
29
29
  teaspoons_client/models/pipeline_user_provided_input_definition.py,sha256=jEC7yUCrcMKtu01EAdRhIRBmrdCjBbhPeOef7loyick,3056
30
30
  teaspoons_client/models/pipeline_with_details.py,sha256=c489n3m6bswOGKGnVLupcB-KCAVgQdihUnNKov9LSmA,3929
@@ -37,7 +37,7 @@ teaspoons_client/models/system_status_systems_value.py,sha256=lKuq0aDpRne858ta4g
37
37
  teaspoons_client/models/update_pipeline_request_body.py,sha256=OYjf_6SVBg00GjGzq9aftbeLJkUHikm80sqFQQSWvUQ,3257
38
38
  teaspoons_client/models/update_quota_limit_request_body.py,sha256=sOCNcTbsdTJisAn9YxHMIWUvm_UrxV1HZ5EziIUOgIk,2731
39
39
  teaspoons_client/models/version_properties.py,sha256=pnx1pduz4vnw-wx_sdASU_-zRqE1wf3JdNm4OLDJ2i8,2888
40
- terra_scientific_pipelines_service_api_client-0.1.10.dist-info/METADATA,sha256=65bEAfsTwpLsTABmIVnzNxBfx3n6aFG-LsKA6KdWi3c,589
41
- terra_scientific_pipelines_service_api_client-0.1.10.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
42
- terra_scientific_pipelines_service_api_client-0.1.10.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
43
- terra_scientific_pipelines_service_api_client-0.1.10.dist-info/RECORD,,
40
+ terra_scientific_pipelines_service_api_client-0.1.11.dist-info/METADATA,sha256=_jU0ATzq9ps7YHjq18cUeHeUqq9cq4Lo3Ow2DkGWcD0,589
41
+ terra_scientific_pipelines_service_api_client-0.1.11.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
42
+ terra_scientific_pipelines_service_api_client-0.1.11.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
43
+ terra_scientific_pipelines_service_api_client-0.1.11.dist-info/RECORD,,