terra-scientific-pipelines-service-api-client 0.1.38__py3-none-any.whl → 0.1.40__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.
- teaspoons_client/__init__.py +1 -1
- teaspoons_client/api_client.py +1 -1
- teaspoons_client/configuration.py +1 -1
- teaspoons_client/models/admin_pipeline.py +3 -3
- teaspoons_client/models/pipeline_run_report.py +3 -3
- teaspoons_client/models/update_pipeline_request_body.py +3 -3
- {terra_scientific_pipelines_service_api_client-0.1.38.dist-info → terra_scientific_pipelines_service_api_client-0.1.40.dist-info}/METADATA +1 -1
- {terra_scientific_pipelines_service_api_client-0.1.38.dist-info → terra_scientific_pipelines_service_api_client-0.1.40.dist-info}/RECORD +10 -10
- {terra_scientific_pipelines_service_api_client-0.1.38.dist-info → terra_scientific_pipelines_service_api_client-0.1.40.dist-info}/WHEEL +0 -0
- {terra_scientific_pipelines_service_api_client-0.1.38.dist-info → terra_scientific_pipelines_service_api_client-0.1.40.dist-info}/top_level.txt +0 -0
teaspoons_client/__init__.py
CHANGED
teaspoons_client/api_client.py
CHANGED
|
@@ -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.
|
|
93
|
+
self.user_agent = 'terra-scientific-pipelines-service-api-client/0.1.40/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.
|
|
402
|
+
"SDK Package Version: 0.1.40".\
|
|
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
|
-
|
|
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", "
|
|
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
|
-
"
|
|
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
|
-
|
|
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", "
|
|
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
|
-
"
|
|
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
|
-
|
|
32
|
-
__properties: ClassVar[List[str]] = ["workspaceBillingProject", "workspaceName", "
|
|
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
|
-
"
|
|
87
|
+
"toolVersion": obj.get("toolVersion")
|
|
88
88
|
})
|
|
89
89
|
return _obj
|
|
90
90
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
teaspoons_client/__init__.py,sha256=
|
|
2
|
-
teaspoons_client/api_client.py,sha256=
|
|
1
|
+
teaspoons_client/__init__.py,sha256=9Kpngkvt_GC-i1PubI8js5EEy4bleQQJtQU6LHzO8r0,3227
|
|
2
|
+
teaspoons_client/api_client.py,sha256=_hkoDwmO9DGjWnCFIQNMsN_B-HQ1voblGq1cQ6PuWuI,27535
|
|
3
3
|
teaspoons_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
teaspoons_client/configuration.py,sha256=
|
|
4
|
+
teaspoons_client/configuration.py,sha256=HWtLtWJ4FpZMui3ZOYGzjXYmD4o6Sh54ZNfU9brR770,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=
|
|
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=
|
|
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=
|
|
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.
|
|
42
|
-
terra_scientific_pipelines_service_api_client-0.1.
|
|
43
|
-
terra_scientific_pipelines_service_api_client-0.1.
|
|
44
|
-
terra_scientific_pipelines_service_api_client-0.1.
|
|
41
|
+
terra_scientific_pipelines_service_api_client-0.1.40.dist-info/METADATA,sha256=uMNDScQw4UePbgCyRG4Vt_aJuuyP7Gc-NoYXgdxWnwU,740
|
|
42
|
+
terra_scientific_pipelines_service_api_client-0.1.40.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
43
|
+
terra_scientific_pipelines_service_api_client-0.1.40.dist-info/top_level.txt,sha256=DZYs7jBZ-_bWvnXrtK1TbtfhltgkuPWTRo1Ei7Uv9Jc,17
|
|
44
|
+
terra_scientific_pipelines_service_api_client-0.1.40.dist-info/RECORD,,
|
|
File without changes
|