anyscale 0.26.59__py3-none-any.whl → 0.26.61__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.
- anyscale/client/README.md +4 -0
- anyscale/client/openapi_client/__init__.py +3 -0
- anyscale/client/openapi_client/api/default_api.py +133 -0
- anyscale/client/openapi_client/models/__init__.py +3 -0
- anyscale/client/openapi_client/models/aggregated_instance_usage_csv.py +81 -3
- anyscale/client/openapi_client/models/cluster_dashboard_node.py +361 -0
- anyscale/client/openapi_client/models/clusterdashboardnode_list_response.py +147 -0
- anyscale/client/openapi_client/models/dataset_metrics.py +29 -3
- anyscale/client/openapi_client/models/node_status.py +101 -0
- anyscale/client/openapi_client/models/task_grouped_aggregate_metrics.py +81 -3
- anyscale/client/openapi_client/models/task_table_row.py +54 -1
- anyscale/client/openapi_client/models/task_type.py +5 -3
- anyscale/client/openapi_client/models/workspace_template.py +45 -17
- anyscale/version.py +1 -1
- {anyscale-0.26.59.dist-info → anyscale-0.26.61.dist-info}/METADATA +1 -1
- {anyscale-0.26.59.dist-info → anyscale-0.26.61.dist-info}/RECORD +21 -18
- {anyscale-0.26.59.dist-info → anyscale-0.26.61.dist-info}/WHEEL +0 -0
- {anyscale-0.26.59.dist-info → anyscale-0.26.61.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.59.dist-info → anyscale-0.26.61.dist-info}/licenses/LICENSE +0 -0
- {anyscale-0.26.59.dist-info → anyscale-0.26.61.dist-info}/licenses/NOTICE +0 -0
- {anyscale-0.26.59.dist-info → anyscale-0.26.61.dist-info}/top_level.txt +0 -0
@@ -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
|
-
|
32
|
-
|
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 = [
|
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
|
-
'
|
53
|
+
'current_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
|
-
'
|
75
|
+
'current_version': 'current_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,
|
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, current_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()
|
@@ -97,7 +99,8 @@ class WorkspaceTemplate(object):
|
|
97
99
|
self._updated_at = None
|
98
100
|
self._organization_id = None
|
99
101
|
self._creator_email = None
|
100
|
-
self.
|
102
|
+
self._current_version = None
|
103
|
+
self._version = None
|
101
104
|
self.discriminator = None
|
102
105
|
|
103
106
|
self.name = name
|
@@ -128,8 +131,10 @@ class WorkspaceTemplate(object):
|
|
128
131
|
self.organization_id = organization_id
|
129
132
|
if creator_email is not None:
|
130
133
|
self.creator_email = creator_email
|
131
|
-
if
|
132
|
-
self.
|
134
|
+
if current_version is not None:
|
135
|
+
self.current_version = current_version
|
136
|
+
if version is not None:
|
137
|
+
self.version = version
|
133
138
|
|
134
139
|
@property
|
135
140
|
def name(self):
|
@@ -535,27 +540,50 @@ class WorkspaceTemplate(object):
|
|
535
540
|
self._creator_email = creator_email
|
536
541
|
|
537
542
|
@property
|
538
|
-
def
|
539
|
-
"""Gets the
|
543
|
+
def current_version(self):
|
544
|
+
"""Gets the current_version of this WorkspaceTemplate. # noqa: E501
|
540
545
|
|
541
|
-
|
546
|
+
Current version of the template. This is the version being published or the latest version if no version is published. # noqa: E501
|
542
547
|
|
543
|
-
:return: The
|
548
|
+
:return: The current_version of this WorkspaceTemplate. # noqa: E501
|
544
549
|
:rtype: WorkspaceTemplateVersionDataObject
|
545
550
|
"""
|
546
|
-
return self.
|
551
|
+
return self._current_version
|
547
552
|
|
548
|
-
@
|
549
|
-
def
|
550
|
-
"""Sets the
|
553
|
+
@current_version.setter
|
554
|
+
def current_version(self, current_version):
|
555
|
+
"""Sets the current_version of this WorkspaceTemplate.
|
551
556
|
|
552
|
-
|
557
|
+
Current version of the template. This is the version being published or the latest version if no version is published. # noqa: E501
|
553
558
|
|
554
|
-
:param
|
559
|
+
:param current_version: The current_version of this WorkspaceTemplate. # noqa: E501
|
555
560
|
:type: WorkspaceTemplateVersionDataObject
|
556
561
|
"""
|
557
562
|
|
558
|
-
self.
|
563
|
+
self._current_version = current_version
|
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
|
559
587
|
|
560
588
|
def to_dict(self):
|
561
589
|
"""Returns the model properties as a dict"""
|
anyscale/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.26.
|
1
|
+
__version__ = "0.26.61"
|
@@ -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=
|
31
|
+
anyscale/version.py,sha256=jIpkMtySujl8i7EsvM6mjWAmQK-lScrU7fRW9ocQZaE,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
|
@@ -106,7 +106,7 @@ anyscale/background/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
106
106
|
anyscale/background/job_runner.py,sha256=LTuv9JOahyv6C9i7DLQAONgQF6--FfYZEmJrKy-sUG8,2687
|
107
107
|
anyscale/client/.gitignore,sha256=JZyvYEtT2DCSK9V5Joi6lQofhMik4PXiJRCWsg7SvqI,807
|
108
108
|
anyscale/client/.openapi-generator-ignore,sha256=pu2PTide7pJtJ-DFLzDy0cTYQJRlrB-8RRH3zGLeUds,1040
|
109
|
-
anyscale/client/README.md,sha256=
|
109
|
+
anyscale/client/README.md,sha256=H1IX3LoZGKXse8kuKwmTuM_Uo-8pc-ha2ZtuNdnwow8,123945
|
110
110
|
anyscale/client/git_push.sh,sha256=EDCZOTTiLxbtPHmiU63qC99rGH67B7dhdPZdNUKivF0,1827
|
111
111
|
anyscale/client/requirements.txt,sha256=dkVKYUStC5h_g_87SH7pRdhXCj7ySozAJMGAFEzGgFc,126
|
112
112
|
anyscale/client/setup.cfg,sha256=l7bdKSIedeBhhoDtupsBwx1xPrlBf2yYeTH7a8kMga4,28
|
@@ -114,20 +114,20 @@ anyscale/client/setup.py,sha256=tSxqw1kAL1B9adnrnOarjnQfSbwGmnTr_kg8ZXhlm5A,1109
|
|
114
114
|
anyscale/client/test-requirements.txt,sha256=sTjmDTj5W9fh1ZAeo8UT2EBdeGDBNttj_PHiPBXg1D4,111
|
115
115
|
anyscale/client/tox.ini,sha256=M6L3UmvAdvU65LsoAF-Oi7oRjwZlCJZn8I7ofdXn5Ok,156
|
116
116
|
anyscale/client/.openapi-generator/VERSION,sha256=J0RzX-4u4jfin1kviKtmncjUePyjHm2kyvmkobOrt_E,5
|
117
|
-
anyscale/client/openapi_client/__init__.py,sha256=
|
117
|
+
anyscale/client/openapi_client/__init__.py,sha256=9p9985bD9J2N0TaMBjbcWISYMJwrWyI_XFaaQY_7DCQ,56113
|
118
118
|
anyscale/client/openapi_client/api_client.py,sha256=d8Un6j2Ny2vlS2qBXPVFj6_ql0k36DFahpWt_28TfCk,25563
|
119
119
|
anyscale/client/openapi_client/configuration.py,sha256=Dd5XrlHwv-wxnf0C35PG_-HBQoY3Yaz6hKrmkZz-m0E,12363
|
120
120
|
anyscale/client/openapi_client/exceptions.py,sha256=3egwsXQG2j_vARbqgBxUO1xSltAhpfiHTYVP7VXTvU0,3792
|
121
121
|
anyscale/client/openapi_client/rest.py,sha256=Ehj37v7GHW6SXV067Hze5HE42ayKaGi6a6ZlkR7u3Lg,12501
|
122
122
|
anyscale/client/openapi_client/api/__init__.py,sha256=i8u7BI2xX1GrXTL3hN0pKpYIlnT-D_uDxH2ElOfYG1I,141
|
123
|
-
anyscale/client/openapi_client/api/default_api.py,sha256=
|
124
|
-
anyscale/client/openapi_client/models/__init__.py,sha256=
|
123
|
+
anyscale/client/openapi_client/api/default_api.py,sha256=a_l9osCOeysAbNafHQYzHr7FrSmPBl2cRvnNKt2tOl8,2015449
|
124
|
+
anyscale/client/openapi_client/models/__init__.py,sha256=a6tKKEGC6_sJ3DYStoU5XWEeA2YnMpTHOlUVM6nrov0,55623
|
125
125
|
anyscale/client/openapi_client/models/access_config.py,sha256=b2mA0qtuTA5PFbp6C61Jc_T2zUMaojM1v32IhZo0MfY,3648
|
126
126
|
anyscale/client/openapi_client/models/actor_status.py,sha256=6xyX_aIqURj2raBdY9DmBxsdDACFrqqYvElGiM6YG2E,2813
|
127
127
|
anyscale/client/openapi_client/models/admin_create_user.py,sha256=9DPr8D0lKgoEZ3Z2kGsAd8L7ocFCiP6woOGLVs8SRb8,7251
|
128
128
|
anyscale/client/openapi_client/models/admin_created_user.py,sha256=uZffwCvMxIdPbpCRvFwpkfeG5D3LEQ50ebbwa_cj6bQ,8098
|
129
129
|
anyscale/client/openapi_client/models/admincreateduser_list_response.py,sha256=hjcjoagKHOFOyRZ0z47-AG_KucaFivgv4Nmtrj2gamQ,4437
|
130
|
-
anyscale/client/openapi_client/models/aggregated_instance_usage_csv.py,sha256=
|
130
|
+
anyscale/client/openapi_client/models/aggregated_instance_usage_csv.py,sha256=ibAYZDo2ZCeZyjFIDHGng7wd_DOE7RXy2Z8hcCfuoeo,29729
|
131
131
|
anyscale/client/openapi_client/models/aggregated_usage.py,sha256=ZXtYmzQcLyg2S8uuzliZhz3PdRKEvfmw1NaH6Ow2SKY,4291
|
132
132
|
anyscale/client/openapi_client/models/aggregated_usage_query.py,sha256=KU8sGskjrHzcJf_slbMsc8hNTnoolWKMqYqcpD8UMqE,7289
|
133
133
|
anyscale/client/openapi_client/models/aggregatedinstanceusagecsv_list_response.py,sha256=6KcwRRQeUbiY-IhZH0JxQTo9QexEXVn0IS69XZ4Y0J8,4587
|
@@ -231,6 +231,7 @@ anyscale/client/openapi_client/models/cloudresourcegcp_response.py,sha256=MjxfLr
|
|
231
231
|
anyscale/client/openapi_client/models/cloudwithcloudresource_response.py,sha256=qthJH5LuBA2naVmQmH1pPyY3D6kJ_F0KdkldAENaUXo,3660
|
232
232
|
anyscale/client/openapi_client/models/cloudwithcloudresourcegcp_response.py,sha256=0Qx-KdnAsQagoxK4tP-f0EyC_wMTeb9nIeVN0NK52w8,3693
|
233
233
|
anyscale/client/openapi_client/models/cluster_auth_response.py,sha256=BsP_6A9ff4Ww2k4MY7GjINBE0togixrCYbaWUDHNBW8,4526
|
234
|
+
anyscale/client/openapi_client/models/cluster_dashboard_node.py,sha256=1plTMXOcudvCBgcmvkJlXGnxVFSn4ac0SWxpttaqmYQ,11025
|
234
235
|
anyscale/client/openapi_client/models/cluster_environments_query.py,sha256=X2TRqYVnBMGY-QrslIR1jUTdh8ID4CPsuEhusnFh2SE,9699
|
235
236
|
anyscale/client/openapi_client/models/cluster_event.py,sha256=FMDhnRYYkYKgNSJS_uE-723BTsv4ktI-OomKbCN-0Zw,5881
|
236
237
|
anyscale/client/openapi_client/models/cluster_event_source.py,sha256=91NhcrFfTUPrDVt3B-VDdt3BNsrejOJKh0v_zC49cK8,3096
|
@@ -242,6 +243,7 @@ anyscale/client/openapi_client/models/cluster_state.py,sha256=OaI8dIEvvBQQWN9dl6
|
|
242
243
|
anyscale/client/openapi_client/models/cluster_status.py,sha256=9bvifs50nFxxfufadL5z0qA77W_4orO76r3U7BOKdjs,3010
|
243
244
|
anyscale/client/openapi_client/models/cluster_status_details.py,sha256=Sj086_AZaPrRE_4ANgO7utZ084U-dSzFBGIXN64h2j0,2999
|
244
245
|
anyscale/client/openapi_client/models/clusterauthresponse_response.py,sha256=rwq8UV5AKtjFkrWg0_k94EggUQ2OrSFkm36tIFK7YEk,3627
|
246
|
+
anyscale/client/openapi_client/models/clusterdashboardnode_list_response.py,sha256=mXRbpQeGCGKpXxlV_InrlUmwjo2e6_2umtLa50s0wjM,4497
|
245
247
|
anyscale/client/openapi_client/models/clusterevent_list_response.py,sha256=mtfYHoHjpzqg_VOyIn6XvcW71pfBPlfrxjVP6wxHsX4,4377
|
246
248
|
anyscale/client/openapi_client/models/clustereventsoutput_response.py,sha256=vFPLzXf_sRs8LAg16Ht6Oel18w6FISg7MLFi4YlTvHs,3627
|
247
249
|
anyscale/client/openapi_client/models/clusteroperation_response.py,sha256=g0tNqDigTKkzGSmhrDyhQYcUE0JQMCJTzk44INGhoV4,3594
|
@@ -317,7 +319,7 @@ anyscale/client/openapi_client/models/dataset_dag.py,sha256=_8wixt-pAWipBz8MQ20C
|
|
317
319
|
anyscale/client/openapi_client/models/dataset_dag_response.py,sha256=KgPE8GwwuensHjvi820Z8xd2_k-SUzgKGj0fPgcaFrM,3588
|
318
320
|
anyscale/client/openapi_client/models/dataset_jobs.py,sha256=1gt2IE0gyNiLQMDlCoswSowzNF_MnZy5VxuWn2p7Oys,3463
|
319
321
|
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=
|
322
|
+
anyscale/client/openapi_client/models/dataset_metrics.py,sha256=07QGvgV5K6pbSHz0dpaiq_VlWyT47Ytb6qyMwdgf3kc,12320
|
321
323
|
anyscale/client/openapi_client/models/dataset_state.py,sha256=4Euk1-ipgujf-dmR7NqqJ7yZD2djwGRyqPOOA4BL16o,2931
|
322
324
|
anyscale/client/openapi_client/models/dataset_upload.py,sha256=rOHyuUSC_14OlJU2I3d14K8SxD0sY-reNiYDsdKM8ec,4361
|
323
325
|
anyscale/client/openapi_client/models/datasetupload_response.py,sha256=0c090SMm7H---lZkx9lPHAimah54Nk1hdwJK7pd82Mg,3561
|
@@ -527,6 +529,7 @@ anyscale/client/openapi_client/models/node_registration_gcp.py,sha256=Sh8FjvGzLz
|
|
527
529
|
anyscale/client/openapi_client/models/node_registration_k8_s.py,sha256=swScvLnyOavOWALw12xXw5mvmkm0xr7RvMdURmalADY,5975
|
528
530
|
anyscale/client/openapi_client/models/node_registration_provisioned.py,sha256=-MbNO8KXgAQ1eUwtr-SQBfGH6bCmF4qieFOFIDWo3PU,5008
|
529
531
|
anyscale/client/openapi_client/models/node_registration_v2.py,sha256=R8fQYZIqqI9PoL7rdsdAVzR9kgUVMUV0X6KAjkOOA88,7803
|
532
|
+
anyscale/client/openapi_client/models/node_status.py,sha256=mVyT7bvJgtWE-F9H_Yclr8eVMHrOTawUx8R1GuyTBRM,2842
|
530
533
|
anyscale/client/openapi_client/models/node_type.py,sha256=OJ-8vjLuteh4r_e5J1xnsDMkVozNw8QuOqrURFkpT94,2870
|
531
534
|
anyscale/client/openapi_client/models/notification_channel_email_config.py,sha256=UZr99vatPMwuH8IzeNkv-2qZAWtZOMckh-JcYcbSoCs,3621
|
532
535
|
anyscale/client/openapi_client/models/notification_channel_slack_config.py,sha256=kYQ18Z8dvq8TY1QqNuJS6w7xz62AW44VwOjaVddHX7Y,3705
|
@@ -689,15 +692,15 @@ anyscale/client/openapi_client/models/task_exception_group_aggregate.py,sha256=F
|
|
689
692
|
anyscale/client/openapi_client/models/task_exception_group_aggregate_response.py,sha256=FeHAYoxGT6iQomJCKwmOTdQcbR6zjcOPQzbSjIy5t-A,5407
|
690
693
|
anyscale/client/openapi_client/models/task_function_name_group_aggregate.py,sha256=-s48tQGpnqtexRz1rZ2m4EQox5U0950c9se1ox1JiZk,6666
|
691
694
|
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=
|
695
|
+
anyscale/client/openapi_client/models/task_grouped_aggregate_metrics.py,sha256=Ck0iwiqpEXG3YIvMtB3ehF-yO5fp7gHXUywXiInzDRg,14617
|
693
696
|
anyscale/client/openapi_client/models/task_job_group_aggregate.py,sha256=hsF9Ebez0yYiKsSlSKSgd2DnRy6hAvv5yonV9ANdTaU,5452
|
694
697
|
anyscale/client/openapi_client/models/task_job_group_aggregate_response.py,sha256=kB3KdyeS8dFUIKv216_KG3ZFWFTVR7OdudDG8fAelKE,5293
|
695
698
|
anyscale/client/openapi_client/models/task_state.py,sha256=KpRA6VImK3r0qNeaiHh4an-HsKmbpeOJdGRFlmRrP1Y,2985
|
696
699
|
anyscale/client/openapi_client/models/task_summary.py,sha256=8GIpf9xxmPDV8LJgIsGmSQex2R6CDKx0oJ9_VrL7oPw,9102
|
697
700
|
anyscale/client/openapi_client/models/task_table_config.py,sha256=WMYjd4LFIb89Jv3k4KbseatYLYuI7M7uR9o6oaS1Bg4,7624
|
698
701
|
anyscale/client/openapi_client/models/task_table_response.py,sha256=T8VDBMlOzD1c2hY_Q1JdOF8ZF1MqA5JUMbnRjCKZmcg,5074
|
699
|
-
anyscale/client/openapi_client/models/task_table_row.py,sha256=
|
700
|
-
anyscale/client/openapi_client/models/task_type.py,sha256=
|
702
|
+
anyscale/client/openapi_client/models/task_table_row.py,sha256=OgXHa1gc69xf6UJCjVK1DAqsEV0wwjRbTpZhKw3JUkQ,18016
|
703
|
+
anyscale/client/openapi_client/models/task_type.py,sha256=I6JbtPZIDcPHIDCFupqeZ9KkvE4fb-NewPPZ31dVG8A,2951
|
701
704
|
anyscale/client/openapi_client/models/tasksummary_response.py,sha256=sgOV63ZyYroVvcLbISXz0LU44tW8tLCefcqYB1WFsQ0,3539
|
702
705
|
anyscale/client/openapi_client/models/text_query.py,sha256=aMcKF6nRme1J1jYKhvqUIG8VzlcDN72znSFF9kKCc2Y,5107
|
703
706
|
anyscale/client/openapi_client/models/tool.py,sha256=VdvWL_MW4EQGShmmjOL0OpD_oCBaU4EUofUxdzGSlwg,2977
|
@@ -767,7 +770,7 @@ anyscale/client/openapi_client/models/workspace_event_source_filter.py,sha256=2J
|
|
767
770
|
anyscale/client/openapi_client/models/workspace_readme.py,sha256=ZP5DEBFvtLBJr8l7Ruto35hX-LCOIw45Pa2C4746jKE,3602
|
768
771
|
anyscale/client/openapi_client/models/workspace_snapshot_states.py,sha256=RegahieY0JVF41W3JumWkb_JGjhnfv8JRBUFB0Exxo0,3482
|
769
772
|
anyscale/client/openapi_client/models/workspace_system_artifacts.py,sha256=no_cfmidK4YgbwPhDzALxK3KcZyy-v6KDCT1GcZnmfU,8325
|
770
|
-
anyscale/client/openapi_client/models/workspace_template.py,sha256=
|
773
|
+
anyscale/client/openapi_client/models/workspace_template.py,sha256=v_SCmCaJX-3yjHGs4Li48ninH5t-_pHUo5XflXbzb4M,20070
|
771
774
|
anyscale/client/openapi_client/models/workspace_template_category.py,sha256=NdOm5qP5pDRt6bOCThU5QAsNKR9f1lSfyRwWzVx2v_A,2896
|
772
775
|
anyscale/client/openapi_client/models/workspace_template_cluster_environment_metadata.py,sha256=hRn6QO301s75_mTNvdXKA5W77rAnBkhE0G2GaWQheD0,5561
|
773
776
|
anyscale/client/openapi_client/models/workspace_template_complexity.py,sha256=1NNfPh6zegncJvn0XZftvPiL7UZKDMk4BctD-KRyW2w,2946
|
@@ -1137,10 +1140,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
|
|
1137
1140
|
anyscale/workspace/commands.py,sha256=GBwZenhxe4LFAOCoW8y8KLSgm2HxMxozJ3njEcx53QE,18555
|
1138
1141
|
anyscale/workspace/models.py,sha256=uiMqoJRQNRgTcOIIsysSrtlHMtnI7paUWS34EN626Cg,10016
|
1139
1142
|
anyscale/workspace/_private/workspace_sdk.py,sha256=2CMeYfJt0UtIFCocDn1ukw1iI5esKHdopLe6duEs-qE,27599
|
1140
|
-
anyscale-0.26.
|
1141
|
-
anyscale-0.26.
|
1142
|
-
anyscale-0.26.
|
1143
|
-
anyscale-0.26.
|
1144
|
-
anyscale-0.26.
|
1145
|
-
anyscale-0.26.
|
1146
|
-
anyscale-0.26.
|
1143
|
+
anyscale-0.26.61.dist-info/licenses/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
|
1144
|
+
anyscale-0.26.61.dist-info/licenses/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
|
1145
|
+
anyscale-0.26.61.dist-info/METADATA,sha256=esYEMkwAOrPvRN7WjE97Wi-kDGS4yZz41rowKd1lplI,3231
|
1146
|
+
anyscale-0.26.61.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
1147
|
+
anyscale-0.26.61.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
|
1148
|
+
anyscale-0.26.61.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
|
1149
|
+
anyscale-0.26.61.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|