anyscale 0.26.28__py3-none-any.whl → 0.26.30__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/__init__.py +10 -0
- anyscale/_private/anyscale_client/anyscale_client.py +69 -0
- anyscale/_private/anyscale_client/common.py +38 -0
- anyscale/_private/anyscale_client/fake_anyscale_client.py +11 -0
- anyscale/_private/docgen/__main__.py +4 -18
- anyscale/_private/docgen/api.md +0 -125
- anyscale/_private/docgen/models.md +0 -111
- anyscale/client/README.md +0 -6
- anyscale/client/openapi_client/__init__.py +0 -4
- anyscale/client/openapi_client/api/default_api.py +0 -228
- anyscale/client/openapi_client/models/__init__.py +0 -4
- anyscale/client/openapi_client/models/workload_info.py +59 -3
- anyscale/commands/command_examples.py +10 -0
- anyscale/commands/job_queue_commands.py +295 -104
- anyscale/commands/list_util.py +14 -1
- anyscale/commands/machine_pool_commands.py +25 -11
- anyscale/commands/service_commands.py +10 -14
- anyscale/commands/workspace_commands_v2.py +462 -25
- anyscale/controllers/job_controller.py +5 -210
- anyscale/job_queue/__init__.py +89 -0
- anyscale/job_queue/_private/job_queue_sdk.py +158 -0
- anyscale/job_queue/commands.py +130 -0
- anyscale/job_queue/models.py +284 -0
- anyscale/scripts.py +1 -1
- anyscale/sdk/anyscale_client/__init__.py +0 -11
- anyscale/sdk/anyscale_client/api/default_api.py +140 -1433
- anyscale/sdk/anyscale_client/models/__init__.py +0 -11
- anyscale/service/__init__.py +4 -1
- anyscale/service/_private/service_sdk.py +5 -0
- anyscale/service/commands.py +4 -2
- anyscale/utils/ssh_websocket_proxy.py +178 -0
- anyscale/version.py +1 -1
- {anyscale-0.26.28.dist-info → anyscale-0.26.30.dist-info}/METADATA +3 -1
- {anyscale-0.26.28.dist-info → anyscale-0.26.30.dist-info}/RECORD +39 -49
- anyscale/client/openapi_client/models/serve_deployment_fast_api_docs_status.py +0 -123
- anyscale/client/openapi_client/models/servedeploymentfastapidocsstatus_response.py +0 -121
- anyscale/client/openapi_client/models/web_terminal.py +0 -121
- anyscale/client/openapi_client/models/webterminal_response.py +0 -121
- anyscale/sdk/anyscale_client/models/cluster_environment_build_log_response.py +0 -123
- anyscale/sdk/anyscale_client/models/clusterenvironmentbuildlogresponse_response.py +0 -121
- anyscale/sdk/anyscale_client/models/create_cloud.py +0 -518
- anyscale/sdk/anyscale_client/models/object_storage_config.py +0 -122
- anyscale/sdk/anyscale_client/models/object_storage_config_s3.py +0 -256
- anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py +0 -121
- anyscale/sdk/anyscale_client/models/session_operation.py +0 -266
- anyscale/sdk/anyscale_client/models/session_operation_type.py +0 -101
- anyscale/sdk/anyscale_client/models/sessionoperation_response.py +0 -121
- anyscale/sdk/anyscale_client/models/update_cloud.py +0 -150
- anyscale/sdk/anyscale_client/models/update_project.py +0 -150
- {anyscale-0.26.28.dist-info → anyscale-0.26.30.dist-info}/LICENSE +0 -0
- {anyscale-0.26.28.dist-info → anyscale-0.26.30.dist-info}/NOTICE +0 -0
- {anyscale-0.26.28.dist-info → anyscale-0.26.30.dist-info}/WHEEL +0 -0
- {anyscale-0.26.28.dist-info → anyscale-0.26.30.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.28.dist-info → anyscale-0.26.30.dist-info}/top_level.txt +0 -0
@@ -44,7 +44,6 @@ from anyscale_client.models.cluster_compute_config import ClusterComputeConfig
|
|
44
44
|
from anyscale_client.models.cluster_computes_query import ClusterComputesQuery
|
45
45
|
from anyscale_client.models.cluster_environment import ClusterEnvironment
|
46
46
|
from anyscale_client.models.cluster_environment_build import ClusterEnvironmentBuild
|
47
|
-
from anyscale_client.models.cluster_environment_build_log_response import ClusterEnvironmentBuildLogResponse
|
48
47
|
from anyscale_client.models.cluster_environment_build_operation import ClusterEnvironmentBuildOperation
|
49
48
|
from anyscale_client.models.cluster_environment_build_status import ClusterEnvironmentBuildStatus
|
50
49
|
from anyscale_client.models.cluster_environments_query import ClusterEnvironmentsQuery
|
@@ -64,7 +63,6 @@ from anyscale_client.models.clusterenvironment_list_response import Clusterenvir
|
|
64
63
|
from anyscale_client.models.clusterenvironment_response import ClusterenvironmentResponse
|
65
64
|
from anyscale_client.models.clusterenvironmentbuild_list_response import ClusterenvironmentbuildListResponse
|
66
65
|
from anyscale_client.models.clusterenvironmentbuild_response import ClusterenvironmentbuildResponse
|
67
|
-
from anyscale_client.models.clusterenvironmentbuildlogresponse_response import ClusterenvironmentbuildlogresponseResponse
|
68
66
|
from anyscale_client.models.clusterenvironmentbuildoperation_response import ClusterenvironmentbuildoperationResponse
|
69
67
|
from anyscale_client.models.clusteroperation_response import ClusteroperationResponse
|
70
68
|
from anyscale_client.models.clusters_query import ClustersQuery
|
@@ -79,7 +77,6 @@ from anyscale_client.models.create_byod_app_config_configuration_schema import C
|
|
79
77
|
from anyscale_client.models.create_byod_cluster_environment import CreateBYODClusterEnvironment
|
80
78
|
from anyscale_client.models.create_byod_cluster_environment_build import CreateBYODClusterEnvironmentBuild
|
81
79
|
from anyscale_client.models.create_byod_cluster_environment_configuration_schema import CreateBYODClusterEnvironmentConfigurationSchema
|
82
|
-
from anyscale_client.models.create_cloud import CreateCloud
|
83
80
|
from anyscale_client.models.create_cluster import CreateCluster
|
84
81
|
from anyscale_client.models.create_cluster_compute import CreateClusterCompute
|
85
82
|
from anyscale_client.models.create_cluster_compute_config import CreateClusterComputeConfig
|
@@ -116,9 +113,6 @@ from anyscale_client.models.log_stream import LogStream
|
|
116
113
|
from anyscale_client.models.logdownloadresult_response import LogdownloadresultResponse
|
117
114
|
from anyscale_client.models.logstream_response import LogstreamResponse
|
118
115
|
from anyscale_client.models.node_type import NodeType
|
119
|
-
from anyscale_client.models.object_storage_config import ObjectStorageConfig
|
120
|
-
from anyscale_client.models.object_storage_config_s3 import ObjectStorageConfigS3
|
121
|
-
from anyscale_client.models.objectstorageconfig_response import ObjectstorageconfigResponse
|
122
116
|
from anyscale_client.models.operation_error import OperationError
|
123
117
|
from anyscale_client.models.operation_progress import OperationProgress
|
124
118
|
from anyscale_client.models.operation_result import OperationResult
|
@@ -164,14 +158,11 @@ from anyscale_client.models.service_version_state import ServiceVersionState
|
|
164
158
|
from anyscale_client.models.servicemodel_list_response import ServicemodelListResponse
|
165
159
|
from anyscale_client.models.servicemodel_response import ServicemodelResponse
|
166
160
|
from anyscale_client.models.session import Session
|
167
|
-
from anyscale_client.models.session_operation import SessionOperation
|
168
|
-
from anyscale_client.models.session_operation_type import SessionOperationType
|
169
161
|
from anyscale_client.models.session_response import SessionResponse
|
170
162
|
from anyscale_client.models.session_starting_up_data import SessionStartingUpData
|
171
163
|
from anyscale_client.models.session_state import SessionState
|
172
164
|
from anyscale_client.models.session_state_data import SessionStateData
|
173
165
|
from anyscale_client.models.session_stopping_data import SessionStoppingData
|
174
|
-
from anyscale_client.models.sessionoperation_response import SessionoperationResponse
|
175
166
|
from anyscale_client.models.sort_by_clause_jobs_sort_field import SortByClauseJobsSortField
|
176
167
|
from anyscale_client.models.sort_order import SortOrder
|
177
168
|
from anyscale_client.models.ssoconfig_response import SsoconfigResponse
|
@@ -182,10 +173,8 @@ from anyscale_client.models.terminate_cluster_options import TerminateClusterOpt
|
|
182
173
|
from anyscale_client.models.text_query import TextQuery
|
183
174
|
from anyscale_client.models.tracing_config import TracingConfig
|
184
175
|
from anyscale_client.models.ux_instance import UXInstance
|
185
|
-
from anyscale_client.models.update_cloud import UpdateCloud
|
186
176
|
from anyscale_client.models.update_cluster import UpdateCluster
|
187
177
|
from anyscale_client.models.update_organization import UpdateOrganization
|
188
|
-
from anyscale_client.models.update_project import UpdateProject
|
189
178
|
from anyscale_client.models.user_service_access_types import UserServiceAccessTypes
|
190
179
|
from anyscale_client.models.validation_error import ValidationError
|
191
180
|
from anyscale_client.models.worker_node_type import WorkerNodeType
|
anyscale/service/__init__.py
CHANGED
@@ -110,6 +110,7 @@ class ServiceSDK:
|
|
110
110
|
)
|
111
111
|
def terminate( # noqa: F811
|
112
112
|
self,
|
113
|
+
id: Optional[str] = None, # noqa: A002
|
113
114
|
name: Optional[str] = None,
|
114
115
|
*,
|
115
116
|
cloud: Optional[str] = None,
|
@@ -121,7 +122,9 @@ class ServiceSDK:
|
|
121
122
|
|
122
123
|
Returns the id of the terminated service.
|
123
124
|
"""
|
124
|
-
return self._private_sdk.terminate(
|
125
|
+
return self._private_sdk.terminate(
|
126
|
+
id=id, name=name, cloud=cloud, project=project
|
127
|
+
)
|
125
128
|
|
126
129
|
@sdk_docs(
|
127
130
|
doc_py_example=_ARCHIVE_EXAMPLE, arg_docstrings=_ARCHIVE_ARG_DOCSTRINGS,
|
@@ -515,11 +515,16 @@ class PrivateServiceSDK(WorkloadSDK):
|
|
515
515
|
|
516
516
|
def terminate(
|
517
517
|
self,
|
518
|
+
id: Optional[str] = None, # noqa: A002
|
518
519
|
name: Optional[str] = None,
|
519
520
|
*,
|
520
521
|
cloud: Optional[str] = None,
|
521
522
|
project: Optional[str] = None,
|
522
523
|
) -> str:
|
524
|
+
if id is not None:
|
525
|
+
self.client.terminate_service(id)
|
526
|
+
return id
|
527
|
+
|
523
528
|
model = self._resolve_to_service_model(name=name, cloud=cloud, project=project)
|
524
529
|
|
525
530
|
self.client.terminate_service(model.id)
|
anyscale/service/commands.py
CHANGED
@@ -34,7 +34,7 @@ anyscale.service.deploy(
|
|
34
34
|
_DEPLOY_ARG_DOCSTRINGS = {
|
35
35
|
"config": "The config options defining the service.",
|
36
36
|
"in_place": "Perform an in-place upgrade without starting a new cluster. This can be used for faster iteration during development but is *not* currently recommended for production deploys. This *cannot* be used to change cluster-level options such as image and compute config (they will be ignored).",
|
37
|
-
"canary_percent": "The percentage of traffic to send to the canary version of the service (0-100). This can be used to manually shift traffic toward (or away from) the canary version. If not provided, traffic will be shifted incrementally toward the canary version until it reaches 100. Not supported when using --in-place.",
|
37
|
+
"canary_percent": "The percentage of traffic to send to the canary version of the service (0-100). This can be used to manually shift traffic toward (or away from) the canary version. If not provided, traffic will be shifted incrementally toward the canary version until it reaches 100. Not supported when using --in-place. This is ignored when restarting a service or creating a new service.",
|
38
38
|
"max_surge_percent": "Amount of excess capacity allowed to be used while updating the service (0-100). Defaults to 100. Not supported when using --in-place.",
|
39
39
|
}
|
40
40
|
|
@@ -118,6 +118,7 @@ anyscale.service.terminate(name="my-service")
|
|
118
118
|
"""
|
119
119
|
|
120
120
|
_TERMINATE_ARG_DOCSTRINGS = {
|
121
|
+
"id": "ID of the service.",
|
121
122
|
"name": "Name of the service. When running in a workspace, this defaults to the workspace name.",
|
122
123
|
"cloud": "The Anyscale Cloud of this workload. If not provided, the organization default will be used (or, if running in a workspace, the cloud of the workspace).",
|
123
124
|
"project": "Named project to use for the service. If not provided, the default project for the cloud will be used (or, if running in a workspace, the project of the workspace).",
|
@@ -131,6 +132,7 @@ _TERMINATE_ARG_DOCSTRINGS = {
|
|
131
132
|
arg_docstrings=_TERMINATE_ARG_DOCSTRINGS,
|
132
133
|
)
|
133
134
|
def terminate(
|
135
|
+
id: Optional[str] = None, # noqa: A002
|
134
136
|
name: Optional[str] = None,
|
135
137
|
*,
|
136
138
|
cloud: Optional[str] = None,
|
@@ -143,7 +145,7 @@ def terminate(
|
|
143
145
|
|
144
146
|
Returns the id of the terminated service.
|
145
147
|
"""
|
146
|
-
return _private_sdk.terminate(name=name, cloud=cloud, project=project) # type: ignore
|
148
|
+
return _private_sdk.terminate(id=id, name=name, cloud=cloud, project=project) # type: ignore
|
147
149
|
|
148
150
|
|
149
151
|
_ARCHIVE_EXAMPLE = """
|
@@ -0,0 +1,178 @@
|
|
1
|
+
#!/usr/bin/env python3
|
2
|
+
import asyncio
|
3
|
+
import logging
|
4
|
+
import os
|
5
|
+
import sys
|
6
|
+
|
7
|
+
import websockets
|
8
|
+
|
9
|
+
|
10
|
+
# Define global constants
|
11
|
+
DEFAULT_CHUNK_SIZE = 4096
|
12
|
+
LOG_FORMAT = "%(asctime)s - %(name)s - %(levelname)s - %(funcName)s - %(message)s"
|
13
|
+
|
14
|
+
# Configure logging
|
15
|
+
DEBUG_ENABLED = os.environ.get("ANYSCALE_SSH_DEBUG") == "1"
|
16
|
+
LOG_LEVEL = logging.DEBUG if DEBUG_ENABLED else logging.INFO
|
17
|
+
logging.basicConfig(level=LOG_LEVEL, format=LOG_FORMAT, stream=sys.stderr)
|
18
|
+
logger = logging.getLogger(__name__)
|
19
|
+
|
20
|
+
|
21
|
+
async def pump(stream_reader: asyncio.StreamReader, send_func):
|
22
|
+
logger.debug("pump: started")
|
23
|
+
try:
|
24
|
+
while True:
|
25
|
+
logger.debug("pump: trying to read from stream_reader")
|
26
|
+
chunk = await stream_reader.read(DEFAULT_CHUNK_SIZE)
|
27
|
+
logger.debug(
|
28
|
+
f"pump: read {len(chunk) if chunk else 0} bytes from stream_reader"
|
29
|
+
)
|
30
|
+
if not chunk: # EOF
|
31
|
+
logger.debug("pump: EOF from stream_reader, closing send_func")
|
32
|
+
await send_func.close()
|
33
|
+
logger.debug("pump: send_func closed")
|
34
|
+
return
|
35
|
+
logger.debug(f"pump: sending {len(chunk)} bytes to websocket")
|
36
|
+
await send_func(chunk)
|
37
|
+
logger.debug("pump: sent to websocket")
|
38
|
+
except websockets.ConnectionClosedOK:
|
39
|
+
logger.debug("pump: ConnectionClosedOK")
|
40
|
+
except asyncio.CancelledError:
|
41
|
+
logger.debug("pump: CancelledError")
|
42
|
+
raise
|
43
|
+
except Exception:
|
44
|
+
logger.exception("pump: Exception encountered")
|
45
|
+
if not getattr(send_func, "closed", False):
|
46
|
+
logger.debug("pump: Exception, closing send_func")
|
47
|
+
await send_func.close()
|
48
|
+
logger.debug("pump: send_func closed due to exception")
|
49
|
+
raise
|
50
|
+
finally:
|
51
|
+
logger.debug("pump: finished")
|
52
|
+
|
53
|
+
|
54
|
+
async def drain(ws_receive_func):
|
55
|
+
logger.debug("drain: started")
|
56
|
+
try:
|
57
|
+
async for msg in ws_receive_func:
|
58
|
+
logger.debug(
|
59
|
+
f"drain: received {len(msg) if isinstance(msg, bytes) else type(msg)} from websocket"
|
60
|
+
)
|
61
|
+
if isinstance(msg, bytes):
|
62
|
+
sys.stdout.buffer.write(msg)
|
63
|
+
sys.stdout.buffer.flush()
|
64
|
+
logger.debug("drain: wrote to stdout and flushed")
|
65
|
+
else:
|
66
|
+
logger.warning(f"Received unexpected non-bytes message: {type(msg)}")
|
67
|
+
except websockets.ConnectionClosedOK:
|
68
|
+
logger.debug("drain: ConnectionClosedOK")
|
69
|
+
except asyncio.CancelledError:
|
70
|
+
logger.debug("drain: CancelledError")
|
71
|
+
raise
|
72
|
+
except Exception:
|
73
|
+
logger.exception("drain: Exception encountered")
|
74
|
+
raise
|
75
|
+
finally:
|
76
|
+
logger.debug("drain: finished")
|
77
|
+
|
78
|
+
|
79
|
+
async def main():
|
80
|
+
if len(sys.argv) < 2:
|
81
|
+
logger.debug("WebSocket URL must be provided as the first argument.")
|
82
|
+
sys.exit(1)
|
83
|
+
|
84
|
+
ws_url = sys.argv[1]
|
85
|
+
logger.debug(f"WebSocket URL: {ws_url}")
|
86
|
+
|
87
|
+
# Check for optional token argument
|
88
|
+
auth_token = None
|
89
|
+
if len(sys.argv) >= 3:
|
90
|
+
auth_token = sys.argv[2]
|
91
|
+
logger.debug("Authentication token provided as second argument")
|
92
|
+
|
93
|
+
loop = asyncio.get_running_loop()
|
94
|
+
reader = asyncio.StreamReader(loop=loop)
|
95
|
+
protocol = asyncio.StreamReaderProtocol(reader, loop=loop)
|
96
|
+
await loop.connect_read_pipe(lambda: protocol, sys.stdin)
|
97
|
+
logger.debug("stdin connected to StreamReader")
|
98
|
+
|
99
|
+
# Prepare additional headers if token is provided
|
100
|
+
additional_headers = {}
|
101
|
+
if auth_token:
|
102
|
+
additional_headers["Authorization"] = f"Bearer {auth_token}"
|
103
|
+
logger.debug("Added Authorization header with Bearer token")
|
104
|
+
|
105
|
+
try:
|
106
|
+
logger.debug("Attempting to connect to websocket...")
|
107
|
+
async with websockets.connect(
|
108
|
+
ws_url, additional_headers=additional_headers
|
109
|
+
) as ws:
|
110
|
+
logger.debug("Connected to websocket successfully")
|
111
|
+
pump_task = asyncio.create_task(pump(reader, ws.send))
|
112
|
+
drain_task = asyncio.create_task(drain(ws))
|
113
|
+
|
114
|
+
done, pending = await asyncio.wait(
|
115
|
+
[pump_task, drain_task], return_when=asyncio.FIRST_COMPLETED,
|
116
|
+
)
|
117
|
+
|
118
|
+
# Convert pending set to a list to maintain order for results processing
|
119
|
+
pending_list = list(pending)
|
120
|
+
|
121
|
+
for task in pending_list: # Iterate over the list
|
122
|
+
logger.debug(f"Cancelling pending task {task.get_name()}")
|
123
|
+
task.cancel()
|
124
|
+
|
125
|
+
# Wait for pending tasks to finish cancellation
|
126
|
+
# Pass the list of pending tasks to gather
|
127
|
+
results = await asyncio.gather(*pending_list, return_exceptions=True)
|
128
|
+
|
129
|
+
for i, result in enumerate(results):
|
130
|
+
if isinstance(result, Exception) and not isinstance(
|
131
|
+
result, asyncio.CancelledError
|
132
|
+
):
|
133
|
+
# Use pending_list[i] to get the corresponding task
|
134
|
+
task_name = (
|
135
|
+
pending_list[i].get_name()
|
136
|
+
if pending_list[i].get_name()
|
137
|
+
else "unnamed task"
|
138
|
+
)
|
139
|
+
logger.debug(
|
140
|
+
f"Pending task '{task_name}' raised an exception: {result!r}"
|
141
|
+
)
|
142
|
+
logger.debug("Pump and drain tasks finished or cancelled.")
|
143
|
+
|
144
|
+
except asyncio.TimeoutError:
|
145
|
+
logger.error("Connection to websocket timed out.")
|
146
|
+
sys.exit(1)
|
147
|
+
except Exception:
|
148
|
+
logger.exception("Exception in main connection/task management logic")
|
149
|
+
raise # Re-raise after logging
|
150
|
+
finally:
|
151
|
+
logger.debug("main: finished")
|
152
|
+
|
153
|
+
|
154
|
+
if __name__ == "__main__":
|
155
|
+
try:
|
156
|
+
logger.debug("Starting proxy script")
|
157
|
+
asyncio.run(main())
|
158
|
+
except KeyboardInterrupt:
|
159
|
+
logger.debug("KeyboardInterrupt received. Exiting.")
|
160
|
+
# Python's default handler for KeyboardInterrupt will exit (usually with code 130)
|
161
|
+
except SystemExit as e:
|
162
|
+
logger.debug(f"SystemExit called with code {e.code}")
|
163
|
+
sys.exit(e.code) # Propagate the intended exit code
|
164
|
+
except websockets.exceptions.InvalidStatusCode as e_is:
|
165
|
+
# Handle InvalidStatusCode specifically to access status_code and headers
|
166
|
+
logger.debug(
|
167
|
+
f"Unhandled WebSocket InvalidStatusCode error: {e_is!r}, Status code: {e_is.status_code}"
|
168
|
+
)
|
169
|
+
sys.exit(1)
|
170
|
+
except (websockets.exceptions.WebSocketException, OSError) as e_wso:
|
171
|
+
# Handle other WebSocket and OS errors
|
172
|
+
logger.debug(f"Unhandled WebSocket/OS error: {e_wso!r}")
|
173
|
+
sys.exit(1)
|
174
|
+
except Exception as e_unhandled: # noqa: BLE001 # Catch any other unexpected exceptions
|
175
|
+
logger.debug(f"Unhandled exception: {e_unhandled!r}", exc_info=True)
|
176
|
+
sys.exit(1)
|
177
|
+
finally:
|
178
|
+
logger.debug("Proxy script exiting")
|
anyscale/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.26.
|
1
|
+
__version__ = "0.26.30"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: anyscale
|
3
|
-
Version: 0.26.
|
3
|
+
Version: 0.26.30
|
4
4
|
Summary: Command Line Interface for Anyscale
|
5
5
|
Author: Anyscale Inc.
|
6
6
|
License: AS License
|
@@ -37,6 +37,8 @@ Requires-Dist: log_symbols>=0.0.14
|
|
37
37
|
Requires-Dist: spinners>=0.0.24
|
38
38
|
Requires-Dist: termcolor>=1.1.0
|
39
39
|
Requires-Dist: colorama>=0.3.9
|
40
|
+
Requires-Dist: websockets; python_version > "3.8"
|
41
|
+
Requires-Dist: websockets==13.1.0; python_version <= "3.8"
|
40
42
|
Provides-Extra: backend
|
41
43
|
Requires-Dist: terminado==0.10.1; extra == "backend"
|
42
44
|
Requires-Dist: tornado; extra == "backend"
|
@@ -1,4 +1,4 @@
|
|
1
|
-
anyscale/__init__.py,sha256=
|
1
|
+
anyscale/__init__.py,sha256=ENKr1ipvMdG5mR9YEPCLBKgNGW-cWW5GHE6GRJZ1GqY,8951
|
2
2
|
anyscale/anyscale-cloud-setup-gcp-oa.yaml,sha256=varT3AFGxDy7V8o3_zCwUyoi22MiDmZovfpvkbkyeAU,2715
|
3
3
|
anyscale/anyscale-cloud-setup-gcp.yaml,sha256=b9fKDG8syJuoZJOAr4LZdLGto3sDDil9EOoboXWC9UE,4011
|
4
4
|
anyscale/anyscale-cloud-setup-oa.yaml,sha256=MMfjT2UCNQS43I3mGOMoSq1cq1dufxtnXU9Zy260TK8,3192
|
@@ -23,23 +23,23 @@ anyscale/integrations.py,sha256=bv8m5rck0Cfxpi59klyYGJhPknpXtnHCSvF1Uu8vTHU,1339
|
|
23
23
|
anyscale/links.py,sha256=xFXN5TjL61p5T23dn66nNalkV47LNkPJxQqOPhGXfww,193
|
24
24
|
anyscale/memorydb_supported_zones.json,sha256=l5Iup9wFDZcHLfZqH640axxe4UiKteuraZRohi3MwRk,1098
|
25
25
|
anyscale/project_utils.py,sha256=SBwkD5B10ku2kkmp6y-Cr5RL7xf52b9zELP35kfg2PE,17621
|
26
|
-
anyscale/scripts.py,sha256=
|
26
|
+
anyscale/scripts.py,sha256=d806tM5h0CNUOdu8e_McVmjttiJeX77rQ_R6L8zAT8I,5593
|
27
27
|
anyscale/snapshot.py,sha256=UGJT5C1s_4xmQxjWODK5DFpGxHRBX5jOCdSCqXESH8E,1685
|
28
28
|
anyscale/tables.py,sha256=TV4F2uLnwehvbkAfaP7iuLlT2wLIo6ORH2LVdRGXW5g,2840
|
29
29
|
anyscale/util.py,sha256=14AHIhl4c4hKAW4gLZIvy5w56-zDjcPmrdWqazsvnHU,41860
|
30
|
-
anyscale/version.py,sha256=
|
30
|
+
anyscale/version.py,sha256=tfQN72SxYDy_EDQ1uFfglNDm1-8v1NaeHxD6QZGWR4Y,24
|
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
|
34
|
-
anyscale/_private/anyscale_client/anyscale_client.py,sha256=
|
35
|
-
anyscale/_private/anyscale_client/common.py,sha256=
|
36
|
-
anyscale/_private/anyscale_client/fake_anyscale_client.py,sha256=
|
34
|
+
anyscale/_private/anyscale_client/anyscale_client.py,sha256=s9m_xTrVwpcOfhuZnXfu67N5vZ6hAJoB-Mp_wsDqfmI,85335
|
35
|
+
anyscale/_private/anyscale_client/common.py,sha256=h-glZioO0NPfT2tqVYP5f4_zvNy5Q0yyj8nawdIbOPU,26617
|
36
|
+
anyscale/_private/anyscale_client/fake_anyscale_client.py,sha256=pJGJZMCVeSUUheAe50j5mJwjUeyWqONBtcAbiKtDpjo,57533
|
37
37
|
anyscale/_private/docgen/README.md,sha256=z0tj8Jy0KmxWJBQMHKyzXGX_cYYgI8m5DCD6KCMU8oI,762
|
38
|
-
anyscale/_private/docgen/__main__.py,sha256=
|
39
|
-
anyscale/_private/docgen/api.md,sha256=
|
38
|
+
anyscale/_private/docgen/__main__.py,sha256=cUV0mW8CapfGjcnIzz1FMBN_waZ8TWy_two9WgZcHeQ,25211
|
39
|
+
anyscale/_private/docgen/api.md,sha256=VKW293yubbeUG17A38wYuaONKDL5XICMguyfZ2xkIyY,27495
|
40
40
|
anyscale/_private/docgen/generator.py,sha256=jAOaprAeU659glRDBATAkAQeYC1nDU14jgdobcILS1s,21737
|
41
41
|
anyscale/_private/docgen/generator_legacy.py,sha256=pss_6ONF55XhARrKGcREDmg0J5plWact6USgb5Tr5mM,3002
|
42
|
-
anyscale/_private/docgen/models.md,sha256
|
42
|
+
anyscale/_private/docgen/models.md,sha256=Q9_qiY3tXHP7j-8sRm8CFz7PV2j6tO94YU8BfjvhMMo,285914
|
43
43
|
anyscale/_private/models/__init__.py,sha256=ZrkdHhJZNeCYiogsHc_po8m7vaVdxEjkNGixNeYdlgs,125
|
44
44
|
anyscale/_private/models/image_uri.py,sha256=CMzHc-MNTBsBXvX0G73bjkiznCbm95DYQusgXJ8drm8,3971
|
45
45
|
anyscale/_private/models/model_base.py,sha256=GJLA4JC0yHT554ctMYS_1es-YoTHQH9oqRHr28vV4R0,11354
|
@@ -105,7 +105,7 @@ anyscale/background/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
105
105
|
anyscale/background/job_runner.py,sha256=LTuv9JOahyv6C9i7DLQAONgQF6--FfYZEmJrKy-sUG8,2687
|
106
106
|
anyscale/client/.gitignore,sha256=JZyvYEtT2DCSK9V5Joi6lQofhMik4PXiJRCWsg7SvqI,807
|
107
107
|
anyscale/client/.openapi-generator-ignore,sha256=pu2PTide7pJtJ-DFLzDy0cTYQJRlrB-8RRH3zGLeUds,1040
|
108
|
-
anyscale/client/README.md,sha256=
|
108
|
+
anyscale/client/README.md,sha256=g5W_MRROT3cJvN5-dwBTrPdsqvCzP07nVXpaYSaFjjQ,107904
|
109
109
|
anyscale/client/git_push.sh,sha256=EDCZOTTiLxbtPHmiU63qC99rGH67B7dhdPZdNUKivF0,1827
|
110
110
|
anyscale/client/requirements.txt,sha256=dkVKYUStC5h_g_87SH7pRdhXCj7ySozAJMGAFEzGgFc,126
|
111
111
|
anyscale/client/setup.cfg,sha256=l7bdKSIedeBhhoDtupsBwx1xPrlBf2yYeTH7a8kMga4,28
|
@@ -113,14 +113,14 @@ anyscale/client/setup.py,sha256=tSxqw1kAL1B9adnrnOarjnQfSbwGmnTr_kg8ZXhlm5A,1109
|
|
113
113
|
anyscale/client/test-requirements.txt,sha256=sTjmDTj5W9fh1ZAeo8UT2EBdeGDBNttj_PHiPBXg1D4,111
|
114
114
|
anyscale/client/tox.ini,sha256=M6L3UmvAdvU65LsoAF-Oi7oRjwZlCJZn8I7ofdXn5Ok,156
|
115
115
|
anyscale/client/.openapi-generator/VERSION,sha256=J0RzX-4u4jfin1kviKtmncjUePyjHm2kyvmkobOrt_E,5
|
116
|
-
anyscale/client/openapi_client/__init__.py,sha256=
|
116
|
+
anyscale/client/openapi_client/__init__.py,sha256=ZmRlqCZK0MGxCmpc03f2UgnuuyORh7iVcI_pOvCof0o,48446
|
117
117
|
anyscale/client/openapi_client/api_client.py,sha256=d8Un6j2Ny2vlS2qBXPVFj6_ql0k36DFahpWt_28TfCk,25563
|
118
118
|
anyscale/client/openapi_client/configuration.py,sha256=Dd5XrlHwv-wxnf0C35PG_-HBQoY3Yaz6hKrmkZz-m0E,12363
|
119
119
|
anyscale/client/openapi_client/exceptions.py,sha256=3egwsXQG2j_vARbqgBxUO1xSltAhpfiHTYVP7VXTvU0,3792
|
120
120
|
anyscale/client/openapi_client/rest.py,sha256=Ehj37v7GHW6SXV067Hze5HE42ayKaGi6a6ZlkR7u3Lg,12501
|
121
121
|
anyscale/client/openapi_client/api/__init__.py,sha256=i8u7BI2xX1GrXTL3hN0pKpYIlnT-D_uDxH2ElOfYG1I,141
|
122
|
-
anyscale/client/openapi_client/api/default_api.py,sha256=
|
123
|
-
anyscale/client/openapi_client/models/__init__.py,sha256=
|
122
|
+
anyscale/client/openapi_client/api/default_api.py,sha256=_bFRrRIwvFvRdS_PjvP7L8onJxoNaZeg41u49Fr1_Z4,1737445
|
123
|
+
anyscale/client/openapi_client/models/__init__.py,sha256=1E8yWRTQN4bG7-xdpo5JyN9RZ4zJeIjNdEKkKLJunCM,47956
|
124
124
|
anyscale/client/openapi_client/models/access_config.py,sha256=b2mA0qtuTA5PFbp6C61Jc_T2zUMaojM1v32IhZo0MfY,3648
|
125
125
|
anyscale/client/openapi_client/models/actor_status.py,sha256=6xyX_aIqURj2raBdY9DmBxsdDACFrqqYvElGiM6YG2E,2813
|
126
126
|
anyscale/client/openapi_client/models/admin_create_user.py,sha256=9DPr8D0lKgoEZ3Z2kGsAd8L7ocFCiP6woOGLVs8SRb8,7251
|
@@ -567,10 +567,8 @@ anyscale/client/openapi_client/models/run_status.py,sha256=y4h2TPOdAOUVi-mnrAa5z
|
|
567
567
|
anyscale/client/openapi_client/models/s3_download_location.py,sha256=Yjttjv6V_sD_uL84bpmR3m6jcSI-Xa0cI7egEscs1Vg,4274
|
568
568
|
anyscale/client/openapi_client/models/schedule_config.py,sha256=1t-2zyWfP76K3mA4OA3VW6svS18PLaTBnucZUVCmh88,5016
|
569
569
|
anyscale/client/openapi_client/models/scheduler_info.py,sha256=UGqoA26Q4d2rK5d-LIMl_2xIy9jg6K1oTWha_EvXaZc,5900
|
570
|
-
anyscale/client/openapi_client/models/serve_deployment_fast_api_docs_status.py,sha256=53IN5-gkcdcITfMAJaqMScQVewMI7gZkNSsTjH4Hv2g,3737
|
571
570
|
anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py,sha256=Xmsr2v-HOqy9bx13wHREf5UVodmrkQonWg2V6W6EUJo,2968
|
572
571
|
anyscale/client/openapi_client/models/serve_deployment_state.py,sha256=fkuMtXA6nSHsKYg-QigUh9D_pKdibw0J6BQAWzZd1cw,3083
|
573
|
-
anyscale/client/openapi_client/models/servedeploymentfastapidocsstatus_response.py,sha256=k8ThKxsU1Sd5GFepXv6wITYtds-m0YwPFRDRh96bdDM,3770
|
574
572
|
anyscale/client/openapi_client/models/server_session_token.py,sha256=XTVc8rgZMIzORmutUvKImt45bYXmywlo1_63Pgl3nD8,3738
|
575
573
|
anyscale/client/openapi_client/models/serversessiontoken_response.py,sha256=uM_2Eeoww-S8G3nJ-TqLoF7Gxnmt98CaYw0jbd3i0ag,3616
|
576
574
|
anyscale/client/openapi_client/models/service_config.py,sha256=FJkfDMcT-OURoEmkWvh_EDOmIQpnNRreL1HqfRv2KZ4,6369
|
@@ -678,10 +676,8 @@ anyscale/client/openapi_client/models/waitlist_status_response.py,sha256=Su4G2eE
|
|
678
676
|
anyscale/client/openapi_client/models/waitlist_status_type.py,sha256=Bmp1_5ti1JnIrgvvuA6Jvs39BEKhXu1si1QwNwK8rXo,2871
|
679
677
|
anyscale/client/openapi_client/models/waitliststatusresponse_response.py,sha256=PNNx1b5OjpIA7BVCRoRC_2gH6WuugseukY520qNlYkw,3660
|
680
678
|
anyscale/client/openapi_client/models/wand_b_run_details.py,sha256=nc6gIQyhHO-TjJ2uXNqGKg_q0AfGKCiukFsFGZ_l36g,4443
|
681
|
-
anyscale/client/openapi_client/models/web_terminal.py,sha256=UlXKrr1YuphJEJfy0_jqM7Kdf_jzfZXDxuzGwqM5Id8,3367
|
682
|
-
anyscale/client/openapi_client/models/webterminal_response.py,sha256=KG0tKpUPrAo2hfLMgvz206X6q0vXkHrRzcTNUTwgqr0,3539
|
683
679
|
anyscale/client/openapi_client/models/worker_node_type.py,sha256=XseU2rjirdvOqwCm0BpeRlSNDjn1m-g7-CtK3Sq-h9k,15048
|
684
|
-
anyscale/client/openapi_client/models/workload_info.py,sha256=
|
680
|
+
anyscale/client/openapi_client/models/workload_info.py,sha256=ZVsPnmwChijdLsFJeQmadL0tOH-Atr4gKAPwnudG3Hg,8760
|
685
681
|
anyscale/client/openapi_client/models/workload_type.py,sha256=Ouht9JhCu4nl1V2JVHYMllW8_GU3lw0t-8Ohgjf8FiU,2886
|
686
682
|
anyscale/client/openapi_client/models/workspace_dataplane_artifact.py,sha256=4UKF-kZceAbVK8xjPfC6jmrF543ZnZYoPXqG9lHbWGU,5382
|
687
683
|
anyscale/client/openapi_client/models/workspace_dataplane_artifacts.py,sha256=oihswrn-Dk675OYC36yO96NORjA0iN3lWMFpVzFGucU,3997
|
@@ -716,32 +712,32 @@ anyscale/commands/cloud_commands.py,sha256=E2zWvr4154mG7oBsygiDyLQ-zKAS3RwNB4DEB
|
|
716
712
|
anyscale/commands/cloud_commands_util.py,sha256=d-6TSZ_syrGkZ3Fc1uRX6jG4dqYMebNkBNpYLojOJFg,247
|
717
713
|
anyscale/commands/cluster_commands.py,sha256=taNcffyFfqJ1MgOQd0cz9kzRXWFTdp-wfLPM4l_2tBc,13487
|
718
714
|
anyscale/commands/cluster_env_commands.py,sha256=KNWylyE8Ew1sDi7yu2Tp4RLcRu2_KJJJIzVGRyPflJo,3899
|
719
|
-
anyscale/commands/command_examples.py,sha256=
|
715
|
+
anyscale/commands/command_examples.py,sha256=Oc8Y0lhnfK0c2L24ysJgCbz2VfUEbnEfRbMSIYIDQgQ,26778
|
720
716
|
anyscale/commands/compute_config_commands.py,sha256=vdyrtMcdP8eeK32p_Y6zF-qps6_SyzprhbjRZ9p18tQ,7828
|
721
717
|
anyscale/commands/config_commands.py,sha256=p55uM6WrhfbFoRXC9hNAV-8c5ANghw7tBUYwaQDAtjE,7195
|
722
718
|
anyscale/commands/exec_commands.py,sha256=cMOP1u6xQbl81h69Jug3y73XnNSwpbM6XC1X57SIp4c,465
|
723
719
|
anyscale/commands/experimental_integrations_commands.py,sha256=_e1yESwRGu621Y5MUBqdC3S79YJUdEG1W67b_uQL8wY,2038
|
724
720
|
anyscale/commands/image_commands.py,sha256=hdarnfH5upsgErzs8hJ0CcrWiVu7PxWLKEoD3892lk4,3651
|
725
721
|
anyscale/commands/job_commands.py,sha256=hXEwOSD70JEfNsk-cGYXsMT5pEyxtzdX4YJ8ng-D0_U,25194
|
726
|
-
anyscale/commands/job_queue_commands.py,sha256=
|
722
|
+
anyscale/commands/job_queue_commands.py,sha256=FEPzfvD3FO0nbApqh6sZLbEOQoT3EmrkMNBPqeWC4dU,11660
|
727
723
|
anyscale/commands/list_commands.py,sha256=rcDn-Qh3z99zE9oD7RPPa80-y0ml90W4UbGiYMw4aQo,2710
|
728
|
-
anyscale/commands/list_util.py,sha256=
|
724
|
+
anyscale/commands/list_util.py,sha256=up2f4zGNe6oNOqLr8tYnEpBbSD9pHFLC4cYzi1jDzII,4129
|
729
725
|
anyscale/commands/login_commands.py,sha256=0pIjpRC3Mw86WjDubJ5v2FHINke-Tk3JvGal_aiQMG0,3477
|
730
726
|
anyscale/commands/logs_commands.py,sha256=OgOwBsEbhcGH-STQ9MOJy8sQBYcZYmd31wzHzVPUo0g,9495
|
731
727
|
anyscale/commands/machine_commands.py,sha256=73rgz9aTIOBYcWX8zH-OYlUx3UuhODHtl1RnKtBdU1E,3641
|
732
|
-
anyscale/commands/machine_pool_commands.py,sha256=
|
728
|
+
anyscale/commands/machine_pool_commands.py,sha256=mOvcvQkf2IZ46xuNazeY1qHATKm00Z4h9QuVdxWhA2k,9700
|
733
729
|
anyscale/commands/migrate_commands.py,sha256=QL1sVL7KGaOFpL4sVNUM96I4kOEzYmIXFuG90LRJ9Uw,3258
|
734
730
|
anyscale/commands/organization_invitation_commands.py,sha256=L0OEz_mF5Dm02KjVzDu_CRKlLm4-c2w8HcHqEvP2nIs,2723
|
735
731
|
anyscale/commands/project_commands.py,sha256=xVm-W5kKzgfbQjAiHSRhnyMIlYgGji1TUfYAi8QrGBo,7131
|
736
732
|
anyscale/commands/resource_quota_commands.py,sha256=J6r8b6Bo1wMys5pYWieD6F-VsC2OpQZGVLaNFlvAKmI,8536
|
737
733
|
anyscale/commands/schedule_commands.py,sha256=mdwelVght3HnN5YPjtG4Spn0KiEDWmg-UosfaDkQPKE,14485
|
738
734
|
anyscale/commands/service_account_commands.py,sha256=u45N2akHsZxyu5LK03FGEEnZh4dTt4B2Be-dXgbSg3U,3977
|
739
|
-
anyscale/commands/service_commands.py,sha256=
|
735
|
+
anyscale/commands/service_commands.py,sha256=lq_FuS9YWvPJkzH641DBLFISMIi1EwVVwc5kTqOftvo,33660
|
740
736
|
anyscale/commands/session_commands_hidden.py,sha256=APEypnUB1yV2Rr6wdSFWy1vQbAnn-lOn0rU2enF5JdM,6200
|
741
737
|
anyscale/commands/user_commands.py,sha256=C-i1dGpdhboywN_2XgPS2BekKx2y6LZq8c8gvS0S-tY,1259
|
742
738
|
anyscale/commands/util.py,sha256=N8gkVv9LBr5QypBGm2e_Pw2F2e_tiiR4YNLmn8CtsK0,5124
|
743
739
|
anyscale/commands/workspace_commands.py,sha256=RjK8rPlIPoReZBb7RPB6z9aFp7gSmnsxDge8d3uj9t8,15768
|
744
|
-
anyscale/commands/workspace_commands_v2.py,sha256=
|
740
|
+
anyscale/commands/workspace_commands_v2.py,sha256=D6YmcjD7Db7KK6adaGxiyiIdlCzMa4Y1v_xVT_cWmmI,43582
|
745
741
|
anyscale/commands/anyscale_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
746
742
|
anyscale/commands/anyscale_api/api_commands.py,sha256=Dze2wuzeZurlbxOu4YHZqln026yXgtWi_jxccyKANmw,473
|
747
743
|
anyscale/commands/anyscale_api/session_operations_commands.py,sha256=LiavgWn2-F7b3GZD0ng_Q1HiEP4o32e8nO9yU92AgxI,803
|
@@ -767,7 +763,7 @@ anyscale/controllers/cluster_env_controller.py,sha256=JalGzcmnFtMHefYL5U6ijMY3nX
|
|
767
763
|
anyscale/controllers/compute_config_controller.py,sha256=GnZAJGrPAmGO6MWvqna-0-DBlwC1y8fnKgwsDVa0eDs,14110
|
768
764
|
anyscale/controllers/config_controller.py,sha256=VsfdARHxo4tMLfeiYkTNOMGW3sIcNhVqYi37-SruKnk,17125
|
769
765
|
anyscale/controllers/experimental_integrations_controller.py,sha256=_22_hAQCJIMg3E10s8xajoFF6Lf1HqVlAdAVt0Rh2DY,3889
|
770
|
-
anyscale/controllers/job_controller.py,sha256=
|
766
|
+
anyscale/controllers/job_controller.py,sha256=sNQGzSLtp6e8PSbrmMrW_dp3pYytS8KCGcE-YjaNz5I,25425
|
771
767
|
anyscale/controllers/jobs_bg_controller.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
772
768
|
anyscale/controllers/list_controller.py,sha256=oaOS6oo2TKPpXhGjs_laxuIVKinv3FwYfHt1CIzeTuU,11621
|
773
769
|
anyscale/controllers/logs_controller.py,sha256=x5GBUVdPYhbWRA3RfMQZJi3hBS2i35RkgzROfmY47h4,17647
|
@@ -790,6 +786,10 @@ anyscale/job/__init__.py,sha256=_5Nb3a11F4oAHXirTgx5vDdgpVzJ62FdGFmADxxvcPE,5051
|
|
790
786
|
anyscale/job/commands.py,sha256=je0WDrd3mxt3iuoGqKvE_2TuMWsffXXM_IQ5SRjUKnU,8524
|
791
787
|
anyscale/job/models.py,sha256=w2qqm69ccCf9Y6Hwe5cLszqn3asS19s24t4akuZPsUM,17922
|
792
788
|
anyscale/job/_private/job_sdk.py,sha256=6kQ5bDggA3f1MXcrlXAGrFRA7WAOcvKDVi8FXwq7z-E,18871
|
789
|
+
anyscale/job_queue/__init__.py,sha256=4KhAj-JkzqJdz1AbUoO8sQ4weWISBYaMPe6uRj7-5SA,3194
|
790
|
+
anyscale/job_queue/commands.py,sha256=pVgX6MG15zlUFgz6lUvAFqTSYY7gAZ5cFmDJY3QRTx0,3948
|
791
|
+
anyscale/job_queue/models.py,sha256=gl98WWvvdUlCWaSpLyUHggzNmUr49ti39itB37mznM0,10538
|
792
|
+
anyscale/job_queue/_private/job_queue_sdk.py,sha256=2ytSoTjDQWaWf4iRWtBlaaPsHpajGg_lBL7qbiOmAVc,5992
|
793
793
|
anyscale/llm/__init__.py,sha256=lRp09PWR2gcJF_1Y9ieIIQWirijP5p_l3AQkTir2iN4,76
|
794
794
|
anyscale/llm/sdk.py,sha256=VmA03eegizqikWR3eH2jYNiA8-FY3Qq1GGtvdkgU470,733
|
795
795
|
anyscale/llm/dataset/__init__.py,sha256=J-z8d7Bdvjf_5OOjcHrFQrXnCxbdcvzUBcyapawIuHg,131
|
@@ -820,15 +820,15 @@ anyscale/schedule/__init__.py,sha256=xZ07hHVUBMs_6tkhIJYqdskoDtgAndL7Zb0bMY9fCF8
|
|
820
820
|
anyscale/schedule/commands.py,sha256=5KvhT0QFeBU3WpqtuC-pbFombb-4mvaHzSv0bCgD17Y,4727
|
821
821
|
anyscale/schedule/models.py,sha256=l3vVpY6ovr1vAgiwjFjVXyHa2tTJ0cLCR0cFIIpllKg,4561
|
822
822
|
anyscale/schedule/_private/schedule_sdk.py,sha256=pkiC0QNnWvnyOphiXa_YzArL9WhVu1VScXbH8DqdHK0,5956
|
823
|
-
anyscale/sdk/anyscale_client/__init__.py,sha256=
|
823
|
+
anyscale/sdk/anyscale_client/__init__.py,sha256=Lrl9P4QhPLeOejHgUv_PHkcWDhxhsw_tmOk6KoYU4yM,13133
|
824
824
|
anyscale/sdk/anyscale_client/api_client.py,sha256=fyYpBZLDufVvXbN9KdUaer52hmKPdRSIJL2vOLN_aCk,25565
|
825
825
|
anyscale/sdk/anyscale_client/configuration.py,sha256=k65_MVukneN2JA_WUHXjnqiqpmBWjEmguSZvHx4Uihg,12361
|
826
826
|
anyscale/sdk/anyscale_client/exceptions.py,sha256=A57t810Y_rVxFpbQlfaDhCwOjeFSB6jsx0I85qkKTUQ,3789
|
827
827
|
anyscale/sdk/anyscale_client/rest.py,sha256=HVsalJFwXwGTEYgVsLJcsLKUU47wZ5oFSWmOsT2LkMM,12499
|
828
828
|
anyscale/sdk/anyscale_client/sdk.py,sha256=GtBluXl1AJi02AkwnvJOC5IGUxAFVTOYXBDFg8JyH10,27709
|
829
829
|
anyscale/sdk/anyscale_client/api/__init__.py,sha256=aI2dYRCOMQk0Ma2_qiEkpFpQGkEquzKNPGPSErfbhro,142
|
830
|
-
anyscale/sdk/anyscale_client/api/default_api.py,sha256=
|
831
|
-
anyscale/sdk/anyscale_client/models/__init__.py,sha256=
|
830
|
+
anyscale/sdk/anyscale_client/api/default_api.py,sha256=fx6yWJVl2vi2_VCoZbM25BBS4nx2ATK-wJYACTDxWqs,342998
|
831
|
+
anyscale/sdk/anyscale_client/models/__init__.py,sha256=huOIUf-73KGsSOs_MQTi8xEtYAIenqZ3BbrXl37_0Z0,12635
|
832
832
|
anyscale/sdk/anyscale_client/models/access_config.py,sha256=FOH_2UU2astWm_ilA1_FpWqKQRxwMYXjGC-UT4Zj65Y,3646
|
833
833
|
anyscale/sdk/anyscale_client/models/app_config.py,sha256=1sWYt1jiljHiXtWCQi7HJw4sBvulaqPV8tmTvNpgZYI,13439
|
834
834
|
anyscale/sdk/anyscale_client/models/app_config_config_schema.py,sha256=0RD9ffMfQ_XFXyVY7qjisOropKYT2tZ2p3XyxPrqjE0,7897
|
@@ -859,7 +859,6 @@ anyscale/sdk/anyscale_client/models/cluster_compute_config.py,sha256=fvTFHmG6I7W
|
|
859
859
|
anyscale/sdk/anyscale_client/models/cluster_computes_query.py,sha256=57Pg6OIxpvaclepizXdR6NNtEpO_7j6XSL48MSwypuQ,9836
|
860
860
|
anyscale/sdk/anyscale_client/models/cluster_environment.py,sha256=c0Bu_nQhmJxPrvwW684YuQm32D0bzaeoX7O_atJQcDg,12240
|
861
861
|
anyscale/sdk/anyscale_client/models/cluster_environment_build.py,sha256=4GxcqUwJ9_ovRTsgopCk2WnAxI9vSFxxexUkDHgjhVg,20510
|
862
|
-
anyscale/sdk/anyscale_client/models/cluster_environment_build_log_response.py,sha256=TkQkOjA6mfOS3seGWfXrrTU5VV6zpUvJw66WzAB3-ao,3673
|
863
862
|
anyscale/sdk/anyscale_client/models/cluster_environment_build_operation.py,sha256=7lelTV0yXMgGYGOG8gqenKvKV31zKEg7nWLNn_c6ICA,8267
|
864
863
|
anyscale/sdk/anyscale_client/models/cluster_environment_build_status.py,sha256=NgMYlPZNG9PMQTWnuaqESey7zjqTDpz83zpZxUoNAcg,3087
|
865
864
|
anyscale/sdk/anyscale_client/models/cluster_environments_query.py,sha256=IsH4t3T6fM6-Dxj306mzRi-lyjW58CefJ4fLHKu1ohM,9697
|
@@ -879,7 +878,6 @@ anyscale/sdk/anyscale_client/models/clusterenvironment_list_response.py,sha256=p
|
|
879
878
|
anyscale/sdk/anyscale_client/models/clusterenvironment_response.py,sha256=Pnbbw6IJ_5f65qO2h2X4pWj54zvJ1vytSEa1-4y6MOY,3614
|
880
879
|
anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_list_response.py,sha256=3IU07RpvU6TxgNdZcoYIuBgWjjJb8tFJ7LZr0ymtugc,4540
|
881
880
|
anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_response.py,sha256=Lbgfy_-qQ2xRThixAQxi17HWOw-gQuj74Ms9taVESX0,3669
|
882
|
-
anyscale/sdk/anyscale_client/models/clusterenvironmentbuildlogresponse_response.py,sha256=eWyvI2pnyHvNuMPhjfMq7EnwA_NZ-qPCqz2SlpbUMmY,3790
|
883
881
|
anyscale/sdk/anyscale_client/models/clusterenvironmentbuildoperation_response.py,sha256=jEXO2CnqubxaQ8AxKV0g_4O_KF1JpopHoEe1Ldq6L8U,3768
|
884
882
|
anyscale/sdk/anyscale_client/models/clusteroperation_response.py,sha256=pdCkRJr1xOGrcQ2CZgQJHwFln1C9QHXoMQpoe_ecPnw,3592
|
885
883
|
anyscale/sdk/anyscale_client/models/clusters_query.py,sha256=d76hoGxFgUt92bsyPHLfRx5yuQzrFq9cl1uN74IMbHI,7100
|
@@ -894,7 +892,6 @@ anyscale/sdk/anyscale_client/models/create_byod_app_config_configuration_schema.
|
|
894
892
|
anyscale/sdk/anyscale_client/models/create_byod_cluster_environment.py,sha256=oAAx5fEyZTc49AtF2tncZ4Blt110xa53qTlKH3G6qfY,5782
|
895
893
|
anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_build.py,sha256=BKBBWP0ir0K4We1OgAhZI9wJJV3UVKYkrH_h0aogOO0,5316
|
896
894
|
anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_configuration_schema.py,sha256=bGDjfifUOMByd7mwCQp0zy4AGHT56DRcXiYFdUqlMOo,7534
|
897
|
-
anyscale/sdk/anyscale_client/models/create_cloud.py,sha256=piIpzSuiTnZ_8oBqGzYIDDrHxXNTxNmBqkf7WBHW9_E,17813
|
898
895
|
anyscale/sdk/anyscale_client/models/create_cluster.py,sha256=JZN8C5KPUsY_pgD3F_51aMR4cLVJqLUmVCFUiJz0PVQ,14528
|
899
896
|
anyscale/sdk/anyscale_client/models/create_cluster_compute.py,sha256=20UlTjVbra93qH5sN43BVMBkHQhXCbxbiZ_Tvatz86o,6946
|
900
897
|
anyscale/sdk/anyscale_client/models/create_cluster_compute_config.py,sha256=ai-UK68Io8c6vU7O9TIBIZIPUVO-yCGqb0bpm-Zo8KY,20874
|
@@ -931,9 +928,6 @@ anyscale/sdk/anyscale_client/models/log_stream.py,sha256=UUORMiTWXXsg9bLuLbKuVxv
|
|
931
928
|
anyscale/sdk/anyscale_client/models/logdownloadresult_response.py,sha256=5Y-pfF-EyKwSkBRdrukj_qJmEIJHvrw3r7vOSc_PY2k,3603
|
932
929
|
anyscale/sdk/anyscale_client/models/logstream_response.py,sha256=9bJoxSYPYmIKINpZF7UmRoUy43SaBUDCFMcxiJvXiMw,3515
|
933
930
|
anyscale/sdk/anyscale_client/models/node_type.py,sha256=0OFw1Jhs01rL9QwZkE9oYm5PxLhGaWDWw3zxm9ZXCr4,2868
|
934
|
-
anyscale/sdk/anyscale_client/models/object_storage_config.py,sha256=ilailixc1Rk0qYA28rbWrv88a2BlFsEJva1HEi2zzaI,3409
|
935
|
-
anyscale/sdk/anyscale_client/models/object_storage_config_s3.py,sha256=v8v0sdrWXY0lZvo_WopXkTE0LOMhO5ySnTdr7BOIROw,8309
|
936
|
-
anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py,sha256=RMtqS-dwFtRsovf2mwjZyJ5AmGjJLTsRpZ9CGxBXZF8,3625
|
937
931
|
anyscale/sdk/anyscale_client/models/operation_error.py,sha256=W3gIlCgVC46GjAmH3L-33r-_SMmpRmkhzJBIYQHRz9U,3660
|
938
932
|
anyscale/sdk/anyscale_client/models/operation_progress.py,sha256=5o_vxN23iAJ66TvTxHZYxJ_0PYfqPO8hrE1NHJfkhek,3680
|
939
933
|
anyscale/sdk/anyscale_client/models/operation_result.py,sha256=Un37p33d-WGdBAhi2b6gWQwyXowQ8yCwiZtk7zgO-eg,4362
|
@@ -976,14 +970,11 @@ anyscale/sdk/anyscale_client/models/service_version_state.py,sha256=70UygIXv31YQ
|
|
976
970
|
anyscale/sdk/anyscale_client/models/servicemodel_list_response.py,sha256=-71b0cU3Lj_dTh74WcTlHRbB6OqIDyRPmXBLhhY-P-w,4375
|
977
971
|
anyscale/sdk/anyscale_client/models/servicemodel_response.py,sha256=3rAjmUOO6HKR8gEklDxoHKvn6IXECCRCuqQiLbZCmw0,3548
|
978
972
|
anyscale/sdk/anyscale_client/models/session.py,sha256=16msP79lxSucYEp4xoxTbPvTLp-z-RhjEKkW4Fzpaz0,61114
|
979
|
-
anyscale/sdk/anyscale_client/models/session_operation.py,sha256=4M3i19t-nzU33k0KvM9n3zFKg44QxYzqsQlBWN_6VqU,9143
|
980
|
-
anyscale/sdk/anyscale_client/models/session_operation_type.py,sha256=EtVPK_661dboi0BMdozfUjMWbSKWlAPOlApHjXqx_8U,2886
|
981
973
|
anyscale/sdk/anyscale_client/models/session_response.py,sha256=wB3HFhPxlVOX4F7IJPH4mxc4qxQWsyYRPeUuftZknLQ,3493
|
982
974
|
anyscale/sdk/anyscale_client/models/session_starting_up_data.py,sha256=kfwpLY1s4-Tf8Gdkdah4cSkRHE2JRYJNd3Rjkj8q5eQ,4366
|
983
975
|
anyscale/sdk/anyscale_client/models/session_state.py,sha256=HbGrjYS-zATMtgCjKdiV0_ViadEyXIUAZU-8wVjnRF4,3388
|
984
976
|
anyscale/sdk/anyscale_client/models/session_state_data.py,sha256=_VXob-VFJXXie0N4LhiPCTaaNus04yDv4a02iJGxMg4,4128
|
985
977
|
anyscale/sdk/anyscale_client/models/session_stopping_data.py,sha256=RVHmkAgYql4rrLF-JTSYeHdkf1xfpSI3KQuYVpXrmSo,4222
|
986
|
-
anyscale/sdk/anyscale_client/models/sessionoperation_response.py,sha256=0oka4ubC14bHAcR1e1XCel-kO_KJ4Ipa9SWc1U29jvw,3592
|
987
978
|
anyscale/sdk/anyscale_client/models/sort_by_clause_jobs_sort_field.py,sha256=UoB71wVunPaz5-iYla6h0CA6pN3AzuavjEkEKTX5FW8,4602
|
988
979
|
anyscale/sdk/anyscale_client/models/sort_order.py,sha256=M4N4k9bUP2Z70ItQU6WXQgMb5VA1kx2ka4X6MAvEfvY,2797
|
989
980
|
anyscale/sdk/anyscale_client/models/sso_config.py,sha256=0rnFJuk2EveaDPTUb19_9sDrhYUJDKNNhPxG2QQSsbo,7958
|
@@ -996,18 +987,16 @@ anyscale/sdk/anyscale_client/models/system_workload_name.py,sha256=ciWHh6U1GjNrF
|
|
996
987
|
anyscale/sdk/anyscale_client/models/terminate_cluster_options.py,sha256=G88vOv_i5E-CXT5IFGjnu0oZ6diycd9UXI-go9o3vLE,3883
|
997
988
|
anyscale/sdk/anyscale_client/models/text_query.py,sha256=NVGbkdvoJxTiCtDhbkiwCUGsqHrewENVRvkh_njNGzg,5105
|
998
989
|
anyscale/sdk/anyscale_client/models/tracing_config.py,sha256=-w73voNde5dUFcqs78SXWDWkAi2r9AC7cmKDj3IF22Q,6291
|
999
|
-
anyscale/sdk/anyscale_client/models/update_cloud.py,sha256=WYhVEsI0RjG2BJxeVRm2fWi4xPUG8agVW_TX65t8_cU,4805
|
1000
990
|
anyscale/sdk/anyscale_client/models/update_cluster.py,sha256=BDjtjyq7ybCbxfmXDDVgAShZlwWnxA3U2fjMAnfyiyQ,7220
|
1001
991
|
anyscale/sdk/anyscale_client/models/update_organization.py,sha256=k_WvJf_uyO-z4aVWuHylM6EjCoMplJFPkRtlDFvT28M,4321
|
1002
|
-
anyscale/sdk/anyscale_client/models/update_project.py,sha256=eyQpf1CNvvGDLTmH-fbBEIEx9zCHy9TfuDHYctHx7Ys,4484
|
1003
992
|
anyscale/sdk/anyscale_client/models/user_service_access_types.py,sha256=3gW1L_VTrPwCSIKrWIn4EEsGD1LqVRRAuEAsAIE2w_w,2867
|
1004
993
|
anyscale/sdk/anyscale_client/models/ux_instance.py,sha256=F2F2cxAJ5GElRgHcrxpB7GEpvhM-PJa3qpBBYmhwlUQ,15935
|
1005
994
|
anyscale/sdk/anyscale_client/models/validation_error.py,sha256=h5Cope8JNSDE3Fpr1TfjcnuJPThF0dd_uawvltOqPt0,4901
|
1006
995
|
anyscale/sdk/anyscale_client/models/worker_node_type.py,sha256=bI3sPVPA4t4axjdbj7pNlPkKPJDDkOnMgiN7B_o3IZI,15046
|
1007
|
-
anyscale/service/__init__.py,sha256=
|
1008
|
-
anyscale/service/commands.py,sha256=
|
996
|
+
anyscale/service/__init__.py,sha256=8L7JynFGOfZ28WIDTUM-ipzbrChZ_ZqadJuIhApTvFM,7988
|
997
|
+
anyscale/service/commands.py,sha256=cef52vv7KlUX_vOhQubUOM9t3rT4NbE_GNhllCFZWvg,14384
|
1009
998
|
anyscale/service/models.py,sha256=In9Nn6xYWSpKwjYaMe1zyRWs1gU-g9J-tNt74BQh0js,25985
|
1010
|
-
anyscale/service/_private/service_sdk.py,sha256=
|
999
|
+
anyscale/service/_private/service_sdk.py,sha256=7WiBusUKH942cO-W4aQOrJOegGsZyRgkJIQ5qA1B4Yw,34922
|
1011
1000
|
anyscale/service_account/__init__.py,sha256=jV1OFo_ZTxU3vuPztO1300TuoMz-Ocudm6_84ZtjPQ4,2764
|
1012
1001
|
anyscale/service_account/commands.py,sha256=pkJjZwK8aRKFFVfE5swMTJrm9CTnPcNJETEFdMkPiic,3680
|
1013
1002
|
anyscale/service_account/models.py,sha256=MhY-Fo5AZQ68brqtolTUMW3WQDrkNyL1udtNg70sNAU,2189
|
@@ -1057,6 +1046,7 @@ anyscale/utils/ray_version_checker.py,sha256=IiBJzBFJpOs4or0FeuaXKRysbCaFzCEoO_D
|
|
1057
1046
|
anyscale/utils/ray_version_utils.py,sha256=DhrkyJAB7M-61QA73RkuVwXk3FfApFH3vShGSbcdsck,1932
|
1058
1047
|
anyscale/utils/runtime_env.py,sha256=WDHQXJYFZM9__RvuT6Fq66fWgtMENGP3umz3zLqHczU,18592
|
1059
1048
|
anyscale/utils/s3.py,sha256=cxlR5baJIGaEFRUmND_i66Nh9TA7N0AGgcq8MdLZBdU,3427
|
1049
|
+
anyscale/utils/ssh_websocket_proxy.py,sha256=AHDzFk6G8x4envhWs1IAYjv08VZIMieug7e-1n8-xhw,6805
|
1060
1050
|
anyscale/utils/user_utils.py,sha256=wM0npdWAfaahRMUI26jz8tm3oQsqpk7A1QEyygOtt-M,573
|
1061
1051
|
anyscale/utils/workload_types.py,sha256=kKAaKDh5bd6zA2f1HR0VMlkhu9nAIeUMM-NMIGP0ZR4,128
|
1062
1052
|
anyscale/utils/workspace_notification.py,sha256=3utuEVFj7iHAXTHXDWedPcycIV3b0bpdQtAWz2n2GPI,1129
|
@@ -1073,10 +1063,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
|
|
1073
1063
|
anyscale/workspace/commands.py,sha256=b1sqNseoPj-1VXznqQOLe0V_a663bOTvJX-TaOMJa1Y,14590
|
1074
1064
|
anyscale/workspace/models.py,sha256=HBvM9ybOdJjqQeViQ30C36gdKT_AwH_JHPoL-DTkESo,9841
|
1075
1065
|
anyscale/workspace/_private/workspace_sdk.py,sha256=2CMeYfJt0UtIFCocDn1ukw1iI5esKHdopLe6duEs-qE,27599
|
1076
|
-
anyscale-0.26.
|
1077
|
-
anyscale-0.26.
|
1078
|
-
anyscale-0.26.
|
1079
|
-
anyscale-0.26.
|
1080
|
-
anyscale-0.26.
|
1081
|
-
anyscale-0.26.
|
1082
|
-
anyscale-0.26.
|
1066
|
+
anyscale-0.26.30.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
|
1067
|
+
anyscale-0.26.30.dist-info/METADATA,sha256=h5NOjd0pDVHlNOcaFFcdJgKeuIR47gCQmEmEgUUTz-M,3269
|
1068
|
+
anyscale-0.26.30.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
|
1069
|
+
anyscale-0.26.30.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
1070
|
+
anyscale-0.26.30.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
|
1071
|
+
anyscale-0.26.30.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
|
1072
|
+
anyscale-0.26.30.dist-info/RECORD,,
|