terra-scientific-pipelines-service-api-client 0.1.39__py3-none-any.whl → 0.1.41__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.39"
17
+ __version__ = "0.1.41"
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.39/python'
93
+ self.user_agent = 'terra-scientific-pipelines-service-api-client/0.1.41/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.39".\
402
+ "SDK Package Version: 0.1.41".\
403
403
  format(env=sys.platform, pyversion=sys.version)
404
404
 
405
405
  def get_host_settings(self):
@@ -30,12 +30,12 @@ class AdminPipeline(BaseModel):
30
30
  pipeline_version: StrictInt = Field(description="An identifier Integer for the Pipeline Version. ", alias="pipelineVersion")
31
31
  display_name: StrictStr = Field(description="The display name for the Pipeline. ", alias="displayName")
32
32
  description: StrictStr = Field(description="The description for the Pipeline. ")
33
- wdl_method_version: StrictStr = Field(description="An identifier string for the Pipeline Wdl Version i.e. github repo tag/branch/release ", alias="wdlMethodVersion")
33
+ tool_version: StrictStr = Field(description="An identifier string for the Pipeline Tool Version i.e. github repo tag/branch/release ", alias="toolVersion")
34
34
  workspace_billing_project: StrictStr = Field(description="The Terra billing project of the workspace to run the pipeline in. ", alias="workspaceBillingProject")
35
35
  workspace_name: StrictStr = Field(description="The name of the workspace to run the pipeline in. ", alias="workspaceName")
36
36
  workspace_storage_container_name: StrictStr = Field(description="The name of the workspace storage container (e.g. google bucket name, without gs:// prefix). ", alias="workspaceStorageContainerName")
37
37
  workspace_google_project: StrictStr = Field(description="The google project of the workspace to run the pipeline in. ", alias="workspaceGoogleProject")
38
- __properties: ClassVar[List[str]] = ["pipelineName", "pipelineVersion", "displayName", "description", "wdlMethodVersion", "workspaceBillingProject", "workspaceName", "workspaceStorageContainerName", "workspaceGoogleProject"]
38
+ __properties: ClassVar[List[str]] = ["pipelineName", "pipelineVersion", "displayName", "description", "toolVersion", "workspaceBillingProject", "workspaceName", "workspaceStorageContainerName", "workspaceGoogleProject"]
39
39
 
40
40
  model_config = ConfigDict(
41
41
  populate_by_name=True,
@@ -92,7 +92,7 @@ class AdminPipeline(BaseModel):
92
92
  "pipelineVersion": obj.get("pipelineVersion"),
93
93
  "displayName": obj.get("displayName"),
94
94
  "description": obj.get("description"),
95
- "wdlMethodVersion": obj.get("wdlMethodVersion"),
95
+ "toolVersion": obj.get("toolVersion"),
96
96
  "workspaceBillingProject": obj.get("workspaceBillingProject"),
97
97
  "workspaceName": obj.get("workspaceName"),
98
98
  "workspaceStorageContainerName": obj.get("workspaceStorageContainerName"),
@@ -28,10 +28,10 @@ class PipelineRunReport(BaseModel):
28
28
  """ # noqa: E501
29
29
  pipeline_name: StrictStr = Field(description="The identifier string for the Pipeline. ", alias="pipelineName")
30
30
  pipeline_version: StrictInt = Field(description="An identifier Integer for the Pipeline Version. ", alias="pipelineVersion")
31
- wdl_method_version: StrictStr = Field(description="An identifier string for the Pipeline Wdl Version i.e. github repo tag/branch/release ", alias="wdlMethodVersion")
31
+ tool_version: StrictStr = Field(description="An identifier string for the Pipeline Tool Version i.e. github repo tag/branch/release ", alias="toolVersion")
32
32
  outputs: Optional[Dict[str, Any]] = Field(default=None, description="The output(s) of a successful pipeline run. ")
33
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
+ __properties: ClassVar[List[str]] = ["pipelineName", "pipelineVersion", "toolVersion", "outputs", "outputExpirationDate"]
35
35
 
36
36
  model_config = ConfigDict(
37
37
  populate_by_name=True,
@@ -86,7 +86,7 @@ class PipelineRunReport(BaseModel):
86
86
  _obj = cls.model_validate({
87
87
  "pipelineName": obj.get("pipelineName"),
88
88
  "pipelineVersion": obj.get("pipelineVersion"),
89
- "wdlMethodVersion": obj.get("wdlMethodVersion"),
89
+ "toolVersion": obj.get("toolVersion"),
90
90
  "outputs": obj.get("outputs"),
91
91
  "outputExpirationDate": obj.get("outputExpirationDate")
92
92
  })
@@ -28,8 +28,8 @@ class UpdatePipelineRequestBody(BaseModel):
28
28
  """ # noqa: E501
29
29
  workspace_billing_project: StrictStr = Field(description="The Terra billing project of the workspace to run the pipeline in. ", alias="workspaceBillingProject")
30
30
  workspace_name: StrictStr = Field(description="The name of the workspace to run the pipeline in. ", alias="workspaceName")
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
- __properties: ClassVar[List[str]] = ["workspaceBillingProject", "workspaceName", "wdlMethodVersion"]
31
+ tool_version: StrictStr = Field(description="An identifier string for the Pipeline Tool Version i.e. github repo tag/branch/release ", alias="toolVersion")
32
+ __properties: ClassVar[List[str]] = ["workspaceBillingProject", "workspaceName", "toolVersion"]
33
33
 
34
34
  model_config = ConfigDict(
35
35
  populate_by_name=True,
@@ -84,7 +84,7 @@ class UpdatePipelineRequestBody(BaseModel):
84
84
  _obj = cls.model_validate({
85
85
  "workspaceBillingProject": obj.get("workspaceBillingProject"),
86
86
  "workspaceName": obj.get("workspaceName"),
87
- "wdlMethodVersion": obj.get("wdlMethodVersion")
87
+ "toolVersion": obj.get("toolVersion")
88
88
  })
89
89
  return _obj
90
90
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: terra-scientific-pipelines-service-api-client
3
- Version: 0.1.39
3
+ Version: 0.1.41
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=y9_UqsJEV9NhgPJqaVptjt2TlWDzspO0fuqI2OA2Pks,3227
2
- teaspoons_client/api_client.py,sha256=v4vyvEigmip36H48CN-HqeKRelpvU_AbKb2u33O-GvQ,27535
1
+ teaspoons_client/__init__.py,sha256=3xnaccfJzar-bj61TnPREn34MsI-EgV4MWQ913fFyGY,3227
2
+ teaspoons_client/api_client.py,sha256=wTTQGUOe_SKf0t1ozbpc6TpjRSRYTSrC_2nMmVb52Kk,27535
3
3
  teaspoons_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- teaspoons_client/configuration.py,sha256=_tBsqTJWObLpqCactvaYdwEFkY1ibsSoQZBL2yQ53SA,15585
4
+ teaspoons_client/configuration.py,sha256=SFJBQLAeB2Ou1XPMjuTLoD8mmCmh1r_QzSm8Tbz1WCw,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
@@ -13,7 +13,7 @@ teaspoons_client/api/pipelines_api.py,sha256=9PZ_qSMnZK4bbO-oCxLub73KJ7kLxanjkMt
13
13
  teaspoons_client/api/public_api.py,sha256=cYrfhy7epadJPWvXO7xvjhyNRH72bKVXtUmjefezbl0,19743
14
14
  teaspoons_client/api/quotas_api.py,sha256=fU2ZE0B-5ELvkNdXHTWCw0asfLDNK4WetlKVvpWETmI,11862
15
15
  teaspoons_client/models/__init__.py,sha256=RkuzKPGkKpqd0tn-M5JMnedpVKv2cNnkFt36Dd9mfug,2327
16
- teaspoons_client/models/admin_pipeline.py,sha256=MRyFpoOJrd0UyAOTigeg2qOBzvdtKoGxAbHTVgsk2eA,4576
16
+ teaspoons_client/models/admin_pipeline.py,sha256=mBrSi3XCGifa2ZF02SdSzoCjfsqoXerimwlqkC6yHAc,4551
17
17
  teaspoons_client/models/admin_quota.py,sha256=X0Pll_9JWs1VmmElic8m7-pN6PCIRnxc1nyYyWjlK0w,3245
18
18
  teaspoons_client/models/async_pipeline_run_response.py,sha256=c_Nj3tC41y2G0pqvVwzKn_bVE6mgA2h_Aisp6315zSE,3899
19
19
  teaspoons_client/models/error_report.py,sha256=3IsEF07EPxdcMSPCMW4yE1pXydE8EHmlIBYVScvXyXs,2714
@@ -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=hyrJycEU8udu66krrlB_ZP-EMCnUdzRX_zMyDWyz-dg,3661
29
+ teaspoons_client/models/pipeline_run_report.py,sha256=ul4o41vBFVLAiLyHxaToqnsVdXQRo16wEY8V5rjaMP8,3636
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
@@ -35,10 +35,10 @@ teaspoons_client/models/quota_with_details.py,sha256=9f7y_SL5NQ17Jbi9PFAAMphXEc7
35
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
- teaspoons_client/models/update_pipeline_request_body.py,sha256=OYjf_6SVBg00GjGzq9aftbeLJkUHikm80sqFQQSWvUQ,3257
38
+ teaspoons_client/models/update_pipeline_request_body.py,sha256=DJeqxOAwDQdQDApDQdGbASbDtsb2hqRSfuV1F7yrL6o,3232
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.39.dist-info/METADATA,sha256=DCYHBOq3Lm4e_9U-yY1HzmF718ewleVVnSDW9N-feS4,740
42
- terra_scientific_pipelines_service_api_client-0.1.39.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
43
- terra_scientific_pipelines_service_api_client-0.1.39.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
44
- terra_scientific_pipelines_service_api_client-0.1.39.dist-info/RECORD,,
41
+ terra_scientific_pipelines_service_api_client-0.1.41.dist-info/METADATA,sha256=rLX_YDUP-gVrjiHHZfHZU4XGXn7oTX7aSIffrA7jH6o,740
42
+ terra_scientific_pipelines_service_api_client-0.1.41.dist-info/WHEEL,sha256=nn6H5-ilmfVryoAQl3ZQ2l8SH5imPWFpm1A5FgEuFV4,91
43
+ terra_scientific_pipelines_service_api_client-0.1.41.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
44
+ terra_scientific_pipelines_service_api_client-0.1.41.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (75.8.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5