tobiko-cloud-api-client 202508.24.0__py3-none-any.whl → 202508.26.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tobiko-cloud-api-client
3
- Version: 202508.24.0
3
+ Version: 202508.26.0
4
4
  Author: TobikoData Inc.
5
5
  Author-email: engineering@tobikodata.com
6
6
  Requires-Python: <3.13,>=3.9
@@ -10,4 +10,4 @@ Requires-Dist: pydantic>=2.0.0
10
10
  Requires-Dist: rich[jupyter]
11
11
  Requires-Dist: ruamel.yaml
12
12
  Requires-Dist: tenacity
13
- Requires-Dist: tobiko-cloud-helpers==202508.24.0
13
+ Requires-Dist: tobiko-cloud-helpers==202508.26.0
@@ -3,12 +3,12 @@ tobikodata/http_client/__init__.py,sha256=0vzfsVlDAfzAktEsvzRnsMYy3OpkzAeY6dQoe5
3
3
  tobikodata/http_client/api.py,sha256=J8W2IuKs7i7hbW3gWinWpCFnnPGwOszeUz3J3Bt41_o,8130
4
4
  tobikodata/http_client/auth.py,sha256=LnwXpcPjQR_Rm8CCh678lo2nTYJZZvgqbvUTlzWcoIk,7044
5
5
  tobikodata/http_client/public.py,sha256=rs_E5RurQlKT-DfuqGX7W5rJQA2Q3MkeWS6hSC0bFbI,17554
6
- tobikodata/http_client/api_models/v1/common.py,sha256=ADTqlCZzsqieDcnaILNsEMKRfRj5wbF-wfqfHLbjhKE,311
6
+ tobikodata/http_client/api_models/v1/common.py,sha256=T79ytQywoyLAr157Hbiae3neCV52bm8Ny1i8S8nDzkE,418
7
7
  tobikodata/http_client/api_models/v1/dags.py,sha256=np7OeHQ9Vhdo1JqOsD4el3OTUdz-P5L7vYJEGrp3k8U,893
8
8
  tobikodata/http_client/api_models/v1/evaluations.py,sha256=Oa_BUxPt61jMpiz0JgUzpTvulU7yK08SC7AQjb3LqzY,1164
9
9
  tobikodata/http_client/api_models/v1/runs.py,sha256=F2kGhwRTYxSYS5NSJfDSvyNM0y4NIVHL1ONgM3MnD7w,444
10
- tobiko_cloud_api_client-202508.24.0.dist-info/METADATA,sha256=knDicMzOPZSwyWu2tVb7nmQR28boTnfgL3FKaqpPJeM,371
11
- tobiko_cloud_api_client-202508.24.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
12
- tobiko_cloud_api_client-202508.24.0.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
13
- tobiko_cloud_api_client-202508.24.0.dist-info/top_level.txt,sha256=RtGY-jz-WpCF6_ox51-oVGzCMZ7v9RHTWLreUe86rUY,11
14
- tobiko_cloud_api_client-202508.24.0.dist-info/RECORD,,
10
+ tobiko_cloud_api_client-202508.26.0.dist-info/METADATA,sha256=_CFYdPBBgy-8ptWZRZy9txju3a43plUuyDbYV-4mdXM,371
11
+ tobiko_cloud_api_client-202508.26.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
12
+ tobiko_cloud_api_client-202508.26.0.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
13
+ tobiko_cloud_api_client-202508.26.0.dist-info/top_level.txt,sha256=RtGY-jz-WpCF6_ox51-oVGzCMZ7v9RHTWLreUe86rUY,11
14
+ tobiko_cloud_api_client-202508.26.0.dist-info/RECORD,,
@@ -7,7 +7,13 @@ class V1Status(str, Enum):
7
7
  SKIPPED = "skipped"
8
8
  SUCCESS = "success"
9
9
  FAILED = "failed"
10
+ PREEMPTED = "preempted"
10
11
 
11
12
  @property
12
13
  def complete(self) -> bool:
13
- return self.value in (V1Status.SUCCESS, V1Status.FAILED, V1Status.SKIPPED)
14
+ return self.value in (
15
+ V1Status.SUCCESS,
16
+ V1Status.FAILED,
17
+ V1Status.SKIPPED,
18
+ V1Status.PREEMPTED,
19
+ )