anyscale 0.26.0__py3-none-any.whl → 0.26.1__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 +11 -10
- anyscale/client/openapi_client/__init__.py +6 -6
- anyscale/client/openapi_client/api/default_api.py +210 -83
- anyscale/client/openapi_client/models/__init__.py +6 -6
- anyscale/client/openapi_client/models/aggregated_instance_usage_csv.py +81 -3
- anyscale/client/openapi_client/models/create_organization_configuration.py +3 -3
- anyscale/client/openapi_client/models/{create_resource_alert.py → create_resource_notification.py} +40 -40
- anyscale/client/openapi_client/models/{list_resource_alerts_query.py → list_resource_notifications_query.py} +24 -24
- anyscale/client/openapi_client/models/{customer_billing_type.py → machine_launch_failure.py} +65 -14
- anyscale/client/openapi_client/models/organization_configuration.py +3 -3
- anyscale/client/openapi_client/models/organization_configuration_response.py +3 -3
- anyscale/client/openapi_client/models/resource_alert_event_type.py +4 -1
- anyscale/client/openapi_client/models/{resource_alert.py → resource_notification.py} +64 -64
- anyscale/client/openapi_client/models/{resourcealert_list_response.py → resourcenotification_list_response.py} +15 -15
- anyscale/client/openapi_client/models/{resourcealert_response.py → resourcenotification_response.py} +11 -11
- anyscale/client/openapi_client/models/scheduler_info.py +32 -3
- anyscale/client/openapi_client/models/tool.py +2 -1
- anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py +31 -3
- anyscale/commands/machine_pool_commands.py +15 -10
- anyscale/resource_quota/commands.py +1 -2
- anyscale/service/_private/service_sdk.py +2 -3
- anyscale/shared_anyscale_utils/constants.py +3 -0
- anyscale/version.py +1 -1
- {anyscale-0.26.0.dist-info → anyscale-0.26.1.dist-info}/METADATA +1 -1
- {anyscale-0.26.0.dist-info → anyscale-0.26.1.dist-info}/RECORD +30 -29
- {anyscale-0.26.0.dist-info → anyscale-0.26.1.dist-info}/LICENSE +0 -0
- {anyscale-0.26.0.dist-info → anyscale-0.26.1.dist-info}/NOTICE +0 -0
- {anyscale-0.26.0.dist-info → anyscale-0.26.1.dist-info}/WHEEL +0 -0
- {anyscale-0.26.0.dist-info → anyscale-0.26.1.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.0.dist-info → anyscale-0.26.1.dist-info}/top_level.txt +0 -0
@@ -34,15 +34,17 @@ class SchedulerInfo(object):
|
|
34
34
|
"""
|
35
35
|
openapi_types = {
|
36
36
|
'requests': 'list[RequestStateInfo]',
|
37
|
-
'machines': 'list[MachineStateInfo]'
|
37
|
+
'machines': 'list[MachineStateInfo]',
|
38
|
+
'recent_launch_failures': 'list[MachineLaunchFailure]'
|
38
39
|
}
|
39
40
|
|
40
41
|
attribute_map = {
|
41
42
|
'requests': 'requests',
|
42
|
-
'machines': 'machines'
|
43
|
+
'machines': 'machines',
|
44
|
+
'recent_launch_failures': 'recent_launch_failures'
|
43
45
|
}
|
44
46
|
|
45
|
-
def __init__(self, requests=None, machines=None, local_vars_configuration=None): # noqa: E501
|
47
|
+
def __init__(self, requests=None, machines=None, recent_launch_failures=None, local_vars_configuration=None): # noqa: E501
|
46
48
|
"""SchedulerInfo - a model defined in OpenAPI""" # noqa: E501
|
47
49
|
if local_vars_configuration is None:
|
48
50
|
local_vars_configuration = Configuration()
|
@@ -50,10 +52,12 @@ class SchedulerInfo(object):
|
|
50
52
|
|
51
53
|
self._requests = None
|
52
54
|
self._machines = None
|
55
|
+
self._recent_launch_failures = None
|
53
56
|
self.discriminator = None
|
54
57
|
|
55
58
|
self.requests = requests
|
56
59
|
self.machines = machines
|
60
|
+
self.recent_launch_failures = recent_launch_failures
|
57
61
|
|
58
62
|
@property
|
59
63
|
def requests(self):
|
@@ -105,6 +109,31 @@ class SchedulerInfo(object):
|
|
105
109
|
|
106
110
|
self._machines = machines
|
107
111
|
|
112
|
+
@property
|
113
|
+
def recent_launch_failures(self):
|
114
|
+
"""Gets the recent_launch_failures of this SchedulerInfo. # noqa: E501
|
115
|
+
|
116
|
+
Recent launch failures. # noqa: E501
|
117
|
+
|
118
|
+
:return: The recent_launch_failures of this SchedulerInfo. # noqa: E501
|
119
|
+
:rtype: list[MachineLaunchFailure]
|
120
|
+
"""
|
121
|
+
return self._recent_launch_failures
|
122
|
+
|
123
|
+
@recent_launch_failures.setter
|
124
|
+
def recent_launch_failures(self, recent_launch_failures):
|
125
|
+
"""Sets the recent_launch_failures of this SchedulerInfo.
|
126
|
+
|
127
|
+
Recent launch failures. # noqa: E501
|
128
|
+
|
129
|
+
:param recent_launch_failures: The recent_launch_failures of this SchedulerInfo. # noqa: E501
|
130
|
+
:type: list[MachineLaunchFailure]
|
131
|
+
"""
|
132
|
+
if self.local_vars_configuration.client_side_validation and recent_launch_failures is None: # noqa: E501
|
133
|
+
raise ValueError("Invalid value for `recent_launch_failures`, must not be `None`") # noqa: E501
|
134
|
+
|
135
|
+
self._recent_launch_failures = recent_launch_failures
|
136
|
+
|
108
137
|
def to_dict(self):
|
109
138
|
"""Returns the model properties as a dict"""
|
110
139
|
result = {}
|
@@ -30,8 +30,9 @@ class Tool(object):
|
|
30
30
|
"""
|
31
31
|
SERVICE_DASHBOARD = "service_dashboard"
|
32
32
|
SERVE_DEPLOYMENT_DASHBOARD = "serve_deployment_dashboard"
|
33
|
+
SERVICE_ALERTING_DASHBOARD = "service_alerting_dashboard"
|
33
34
|
|
34
|
-
allowable_values = [SERVICE_DASHBOARD, SERVE_DEPLOYMENT_DASHBOARD] # noqa: E501
|
35
|
+
allowable_values = [SERVICE_DASHBOARD, SERVE_DEPLOYMENT_DASHBOARD, SERVICE_ALERTING_DASHBOARD] # noqa: E501
|
35
36
|
|
36
37
|
"""
|
37
38
|
Attributes:
|
@@ -36,17 +36,19 @@ class WorkspaceDataplaneProxiedArtifacts(object):
|
|
36
36
|
'requirements': 'str',
|
37
37
|
'skip_packages_tracking': 'str',
|
38
38
|
'environment_variables': 'list[str]',
|
39
|
-
'dockerfile': 'str'
|
39
|
+
'dockerfile': 'str',
|
40
|
+
'dockerfile_draft': 'str'
|
40
41
|
}
|
41
42
|
|
42
43
|
attribute_map = {
|
43
44
|
'requirements': 'requirements',
|
44
45
|
'skip_packages_tracking': 'skip_packages_tracking',
|
45
46
|
'environment_variables': 'environment_variables',
|
46
|
-
'dockerfile': 'dockerfile'
|
47
|
+
'dockerfile': 'dockerfile',
|
48
|
+
'dockerfile_draft': 'dockerfile_draft'
|
47
49
|
}
|
48
50
|
|
49
|
-
def __init__(self, requirements=None, skip_packages_tracking=None, environment_variables=None, dockerfile=None, local_vars_configuration=None): # noqa: E501
|
51
|
+
def __init__(self, requirements=None, skip_packages_tracking=None, environment_variables=None, dockerfile=None, dockerfile_draft=None, local_vars_configuration=None): # noqa: E501
|
50
52
|
"""WorkspaceDataplaneProxiedArtifacts - a model defined in OpenAPI""" # noqa: E501
|
51
53
|
if local_vars_configuration is None:
|
52
54
|
local_vars_configuration = Configuration()
|
@@ -56,6 +58,7 @@ class WorkspaceDataplaneProxiedArtifacts(object):
|
|
56
58
|
self._skip_packages_tracking = None
|
57
59
|
self._environment_variables = None
|
58
60
|
self._dockerfile = None
|
61
|
+
self._dockerfile_draft = None
|
59
62
|
self.discriminator = None
|
60
63
|
|
61
64
|
if requirements is not None:
|
@@ -66,6 +69,8 @@ class WorkspaceDataplaneProxiedArtifacts(object):
|
|
66
69
|
self.environment_variables = environment_variables
|
67
70
|
if dockerfile is not None:
|
68
71
|
self.dockerfile = dockerfile
|
72
|
+
if dockerfile_draft is not None:
|
73
|
+
self.dockerfile_draft = dockerfile_draft
|
69
74
|
|
70
75
|
@property
|
71
76
|
def requirements(self):
|
@@ -159,6 +164,29 @@ class WorkspaceDataplaneProxiedArtifacts(object):
|
|
159
164
|
|
160
165
|
self._dockerfile = dockerfile
|
161
166
|
|
167
|
+
@property
|
168
|
+
def dockerfile_draft(self):
|
169
|
+
"""Gets the dockerfile_draft of this WorkspaceDataplaneProxiedArtifacts. # noqa: E501
|
170
|
+
|
171
|
+
The Dockerfile.draft of the workspace. # noqa: E501
|
172
|
+
|
173
|
+
:return: The dockerfile_draft of this WorkspaceDataplaneProxiedArtifacts. # noqa: E501
|
174
|
+
:rtype: str
|
175
|
+
"""
|
176
|
+
return self._dockerfile_draft
|
177
|
+
|
178
|
+
@dockerfile_draft.setter
|
179
|
+
def dockerfile_draft(self, dockerfile_draft):
|
180
|
+
"""Sets the dockerfile_draft of this WorkspaceDataplaneProxiedArtifacts.
|
181
|
+
|
182
|
+
The Dockerfile.draft of the workspace. # noqa: E501
|
183
|
+
|
184
|
+
:param dockerfile_draft: The dockerfile_draft of this WorkspaceDataplaneProxiedArtifacts. # noqa: E501
|
185
|
+
:type: str
|
186
|
+
"""
|
187
|
+
|
188
|
+
self._dockerfile_draft = dockerfile_draft
|
189
|
+
|
162
190
|
def to_dict(self):
|
163
191
|
"""Returns the model properties as a dict"""
|
164
192
|
result = {}
|
@@ -102,6 +102,10 @@ def describe(name: str, format_: str) -> None:
|
|
102
102
|
if format_ == "json":
|
103
103
|
print(json.dumps(scheduler_info.to_dict(), default=str))
|
104
104
|
elif format_ == "table":
|
105
|
+
|
106
|
+
def format_time(timestamp):
|
107
|
+
return str(timestamp.astimezone().strftime("%m/%d/%Y %I:%M:%S %p %Z"))
|
108
|
+
|
105
109
|
machines_table = []
|
106
110
|
columns = [
|
107
111
|
"MACHINE ID",
|
@@ -124,11 +128,7 @@ def describe(name: str, format_: str) -> None:
|
|
124
128
|
if row.workload_info.workload_name
|
125
129
|
else "",
|
126
130
|
row.workload_score,
|
127
|
-
|
128
|
-
row.workload_info.workload_start_time.astimezone().strftime(
|
129
|
-
"%m/%d/%Y %I:%M:%S %p %Z"
|
130
|
-
)
|
131
|
-
)
|
131
|
+
format_time(row.workload_info.workload_start_time)
|
132
132
|
if row.workload_info.workload_name
|
133
133
|
else "",
|
134
134
|
row.cloud_instance_id,
|
@@ -160,11 +160,7 @@ def describe(name: str, format_: str) -> None:
|
|
160
160
|
row.size,
|
161
161
|
row.machine_type,
|
162
162
|
f"{row.workload_info.workload_type}/{row.workload_info.workload_name}",
|
163
|
-
|
164
|
-
row.workload_info.workload_start_time.astimezone().strftime(
|
165
|
-
"%m/%d/%Y %I:%M:%S %p %Z"
|
166
|
-
)
|
167
|
-
)
|
163
|
+
format_time(row.workload_info.workload_start_time)
|
168
164
|
if row.workload_info.workload_name
|
169
165
|
else "",
|
170
166
|
row.workload_info.workload_cloud,
|
@@ -180,6 +176,15 @@ def describe(name: str, format_: str) -> None:
|
|
180
176
|
)
|
181
177
|
)
|
182
178
|
|
179
|
+
if (
|
180
|
+
scheduler_info.recent_launch_failures
|
181
|
+
and len(scheduler_info.recent_launch_failures) > 0
|
182
|
+
):
|
183
|
+
print("Recent Launch Failures:")
|
184
|
+
for failure in scheduler_info.recent_launch_failures:
|
185
|
+
error = failure.error.replace("\n", " ")
|
186
|
+
print(f"- [{format_time(failure.timestamp)}] {error}")
|
187
|
+
|
183
188
|
|
184
189
|
@machine_pool_cli.command(
|
185
190
|
name="delete",
|
@@ -12,7 +12,7 @@ import anyscale
|
|
12
12
|
from anyscale.resource_quota.models import CreateResourceQuota
|
13
13
|
|
14
14
|
anyscale.resource_quota.create(
|
15
|
-
|
15
|
+
CreateResourceQuota(
|
16
16
|
name="my-resource-quota",
|
17
17
|
cloud="my-cloud",
|
18
18
|
project="my-project",
|
@@ -25,7 +25,6 @@ _CREATE_DOCSTRINGS = {"create_resource_quota": "The resource quota to be created
|
|
25
25
|
|
26
26
|
_LIST_EXAMPLE = """
|
27
27
|
import anyscale
|
28
|
-
from anyscale.resource_quota.models import CreateResourceQuota
|
29
28
|
|
30
29
|
anyscale.resource_quota.list(
|
31
30
|
name="my-resource-quota",
|
@@ -24,6 +24,7 @@ from anyscale.service.models import (
|
|
24
24
|
ServiceVersionStatus,
|
25
25
|
TracingConfig,
|
26
26
|
)
|
27
|
+
from anyscale.shared_anyscale_utils.constants import SERVICE_VERSION_ID_TRUNCATED_LEN
|
27
28
|
from anyscale.utils.runtime_env import parse_requirements_file
|
28
29
|
from anyscale.utils.workspace_notification import (
|
29
30
|
WorkspaceNotification,
|
@@ -32,8 +33,6 @@ from anyscale.utils.workspace_notification import (
|
|
32
33
|
|
33
34
|
|
34
35
|
class PrivateServiceSDK(WorkloadSDK):
|
35
|
-
SERVICE_VERSION_ID_TRUNCATED_LEN = 8
|
36
|
-
|
37
36
|
def _override_application_runtime_envs(
|
38
37
|
self,
|
39
38
|
config: ServiceConfig,
|
@@ -514,7 +513,7 @@ class PrivateServiceSDK(WorkloadSDK):
|
|
514
513
|
# NOTE(edoakes): the "version ID" exposed in the UI and tagged in the metrics is
|
515
514
|
# not actually the DB ID, but a truncated version of it. We should store this
|
516
515
|
# in the DB to avoid breakages, but for now I'm copying the existing logic.
|
517
|
-
return model.id[-
|
516
|
+
return model.id[-SERVICE_VERSION_ID_TRUNCATED_LEN:]
|
518
517
|
|
519
518
|
def _service_version_model_to_status(
|
520
519
|
self,
|
anyscale/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.26.
|
1
|
+
__version__ = "0.26.1"
|
@@ -27,7 +27,7 @@ anyscale/scripts.py,sha256=HR6JOCBVBXMVi1Kz5uJmjsh73t2l1W8UbUge83ofnqk,5474
|
|
27
27
|
anyscale/snapshot.py,sha256=UGJT5C1s_4xmQxjWODK5DFpGxHRBX5jOCdSCqXESH8E,1685
|
28
28
|
anyscale/tables.py,sha256=TV4F2uLnwehvbkAfaP7iuLlT2wLIo6ORH2LVdRGXW5g,2840
|
29
29
|
anyscale/util.py,sha256=Tqb9qWSxQI_PBJVSDxm9RWqFyGJFClgZDPByhb_fhU8,40813
|
30
|
-
anyscale/version.py,sha256=
|
30
|
+
anyscale/version.py,sha256=u0eTmljUU0kO8AAW-e1ESQ49mK2SuhpCy7eCliBLlDU,23
|
31
31
|
anyscale/workspace_utils.py,sha256=OViE88CnIF5ruVxd3kazQ0Mf2BxqtMq6wx-XQ5A2cp8,1204
|
32
32
|
anyscale/_private/anyscale_client/README.md,sha256=gk8obk7kqg6VWoUHcqDMwJULh35tYKEZFC0UF_dixGA,718
|
33
33
|
anyscale/_private/anyscale_client/__init__.py,sha256=807Blx3RHQeS8BmKZcsOQQ4dYoKlCnpm6Bdsif2CrHg,337
|
@@ -98,7 +98,7 @@ anyscale/background/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
98
98
|
anyscale/background/job_runner.py,sha256=LTuv9JOahyv6C9i7DLQAONgQF6--FfYZEmJrKy-sUG8,2687
|
99
99
|
anyscale/client/.gitignore,sha256=JZyvYEtT2DCSK9V5Joi6lQofhMik4PXiJRCWsg7SvqI,807
|
100
100
|
anyscale/client/.openapi-generator-ignore,sha256=pu2PTide7pJtJ-DFLzDy0cTYQJRlrB-8RRH3zGLeUds,1040
|
101
|
-
anyscale/client/README.md,sha256=
|
101
|
+
anyscale/client/README.md,sha256=86Iyf9aRTcSgG4CyfUtjvJJ87Q2KlrK-nQP5WPF8kwM,133052
|
102
102
|
anyscale/client/git_push.sh,sha256=EDCZOTTiLxbtPHmiU63qC99rGH67B7dhdPZdNUKivF0,1827
|
103
103
|
anyscale/client/requirements.txt,sha256=dkVKYUStC5h_g_87SH7pRdhXCj7ySozAJMGAFEzGgFc,126
|
104
104
|
anyscale/client/setup.cfg,sha256=l7bdKSIedeBhhoDtupsBwx1xPrlBf2yYeTH7a8kMga4,28
|
@@ -106,19 +106,19 @@ anyscale/client/setup.py,sha256=tSxqw1kAL1B9adnrnOarjnQfSbwGmnTr_kg8ZXhlm5A,1109
|
|
106
106
|
anyscale/client/test-requirements.txt,sha256=sTjmDTj5W9fh1ZAeo8UT2EBdeGDBNttj_PHiPBXg1D4,111
|
107
107
|
anyscale/client/tox.ini,sha256=M6L3UmvAdvU65LsoAF-Oi7oRjwZlCJZn8I7ofdXn5Ok,156
|
108
108
|
anyscale/client/.openapi-generator/VERSION,sha256=J0RzX-4u4jfin1kviKtmncjUePyjHm2kyvmkobOrt_E,5
|
109
|
-
anyscale/client/openapi_client/__init__.py,sha256=
|
109
|
+
anyscale/client/openapi_client/__init__.py,sha256=vrv-hrq1PVR20zbmyU9jVpsWYIjNuAraB2S6ZX_0wXw,55421
|
110
110
|
anyscale/client/openapi_client/api_client.py,sha256=d8Un6j2Ny2vlS2qBXPVFj6_ql0k36DFahpWt_28TfCk,25563
|
111
111
|
anyscale/client/openapi_client/configuration.py,sha256=Dd5XrlHwv-wxnf0C35PG_-HBQoY3Yaz6hKrmkZz-m0E,12363
|
112
112
|
anyscale/client/openapi_client/exceptions.py,sha256=3egwsXQG2j_vARbqgBxUO1xSltAhpfiHTYVP7VXTvU0,3792
|
113
113
|
anyscale/client/openapi_client/rest.py,sha256=Ehj37v7GHW6SXV067Hze5HE42ayKaGi6a6ZlkR7u3Lg,12501
|
114
114
|
anyscale/client/openapi_client/api/__init__.py,sha256=i8u7BI2xX1GrXTL3hN0pKpYIlnT-D_uDxH2ElOfYG1I,141
|
115
|
-
anyscale/client/openapi_client/api/default_api.py,sha256=
|
116
|
-
anyscale/client/openapi_client/models/__init__.py,sha256=
|
115
|
+
anyscale/client/openapi_client/api/default_api.py,sha256=cKfG1Y1H_ZJc1FxH_Z0PQ5eOSU5Am8tlj5ZzMO1Y4S0,2146151
|
116
|
+
anyscale/client/openapi_client/models/__init__.py,sha256=v6gEk5wfCxCJcCK_zP39giLc4fafliNvSH6b0NulK_Y,54931
|
117
117
|
anyscale/client/openapi_client/models/access_config.py,sha256=b2mA0qtuTA5PFbp6C61Jc_T2zUMaojM1v32IhZo0MfY,3648
|
118
118
|
anyscale/client/openapi_client/models/admin_create_user.py,sha256=9DPr8D0lKgoEZ3Z2kGsAd8L7ocFCiP6woOGLVs8SRb8,7251
|
119
119
|
anyscale/client/openapi_client/models/admin_created_user.py,sha256=uZffwCvMxIdPbpCRvFwpkfeG5D3LEQ50ebbwa_cj6bQ,8098
|
120
120
|
anyscale/client/openapi_client/models/admincreateduser_list_response.py,sha256=hjcjoagKHOFOyRZ0z47-AG_KucaFivgv4Nmtrj2gamQ,4437
|
121
|
-
anyscale/client/openapi_client/models/aggregated_instance_usage_csv.py,sha256=
|
121
|
+
anyscale/client/openapi_client/models/aggregated_instance_usage_csv.py,sha256=JJHa78MJm6lf4Q3CE2N7EzpYv0SZ5muXhCtAmgoNLcQ,27390
|
122
122
|
anyscale/client/openapi_client/models/aggregated_usage.py,sha256=ZXtYmzQcLyg2S8uuzliZhz3PdRKEvfmw1NaH6Ow2SKY,4291
|
123
123
|
anyscale/client/openapi_client/models/aggregated_usage_query.py,sha256=KU8sGskjrHzcJf_slbMsc8hNTnoolWKMqYqcpD8UMqE,7289
|
124
124
|
anyscale/client/openapi_client/models/aggregatedinstanceusagecsv_list_response.py,sha256=6KcwRRQeUbiY-IhZH0JxQTo9QexEXVn0IS69XZ4Y0J8,4587
|
@@ -298,11 +298,11 @@ anyscale/client/openapi_client/models/create_machine_request.py,sha256=Jc7J8_9sm
|
|
298
298
|
anyscale/client/openapi_client/models/create_machine_response.py,sha256=izPOW9h83TKyzaYPcUpuBOb_W5MZsSqQKofQTNxo97k,3833
|
299
299
|
anyscale/client/openapi_client/models/create_metronome_webhook_notification.py,sha256=x6rMzehPl-n0Dvm9_EF6O5i0Bcxej7mpJfINTf_TVoM,5348
|
300
300
|
anyscale/client/openapi_client/models/create_notification_channel_record.py,sha256=2s19nGbBMxD_xZDH9kJATq0IzuWiknb03PmZ2o-cnMY,5490
|
301
|
-
anyscale/client/openapi_client/models/create_organization_configuration.py,sha256=
|
301
|
+
anyscale/client/openapi_client/models/create_organization_configuration.py,sha256=uxhpWudgWVoaVjPFwP74pfL5JH2ta82h3BDqE2hNRKk,6300
|
302
302
|
anyscale/client/openapi_client/models/create_organization_invitation.py,sha256=bEoVh05c39JlHYs-n_-WgQ1bJnzFRj3ZUCNw9VRZiTc,3566
|
303
303
|
anyscale/client/openapi_client/models/create_otp_return_api_model.py,sha256=3vZdFnSnm0dRY0-R1HB0ZPRVy0OiQjfsm0puoc9WwQ0,4238
|
304
304
|
anyscale/client/openapi_client/models/create_production_job_config.py,sha256=0R81vIJYqAJLD6C38n2aDRAs05KglHx5ORt7x5sPn8Y,12600
|
305
|
-
anyscale/client/openapi_client/models/
|
305
|
+
anyscale/client/openapi_client/models/create_resource_notification.py,sha256=5x-fXt1Nk5hC46SQoutxx8HsBokixrfjL3rRjDv_Qsg,8938
|
306
306
|
anyscale/client/openapi_client/models/create_resource_quota.py,sha256=WOly3xraLO5vdgtEs9DeIj9oX9MHZIkQ-_UZYYDu0Pk,9504
|
307
307
|
anyscale/client/openapi_client/models/create_schedule.py,sha256=JMUqz1xn6IUkhow3yTLouhmTzIVJMsF3S6KbGMF7MQQ,8048
|
308
308
|
anyscale/client/openapi_client/models/create_session_from_snapshot_options.py,sha256=YoTQhdKbN3xucsa6NRVESXS-aoIiV_q7i006fPIOYn0,18081
|
@@ -320,7 +320,6 @@ anyscale/client/openapi_client/models/createotpreturnapimodel_response.py,sha256
|
|
320
320
|
anyscale/client/openapi_client/models/createsessionresponse_response.py,sha256=_C0NHXFcgRBZLVfnTUgXrcfXqH0zBmeWpj-f03no3Vs,3649
|
321
321
|
anyscale/client/openapi_client/models/credit_card_information.py,sha256=Ael5jCvF_GFy5jKGNtAqjwai5TgbIi75wdV7X0eVrOs,9077
|
322
322
|
anyscale/client/openapi_client/models/customer_alert_status.py,sha256=hcvEKv0QHAy-98ENvrud0FfIVHK5Lu6GOC8QDBRfCrU,2890
|
323
|
-
anyscale/client/openapi_client/models/customer_billing_type.py,sha256=M2C9Oy2pl-vD-G8j9PuCaRLrvZdyrcQeNUDjjXQayXY,2965
|
324
323
|
anyscale/client/openapi_client/models/dataplane_services.py,sha256=iPEKAk7R83srccjR0l25YY2pntdf_6IfID-dhDA9v_4,2918
|
325
324
|
anyscale/client/openapi_client/models/dataset.py,sha256=Gok0vAOXDEj2A3vZwbGxNnH-2Ajxu9pRGWZvfQ0usSQ,12062
|
326
325
|
anyscale/client/openapi_client/models/dataset_list_response.py,sha256=w9_Ynt3MjLlCuqEu5NIHNt3_fWxm7-Xrj6Qd2fd1vOg,4522
|
@@ -470,7 +469,7 @@ anyscale/client/openapi_client/models/lb_resource.py,sha256=UAjfCjXZAvAn64WSltl-
|
|
470
469
|
anyscale/client/openapi_client/models/lbresource_response.py,sha256=AgJpUmMDDuF6ohHI2LbPoXICUKeBKWskgjaOcr59t8E,3528
|
471
470
|
anyscale/client/openapi_client/models/list_machine_pools_response.py,sha256=lH_AGSraAalhusdwbb31uSCNBobNIdTA8mTVPkA_X7Y,3842
|
472
471
|
anyscale/client/openapi_client/models/list_machines_response.py,sha256=8aS1GNXSzf_j9MaKoRjWxJ-7xQoe1_4wS5oX3qUZEi0,3607
|
473
|
-
anyscale/client/openapi_client/models/
|
472
|
+
anyscale/client/openapi_client/models/list_resource_notifications_query.py,sha256=XmO8_MVZ88J5iEAg071HpBimRoR9KG5Y_b453buU5Cg,7030
|
474
473
|
anyscale/client/openapi_client/models/list_resource_quotas_query.py,sha256=DjIf0TTip9ZWp-f0yQS_DHbKPJvFJP8dr3u1sqgec7Y,6862
|
475
474
|
anyscale/client/openapi_client/models/list_response_metadata.py,sha256=HrVzehQ4kCKdUn_4jCANTy1wVgO7-UbmA9pXmPknU1U,4216
|
476
475
|
anyscale/client/openapi_client/models/listmachinepoolsresponse_response.py,sha256=HqH_H-QiWthzYtque3TRrNz3w5FewPaJM8ek_6Djpzo,3682
|
@@ -497,6 +496,7 @@ anyscale/client/openapi_client/models/longrunningworkload_list_response.py,sha25
|
|
497
496
|
anyscale/client/openapi_client/models/machine_allocation_state.py,sha256=fBRllzqjtPbwjcKMSSp60KL6HLekmIie2NQJQgvPv-o,2962
|
498
497
|
anyscale/client/openapi_client/models/machine_connection_state.py,sha256=dAY4g-IP_1BjpU5LypJBACytPhuqgV2HCIAZElInggI,2893
|
499
498
|
anyscale/client/openapi_client/models/machine_info.py,sha256=3L1vM8pOHOX4VZz-sIfawwrSJiQK-xTyESv50EX-TQU,15364
|
499
|
+
anyscale/client/openapi_client/models/machine_launch_failure.py,sha256=9MMZ17hGYKR0xBfUKcVc2yhtVsBQFtxcNXSBmnnMU7Y,4601
|
500
500
|
anyscale/client/openapi_client/models/machine_pool.py,sha256=0_tga2wp9DR-tGeGHg3AE1F1iiKn8N_ruWCr_aVtxX0,9135
|
501
501
|
anyscale/client/openapi_client/models/machine_state_info.py,sha256=vTwjL3buXuT7Qkub3bf4-OlAzUr7mj1Yh1ReUVk0XZk,11351
|
502
502
|
anyscale/client/openapi_client/models/metronome_customer_info_model.py,sha256=TNHzxUfadF8RDFkhNDSsasgXEEv0hjMoyrsFVKx50zM,4847
|
@@ -535,8 +535,8 @@ anyscale/client/openapi_client/models/onboarding_user_cards_query.py,sha256=d83w
|
|
535
535
|
anyscale/client/openapi_client/models/organization.py,sha256=-xGnObI7kkDV66TGskc2uu9kG3z4rX_CkoHt8mdaVvU,16651
|
536
536
|
anyscale/client/openapi_client/models/organization_availability.py,sha256=t9ihnzfrNpaAXL-ROX6hDMn5T0PhJhJQcxhq06DgVU4,4673
|
537
537
|
anyscale/client/openapi_client/models/organization_collaborator.py,sha256=b1EWH9jTsPKPv5aotAnf052kC_v4YQ2FVyIcJ28g5pM,8034
|
538
|
-
anyscale/client/openapi_client/models/organization_configuration.py,sha256=
|
539
|
-
anyscale/client/openapi_client/models/organization_configuration_response.py,sha256=
|
538
|
+
anyscale/client/openapi_client/models/organization_configuration.py,sha256=ut6TmxbRFp9dQjQQHJL10vV1DRsZPFtFa3sCiPU2Ae8,8754
|
539
|
+
anyscale/client/openapi_client/models/organization_configuration_response.py,sha256=GNWS6L-_oLt2E6izb70UrqibhhLZjex9aCi3WEyltHo,7568
|
540
540
|
anyscale/client/openapi_client/models/organization_invitation.py,sha256=A8OfVVU1n3SimCFBO3z8_VNtl1vOiJxuNnNUdk-F20Q,7845
|
541
541
|
anyscale/client/openapi_client/models/organization_invitation_base.py,sha256=QSggE-o5vdQl5i0G1zb23N0iSr1DJ4WEoGCD2psU3kg,3487
|
542
542
|
anyscale/client/openapi_client/models/organization_marketing_questions.py,sha256=KlnRE79yIuQ7y19HejoSgRr5_r39Tk7dFUFNU0fxMM0,6707
|
@@ -606,12 +606,12 @@ anyscale/client/openapi_client/models/request_state_info.py,sha256=_ncxrW-LCKLkq
|
|
606
606
|
anyscale/client/openapi_client/models/requestemailmagiclinkresponse_response.py,sha256=hxoYP5m0eA_2lCP83gxb5b5uuPdhAnz-rzX9Lnxt5JM,3737
|
607
607
|
anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py,sha256=MRpp_kGIa8jMDxQqjtM5mWmK5SBXCMd_c20ZCE6u17Y,3682
|
608
608
|
anyscale/client/openapi_client/models/reset_password_params.py,sha256=UVh4iLrSOGIgIgnRy_dnGWPdvHOQLbHk2qyG8EPkLpg,4421
|
609
|
-
anyscale/client/openapi_client/models/
|
610
|
-
anyscale/client/openapi_client/models/
|
609
|
+
anyscale/client/openapi_client/models/resource_alert_event_type.py,sha256=LHwFQn9L5ihNYmwDISYGUj4xeCVgDAICi5uJ6sgNadw,3304
|
610
|
+
anyscale/client/openapi_client/models/resource_notification.py,sha256=v9-GaEj2jzJgzPAJSJd64KjfsQYXSUPZUVD2vcu6LLI,14308
|
611
611
|
anyscale/client/openapi_client/models/resource_quota.py,sha256=jGTVnp54p9CvhtnCtDIVvMsj1vIFJzWprYjoUSZS8uU,14682
|
612
612
|
anyscale/client/openapi_client/models/resource_quota_status.py,sha256=2c8ujJUAyF_f0s59EpmPRi5twm_Q_bWWWGLqFPkaOck,3726
|
613
|
-
anyscale/client/openapi_client/models/
|
614
|
-
anyscale/client/openapi_client/models/
|
613
|
+
anyscale/client/openapi_client/models/resourcenotification_list_response.py,sha256=pUCarzPW_iSMvaxjhfUUxFijlGPY-APi8diTQWfzoe4,4497
|
614
|
+
anyscale/client/openapi_client/models/resourcenotification_response.py,sha256=_zML07Rgxp1C3f0j4dnddUWjUSbR_gq4oRPNsGI3wyg,3638
|
615
615
|
anyscale/client/openapi_client/models/resourcequota_list_response.py,sha256=kwGXnvO6L4CCZ7_TfkcPLhaLUY9Iqs_bldlqXjULd4Q,4392
|
616
616
|
anyscale/client/openapi_client/models/resourcequota_response.py,sha256=AFE5BKztR8_yRCSChRX25nZMCFFayRFCnfGSWwr5mHE,3561
|
617
617
|
anyscale/client/openapi_client/models/resources.py,sha256=0CTPSsg6paq5pxhueYeDLKO7RK7Cbfrv5KBC16bmBbE,8188
|
@@ -619,7 +619,7 @@ anyscale/client/openapi_client/models/rollback_service_model.py,sha256=45iozagnr
|
|
619
619
|
anyscale/client/openapi_client/models/rollout_strategy.py,sha256=rL0Hmu_eD9kaLXwXz5I_qrbpXNLjb4y7p4zToJNyJD8,2847
|
620
620
|
anyscale/client/openapi_client/models/s3_download_location.py,sha256=Yjttjv6V_sD_uL84bpmR3m6jcSI-Xa0cI7egEscs1Vg,4274
|
621
621
|
anyscale/client/openapi_client/models/schedule_config.py,sha256=1t-2zyWfP76K3mA4OA3VW6svS18PLaTBnucZUVCmh88,5016
|
622
|
-
anyscale/client/openapi_client/models/scheduler_info.py,sha256=
|
622
|
+
anyscale/client/openapi_client/models/scheduler_info.py,sha256=UGqoA26Q4d2rK5d-LIMl_2xIy9jg6K1oTWha_EvXaZc,5900
|
623
623
|
anyscale/client/openapi_client/models/serve_deployment_fast_api_docs_status.py,sha256=53IN5-gkcdcITfMAJaqMScQVewMI7gZkNSsTjH4Hv2g,3737
|
624
624
|
anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py,sha256=Xmsr2v-HOqy9bx13wHREf5UVodmrkQonWg2V6W6EUJo,2968
|
625
625
|
anyscale/client/openapi_client/models/serve_deployment_logs.py,sha256=sXDEJsKMs2CNTT5tCccM_smJo52gre7E-AZ-U4jiflk,4708
|
@@ -700,7 +700,7 @@ anyscale/client/openapi_client/models/templatizeddecoratedapplicationtemplates_r
|
|
700
700
|
anyscale/client/openapi_client/models/text_query.py,sha256=aMcKF6nRme1J1jYKhvqUIG8VzlcDN72znSFF9kKCc2Y,5107
|
701
701
|
anyscale/client/openapi_client/models/timestamped_logs_output.py,sha256=_TI3wxfkwA1eE63d2RCzQfxyqX56p4VS8OgIkB6RaqA,4568
|
702
702
|
anyscale/client/openapi_client/models/timestampedlogsoutput_response.py,sha256=3VN7aeA9qrmSnm2M5lRlIhbZhfIguxUZt6P34UGoh7w,3649
|
703
|
-
anyscale/client/openapi_client/models/tool.py,sha256=
|
703
|
+
anyscale/client/openapi_client/models/tool.py,sha256=VdvWL_MW4EQGShmmjOL0OpD_oCBaU4EUofUxdzGSlwg,2977
|
704
704
|
anyscale/client/openapi_client/models/tracing_config.py,sha256=UdOdwgPRrXQyFNDgnsBKtFyBHYx9Z7nrctNJX-H8VTM,6293
|
705
705
|
anyscale/client/openapi_client/models/try_login_email_response.py,sha256=hK2avNTvceYz9Rwd0wOnv3oBJWIQLIKo_iruo6nmJGk,7188
|
706
706
|
anyscale/client/openapi_client/models/tryloginemailresponse_response.py,sha256=OkEgY9gBIaM16bn-GKqmKqiY6KJIkMQjc-9Wjz7DdV0,3649
|
@@ -755,7 +755,7 @@ anyscale/client/openapi_client/models/workload_info.py,sha256=LLQGnqpARetLifmfG8
|
|
755
755
|
anyscale/client/openapi_client/models/workload_type.py,sha256=Ouht9JhCu4nl1V2JVHYMllW8_GU3lw0t-8Ohgjf8FiU,2886
|
756
756
|
anyscale/client/openapi_client/models/workspace_dataplane_artifact.py,sha256=4UKF-kZceAbVK8xjPfC6jmrF543ZnZYoPXqG9lHbWGU,5382
|
757
757
|
anyscale/client/openapi_client/models/workspace_dataplane_artifacts.py,sha256=oihswrn-Dk675OYC36yO96NORjA0iN3lWMFpVzFGucU,3997
|
758
|
-
anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py,sha256=
|
758
|
+
anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py,sha256=GIQyDtFUpPjBn-6LVLVDGRAg0R18w93ONKxNJUiNFlQ,7969
|
759
759
|
anyscale/client/openapi_client/models/workspace_event.py,sha256=qcNteYaARqbLJMUzpKM4d7MlTZBEaEZ56YrBwrygEYk,9990
|
760
760
|
anyscale/client/openapi_client/models/workspace_event_source.py,sha256=riSlr8KvUuFAFzGgP1F09urMXgyiLeDvN29sVGijm9E,2870
|
761
761
|
anyscale/client/openapi_client/models/workspace_event_source_filter.py,sha256=2JtMB3yrbRbmUoTl6MOhhchGAiVvWERynJKbj9lfCq0,2916
|
@@ -796,7 +796,7 @@ anyscale/commands/list_commands.py,sha256=rcDn-Qh3z99zE9oD7RPPa80-y0ml90W4UbGiYM
|
|
796
796
|
anyscale/commands/login_commands.py,sha256=iSwQ19VGpHGeImz0czVNzSZO3Jc1N5O8tGDvVnu7ZZc,2594
|
797
797
|
anyscale/commands/logs_commands.py,sha256=OgOwBsEbhcGH-STQ9MOJy8sQBYcZYmd31wzHzVPUo0g,9495
|
798
798
|
anyscale/commands/machine_commands.py,sha256=73rgz9aTIOBYcWX8zH-OYlUx3UuhODHtl1RnKtBdU1E,3641
|
799
|
-
anyscale/commands/machine_pool_commands.py,sha256=
|
799
|
+
anyscale/commands/machine_pool_commands.py,sha256=Yique9ikz-g5y3rvVXOSGmRQKUpJT5lRYZLYEcQ4BQA,9275
|
800
800
|
anyscale/commands/migrate_commands.py,sha256=QL1sVL7KGaOFpL4sVNUM96I4kOEzYmIXFuG90LRJ9Uw,3258
|
801
801
|
anyscale/commands/organization_invitation_commands.py,sha256=L0OEz_mF5Dm02KjVzDu_CRKlLm4-c2w8HcHqEvP2nIs,2723
|
802
802
|
anyscale/commands/project_commands.py,sha256=xVm-W5kKzgfbQjAiHSRhnyMIlYgGji1TUfYAi8QrGBo,7131
|
@@ -881,7 +881,7 @@ anyscale/project/commands.py,sha256=hU5IfSxD-z43G9FpHgTgsZdIvfDnTmzfPwG3UYccQwo,
|
|
881
881
|
anyscale/project/models.py,sha256=BLxeaC_SF1dhCJ7RrxnCWEco6hKwwM7oi9ZFVNKfgRM,3314
|
882
882
|
anyscale/project/_private/project_sdk.py,sha256=wYVCHpF4kfmI4UTa4-zdCL4m7ip3SqLwgRJOWKLMOEY,1020
|
883
883
|
anyscale/resource_quota/__init__.py,sha256=UvK9xIuz8DMHqiTC6Eu8Pw-Ly_yXtTMhI88a9Rqu4Uw,2853
|
884
|
-
anyscale/resource_quota/commands.py,sha256=
|
884
|
+
anyscale/resource_quota/commands.py,sha256=JRyoZ3rcuGJa4EVWqMgpU5S8D2YpH0KG1FVz2K8804E,3626
|
885
885
|
anyscale/resource_quota/models.py,sha256=xbq6Lde63r4SPwHmxIXzpdPX_K7exVippzddJUIw0Zo,10950
|
886
886
|
anyscale/resource_quota/_private/resource_quota_sdk.py,sha256=D5P7fboC4k7XLE6GkKhWgzLzbcvZpbAovgSIACnQDxs,4524
|
887
887
|
anyscale/schedule/__init__.py,sha256=xZ07hHVUBMs_6tkhIJYqdskoDtgAndL7Zb0bMY9fCF8,2867
|
@@ -1095,7 +1095,7 @@ anyscale/sdk/anyscale_client/models/worker_node_type.py,sha256=bI3sPVPA4t4axjdbj
|
|
1095
1095
|
anyscale/service/__init__.py,sha256=-a1wMAR5ouEztZEpoS1c8iFCEKcaOtryTqXON8r2BJw,5702
|
1096
1096
|
anyscale/service/commands.py,sha256=esBm_l2iTTgk6idTLbetBUe-p3wTxp2y6hCATmiFH7o,10047
|
1097
1097
|
anyscale/service/models.py,sha256=-e-V1RKZ34ZXPzEBkvq4vfrvum33E_JTTu6uxmDA1Ak,24038
|
1098
|
-
anyscale/service/_private/service_sdk.py,sha256=
|
1098
|
+
anyscale/service/_private/service_sdk.py,sha256=WfidWp5Y5-6DzVcQKm4aiIyFcT7SueZZpeBh4DFdSnA,28775
|
1099
1099
|
anyscale/service_account/__init__.py,sha256=jV1OFo_ZTxU3vuPztO1300TuoMz-Ocudm6_84ZtjPQ4,2764
|
1100
1100
|
anyscale/service_account/commands.py,sha256=zipHgr0-HtxwpZv_fOU6RKe_l8HFIrUSxvzyikTYhl8,3429
|
1101
1101
|
anyscale/service_account/models.py,sha256=MhY-Fo5AZQ68brqtolTUMW3WQDrkNyL1udtNg70sNAU,2189
|
@@ -1104,6 +1104,7 @@ anyscale/shared_anyscale_utils/__init__.py,sha256=2iCXV0v5drnxM8pyFCGm4cthya6zkw
|
|
1104
1104
|
anyscale/shared_anyscale_utils/aws.py,sha256=MDWTFNOAD4fwxLWzv1taGhl1qP9u08qdsdbwSRvxbd4,5119
|
1105
1105
|
anyscale/shared_anyscale_utils/bytes_util.py,sha256=6cpIW0LMymqivnww4uxFeWdPuyBxtwLf8Oo8FusMBxg,226
|
1106
1106
|
anyscale/shared_anyscale_utils/conf.py,sha256=nn5Uh-Aj8qShfnFBciKDUarnaGUGo1XptfI20s_5irE,1565
|
1107
|
+
anyscale/shared_anyscale_utils/constants.py,sha256=wtk4r_dIuKVUEeziugYqsZrJv27qxLkMtaa3FJ3SFqo,197
|
1107
1108
|
anyscale/shared_anyscale_utils/default_anyscale_aws.yaml,sha256=wU8xPUQ6sMtVB5q3QYYGYlhCKkI5QDtg8LvH53hQ6WE,1650
|
1108
1109
|
anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml,sha256=rmwavzx7aTsSPio-jmYhdvfkHCuu8BOkNOuMSKMgBRE,1817
|
1109
1110
|
anyscale/shared_anyscale_utils/headers.py,sha256=c1PnH7Ag42ESQJkKTWP4ibEujvo9blZcFXEJtQzupUk,1002
|
@@ -1160,10 +1161,10 @@ anyscale/workspace/__init__.py,sha256=fIxkn8b_HADCQl5njPAbcJxAf0sajZoc55L_wMvGAx
|
|
1160
1161
|
anyscale/workspace/commands.py,sha256=21FubFd2wmEwlVbk-ng-adwBm-O4ZPBgEJnoavbfvbU,14035
|
1161
1162
|
anyscale/workspace/models.py,sha256=Ey67KqxdslS51yK7xetbRaFjE8sURAArpf-F38r3cUU,9760
|
1162
1163
|
anyscale/workspace/_private/workspace_sdk.py,sha256=4LOBmMm7kd-O94ii5uP1UDbkWLComh6zI5QmE2lXRTY,26824
|
1163
|
-
anyscale-0.26.
|
1164
|
-
anyscale-0.26.
|
1165
|
-
anyscale-0.26.
|
1166
|
-
anyscale-0.26.
|
1167
|
-
anyscale-0.26.
|
1168
|
-
anyscale-0.26.
|
1169
|
-
anyscale-0.26.
|
1164
|
+
anyscale-0.26.1.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
|
1165
|
+
anyscale-0.26.1.dist-info/METADATA,sha256=qCzB4TLyKtyX3Ts8PZNAIDO788F_GaNAxya_mM4flM4,3049
|
1166
|
+
anyscale-0.26.1.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
|
1167
|
+
anyscale-0.26.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
1168
|
+
anyscale-0.26.1.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
|
1169
|
+
anyscale-0.26.1.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
|
1170
|
+
anyscale-0.26.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|