anyscale 0.26.40__py3-none-any.whl → 0.26.42__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/_private/docgen/__main__.py +1 -0
- anyscale/anyscale-cloud-setup-gcp-oa.yaml +0 -29
- anyscale/anyscale-cloud-setup-gcp.yaml +0 -16
- anyscale/anyscale-cloud-setup.yaml +12 -6
- anyscale/client/README.md +10 -5
- anyscale/client/openapi_client/__init__.py +2 -0
- anyscale/client/openapi_client/api/default_api.py +249 -10
- anyscale/client/openapi_client/models/__init__.py +2 -0
- anyscale/client/openapi_client/models/decorated_session.py +31 -3
- anyscale/client/openapi_client/models/machine_pool_search_query.py +122 -0
- anyscale/client/openapi_client/models/update_payment_info.py +123 -0
- anyscale/commands/cloud_commands.py +45 -1
- anyscale/commands/command_examples.py +25 -0
- anyscale/controllers/cloud_controller.py +108 -83
- anyscale/util.py +25 -1
- anyscale/utils/gcp_managed_setup_utils.py +66 -1
- anyscale/version.py +1 -1
- {anyscale-0.26.40.dist-info → anyscale-0.26.42.dist-info}/METADATA +1 -4
- {anyscale-0.26.40.dist-info → anyscale-0.26.42.dist-info}/RECORD +24 -22
- {anyscale-0.26.40.dist-info → anyscale-0.26.42.dist-info}/LICENSE +0 -0
- {anyscale-0.26.40.dist-info → anyscale-0.26.42.dist-info}/NOTICE +0 -0
- {anyscale-0.26.40.dist-info → anyscale-0.26.42.dist-info}/WHEEL +0 -0
- {anyscale-0.26.40.dist-info → anyscale-0.26.42.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.40.dist-info → anyscale-0.26.42.dist-info}/top_level.txt +0 -0
anyscale/util.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from contextlib import contextmanager
|
|
2
2
|
from copy import deepcopy
|
|
3
3
|
import datetime
|
|
4
|
+
from enum import Enum
|
|
4
5
|
import ipaddress
|
|
5
6
|
import json
|
|
6
7
|
import logging
|
|
@@ -143,6 +144,13 @@ def confirm(msg: str, yes: bool) -> Optional[bool]:
|
|
|
143
144
|
return None if yes else click.confirm(msg, abort=True)
|
|
144
145
|
|
|
145
146
|
|
|
147
|
+
class SharedStorageType(str, Enum):
|
|
148
|
+
"""Enum for shared storage types."""
|
|
149
|
+
|
|
150
|
+
OBJECT_STORAGE = "object-storage"
|
|
151
|
+
NFS = "nfs"
|
|
152
|
+
|
|
153
|
+
|
|
146
154
|
class AnyscaleEndpointFormatter:
|
|
147
155
|
def __init__(self, host: Optional[str] = None):
|
|
148
156
|
self.host = host or shared_anyscale_conf.ANYSCALE_HOST
|
|
@@ -842,6 +850,7 @@ def prepare_cloudformation_template(
|
|
|
842
850
|
enable_head_node_fault_tolerance: bool,
|
|
843
851
|
boto3_session: Optional[boto3.Session] = None,
|
|
844
852
|
is_anyscale_hosted: bool = False,
|
|
853
|
+
shared_storage: SharedStorageType = SharedStorageType.OBJECT_STORAGE,
|
|
845
854
|
) -> str:
|
|
846
855
|
if is_anyscale_hosted:
|
|
847
856
|
with open(f"{anyscale.conf.ROOT_DIR_PATH}/anyscale-cloud-setup-oa.yaml") as f:
|
|
@@ -896,7 +905,7 @@ def prepare_cloudformation_template(
|
|
|
896
905
|
f'{{"subnet_id": !Ref Subnet{i}, "availability_zone": !GetAtt Subnet{i}.AvailabilityZone}}'
|
|
897
906
|
)
|
|
898
907
|
|
|
899
|
-
if not is_anyscale_hosted:
|
|
908
|
+
if not is_anyscale_hosted and shared_storage == SharedStorageType.NFS:
|
|
900
909
|
efs_mount_targets.append(
|
|
901
910
|
f"""
|
|
902
911
|
EFSMountTarget{i}:
|
|
@@ -919,6 +928,21 @@ def prepare_cloudformation_template(
|
|
|
919
928
|
if not is_anyscale_hosted:
|
|
920
929
|
body = body.replace("$EFSMountTargets", "\n".join(efs_mount_targets))
|
|
921
930
|
|
|
931
|
+
# Only include EFS mount target output if mount targets are actually created
|
|
932
|
+
if efs_mount_targets and shared_storage == SharedStorageType.NFS:
|
|
933
|
+
efs_mount_target_output = """
|
|
934
|
+
EFSMountTargetIP:
|
|
935
|
+
Description: Anyscale managed EFS mount target
|
|
936
|
+
Value: !GetAtt
|
|
937
|
+
- EFSMountTarget0
|
|
938
|
+
- IpAddress"""
|
|
939
|
+
body = body.replace("$EFS_MOUNT_TARGET_OUTPUT", efs_mount_target_output)
|
|
940
|
+
else:
|
|
941
|
+
body = body.replace("$EFS_MOUNT_TARGET_OUTPUT", "")
|
|
942
|
+
else:
|
|
943
|
+
# For anyscale hosted, remove the EFS mount target output placeholder
|
|
944
|
+
body = body.replace("$EFS_MOUNT_TARGET_OUTPUT", "")
|
|
945
|
+
|
|
922
946
|
iam_policy_parameters = [
|
|
923
947
|
generate_inline_policy_parameter(policy) for policy in ANYSCALE_IAM_POLICIES
|
|
924
948
|
]
|
|
@@ -21,7 +21,11 @@ from anyscale.cli_logger import CloudSetupLogger
|
|
|
21
21
|
from anyscale.client.openapi_client.models import CloudAnalyticsEventCloudResource
|
|
22
22
|
import anyscale.conf
|
|
23
23
|
import anyscale.shared_anyscale_utils.conf as shared_anyscale_conf
|
|
24
|
-
from anyscale.util import
|
|
24
|
+
from anyscale.util import (
|
|
25
|
+
confirm,
|
|
26
|
+
GCP_DEPLOYMENT_MANAGER_TIMEOUT_SECONDS_LONG,
|
|
27
|
+
SharedStorageType,
|
|
28
|
+
)
|
|
25
29
|
from anyscale.utils.gcp_utils import GCP_REQUIRED_APIS, GoogleCloudClientFactory
|
|
26
30
|
|
|
27
31
|
|
|
@@ -48,6 +52,57 @@ GCP_MEMORYSTORE_RESOURCE_CONFIG_TEMPLATE = """
|
|
|
48
52
|
- subnet-${CLOUD_ID}"""
|
|
49
53
|
|
|
50
54
|
|
|
55
|
+
GCP_FILESTORE_RESOURCE_CONFIG_TEMPLATE = """
|
|
56
|
+
- name: filestore-${CLOUD_ID}
|
|
57
|
+
type: gcp-types/file-v1beta1:projects.locations.instances
|
|
58
|
+
properties:
|
|
59
|
+
instanceId: filestore-${CLOUD_ID}
|
|
60
|
+
parent: projects/${PROJECT_ID}/locations/${REGION}-${ZONE}
|
|
61
|
+
tier: STANDARD
|
|
62
|
+
networks:
|
|
63
|
+
- network: projects/${PROJECT_ID}/global/networks/$$(ref.vpc-${CLOUD_ID}.name)
|
|
64
|
+
fileShares:
|
|
65
|
+
- name: anyscale_vol
|
|
66
|
+
capacityGb: ${FILESHARE_CAPACITY_GB}
|
|
67
|
+
labels:
|
|
68
|
+
anyscale-cloud-id: ${CLOUD_ID_UNDERSCORE}
|
|
69
|
+
metadata:
|
|
70
|
+
dependsOn:
|
|
71
|
+
- vpc-${CLOUD_ID}"""
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
GCP_FILESTORE_RESOURCE_CONFIG_TEMPLATE_OA = """
|
|
75
|
+
- name: filestore-${CLOUD_ID}
|
|
76
|
+
type: gcp-types/file-v1beta1:projects.locations.instances
|
|
77
|
+
properties:
|
|
78
|
+
instanceId: filestore-${CLOUD_ID}
|
|
79
|
+
parent: projects/${PROJECT_ID}/locations/${REGION}-${ZONE}
|
|
80
|
+
tier: STANDARD
|
|
81
|
+
networks:
|
|
82
|
+
- network: projects/${PROJECT_ID}/global/networks/${VPC_NAME}
|
|
83
|
+
fileShares:
|
|
84
|
+
- name: anyscale_vol
|
|
85
|
+
capacityGb: ${FILESHARE_CAPACITY_GB}
|
|
86
|
+
labels:
|
|
87
|
+
anyscale-cloud-id: ${CLOUD_ID_UNDERSCORE}
|
|
88
|
+
- name: allow-filestore-${CLOUD_ID}
|
|
89
|
+
type: compute.v1.firewall
|
|
90
|
+
properties:
|
|
91
|
+
direction: EGRESS
|
|
92
|
+
network: projects/${PROJECT_ID}/global/networks/${VPC_NAME}
|
|
93
|
+
allowed:
|
|
94
|
+
- IPProtocol: all
|
|
95
|
+
targetServiceAccounts:
|
|
96
|
+
- $$(ref.${CLOUD_ID}.email)
|
|
97
|
+
destinationRanges:
|
|
98
|
+
- $$(ref.filestore-${CLOUD_ID}.networks[0].reservedIpRange)
|
|
99
|
+
priority: 1000
|
|
100
|
+
metadata:
|
|
101
|
+
dependsOn:
|
|
102
|
+
- ${CLOUD_ID}
|
|
103
|
+
- filestore-${CLOUD_ID}"""
|
|
104
|
+
|
|
105
|
+
|
|
51
106
|
class GCPDeployment(BaseModel):
|
|
52
107
|
deployment_name: str
|
|
53
108
|
fingerprint: str
|
|
@@ -312,6 +367,7 @@ def generate_deployment_manager_config( # noqa: PLR0913
|
|
|
312
367
|
zone: str = "b", # some regions like us-east1 or europe-west1 don't have zone "a"
|
|
313
368
|
fileshare_capacity_gb: int = 1024,
|
|
314
369
|
control_plane_service_account_email: Optional[str] = None,
|
|
370
|
+
shared_storage: SharedStorageType = SharedStorageType.OBJECT_STORAGE,
|
|
315
371
|
) -> str:
|
|
316
372
|
"""
|
|
317
373
|
Generate the deployment manager config for Anyscale cloud setup.
|
|
@@ -328,6 +384,15 @@ def generate_deployment_manager_config( # noqa: PLR0913
|
|
|
328
384
|
|
|
329
385
|
if enable_head_node_fault_tolerance:
|
|
330
386
|
body += GCP_MEMORYSTORE_RESOURCE_CONFIG_TEMPLATE
|
|
387
|
+
|
|
388
|
+
if shared_storage == SharedStorageType.NFS:
|
|
389
|
+
if vpc_name:
|
|
390
|
+
# Organization admin template - use OA filestore template
|
|
391
|
+
body += GCP_FILESTORE_RESOURCE_CONFIG_TEMPLATE_OA
|
|
392
|
+
else:
|
|
393
|
+
# Regular template - use regular filestore template
|
|
394
|
+
body += GCP_FILESTORE_RESOURCE_CONFIG_TEMPLATE
|
|
395
|
+
|
|
331
396
|
deployment_manager_config = Template(body)
|
|
332
397
|
|
|
333
398
|
params = {
|
anyscale/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.26.
|
|
1
|
+
__version__ = "0.26.42"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: anyscale
|
|
3
|
-
Version: 0.26.
|
|
3
|
+
Version: 0.26.42
|
|
4
4
|
Summary: Command Line Interface for Anyscale
|
|
5
5
|
Author: Anyscale Inc.
|
|
6
6
|
License: AS License
|
|
@@ -43,7 +43,6 @@ Provides-Extra: backend
|
|
|
43
43
|
Requires-Dist: terminado==0.10.1; extra == "backend"
|
|
44
44
|
Requires-Dist: tornado; extra == "backend"
|
|
45
45
|
Requires-Dist: ray>=1.4.0; extra == "backend"
|
|
46
|
-
Requires-Dist: protobuf<4; python_version < "3.11" and extra == "backend"
|
|
47
46
|
Requires-Dist: google-api-python-client; extra == "backend"
|
|
48
47
|
Requires-Dist: google-cloud-secret-manager; extra == "backend"
|
|
49
48
|
Requires-Dist: google-cloud-compute; extra == "backend"
|
|
@@ -53,7 +52,6 @@ Requires-Dist: google-cloud-storage; extra == "backend"
|
|
|
53
52
|
Requires-Dist: google-cloud-redis; extra == "backend"
|
|
54
53
|
Requires-Dist: google-cloud-certificate-manager; extra == "backend"
|
|
55
54
|
Provides-Extra: gcp
|
|
56
|
-
Requires-Dist: protobuf<4; python_version < "3.11" and extra == "gcp"
|
|
57
55
|
Requires-Dist: google-api-python-client; extra == "gcp"
|
|
58
56
|
Requires-Dist: google-cloud-secret-manager; extra == "gcp"
|
|
59
57
|
Requires-Dist: google-cloud-compute; extra == "gcp"
|
|
@@ -64,7 +62,6 @@ Requires-Dist: google-cloud-redis; extra == "gcp"
|
|
|
64
62
|
Requires-Dist: google-cloud-certificate-manager; extra == "gcp"
|
|
65
63
|
Provides-Extra: all
|
|
66
64
|
Requires-Dist: ray>=1.4.0; extra == "all"
|
|
67
|
-
Requires-Dist: protobuf<4; python_version < "3.11" and extra == "all"
|
|
68
65
|
Requires-Dist: google-api-python-client; extra == "all"
|
|
69
66
|
Requires-Dist: google-cloud-secret-manager; extra == "all"
|
|
70
67
|
Requires-Dist: google-cloud-compute; extra == "all"
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
anyscale/__init__.py,sha256=ENKr1ipvMdG5mR9YEPCLBKgNGW-cWW5GHE6GRJZ1GqY,8951
|
|
2
|
-
anyscale/anyscale-cloud-setup-gcp-oa.yaml,sha256=
|
|
3
|
-
anyscale/anyscale-cloud-setup-gcp.yaml,sha256=
|
|
2
|
+
anyscale/anyscale-cloud-setup-gcp-oa.yaml,sha256=q_NmnPUQ6lwToaH5l92fFxDrR968gHv3JzXOEpCe-20,1820
|
|
3
|
+
anyscale/anyscale-cloud-setup-gcp.yaml,sha256=crCcL4DcsSTq4NUxNFNlPySkCme7xDB-g2noFYEphPM,3489
|
|
4
4
|
anyscale/anyscale-cloud-setup-oa.yaml,sha256=MMfjT2UCNQS43I3mGOMoSq1cq1dufxtnXU9Zy260TK8,3192
|
|
5
|
-
anyscale/anyscale-cloud-setup.yaml,sha256=
|
|
5
|
+
anyscale/anyscale-cloud-setup.yaml,sha256=YU6PHVd4Rv1Bpq8JtK8anixxmS22oi49FnFuQZZB4SA,8880
|
|
6
6
|
anyscale/anyscale_schema.json,sha256=pQtFMvsYLZF39HcfhFV-ze15W9oELuWHz16PED7sMSQ,193
|
|
7
7
|
anyscale/api.py,sha256=HAZZg8zWLTkMgHkIeJys-9xKvFqzBVONRUeI6MQDhSA,8271
|
|
8
8
|
anyscale/authenticate.py,sha256=4RiJ1Ruu-JKENwuMkWqq1R19DXxucVPS-GoKlii1fLI,12346
|
|
@@ -27,8 +27,8 @@ anyscale/scripts.py,sha256=dG_JgWuq8TrM4XLRCCXhccka41qn95qbEgt0GG_1x5M,5678
|
|
|
27
27
|
anyscale/snapshot.py,sha256=UGJT5C1s_4xmQxjWODK5DFpGxHRBX5jOCdSCqXESH8E,1685
|
|
28
28
|
anyscale/tables.py,sha256=TV4F2uLnwehvbkAfaP7iuLlT2wLIo6ORH2LVdRGXW5g,2840
|
|
29
29
|
anyscale/telemetry.py,sha256=wklWABN8wtq8Cq3ptPFEeQQC9xjKP5ytxybCuWAvNI0,15229
|
|
30
|
-
anyscale/util.py,sha256=
|
|
31
|
-
anyscale/version.py,sha256=
|
|
30
|
+
anyscale/util.py,sha256=0iSmKKsDFV0i2eRmVQ1W60Sgh2g-vPeBoBw3ra3m6eI,42782
|
|
31
|
+
anyscale/version.py,sha256=sJPJJpFuAngUBVvK1BAPMS56myKG9N28w8dV3QoQ7kU,24
|
|
32
32
|
anyscale/workspace_utils.py,sha256=OViE88CnIF5ruVxd3kazQ0Mf2BxqtMq6wx-XQ5A2cp8,1204
|
|
33
33
|
anyscale/_private/anyscale_client/README.md,sha256=gk8obk7kqg6VWoUHcqDMwJULh35tYKEZFC0UF_dixGA,718
|
|
34
34
|
anyscale/_private/anyscale_client/__init__.py,sha256=807Blx3RHQeS8BmKZcsOQQ4dYoKlCnpm6Bdsif2CrHg,337
|
|
@@ -36,7 +36,7 @@ anyscale/_private/anyscale_client/anyscale_client.py,sha256=HG_lUgmV97GboRBj1FTS
|
|
|
36
36
|
anyscale/_private/anyscale_client/common.py,sha256=ee7pAgdT8Wr7gTEy8daYshveAmfM4c_TisuxVFUjfZw,27123
|
|
37
37
|
anyscale/_private/anyscale_client/fake_anyscale_client.py,sha256=wG4N_n8Joq77G4i6KN9wOVcNG8EVUoaOUYA-xMZIcg8,58545
|
|
38
38
|
anyscale/_private/docgen/README.md,sha256=z0tj8Jy0KmxWJBQMHKyzXGX_cYYgI8m5DCD6KCMU8oI,762
|
|
39
|
-
anyscale/_private/docgen/__main__.py,sha256=
|
|
39
|
+
anyscale/_private/docgen/__main__.py,sha256=xfC-pHjYm3l97CJy07xlTZqRGb4AcLgWNmi_L7GsNng,25366
|
|
40
40
|
anyscale/_private/docgen/api.md,sha256=VKW293yubbeUG17A38wYuaONKDL5XICMguyfZ2xkIyY,27495
|
|
41
41
|
anyscale/_private/docgen/generator.py,sha256=jAOaprAeU659glRDBATAkAQeYC1nDU14jgdobcILS1s,21737
|
|
42
42
|
anyscale/_private/docgen/generator_legacy.py,sha256=pss_6ONF55XhARrKGcREDmg0J5plWact6USgb5Tr5mM,3002
|
|
@@ -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=1pK6EJ2CeaFczKSc26N2Ym6ImSuUlFUeEk9p8dIygyg,112728
|
|
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,14 +114,14 @@ 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=zDoZC3zvutRrjQmwgPcR2nsKVxfO2U4Tx9eIzM08Bvg,50830
|
|
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=oTddRA3EjTR7JAz2Bfn0qIIOCrl2qtqQqPsV3NHrUm8,1808734
|
|
124
|
+
anyscale/client/openapi_client/models/__init__.py,sha256=XKA3Dmnmnq2zbL0430kJcPmp5DFGeDbVPkKVjPJLA-E,50340
|
|
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
|
|
@@ -334,7 +334,7 @@ anyscale/client/openapi_client/models/decorated_production_service_v2_version_ap
|
|
|
334
334
|
anyscale/client/openapi_client/models/decorated_schedule.py,sha256=zCDLO0og8GMMxv_43k3BjYB3MAGc3znGcKV28GYoJwU,18193
|
|
335
335
|
anyscale/client/openapi_client/models/decorated_serve_deployment.py,sha256=fujpuo3v3GNhKwwiHwBqtU8BrBvBrcbg_TTtSvVG7oY,24397
|
|
336
336
|
anyscale/client/openapi_client/models/decorated_service_event_api_model.py,sha256=TE2bxLquf15IQZTXDiqawOnRYQKT-0Gxrr9VJVNwu9c,17555
|
|
337
|
-
anyscale/client/openapi_client/models/decorated_session.py,sha256=
|
|
337
|
+
anyscale/client/openapi_client/models/decorated_session.py,sha256=inA-fNRdIv1DmbzI_YygBvtKn1tP3XAIpjHhuaottwk,70380
|
|
338
338
|
anyscale/client/openapi_client/models/decorated_support_request.py,sha256=FyU8FQbCVAXUpxikWjVmEn5WasPTZeFppafbU2B0kQE,9163
|
|
339
339
|
anyscale/client/openapi_client/models/decorated_unified_job.py,sha256=chXCS6V5Zkweel9Xeg2mqotcLgKXwo4uoM-kZMWVeJ4,13976
|
|
340
340
|
anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py,sha256=Aqq7NLQ1JszMgO7GDZkY-taxuMuohu83MziWxKyAw3o,4617
|
|
@@ -476,6 +476,7 @@ anyscale/client/openapi_client/models/machine_connection_state.py,sha256=dAY4g-I
|
|
|
476
476
|
anyscale/client/openapi_client/models/machine_info.py,sha256=3L1vM8pOHOX4VZz-sIfawwrSJiQK-xTyESv50EX-TQU,15364
|
|
477
477
|
anyscale/client/openapi_client/models/machine_launch_failure.py,sha256=9MMZ17hGYKR0xBfUKcVc2yhtVsBQFtxcNXSBmnnMU7Y,4601
|
|
478
478
|
anyscale/client/openapi_client/models/machine_pool.py,sha256=0_tga2wp9DR-tGeGHg3AE1F1iiKn8N_ruWCr_aVtxX0,9135
|
|
479
|
+
anyscale/client/openapi_client/models/machine_pool_search_query.py,sha256=RWcPq0tCshJZ120hrfamEiCLY6Wg_X01KcbHKmd9D-k,3821
|
|
479
480
|
anyscale/client/openapi_client/models/machine_pool_search_result.py,sha256=CB6qnDjS_WJ2kdWGQGwa4WJXq6nl3qrlGgh8yIWx2ww,9471
|
|
480
481
|
anyscale/client/openapi_client/models/machine_state_info.py,sha256=vTwjL3buXuT7Qkub3bf4-OlAzUr7mj1Yh1ReUVk0XZk,11351
|
|
481
482
|
anyscale/client/openapi_client/models/machinepoolsearchresult_list_response.py,sha256=ipNZbR7ak2JZm5kkDLf-1w52b0packN8ZAmOzANzAec,4542
|
|
@@ -677,6 +678,7 @@ anyscale/client/openapi_client/models/update_cluster_dns.py,sha256=eFCs_MSsb21TP
|
|
|
677
678
|
anyscale/client/openapi_client/models/update_job_queue_request.py,sha256=2TkcpA9j0TnCqwfi19DELVhmyrusNpH0BGX0MG2IK28,4820
|
|
678
679
|
anyscale/client/openapi_client/models/update_machine_pool_request.py,sha256=Pi5R5BzHrIWBUch7t7zifYCXycSpanQLimzpmBOCujg,4778
|
|
679
680
|
anyscale/client/openapi_client/models/update_organization_collaborator.py,sha256=2PzbKhiVmAAJXq_k-FxIP5ntaVpDQQk4LC7mMEeZfPY,3885
|
|
681
|
+
anyscale/client/openapi_client/models/update_payment_info.py,sha256=DYGMBA9f1K10EKOYfnNFUkJcbUjOmVhyMxBoTcTC1x8,3773
|
|
680
682
|
anyscale/client/openapi_client/models/update_project_collaborator.py,sha256=xT3k_qmoR_8Fxx9z5KwSxnbR08T2KILf38TAFfRCdZQ,3809
|
|
681
683
|
anyscale/client/openapi_client/models/update_resource_quota.py,sha256=P_ogoveZ5ZX35KxIWN4VJstJeylPU0za8IXUAwRGies,3423
|
|
682
684
|
anyscale/client/openapi_client/models/updatemachinepoolresponse_response.py,sha256=0OKygqkvkOimTVYKNwDQv_KRA5hVBdyw9vTlNcGYIZ8,3636
|
|
@@ -736,11 +738,11 @@ anyscale/cloud/_private/cloud_sdk.py,sha256=5TBGyGSjMI4jLOnSle1WWC6za0psP9xgTGWU
|
|
|
736
738
|
anyscale/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
737
739
|
anyscale/commands/aggregated_instance_usage_commands.py,sha256=TRP1X3hdIWbKg9V20VtazlDXsYAeV--M0DH3-Z5tnj4,2293
|
|
738
740
|
anyscale/commands/auth_commands.py,sha256=X1g6Yu9kqgPb4HLODlZTYEk8G5AVLeyizPIgagWx-p0,1026
|
|
739
|
-
anyscale/commands/cloud_commands.py,sha256=
|
|
741
|
+
anyscale/commands/cloud_commands.py,sha256=IjGHy17CvH-doxZPYqOUvEErN1mL6Ge59ccBusIiNbw,46602
|
|
740
742
|
anyscale/commands/cloud_commands_util.py,sha256=d-6TSZ_syrGkZ3Fc1uRX6jG4dqYMebNkBNpYLojOJFg,247
|
|
741
743
|
anyscale/commands/cluster_commands.py,sha256=taNcffyFfqJ1MgOQd0cz9kzRXWFTdp-wfLPM4l_2tBc,13487
|
|
742
744
|
anyscale/commands/cluster_env_commands.py,sha256=KNWylyE8Ew1sDi7yu2Tp4RLcRu2_KJJJIzVGRyPflJo,3899
|
|
743
|
-
anyscale/commands/command_examples.py,sha256=
|
|
745
|
+
anyscale/commands/command_examples.py,sha256=sUurt7VrVoAkuIlxrdGtWbhcI0A9cOpp26rnwEdH0MQ,28203
|
|
744
746
|
anyscale/commands/compute_config_commands.py,sha256=f-kR7s3dYrFRdkSrKbIlgXt90ro7pllPCrDS04yVKTc,7828
|
|
745
747
|
anyscale/commands/config_commands.py,sha256=p55uM6WrhfbFoRXC9hNAV-8c5ANghw7tBUYwaQDAtjE,7195
|
|
746
748
|
anyscale/commands/exec_commands.py,sha256=cMOP1u6xQbl81h69Jug3y73XnNSwpbM6XC1X57SIp4c,465
|
|
@@ -784,7 +786,7 @@ anyscale/connect_utils/start_interactive_session.py,sha256=DbuIK2wuWofmbwJ9MLbsb
|
|
|
784
786
|
anyscale/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
785
787
|
anyscale/controllers/auth_controller.py,sha256=hDY2sPvUP8pvh8PnlDYH5rCHjQes2v3b_KBVjMbrzeE,5127
|
|
786
788
|
anyscale/controllers/base_controller.py,sha256=1QFJoScFUV7YTzpKarhwPOc1SvI-xqX3TZmwxKonW6I,1998
|
|
787
|
-
anyscale/controllers/cloud_controller.py,sha256=
|
|
789
|
+
anyscale/controllers/cloud_controller.py,sha256=YG4AJfux-vJw6arbUVWl40PJMNk3PjbHb7xCxTopgZM,178536
|
|
788
790
|
anyscale/controllers/cloud_functional_verification_controller.py,sha256=YsEfdHT9hPtxy_3a5Q62UlRXW0iFJ1lVS4IZ_NHoemE,33399
|
|
789
791
|
anyscale/controllers/cluster_controller.py,sha256=Sb5wVjrjpycg5iqmENAVtZ4iy9Kr6kM97_ck-KH85LM,28745
|
|
790
792
|
anyscale/controllers/cluster_env_controller.py,sha256=JalGzcmnFtMHefYL5U6ijMY3nX6W6BsMEfZSMtgBvtU,8048
|
|
@@ -1063,7 +1065,7 @@ anyscale/utils/connect_helpers.py,sha256=hlTKnaL27pABWPoW5nA5dpJW2ZG_2k7dXjnqtdz
|
|
|
1063
1065
|
anyscale/utils/deprecation_util.py,sha256=2i1SNQIziOZXO24IuBZZUEi4ild1bqk0gfZWl2KgpXw,1160
|
|
1064
1066
|
anyscale/utils/entity_arg_utils.py,sha256=HdrFNVgpPqnpv10jVOGg49bmoGy92N306u2JIy0hmqI,1061
|
|
1065
1067
|
anyscale/utils/env_utils.py,sha256=QPPxwkAzIWYasZIg7apDCGwcdbQLT7qCYr9pwfNTOX0,390
|
|
1066
|
-
anyscale/utils/gcp_managed_setup_utils.py,sha256=
|
|
1068
|
+
anyscale/utils/gcp_managed_setup_utils.py,sha256=5L6Ui_lM7Z0CiY1Gy7S1CcHN6xlBX3Lxt6dIvIYH61Q,33084
|
|
1067
1069
|
anyscale/utils/gcp_utils.py,sha256=SQyiDfzOK-VUVXmWPBccAxDsfQwHQrZlxcFaEpjVjWs,13485
|
|
1068
1070
|
anyscale/utils/logs_utils.py,sha256=cv4ERDLKwlTzwOsndDX6jW-PNQJO2V1yDSZRW9u71sE,4812
|
|
1069
1071
|
anyscale/utils/name_utils.py,sha256=MT_krOWbdVZk8v5kCy8NXIpS4yRwn5sAy8OWLAJg6Kc,949
|
|
@@ -1090,10 +1092,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
|
|
|
1090
1092
|
anyscale/workspace/commands.py,sha256=b1sqNseoPj-1VXznqQOLe0V_a663bOTvJX-TaOMJa1Y,14590
|
|
1091
1093
|
anyscale/workspace/models.py,sha256=HBvM9ybOdJjqQeViQ30C36gdKT_AwH_JHPoL-DTkESo,9841
|
|
1092
1094
|
anyscale/workspace/_private/workspace_sdk.py,sha256=2CMeYfJt0UtIFCocDn1ukw1iI5esKHdopLe6duEs-qE,27599
|
|
1093
|
-
anyscale-0.26.
|
|
1094
|
-
anyscale-0.26.
|
|
1095
|
-
anyscale-0.26.
|
|
1096
|
-
anyscale-0.26.
|
|
1097
|
-
anyscale-0.26.
|
|
1098
|
-
anyscale-0.26.
|
|
1099
|
-
anyscale-0.26.
|
|
1095
|
+
anyscale-0.26.42.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
|
|
1096
|
+
anyscale-0.26.42.dist-info/METADATA,sha256=NY30T092PjHIB_Mr7ktEoFW1lUtrcq5WFPRi9C1ULkk,3055
|
|
1097
|
+
anyscale-0.26.42.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
|
|
1098
|
+
anyscale-0.26.42.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
1099
|
+
anyscale-0.26.42.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
|
|
1100
|
+
anyscale-0.26.42.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
|
|
1101
|
+
anyscale-0.26.42.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|