anyscale 0.26.59__py3-none-any.whl → 0.26.60__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.
@@ -43,7 +43,8 @@ class DatasetMetrics(object):
43
43
  'start_time': 'float',
44
44
  'end_time': 'float',
45
45
  'operator_metrics': 'list[OperatorMetrics]',
46
- 'metrics': 'dict(str, Metric)'
46
+ 'metrics': 'dict(str, Metric)',
47
+ 'operator_panels': 'list[DashboardPanel]'
47
48
  }
48
49
 
49
50
  attribute_map = {
@@ -57,10 +58,11 @@ class DatasetMetrics(object):
57
58
  'start_time': 'start_time',
58
59
  'end_time': 'end_time',
59
60
  'operator_metrics': 'operator_metrics',
60
- 'metrics': 'metrics'
61
+ 'metrics': 'metrics',
62
+ 'operator_panels': 'operator_panels'
61
63
  }
62
64
 
63
- def __init__(self, id=None, name=None, job_id=None, session_name=None, state=None, progress=None, total=None, start_time=None, end_time=None, operator_metrics=None, metrics=None, local_vars_configuration=None): # noqa: E501
65
+ def __init__(self, id=None, name=None, job_id=None, session_name=None, state=None, progress=None, total=None, start_time=None, end_time=None, operator_metrics=None, metrics=None, operator_panels=None, local_vars_configuration=None): # noqa: E501
64
66
  """DatasetMetrics - a model defined in OpenAPI""" # noqa: E501
65
67
  if local_vars_configuration is None:
66
68
  local_vars_configuration = Configuration()
@@ -77,6 +79,7 @@ class DatasetMetrics(object):
77
79
  self._end_time = None
78
80
  self._operator_metrics = None
79
81
  self._metrics = None
82
+ self._operator_panels = None
80
83
  self.discriminator = None
81
84
 
82
85
  self.id = id
@@ -92,6 +95,8 @@ class DatasetMetrics(object):
92
95
  self.end_time = end_time
93
96
  self.operator_metrics = operator_metrics
94
97
  self.metrics = metrics
98
+ if operator_panels is not None:
99
+ self.operator_panels = operator_panels
95
100
 
96
101
  @property
97
102
  def id(self):
@@ -342,6 +347,27 @@ class DatasetMetrics(object):
342
347
 
343
348
  self._metrics = metrics
344
349
 
350
+ @property
351
+ def operator_panels(self):
352
+ """Gets the operator_panels of this DatasetMetrics. # noqa: E501
353
+
354
+
355
+ :return: The operator_panels of this DatasetMetrics. # noqa: E501
356
+ :rtype: list[DashboardPanel]
357
+ """
358
+ return self._operator_panels
359
+
360
+ @operator_panels.setter
361
+ def operator_panels(self, operator_panels):
362
+ """Sets the operator_panels of this DatasetMetrics.
363
+
364
+
365
+ :param operator_panels: The operator_panels of this DatasetMetrics. # noqa: E501
366
+ :type: list[DashboardPanel]
367
+ """
368
+
369
+ self._operator_panels = operator_panels
370
+
345
371
  def to_dict(self):
346
372
  """Returns the model properties as a dict"""
347
373
  result = {}
@@ -41,7 +41,10 @@ class TaskGroupedAggregateMetrics(object):
41
41
  'count_pending_dep': 'int',
42
42
  'max_duration_ts_ns': 'int',
43
43
  'min_duration_ts_ns': 'int',
44
- 'avg_duration_ts_ns': 'int'
44
+ 'avg_duration_ts_ns': 'int',
45
+ 'max_execution_ns': 'int',
46
+ 'min_execution_ns': 'int',
47
+ 'avg_execution_ns': 'int'
45
48
  }
46
49
 
47
50
  attribute_map = {
@@ -53,10 +56,13 @@ class TaskGroupedAggregateMetrics(object):
53
56
  'count_pending_dep': 'count_pending_dep',
54
57
  'max_duration_ts_ns': 'max_duration_ts_ns',
55
58
  'min_duration_ts_ns': 'min_duration_ts_ns',
56
- 'avg_duration_ts_ns': 'avg_duration_ts_ns'
59
+ 'avg_duration_ts_ns': 'avg_duration_ts_ns',
60
+ 'max_execution_ns': 'max_execution_ns',
61
+ 'min_execution_ns': 'min_execution_ns',
62
+ 'avg_execution_ns': 'avg_execution_ns'
57
63
  }
58
64
 
59
- def __init__(self, total=None, count_finished=None, count_failed=None, count_running=None, count_pending_schedule=None, count_pending_dep=None, max_duration_ts_ns=None, min_duration_ts_ns=None, avg_duration_ts_ns=None, local_vars_configuration=None): # noqa: E501
65
+ def __init__(self, total=None, count_finished=None, count_failed=None, count_running=None, count_pending_schedule=None, count_pending_dep=None, max_duration_ts_ns=None, min_duration_ts_ns=None, avg_duration_ts_ns=None, max_execution_ns=None, min_execution_ns=None, avg_execution_ns=None, local_vars_configuration=None): # noqa: E501
60
66
  """TaskGroupedAggregateMetrics - a model defined in OpenAPI""" # noqa: E501
61
67
  if local_vars_configuration is None:
62
68
  local_vars_configuration = Configuration()
@@ -71,6 +77,9 @@ class TaskGroupedAggregateMetrics(object):
71
77
  self._max_duration_ts_ns = None
72
78
  self._min_duration_ts_ns = None
73
79
  self._avg_duration_ts_ns = None
80
+ self._max_execution_ns = None
81
+ self._min_execution_ns = None
82
+ self._avg_execution_ns = None
74
83
  self.discriminator = None
75
84
 
76
85
  self.total = total
@@ -82,6 +91,12 @@ class TaskGroupedAggregateMetrics(object):
82
91
  self.max_duration_ts_ns = max_duration_ts_ns
83
92
  self.min_duration_ts_ns = min_duration_ts_ns
84
93
  self.avg_duration_ts_ns = avg_duration_ts_ns
94
+ if max_execution_ns is not None:
95
+ self.max_execution_ns = max_execution_ns
96
+ if min_execution_ns is not None:
97
+ self.min_execution_ns = min_execution_ns
98
+ if avg_execution_ns is not None:
99
+ self.avg_execution_ns = avg_execution_ns
85
100
 
86
101
  @property
87
102
  def total(self):
@@ -290,6 +305,69 @@ class TaskGroupedAggregateMetrics(object):
290
305
 
291
306
  self._avg_duration_ts_ns = avg_duration_ts_ns
292
307
 
308
+ @property
309
+ def max_execution_ns(self):
310
+ """Gets the max_execution_ns of this TaskGroupedAggregateMetrics. # noqa: E501
311
+
312
+
313
+ :return: The max_execution_ns of this TaskGroupedAggregateMetrics. # noqa: E501
314
+ :rtype: int
315
+ """
316
+ return self._max_execution_ns
317
+
318
+ @max_execution_ns.setter
319
+ def max_execution_ns(self, max_execution_ns):
320
+ """Sets the max_execution_ns of this TaskGroupedAggregateMetrics.
321
+
322
+
323
+ :param max_execution_ns: The max_execution_ns of this TaskGroupedAggregateMetrics. # noqa: E501
324
+ :type: int
325
+ """
326
+
327
+ self._max_execution_ns = max_execution_ns
328
+
329
+ @property
330
+ def min_execution_ns(self):
331
+ """Gets the min_execution_ns of this TaskGroupedAggregateMetrics. # noqa: E501
332
+
333
+
334
+ :return: The min_execution_ns of this TaskGroupedAggregateMetrics. # noqa: E501
335
+ :rtype: int
336
+ """
337
+ return self._min_execution_ns
338
+
339
+ @min_execution_ns.setter
340
+ def min_execution_ns(self, min_execution_ns):
341
+ """Sets the min_execution_ns of this TaskGroupedAggregateMetrics.
342
+
343
+
344
+ :param min_execution_ns: The min_execution_ns of this TaskGroupedAggregateMetrics. # noqa: E501
345
+ :type: int
346
+ """
347
+
348
+ self._min_execution_ns = min_execution_ns
349
+
350
+ @property
351
+ def avg_execution_ns(self):
352
+ """Gets the avg_execution_ns of this TaskGroupedAggregateMetrics. # noqa: E501
353
+
354
+
355
+ :return: The avg_execution_ns of this TaskGroupedAggregateMetrics. # noqa: E501
356
+ :rtype: int
357
+ """
358
+ return self._avg_execution_ns
359
+
360
+ @avg_execution_ns.setter
361
+ def avg_execution_ns(self, avg_execution_ns):
362
+ """Sets the avg_execution_ns of this TaskGroupedAggregateMetrics.
363
+
364
+
365
+ :param avg_execution_ns: The avg_execution_ns of this TaskGroupedAggregateMetrics. # noqa: E501
366
+ :type: int
367
+ """
368
+
369
+ self._avg_execution_ns = avg_execution_ns
370
+
293
371
  def to_dict(self):
294
372
  """Returns the model properties as a dict"""
295
373
  result = {}
@@ -35,12 +35,14 @@ class TaskTableRow(object):
35
35
  openapi_types = {
36
36
  'id': 'str',
37
37
  'attempt_number': 'int',
38
+ 'total_attempts': 'int',
38
39
  'job_id': 'str',
39
40
  'function_name': 'str',
40
41
  'task_type': 'TaskType',
41
42
  'current_state': 'TaskState',
42
43
  'error_message': 'str',
43
44
  'start_time_ns': 'int',
45
+ 'start_running_time_ns': 'int',
44
46
  'end_time_ns': 'int',
45
47
  'required_resources': 'str',
46
48
  'runtime_env': 'str',
@@ -55,12 +57,14 @@ class TaskTableRow(object):
55
57
  attribute_map = {
56
58
  'id': 'id',
57
59
  'attempt_number': 'attempt_number',
60
+ 'total_attempts': 'total_attempts',
58
61
  'job_id': 'job_id',
59
62
  'function_name': 'function_name',
60
63
  'task_type': 'task_type',
61
64
  'current_state': 'current_state',
62
65
  'error_message': 'error_message',
63
66
  'start_time_ns': 'start_time_ns',
67
+ 'start_running_time_ns': 'start_running_time_ns',
64
68
  'end_time_ns': 'end_time_ns',
65
69
  'required_resources': 'required_resources',
66
70
  'runtime_env': 'runtime_env',
@@ -72,7 +76,7 @@ class TaskTableRow(object):
72
76
  'exception_type': 'exception_type'
73
77
  }
74
78
 
75
- def __init__(self, id=None, attempt_number=None, job_id=None, function_name=None, task_type=None, current_state=None, error_message=None, start_time_ns=None, end_time_ns=None, required_resources=None, runtime_env=None, node_id=None, worker_id=None, worker_pid=None, parent_task_id=None, ray_session_name=None, exception_type=None, local_vars_configuration=None): # noqa: E501
79
+ def __init__(self, id=None, attempt_number=None, total_attempts=None, job_id=None, function_name=None, task_type=None, current_state=None, error_message=None, start_time_ns=None, start_running_time_ns=None, end_time_ns=None, required_resources=None, runtime_env=None, node_id=None, worker_id=None, worker_pid=None, parent_task_id=None, ray_session_name=None, exception_type=None, local_vars_configuration=None): # noqa: E501
76
80
  """TaskTableRow - a model defined in OpenAPI""" # noqa: E501
77
81
  if local_vars_configuration is None:
78
82
  local_vars_configuration = Configuration()
@@ -80,12 +84,14 @@ class TaskTableRow(object):
80
84
 
81
85
  self._id = None
82
86
  self._attempt_number = None
87
+ self._total_attempts = None
83
88
  self._job_id = None
84
89
  self._function_name = None
85
90
  self._task_type = None
86
91
  self._current_state = None
87
92
  self._error_message = None
88
93
  self._start_time_ns = None
94
+ self._start_running_time_ns = None
89
95
  self._end_time_ns = None
90
96
  self._required_resources = None
91
97
  self._runtime_env = None
@@ -99,6 +105,8 @@ class TaskTableRow(object):
99
105
 
100
106
  self.id = id
101
107
  self.attempt_number = attempt_number
108
+ if total_attempts is not None:
109
+ self.total_attempts = total_attempts
102
110
  self.job_id = job_id
103
111
  self.function_name = function_name
104
112
  self.task_type = task_type
@@ -107,6 +115,7 @@ class TaskTableRow(object):
107
115
  if error_message is not None:
108
116
  self.error_message = error_message
109
117
  self.start_time_ns = start_time_ns
118
+ self.start_running_time_ns = start_running_time_ns
110
119
  if end_time_ns is not None:
111
120
  self.end_time_ns = end_time_ns
112
121
  if required_resources is not None:
@@ -171,6 +180,27 @@ class TaskTableRow(object):
171
180
 
172
181
  self._attempt_number = attempt_number
173
182
 
183
+ @property
184
+ def total_attempts(self):
185
+ """Gets the total_attempts of this TaskTableRow. # noqa: E501
186
+
187
+
188
+ :return: The total_attempts of this TaskTableRow. # noqa: E501
189
+ :rtype: int
190
+ """
191
+ return self._total_attempts
192
+
193
+ @total_attempts.setter
194
+ def total_attempts(self, total_attempts):
195
+ """Sets the total_attempts of this TaskTableRow.
196
+
197
+
198
+ :param total_attempts: The total_attempts of this TaskTableRow. # noqa: E501
199
+ :type: int
200
+ """
201
+
202
+ self._total_attempts = total_attempts
203
+
174
204
  @property
175
205
  def job_id(self):
176
206
  """Gets the job_id of this TaskTableRow. # noqa: E501
@@ -305,6 +335,29 @@ class TaskTableRow(object):
305
335
 
306
336
  self._start_time_ns = start_time_ns
307
337
 
338
+ @property
339
+ def start_running_time_ns(self):
340
+ """Gets the start_running_time_ns of this TaskTableRow. # noqa: E501
341
+
342
+
343
+ :return: The start_running_time_ns of this TaskTableRow. # noqa: E501
344
+ :rtype: int
345
+ """
346
+ return self._start_running_time_ns
347
+
348
+ @start_running_time_ns.setter
349
+ def start_running_time_ns(self, start_running_time_ns):
350
+ """Sets the start_running_time_ns of this TaskTableRow.
351
+
352
+
353
+ :param start_running_time_ns: The start_running_time_ns of this TaskTableRow. # noqa: E501
354
+ :type: int
355
+ """
356
+ if self.local_vars_configuration.client_side_validation and start_running_time_ns is None: # noqa: E501
357
+ raise ValueError("Invalid value for `start_running_time_ns`, must not be `None`") # noqa: E501
358
+
359
+ self._start_running_time_ns = start_running_time_ns
360
+
308
361
  @property
309
362
  def end_time_ns(self):
310
363
  """Gets the end_time_ns of this TaskTableRow. # noqa: E501
@@ -28,10 +28,12 @@ class TaskType(object):
28
28
  """
29
29
  allowed enum values
30
30
  """
31
- NORMAL = "NORMAL"
32
- ACTOR = "ACTOR"
31
+ NORMAL_TASK = "NORMAL_TASK"
32
+ ACTOR_TASK = "ACTOR_TASK"
33
+ ACTOR_CREATION_TASK = "ACTOR_CREATION_TASK"
34
+ DRIVER_TASK = "DRIVER_TASK"
33
35
 
34
- allowable_values = [NORMAL, ACTOR] # noqa: E501
36
+ allowable_values = [NORMAL_TASK, ACTOR_TASK, ACTOR_CREATION_TASK, DRIVER_TASK] # noqa: E501
35
37
 
36
38
  """
37
39
  Attributes:
@@ -50,7 +50,8 @@ class WorkspaceTemplate(object):
50
50
  'updated_at': 'datetime',
51
51
  'organization_id': 'str',
52
52
  'creator_email': 'str',
53
- 'published_version': 'WorkspaceTemplateVersionDataObject'
53
+ 'published_version': 'WorkspaceTemplateVersionDataObject',
54
+ 'version': 'int'
54
55
  }
55
56
 
56
57
  attribute_map = {
@@ -71,10 +72,11 @@ class WorkspaceTemplate(object):
71
72
  'updated_at': 'updated_at',
72
73
  'organization_id': 'organization_id',
73
74
  'creator_email': 'creator_email',
74
- 'published_version': 'published_version'
75
+ 'published_version': 'published_version',
76
+ 'version': 'version'
75
77
  }
76
78
 
77
- def __init__(self, name=None, description=None, mins_to_complete=None, icon_type=None, icon_bg_color=None, complexity=None, category=None, labels=None, published_version_id=None, cloud_id=None, is_global=False, id=None, creator_id=None, created_at=None, updated_at=None, organization_id=None, creator_email=None, published_version=None, local_vars_configuration=None): # noqa: E501
79
+ def __init__(self, name=None, description=None, mins_to_complete=None, icon_type=None, icon_bg_color=None, complexity=None, category=None, labels=None, published_version_id=None, cloud_id=None, is_global=False, id=None, creator_id=None, created_at=None, updated_at=None, organization_id=None, creator_email=None, published_version=None, version=None, local_vars_configuration=None): # noqa: E501
78
80
  """WorkspaceTemplate - a model defined in OpenAPI""" # noqa: E501
79
81
  if local_vars_configuration is None:
80
82
  local_vars_configuration = Configuration()
@@ -98,6 +100,7 @@ class WorkspaceTemplate(object):
98
100
  self._organization_id = None
99
101
  self._creator_email = None
100
102
  self._published_version = None
103
+ self._version = None
101
104
  self.discriminator = None
102
105
 
103
106
  self.name = name
@@ -130,6 +133,8 @@ class WorkspaceTemplate(object):
130
133
  self.creator_email = creator_email
131
134
  if published_version is not None:
132
135
  self.published_version = published_version
136
+ if version is not None:
137
+ self.version = version
133
138
 
134
139
  @property
135
140
  def name(self):
@@ -557,6 +562,29 @@ class WorkspaceTemplate(object):
557
562
 
558
563
  self._published_version = published_version
559
564
 
565
+ @property
566
+ def version(self):
567
+ """Gets the version of this WorkspaceTemplate. # noqa: E501
568
+
569
+ Version of the template # noqa: E501
570
+
571
+ :return: The version of this WorkspaceTemplate. # noqa: E501
572
+ :rtype: int
573
+ """
574
+ return self._version
575
+
576
+ @version.setter
577
+ def version(self, version):
578
+ """Sets the version of this WorkspaceTemplate.
579
+
580
+ Version of the template # noqa: E501
581
+
582
+ :param version: The version of this WorkspaceTemplate. # noqa: E501
583
+ :type: int
584
+ """
585
+
586
+ self._version = version
587
+
560
588
  def to_dict(self):
561
589
  """Returns the model properties as a dict"""
562
590
  result = {}
anyscale/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.26.59"
1
+ __version__ = "0.26.60"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: anyscale
3
- Version: 0.26.59
3
+ Version: 0.26.60
4
4
  Summary: Command Line Interface for Anyscale
5
5
  Author: Anyscale Inc.
6
6
  License: AS License
@@ -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=U90C2Vgx48z9PMTI6EbzHFbP3jWnDUutbIfMPBb8-SI,14711
30
30
  anyscale/util.py,sha256=7YPUcm1KCWnmwQpgO0iy0Ly3kSKEAdsCI2jmFridKH0,42881
31
- anyscale/version.py,sha256=VwhNYaobeKxNwUGcblgK8xFZ2lSa21sliH_NGpwWb0o,24
31
+ anyscale/version.py,sha256=V8tBevXMXxVAFe8cVZvVCvPfg-01ei_iMs2Fl5_4uzg,24
32
32
  anyscale/workspace_utils.py,sha256=OViE88CnIF5ruVxd3kazQ0Mf2BxqtMq6wx-XQ5A2cp8,1204
33
33
  anyscale/_private/anyscale_client/README.md,sha256=kSfI2Jfw5RHZWYtu0di3XtdSCx0d2pSwKMfjmDvw7Tg,3770
34
34
  anyscale/_private/anyscale_client/__init__.py,sha256=807Blx3RHQeS8BmKZcsOQQ4dYoKlCnpm6Bdsif2CrHg,337
@@ -317,7 +317,7 @@ anyscale/client/openapi_client/models/dataset_dag.py,sha256=_8wixt-pAWipBz8MQ20C
317
317
  anyscale/client/openapi_client/models/dataset_dag_response.py,sha256=KgPE8GwwuensHjvi820Z8xd2_k-SUzgKGj0fPgcaFrM,3588
318
318
  anyscale/client/openapi_client/models/dataset_jobs.py,sha256=1gt2IE0gyNiLQMDlCoswSowzNF_MnZy5VxuWn2p7Oys,3463
319
319
  anyscale/client/openapi_client/models/dataset_list_response.py,sha256=w9_Ynt3MjLlCuqEu5NIHNt3_fWxm7-Xrj6Qd2fd1vOg,4522
320
- anyscale/client/openapi_client/models/dataset_metrics.py,sha256=4ByUPIW_8vaUKd2LjAPPq4hs6kwpUyNqO_sHFf0mf4I,11464
320
+ anyscale/client/openapi_client/models/dataset_metrics.py,sha256=07QGvgV5K6pbSHz0dpaiq_VlWyT47Ytb6qyMwdgf3kc,12320
321
321
  anyscale/client/openapi_client/models/dataset_state.py,sha256=4Euk1-ipgujf-dmR7NqqJ7yZD2djwGRyqPOOA4BL16o,2931
322
322
  anyscale/client/openapi_client/models/dataset_upload.py,sha256=rOHyuUSC_14OlJU2I3d14K8SxD0sY-reNiYDsdKM8ec,4361
323
323
  anyscale/client/openapi_client/models/datasetupload_response.py,sha256=0c090SMm7H---lZkx9lPHAimah54Nk1hdwJK7pd82Mg,3561
@@ -689,15 +689,15 @@ anyscale/client/openapi_client/models/task_exception_group_aggregate.py,sha256=F
689
689
  anyscale/client/openapi_client/models/task_exception_group_aggregate_response.py,sha256=FeHAYoxGT6iQomJCKwmOTdQcbR6zjcOPQzbSjIy5t-A,5407
690
690
  anyscale/client/openapi_client/models/task_function_name_group_aggregate.py,sha256=-s48tQGpnqtexRz1rZ2m4EQox5U0950c9se1ox1JiZk,6666
691
691
  anyscale/client/openapi_client/models/task_function_name_group_aggregate_response.py,sha256=VD2VDPdyKKCq_wGFnYzHFRmqxu0bxV8abRWjm0HmZuE,5464
692
- anyscale/client/openapi_client/models/task_grouped_aggregate_metrics.py,sha256=85Ahe4Dp6IGAwWA7UQggqavDoyeUohQpn-iMP1ZohJg,11986
692
+ anyscale/client/openapi_client/models/task_grouped_aggregate_metrics.py,sha256=Ck0iwiqpEXG3YIvMtB3ehF-yO5fp7gHXUywXiInzDRg,14617
693
693
  anyscale/client/openapi_client/models/task_job_group_aggregate.py,sha256=hsF9Ebez0yYiKsSlSKSgd2DnRy6hAvv5yonV9ANdTaU,5452
694
694
  anyscale/client/openapi_client/models/task_job_group_aggregate_response.py,sha256=kB3KdyeS8dFUIKv216_KG3ZFWFTVR7OdudDG8fAelKE,5293
695
695
  anyscale/client/openapi_client/models/task_state.py,sha256=KpRA6VImK3r0qNeaiHh4an-HsKmbpeOJdGRFlmRrP1Y,2985
696
696
  anyscale/client/openapi_client/models/task_summary.py,sha256=8GIpf9xxmPDV8LJgIsGmSQex2R6CDKx0oJ9_VrL7oPw,9102
697
697
  anyscale/client/openapi_client/models/task_table_config.py,sha256=WMYjd4LFIb89Jv3k4KbseatYLYuI7M7uR9o6oaS1Bg4,7624
698
698
  anyscale/client/openapi_client/models/task_table_response.py,sha256=T8VDBMlOzD1c2hY_Q1JdOF8ZF1MqA5JUMbnRjCKZmcg,5074
699
- anyscale/client/openapi_client/models/task_table_row.py,sha256=7fXOimaIWXfTd7SLMsktKVUH6Mg7P4IOshBCL3bm9rs,16151
700
- anyscale/client/openapi_client/models/task_type.py,sha256=BwGeFgSgxL8aazGdhr58L7KyPHK5EqRrE_rVWuWyWCE,2807
699
+ anyscale/client/openapi_client/models/task_table_row.py,sha256=OgXHa1gc69xf6UJCjVK1DAqsEV0wwjRbTpZhKw3JUkQ,18016
700
+ anyscale/client/openapi_client/models/task_type.py,sha256=I6JbtPZIDcPHIDCFupqeZ9KkvE4fb-NewPPZ31dVG8A,2951
701
701
  anyscale/client/openapi_client/models/tasksummary_response.py,sha256=sgOV63ZyYroVvcLbISXz0LU44tW8tLCefcqYB1WFsQ0,3539
702
702
  anyscale/client/openapi_client/models/text_query.py,sha256=aMcKF6nRme1J1jYKhvqUIG8VzlcDN72znSFF9kKCc2Y,5107
703
703
  anyscale/client/openapi_client/models/tool.py,sha256=VdvWL_MW4EQGShmmjOL0OpD_oCBaU4EUofUxdzGSlwg,2977
@@ -767,7 +767,7 @@ anyscale/client/openapi_client/models/workspace_event_source_filter.py,sha256=2J
767
767
  anyscale/client/openapi_client/models/workspace_readme.py,sha256=ZP5DEBFvtLBJr8l7Ruto35hX-LCOIw45Pa2C4746jKE,3602
768
768
  anyscale/client/openapi_client/models/workspace_snapshot_states.py,sha256=RegahieY0JVF41W3JumWkb_JGjhnfv8JRBUFB0Exxo0,3482
769
769
  anyscale/client/openapi_client/models/workspace_system_artifacts.py,sha256=no_cfmidK4YgbwPhDzALxK3KcZyy-v6KDCT1GcZnmfU,8325
770
- anyscale/client/openapi_client/models/workspace_template.py,sha256=o0v5qq_G7TEXvuvjzQQZHzL8D-qHKdACJzbDeKEpefo,19191
770
+ anyscale/client/openapi_client/models/workspace_template.py,sha256=wuiXXEKrDYEU42wfukiLjtvRwjCbGw6dkEU5j4kVzUI,19940
771
771
  anyscale/client/openapi_client/models/workspace_template_category.py,sha256=NdOm5qP5pDRt6bOCThU5QAsNKR9f1lSfyRwWzVx2v_A,2896
772
772
  anyscale/client/openapi_client/models/workspace_template_cluster_environment_metadata.py,sha256=hRn6QO301s75_mTNvdXKA5W77rAnBkhE0G2GaWQheD0,5561
773
773
  anyscale/client/openapi_client/models/workspace_template_complexity.py,sha256=1NNfPh6zegncJvn0XZftvPiL7UZKDMk4BctD-KRyW2w,2946
@@ -1137,10 +1137,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
1137
1137
  anyscale/workspace/commands.py,sha256=GBwZenhxe4LFAOCoW8y8KLSgm2HxMxozJ3njEcx53QE,18555
1138
1138
  anyscale/workspace/models.py,sha256=uiMqoJRQNRgTcOIIsysSrtlHMtnI7paUWS34EN626Cg,10016
1139
1139
  anyscale/workspace/_private/workspace_sdk.py,sha256=2CMeYfJt0UtIFCocDn1ukw1iI5esKHdopLe6duEs-qE,27599
1140
- anyscale-0.26.59.dist-info/licenses/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1141
- anyscale-0.26.59.dist-info/licenses/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1142
- anyscale-0.26.59.dist-info/METADATA,sha256=m-OWUTO23gZfB9qw3cFMocPp59fsQ6XhC_xZs2DmMd0,3231
1143
- anyscale-0.26.59.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1144
- anyscale-0.26.59.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1145
- anyscale-0.26.59.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1146
- anyscale-0.26.59.dist-info/RECORD,,
1140
+ anyscale-0.26.60.dist-info/licenses/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1141
+ anyscale-0.26.60.dist-info/licenses/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1142
+ anyscale-0.26.60.dist-info/METADATA,sha256=VXBmoWPcgqT0KZYUSGgOFaSCaucKi3QOySRqZ1DDlWU,3231
1143
+ anyscale-0.26.60.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1144
+ anyscale-0.26.60.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1145
+ anyscale-0.26.60.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1146
+ anyscale-0.26.60.dist-info/RECORD,,