anyscale 0.26.40__py3-none-any.whl → 0.26.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.
@@ -91,7 +91,8 @@ class DecoratedSession(object):
91
91
  'compute_template': 'MiniComputeTemplate',
92
92
  'idle_time_remaining_seconds': 'int',
93
93
  'access': 'SessionAccess',
94
- 'project': 'MiniProject'
94
+ 'project': 'MiniProject',
95
+ 'latest_started_at': 'datetime'
95
96
  }
96
97
 
97
98
  attribute_map = {
@@ -153,10 +154,11 @@ class DecoratedSession(object):
153
154
  'compute_template': 'compute_template',
154
155
  'idle_time_remaining_seconds': 'idle_time_remaining_seconds',
155
156
  'access': 'access',
156
- 'project': 'project'
157
+ 'project': 'project',
158
+ 'latest_started_at': 'latest_started_at'
157
159
  }
158
160
 
159
- def __init__(self, name=None, project_id=None, cloud_id=None, cluster_config=None, build_id=None, compute_template_id=None, idle_timeout=120, uses_app_config=False, allow_public_internet_traffic=False, user_service_access=None, user_service_token=None, ha_job_id=None, id=None, state=None, pending_state=None, state_data=None, status=None, status_details=None, creator_id=None, created_at=None, archived_at=None, webterminal_auth_url=None, metrics_dashboard_url=None, data_metrics_dashboard_url=None, train_metrics_dashboard_url=None, serve_metrics_dashboard_url=None, serve_deployment_metrics_dashboard_url=None, serve_llm_metrics_dashboard_url=None, persistent_metrics_url=None, connect_url=None, jupyter_notebook_url=None, ray_dashboard_url=None, access_token=None, service_proxy_url=None, tensorboard_available=None, cluster_config_last_modified_at=None, host_name=None, head_node_ip=None, ssh_authorized_keys=None, ssh_private_key=None, anyscaled_config=None, anyscaled_config_generated_at=None, default_build_id=None, idle_timeout_last_activity_at=None, ray_version=None, ray_version_last_updated_at=None, user_service_url=None, ray_component_activities_last_reported_at=None, activity_details=None, maximum_uptime_will_terminate_cluster_at=None, idle_termination_status=None, ray_dashboard_snapshot_last_reported_at=None, build=None, cloud=None, creator=None, compute_template=None, idle_time_remaining_seconds=None, access=None, project=None, local_vars_configuration=None): # noqa: E501
161
+ def __init__(self, name=None, project_id=None, cloud_id=None, cluster_config=None, build_id=None, compute_template_id=None, idle_timeout=120, uses_app_config=False, allow_public_internet_traffic=False, user_service_access=None, user_service_token=None, ha_job_id=None, id=None, state=None, pending_state=None, state_data=None, status=None, status_details=None, creator_id=None, created_at=None, archived_at=None, webterminal_auth_url=None, metrics_dashboard_url=None, data_metrics_dashboard_url=None, train_metrics_dashboard_url=None, serve_metrics_dashboard_url=None, serve_deployment_metrics_dashboard_url=None, serve_llm_metrics_dashboard_url=None, persistent_metrics_url=None, connect_url=None, jupyter_notebook_url=None, ray_dashboard_url=None, access_token=None, service_proxy_url=None, tensorboard_available=None, cluster_config_last_modified_at=None, host_name=None, head_node_ip=None, ssh_authorized_keys=None, ssh_private_key=None, anyscaled_config=None, anyscaled_config_generated_at=None, default_build_id=None, idle_timeout_last_activity_at=None, ray_version=None, ray_version_last_updated_at=None, user_service_url=None, ray_component_activities_last_reported_at=None, activity_details=None, maximum_uptime_will_terminate_cluster_at=None, idle_termination_status=None, ray_dashboard_snapshot_last_reported_at=None, build=None, cloud=None, creator=None, compute_template=None, idle_time_remaining_seconds=None, access=None, project=None, latest_started_at=None, local_vars_configuration=None): # noqa: E501
160
162
  """DecoratedSession - a model defined in OpenAPI""" # noqa: E501
161
163
  if local_vars_configuration is None:
162
164
  local_vars_configuration = Configuration()
@@ -221,6 +223,7 @@ class DecoratedSession(object):
221
223
  self._idle_time_remaining_seconds = None
222
224
  self._access = None
223
225
  self._project = None
226
+ self._latest_started_at = None
224
227
  self.discriminator = None
225
228
 
226
229
  self.name = name
@@ -326,6 +329,8 @@ class DecoratedSession(object):
326
329
  self.access = access
327
330
  if project is not None:
328
331
  self.project = project
332
+ if latest_started_at is not None:
333
+ self.latest_started_at = latest_started_at
329
334
 
330
335
  @property
331
336
  def name(self):
@@ -1714,6 +1719,29 @@ class DecoratedSession(object):
1714
1719
 
1715
1720
  self._project = project
1716
1721
 
1722
+ @property
1723
+ def latest_started_at(self):
1724
+ """Gets the latest_started_at of this DecoratedSession. # noqa: E501
1725
+
1726
+ The datetime of the latest transition to StartingUp state. # noqa: E501
1727
+
1728
+ :return: The latest_started_at of this DecoratedSession. # noqa: E501
1729
+ :rtype: datetime
1730
+ """
1731
+ return self._latest_started_at
1732
+
1733
+ @latest_started_at.setter
1734
+ def latest_started_at(self, latest_started_at):
1735
+ """Sets the latest_started_at of this DecoratedSession.
1736
+
1737
+ The datetime of the latest transition to StartingUp state. # noqa: E501
1738
+
1739
+ :param latest_started_at: The latest_started_at of this DecoratedSession. # noqa: E501
1740
+ :type: datetime
1741
+ """
1742
+
1743
+ self._latest_started_at = latest_started_at
1744
+
1717
1745
  def to_dict(self):
1718
1746
  """Returns the model properties as a dict"""
1719
1747
  result = {}
anyscale/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.26.40"
1
+ __version__ = "0.26.41"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: anyscale
3
- Version: 0.26.40
3
+ Version: 0.26.41
4
4
  Summary: Command Line Interface for Anyscale
5
5
  Author: Anyscale Inc.
6
6
  License: AS License
@@ -43,7 +43,6 @@ Provides-Extra: backend
43
43
  Requires-Dist: terminado==0.10.1; extra == "backend"
44
44
  Requires-Dist: tornado; extra == "backend"
45
45
  Requires-Dist: ray>=1.4.0; extra == "backend"
46
- Requires-Dist: protobuf<4; python_version < "3.11" and extra == "backend"
47
46
  Requires-Dist: google-api-python-client; extra == "backend"
48
47
  Requires-Dist: google-cloud-secret-manager; extra == "backend"
49
48
  Requires-Dist: google-cloud-compute; extra == "backend"
@@ -53,7 +52,6 @@ Requires-Dist: google-cloud-storage; extra == "backend"
53
52
  Requires-Dist: google-cloud-redis; extra == "backend"
54
53
  Requires-Dist: google-cloud-certificate-manager; extra == "backend"
55
54
  Provides-Extra: gcp
56
- Requires-Dist: protobuf<4; python_version < "3.11" and extra == "gcp"
57
55
  Requires-Dist: google-api-python-client; extra == "gcp"
58
56
  Requires-Dist: google-cloud-secret-manager; extra == "gcp"
59
57
  Requires-Dist: google-cloud-compute; extra == "gcp"
@@ -64,7 +62,6 @@ Requires-Dist: google-cloud-redis; extra == "gcp"
64
62
  Requires-Dist: google-cloud-certificate-manager; extra == "gcp"
65
63
  Provides-Extra: all
66
64
  Requires-Dist: ray>=1.4.0; extra == "all"
67
- Requires-Dist: protobuf<4; python_version < "3.11" and extra == "all"
68
65
  Requires-Dist: google-api-python-client; extra == "all"
69
66
  Requires-Dist: google-cloud-secret-manager; extra == "all"
70
67
  Requires-Dist: google-cloud-compute; extra == "all"
@@ -28,7 +28,7 @@ anyscale/snapshot.py,sha256=UGJT5C1s_4xmQxjWODK5DFpGxHRBX5jOCdSCqXESH8E,1685
28
28
  anyscale/tables.py,sha256=TV4F2uLnwehvbkAfaP7iuLlT2wLIo6ORH2LVdRGXW5g,2840
29
29
  anyscale/telemetry.py,sha256=wklWABN8wtq8Cq3ptPFEeQQC9xjKP5ytxybCuWAvNI0,15229
30
30
  anyscale/util.py,sha256=14AHIhl4c4hKAW4gLZIvy5w56-zDjcPmrdWqazsvnHU,41860
31
- anyscale/version.py,sha256=LRijOPIXofxbVPIc9EWkOslRaoGdu3kP6mzmI7k1UhE,24
31
+ anyscale/version.py,sha256=k7VcBlVlDfPOXC0Xd3_ipzwXbyVRhHqhQKgFpWBSO1Q,24
32
32
  anyscale/workspace_utils.py,sha256=OViE88CnIF5ruVxd3kazQ0Mf2BxqtMq6wx-XQ5A2cp8,1204
33
33
  anyscale/_private/anyscale_client/README.md,sha256=gk8obk7kqg6VWoUHcqDMwJULh35tYKEZFC0UF_dixGA,718
34
34
  anyscale/_private/anyscale_client/__init__.py,sha256=807Blx3RHQeS8BmKZcsOQQ4dYoKlCnpm6Bdsif2CrHg,337
@@ -334,7 +334,7 @@ anyscale/client/openapi_client/models/decorated_production_service_v2_version_ap
334
334
  anyscale/client/openapi_client/models/decorated_schedule.py,sha256=zCDLO0og8GMMxv_43k3BjYB3MAGc3znGcKV28GYoJwU,18193
335
335
  anyscale/client/openapi_client/models/decorated_serve_deployment.py,sha256=fujpuo3v3GNhKwwiHwBqtU8BrBvBrcbg_TTtSvVG7oY,24397
336
336
  anyscale/client/openapi_client/models/decorated_service_event_api_model.py,sha256=TE2bxLquf15IQZTXDiqawOnRYQKT-0Gxrr9VJVNwu9c,17555
337
- anyscale/client/openapi_client/models/decorated_session.py,sha256=3Zig-QzJzbNsyRdqv0LjlZJEKDSmQZtf2eHc42V9jHo,69350
337
+ anyscale/client/openapi_client/models/decorated_session.py,sha256=inA-fNRdIv1DmbzI_YygBvtKn1tP3XAIpjHhuaottwk,70380
338
338
  anyscale/client/openapi_client/models/decorated_support_request.py,sha256=FyU8FQbCVAXUpxikWjVmEn5WasPTZeFppafbU2B0kQE,9163
339
339
  anyscale/client/openapi_client/models/decorated_unified_job.py,sha256=chXCS6V5Zkweel9Xeg2mqotcLgKXwo4uoM-kZMWVeJ4,13976
340
340
  anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py,sha256=Aqq7NLQ1JszMgO7GDZkY-taxuMuohu83MziWxKyAw3o,4617
@@ -1090,10 +1090,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
1090
1090
  anyscale/workspace/commands.py,sha256=b1sqNseoPj-1VXznqQOLe0V_a663bOTvJX-TaOMJa1Y,14590
1091
1091
  anyscale/workspace/models.py,sha256=HBvM9ybOdJjqQeViQ30C36gdKT_AwH_JHPoL-DTkESo,9841
1092
1092
  anyscale/workspace/_private/workspace_sdk.py,sha256=2CMeYfJt0UtIFCocDn1ukw1iI5esKHdopLe6duEs-qE,27599
1093
- anyscale-0.26.40.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1094
- anyscale-0.26.40.dist-info/METADATA,sha256=xzs9KlP1ffuJMXGKqB4JpGUmf2iPTFJWEmxLDgKDKKA,3269
1095
- anyscale-0.26.40.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1096
- anyscale-0.26.40.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
1097
- anyscale-0.26.40.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1098
- anyscale-0.26.40.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1099
- anyscale-0.26.40.dist-info/RECORD,,
1093
+ anyscale-0.26.41.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1094
+ anyscale-0.26.41.dist-info/METADATA,sha256=HeYIM_NFxp_9LNig0DrCU4PnxWJxPpVEYANrYIf6Bd0,3055
1095
+ anyscale-0.26.41.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1096
+ anyscale-0.26.41.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
1097
+ anyscale-0.26.41.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1098
+ anyscale-0.26.41.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1099
+ anyscale-0.26.41.dist-info/RECORD,,