terra-scientific-pipelines-service-api-client 0.1.13__py3-none-any.whl → 0.1.14__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.13"
17
+ __version__ = "0.1.14"
18
18
 
19
19
  # import apis into sdk package
20
20
  from teaspoons_client.api.admin_api import AdminApi
@@ -601,7 +601,6 @@ class PipelineRunsApi:
601
601
  @validate_call
602
602
  def prepare_pipeline_run(
603
603
  self,
604
- pipeline_name: Annotated[StrictStr, Field(description="A string identifier to used to identify a pipeline in the service.")],
605
604
  prepare_pipeline_run_request_body: PreparePipelineRunRequestBody,
606
605
  _request_timeout: Union[
607
606
  None,
@@ -619,8 +618,6 @@ class PipelineRunsApi:
619
618
  """Prepare a new pipeline run
620
619
 
621
620
 
622
- :param pipeline_name: A string identifier to used to identify a pipeline in the service. (required)
623
- :type pipeline_name: str
624
621
  :param prepare_pipeline_run_request_body: (required)
625
622
  :type prepare_pipeline_run_request_body: PreparePipelineRunRequestBody
626
623
  :param _request_timeout: timeout setting for this request. If one
@@ -646,7 +643,6 @@ class PipelineRunsApi:
646
643
  """ # noqa: E501
647
644
 
648
645
  _param = self._prepare_pipeline_run_serialize(
649
- pipeline_name=pipeline_name,
650
646
  prepare_pipeline_run_request_body=prepare_pipeline_run_request_body,
651
647
  _request_auth=_request_auth,
652
648
  _content_type=_content_type,
@@ -674,7 +670,6 @@ class PipelineRunsApi:
674
670
  @validate_call
675
671
  def prepare_pipeline_run_with_http_info(
676
672
  self,
677
- pipeline_name: Annotated[StrictStr, Field(description="A string identifier to used to identify a pipeline in the service.")],
678
673
  prepare_pipeline_run_request_body: PreparePipelineRunRequestBody,
679
674
  _request_timeout: Union[
680
675
  None,
@@ -692,8 +687,6 @@ class PipelineRunsApi:
692
687
  """Prepare a new pipeline run
693
688
 
694
689
 
695
- :param pipeline_name: A string identifier to used to identify a pipeline in the service. (required)
696
- :type pipeline_name: str
697
690
  :param prepare_pipeline_run_request_body: (required)
698
691
  :type prepare_pipeline_run_request_body: PreparePipelineRunRequestBody
699
692
  :param _request_timeout: timeout setting for this request. If one
@@ -719,7 +712,6 @@ class PipelineRunsApi:
719
712
  """ # noqa: E501
720
713
 
721
714
  _param = self._prepare_pipeline_run_serialize(
722
- pipeline_name=pipeline_name,
723
715
  prepare_pipeline_run_request_body=prepare_pipeline_run_request_body,
724
716
  _request_auth=_request_auth,
725
717
  _content_type=_content_type,
@@ -747,7 +739,6 @@ class PipelineRunsApi:
747
739
  @validate_call
748
740
  def prepare_pipeline_run_without_preload_content(
749
741
  self,
750
- pipeline_name: Annotated[StrictStr, Field(description="A string identifier to used to identify a pipeline in the service.")],
751
742
  prepare_pipeline_run_request_body: PreparePipelineRunRequestBody,
752
743
  _request_timeout: Union[
753
744
  None,
@@ -765,8 +756,6 @@ class PipelineRunsApi:
765
756
  """Prepare a new pipeline run
766
757
 
767
758
 
768
- :param pipeline_name: A string identifier to used to identify a pipeline in the service. (required)
769
- :type pipeline_name: str
770
759
  :param prepare_pipeline_run_request_body: (required)
771
760
  :type prepare_pipeline_run_request_body: PreparePipelineRunRequestBody
772
761
  :param _request_timeout: timeout setting for this request. If one
@@ -792,7 +781,6 @@ class PipelineRunsApi:
792
781
  """ # noqa: E501
793
782
 
794
783
  _param = self._prepare_pipeline_run_serialize(
795
- pipeline_name=pipeline_name,
796
784
  prepare_pipeline_run_request_body=prepare_pipeline_run_request_body,
797
785
  _request_auth=_request_auth,
798
786
  _content_type=_content_type,
@@ -815,7 +803,6 @@ class PipelineRunsApi:
815
803
 
816
804
  def _prepare_pipeline_run_serialize(
817
805
  self,
818
- pipeline_name,
819
806
  prepare_pipeline_run_request_body,
820
807
  _request_auth,
821
808
  _content_type,
@@ -838,8 +825,6 @@ class PipelineRunsApi:
838
825
  _body_params: Optional[bytes] = None
839
826
 
840
827
  # process the path parameters
841
- if pipeline_name is not None:
842
- _path_params['pipelineName'] = pipeline_name
843
828
  # process the query parameters
844
829
  # process the header parameters
845
830
  # process the form parameters
@@ -878,7 +863,7 @@ class PipelineRunsApi:
878
863
 
879
864
  return self.api_client.param_serialize(
880
865
  method='POST',
881
- resource_path='/api/pipelineruns/v1/{pipelineName}/prepare',
866
+ resource_path='/api/pipelineruns/v1/prepare',
882
867
  path_params=_path_params,
883
868
  query_params=_query_params,
884
869
  header_params=_header_params,
@@ -897,7 +882,6 @@ class PipelineRunsApi:
897
882
  @validate_call
898
883
  def start_pipeline_run(
899
884
  self,
900
- pipeline_name: Annotated[StrictStr, Field(description="A string identifier to used to identify a pipeline in the service.")],
901
885
  start_pipeline_run_request_body: StartPipelineRunRequestBody,
902
886
  _request_timeout: Union[
903
887
  None,
@@ -915,8 +899,6 @@ class PipelineRunsApi:
915
899
  """Start a prepared pipeline run
916
900
 
917
901
 
918
- :param pipeline_name: A string identifier to used to identify a pipeline in the service. (required)
919
- :type pipeline_name: str
920
902
  :param start_pipeline_run_request_body: (required)
921
903
  :type start_pipeline_run_request_body: StartPipelineRunRequestBody
922
904
  :param _request_timeout: timeout setting for this request. If one
@@ -942,7 +924,6 @@ class PipelineRunsApi:
942
924
  """ # noqa: E501
943
925
 
944
926
  _param = self._start_pipeline_run_serialize(
945
- pipeline_name=pipeline_name,
946
927
  start_pipeline_run_request_body=start_pipeline_run_request_body,
947
928
  _request_auth=_request_auth,
948
929
  _content_type=_content_type,
@@ -972,7 +953,6 @@ class PipelineRunsApi:
972
953
  @validate_call
973
954
  def start_pipeline_run_with_http_info(
974
955
  self,
975
- pipeline_name: Annotated[StrictStr, Field(description="A string identifier to used to identify a pipeline in the service.")],
976
956
  start_pipeline_run_request_body: StartPipelineRunRequestBody,
977
957
  _request_timeout: Union[
978
958
  None,
@@ -990,8 +970,6 @@ class PipelineRunsApi:
990
970
  """Start a prepared pipeline run
991
971
 
992
972
 
993
- :param pipeline_name: A string identifier to used to identify a pipeline in the service. (required)
994
- :type pipeline_name: str
995
973
  :param start_pipeline_run_request_body: (required)
996
974
  :type start_pipeline_run_request_body: StartPipelineRunRequestBody
997
975
  :param _request_timeout: timeout setting for this request. If one
@@ -1017,7 +995,6 @@ class PipelineRunsApi:
1017
995
  """ # noqa: E501
1018
996
 
1019
997
  _param = self._start_pipeline_run_serialize(
1020
- pipeline_name=pipeline_name,
1021
998
  start_pipeline_run_request_body=start_pipeline_run_request_body,
1022
999
  _request_auth=_request_auth,
1023
1000
  _content_type=_content_type,
@@ -1047,7 +1024,6 @@ class PipelineRunsApi:
1047
1024
  @validate_call
1048
1025
  def start_pipeline_run_without_preload_content(
1049
1026
  self,
1050
- pipeline_name: Annotated[StrictStr, Field(description="A string identifier to used to identify a pipeline in the service.")],
1051
1027
  start_pipeline_run_request_body: StartPipelineRunRequestBody,
1052
1028
  _request_timeout: Union[
1053
1029
  None,
@@ -1065,8 +1041,6 @@ class PipelineRunsApi:
1065
1041
  """Start a prepared pipeline run
1066
1042
 
1067
1043
 
1068
- :param pipeline_name: A string identifier to used to identify a pipeline in the service. (required)
1069
- :type pipeline_name: str
1070
1044
  :param start_pipeline_run_request_body: (required)
1071
1045
  :type start_pipeline_run_request_body: StartPipelineRunRequestBody
1072
1046
  :param _request_timeout: timeout setting for this request. If one
@@ -1092,7 +1066,6 @@ class PipelineRunsApi:
1092
1066
  """ # noqa: E501
1093
1067
 
1094
1068
  _param = self._start_pipeline_run_serialize(
1095
- pipeline_name=pipeline_name,
1096
1069
  start_pipeline_run_request_body=start_pipeline_run_request_body,
1097
1070
  _request_auth=_request_auth,
1098
1071
  _content_type=_content_type,
@@ -1117,7 +1090,6 @@ class PipelineRunsApi:
1117
1090
 
1118
1091
  def _start_pipeline_run_serialize(
1119
1092
  self,
1120
- pipeline_name,
1121
1093
  start_pipeline_run_request_body,
1122
1094
  _request_auth,
1123
1095
  _content_type,
@@ -1140,8 +1112,6 @@ class PipelineRunsApi:
1140
1112
  _body_params: Optional[bytes] = None
1141
1113
 
1142
1114
  # process the path parameters
1143
- if pipeline_name is not None:
1144
- _path_params['pipelineName'] = pipeline_name
1145
1115
  # process the query parameters
1146
1116
  # process the header parameters
1147
1117
  # process the form parameters
@@ -1180,7 +1150,7 @@ class PipelineRunsApi:
1180
1150
 
1181
1151
  return self.api_client.param_serialize(
1182
1152
  method='POST',
1183
- resource_path='/api/pipelineruns/v1/{pipelineName}/start',
1153
+ resource_path='/api/pipelineruns/v1/start',
1184
1154
  path_params=_path_params,
1185
1155
  query_params=_query_params,
1186
1156
  header_params=_header_params,
@@ -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.13/python'
93
+ self.user_agent = 'terra-scientific-pipelines-service-api-client/0.1.14/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.13".\
402
+ "SDK Package Version: 0.1.14".\
403
403
  format(env=sys.platform, pyversion=sys.version)
404
404
 
405
405
  def get_host_settings(self):
@@ -27,11 +27,12 @@ class PipelineRun(BaseModel):
27
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
29
  job_id: StrictStr = Field(description="Required unique identifier (UUID) for a job. ", alias="jobId")
30
+ pipeline_name: StrictStr = Field(description="The identifier string for the Pipeline. ", alias="pipelineName")
30
31
  status: StrictStr = Field(description="The current status of the pipeline run. ")
31
32
  description: Optional[StrictStr] = Field(default=None, description="The user-provided description for the pipeline run. ")
32
33
  time_submitted: StrictStr = Field(description="The time the job was submitted. ", alias="timeSubmitted")
33
34
  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"]
35
+ __properties: ClassVar[List[str]] = ["jobId", "pipelineName", "status", "description", "timeSubmitted", "timeCompleted"]
35
36
 
36
37
  model_config = ConfigDict(
37
38
  populate_by_name=True,
@@ -85,6 +86,7 @@ class PipelineRun(BaseModel):
85
86
 
86
87
  _obj = cls.model_validate({
87
88
  "jobId": obj.get("jobId"),
89
+ "pipelineName": obj.get("pipelineName"),
88
90
  "status": obj.get("status"),
89
91
  "description": obj.get("description"),
90
92
  "timeSubmitted": obj.get("timeSubmitted"),
@@ -27,9 +27,10 @@ class PreparePipelineRunRequestBody(BaseModel):
27
27
  Object containing the user-provided information defining a pipeline run request.
28
28
  """ # noqa: E501
29
29
  job_id: StrictStr = Field(description="Required unique identifier (UUID) for a job. ", alias="jobId")
30
+ pipeline_name: StrictStr = Field(description="The identifier string for the Pipeline. ", alias="pipelineName")
30
31
  pipeline_version: StrictInt = Field(description="An identifier Integer for the Pipeline Version. ", alias="pipelineVersion")
31
32
  pipeline_inputs: Dict[str, Any] = Field(description="A map(string:object) of user-provided inputs for the Pipeline. ", alias="pipelineInputs")
32
- __properties: ClassVar[List[str]] = ["jobId", "pipelineVersion", "pipelineInputs"]
33
+ __properties: ClassVar[List[str]] = ["jobId", "pipelineName", "pipelineVersion", "pipelineInputs"]
33
34
 
34
35
  model_config = ConfigDict(
35
36
  populate_by_name=True,
@@ -83,6 +84,7 @@ class PreparePipelineRunRequestBody(BaseModel):
83
84
 
84
85
  _obj = cls.model_validate({
85
86
  "jobId": obj.get("jobId"),
87
+ "pipelineName": obj.get("pipelineName"),
86
88
  "pipelineVersion": obj.get("pipelineVersion"),
87
89
  "pipelineInputs": obj.get("pipelineInputs")
88
90
  })
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: terra-scientific-pipelines-service-api-client
3
- Version: 0.1.13
3
+ Version: 0.1.14
4
4
  Summary: Terra Scientific Pipelines Service
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -1,14 +1,14 @@
1
- teaspoons_client/__init__.py,sha256=pTlmc-1_j1qRxp_Q9sImwEPF6pcINxADPYaTCLHneUA,3127
2
- teaspoons_client/api_client.py,sha256=EdZQOOJURHAKyR6psh2fUkukCZlz74CfrFcZb6a_W-A,27535
1
+ teaspoons_client/__init__.py,sha256=Vl3Uz3C31N1tCqkEspElX7bHUYHR0yNnA-iYwHWvL1k,3127
2
+ teaspoons_client/api_client.py,sha256=0XCbSqIVba-a8G5RrMMEAmEgWjU7DbszyFMc0WbXfVw,27535
3
3
  teaspoons_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- teaspoons_client/configuration.py,sha256=gK0wZGp5DRvskPt1KNo7aN99HfPQpHhsdc4owWoffwk,15585
4
+ teaspoons_client/configuration.py,sha256=6TqFQc4jl8bvMlTOlXa_0cqTmJ1DQ1VN-6dsqOfTlvA,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
8
8
  teaspoons_client/api/__init__.py,sha256=j4nfxEv5WV8rGkUs8vl0-ZGilqzKUPZfFV_FGq0cg_c,385
9
9
  teaspoons_client/api/admin_api.py,sha256=IX0p8ITxjQFgQd0AsDz0EBchzLwJW8eDq_tz7x_E_IE,48861
10
10
  teaspoons_client/api/jobs_api.py,sha256=mjRoBLpaluOW3lEaUT9mJNOs2HGTWG1kaVBZ3Al9r4I,23054
11
- teaspoons_client/api/pipeline_runs_api.py,sha256=122kKvNuwD-tq9YmJd_tSZhoPAmywuitdRamSUWbsEw,48610
11
+ teaspoons_client/api/pipeline_runs_api.py,sha256=rCtcJWw5Jen1uJva-ZltgVFhvMzY0wzfCVNRXc3zCS8,46448
12
12
  teaspoons_client/api/pipelines_api.py,sha256=kTqVQ9kf816Qyns4ocquXIH-b0C_MK-6dx0HOMsXHpk,21192
13
13
  teaspoons_client/api/public_api.py,sha256=cYrfhy7epadJPWvXO7xvjhyNRH72bKVXtUmjefezbl0,19743
14
14
  teaspoons_client/api/quotas_api.py,sha256=fU2ZE0B-5ELvkNdXHTWCw0asfLDNK4WetlKVvpWETmI,11862
@@ -24,11 +24,11 @@ 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=KwaGdWlLKxpPa1FzL9S44iiRJGzIHTf1NisebO-KMd8,3438
27
+ teaspoons_client/models/pipeline_run.py,sha256=g2ZyCAa9FYFAybyGtiGZQXSgW_EBoIbykC8q6or4MTU,3622
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
31
- teaspoons_client/models/prepare_pipeline_run_request_body.py,sha256=UhsnYEuFFX8dQ2BryxH-A0zgchwBCz69JDJPvaxQOig,3147
31
+ teaspoons_client/models/prepare_pipeline_run_request_body.py,sha256=d81oVre2CHT_Cl9PwErhg8WouliSQl3RbpsT2AXjJQo,3331
32
32
  teaspoons_client/models/prepare_pipeline_run_response.py,sha256=5Y-NTPjxR13brTHbCWU-1YBXERUWRsg7ShNRK1bcyJM,2948
33
33
  teaspoons_client/models/quota_with_details.py,sha256=9f7y_SL5NQ17Jbi9PFAAMphXEc718AjQE1O3P8dRsq0,3066
34
34
  teaspoons_client/models/start_pipeline_run_request_body.py,sha256=Et4zcC9UVnINscI4OVtmHlhe1MvPgMq0819sNqyLLOw,3167
@@ -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.13.dist-info/METADATA,sha256=BTUCsqzDaPwJkWGxPRZMhN19O1wAw0iqvShWys-VHAg,589
41
- terra_scientific_pipelines_service_api_client-0.1.13.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
42
- terra_scientific_pipelines_service_api_client-0.1.13.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
43
- terra_scientific_pipelines_service_api_client-0.1.13.dist-info/RECORD,,
40
+ terra_scientific_pipelines_service_api_client-0.1.14.dist-info/METADATA,sha256=5LuZldeG11My2y1ODevhiixBCcgYfu52WD7hbCUSFR0,589
41
+ terra_scientific_pipelines_service_api_client-0.1.14.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
42
+ terra_scientific_pipelines_service_api_client-0.1.14.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
43
+ terra_scientific_pipelines_service_api_client-0.1.14.dist-info/RECORD,,