anyscale 0.25.7__py3-none-any.whl → 0.25.9__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/models.md +1 -0
- anyscale/client/openapi_client/models/decorated_serve_deployment.py +29 -1
- anyscale/client/openapi_client/models/service_config.py +31 -3
- anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py +31 -3
- anyscale/sdk/anyscale_client/models/service_config.py +31 -3
- anyscale/service/_private/service_sdk.py +2 -0
- anyscale/shared_anyscale_utils/utils/id_gen.py +1 -0
- anyscale/version.py +1 -1
- {anyscale-0.25.7.dist-info → anyscale-0.25.9.dist-info}/METADATA +1 -1
- {anyscale-0.25.7.dist-info → anyscale-0.25.9.dist-info}/RECORD +15 -15
- {anyscale-0.25.7.dist-info → anyscale-0.25.9.dist-info}/LICENSE +0 -0
- {anyscale-0.25.7.dist-info → anyscale-0.25.9.dist-info}/NOTICE +0 -0
- {anyscale-0.25.7.dist-info → anyscale-0.25.9.dist-info}/WHEEL +0 -0
- {anyscale-0.25.7.dist-info → anyscale-0.25.9.dist-info}/entry_points.txt +0 -0
- {anyscale-0.25.7.dist-info → anyscale-0.25.9.dist-info}/top_level.txt +0 -0
@@ -1681,6 +1681,7 @@ Name | Type | Description | Notes
|
|
1681
1681
|
**max_uptime_timeout_sec** | **int** | Auto-termination timeout (in seconds) for target Service to be unconditionally terminated after specified period. Setting this to 0 disables auto-termination (default). | [optional] [default to 0]
|
1682
1682
|
**access** | [**AccessConfig**](#accessconfig) | Access configuration | [optional] [default to null]
|
1683
1683
|
**protocols** | [**Protocols**](#protocols) | Protocol setups for the service | [optional] [default to null]
|
1684
|
+
**env_vars** | [**object**](#) | Environment variables to set on the service cluster | [optional] [default to null]
|
1684
1685
|
|
1685
1686
|
## ServiceEventCurrentState
|
1686
1687
|
|
@@ -50,6 +50,7 @@ class DecoratedServeDeployment(object):
|
|
50
50
|
'version': 'str',
|
51
51
|
'message': 'str',
|
52
52
|
'replica_details': 'list[ReplicaDetails]',
|
53
|
+
'required_resources': 'dict(str, float)',
|
53
54
|
'cluster': 'MiniCluster',
|
54
55
|
'creator': 'MiniUser',
|
55
56
|
'namespace': 'MiniNamespace',
|
@@ -75,6 +76,7 @@ class DecoratedServeDeployment(object):
|
|
75
76
|
'version': 'version',
|
76
77
|
'message': 'message',
|
77
78
|
'replica_details': 'replica_details',
|
79
|
+
'required_resources': 'required_resources',
|
78
80
|
'cluster': 'cluster',
|
79
81
|
'creator': 'creator',
|
80
82
|
'namespace': 'namespace',
|
@@ -82,7 +84,7 @@ class DecoratedServeDeployment(object):
|
|
82
84
|
'fast_api_docs_url': 'fast_api_docs_url'
|
83
85
|
}
|
84
86
|
|
85
|
-
def __init__(self, id=None, status=None, name=None, application_name=None, cluster_id=None, job_id=None, creator_id=None, namespace_id='DEPRECATED_NAMESPACE_ID', created_at=None, finished_at=None, http_route=None, grafana_dashboard_url=None, class_name=None, grafana_dashboard_state=None, version=None, message=None, replica_details=None, cluster=None, creator=None, namespace=None, num_actors=0, fast_api_docs_url=None, local_vars_configuration=None): # noqa: E501
|
87
|
+
def __init__(self, id=None, status=None, name=None, application_name=None, cluster_id=None, job_id=None, creator_id=None, namespace_id='DEPRECATED_NAMESPACE_ID', created_at=None, finished_at=None, http_route=None, grafana_dashboard_url=None, class_name=None, grafana_dashboard_state=None, version=None, message=None, replica_details=None, required_resources=None, cluster=None, creator=None, namespace=None, num_actors=0, fast_api_docs_url=None, local_vars_configuration=None): # noqa: E501
|
86
88
|
"""DecoratedServeDeployment - a model defined in OpenAPI""" # noqa: E501
|
87
89
|
if local_vars_configuration is None:
|
88
90
|
local_vars_configuration = Configuration()
|
@@ -105,6 +107,7 @@ class DecoratedServeDeployment(object):
|
|
105
107
|
self._version = None
|
106
108
|
self._message = None
|
107
109
|
self._replica_details = None
|
110
|
+
self._required_resources = None
|
108
111
|
self._cluster = None
|
109
112
|
self._creator = None
|
110
113
|
self._namespace = None
|
@@ -140,6 +143,8 @@ class DecoratedServeDeployment(object):
|
|
140
143
|
self.message = message
|
141
144
|
if replica_details is not None:
|
142
145
|
self.replica_details = replica_details
|
146
|
+
if required_resources is not None:
|
147
|
+
self.required_resources = required_resources
|
143
148
|
self.cluster = cluster
|
144
149
|
if creator is not None:
|
145
150
|
self.creator = creator
|
@@ -553,6 +558,29 @@ class DecoratedServeDeployment(object):
|
|
553
558
|
|
554
559
|
self._replica_details = replica_details
|
555
560
|
|
561
|
+
@property
|
562
|
+
def required_resources(self):
|
563
|
+
"""Gets the required_resources of this DecoratedServeDeployment. # noqa: E501
|
564
|
+
|
565
|
+
Resources required by this deployment to schedule. # noqa: E501
|
566
|
+
|
567
|
+
:return: The required_resources of this DecoratedServeDeployment. # noqa: E501
|
568
|
+
:rtype: dict(str, float)
|
569
|
+
"""
|
570
|
+
return self._required_resources
|
571
|
+
|
572
|
+
@required_resources.setter
|
573
|
+
def required_resources(self, required_resources):
|
574
|
+
"""Sets the required_resources of this DecoratedServeDeployment.
|
575
|
+
|
576
|
+
Resources required by this deployment to schedule. # noqa: E501
|
577
|
+
|
578
|
+
:param required_resources: The required_resources of this DecoratedServeDeployment. # noqa: E501
|
579
|
+
:type: dict(str, float)
|
580
|
+
"""
|
581
|
+
|
582
|
+
self._required_resources = required_resources
|
583
|
+
|
556
584
|
@property
|
557
585
|
def cluster(self):
|
558
586
|
"""Gets the cluster of this DecoratedServeDeployment. # noqa: E501
|
@@ -35,16 +35,18 @@ class ServiceConfig(object):
|
|
35
35
|
openapi_types = {
|
36
36
|
'max_uptime_timeout_sec': 'int',
|
37
37
|
'access': 'AccessConfig',
|
38
|
-
'protocols': 'Protocols'
|
38
|
+
'protocols': 'Protocols',
|
39
|
+
'env_vars': 'object'
|
39
40
|
}
|
40
41
|
|
41
42
|
attribute_map = {
|
42
43
|
'max_uptime_timeout_sec': 'max_uptime_timeout_sec',
|
43
44
|
'access': 'access',
|
44
|
-
'protocols': 'protocols'
|
45
|
+
'protocols': 'protocols',
|
46
|
+
'env_vars': 'env_vars'
|
45
47
|
}
|
46
48
|
|
47
|
-
def __init__(self, max_uptime_timeout_sec=0, access=None, protocols=None, local_vars_configuration=None): # noqa: E501
|
49
|
+
def __init__(self, max_uptime_timeout_sec=0, access=None, protocols=None, env_vars=None, local_vars_configuration=None): # noqa: E501
|
48
50
|
"""ServiceConfig - a model defined in OpenAPI""" # noqa: E501
|
49
51
|
if local_vars_configuration is None:
|
50
52
|
local_vars_configuration = Configuration()
|
@@ -53,6 +55,7 @@ class ServiceConfig(object):
|
|
53
55
|
self._max_uptime_timeout_sec = None
|
54
56
|
self._access = None
|
55
57
|
self._protocols = None
|
58
|
+
self._env_vars = None
|
56
59
|
self.discriminator = None
|
57
60
|
|
58
61
|
if max_uptime_timeout_sec is not None:
|
@@ -61,6 +64,8 @@ class ServiceConfig(object):
|
|
61
64
|
self.access = access
|
62
65
|
if protocols is not None:
|
63
66
|
self.protocols = protocols
|
67
|
+
if env_vars is not None:
|
68
|
+
self.env_vars = env_vars
|
64
69
|
|
65
70
|
@property
|
66
71
|
def max_uptime_timeout_sec(self):
|
@@ -131,6 +136,29 @@ class ServiceConfig(object):
|
|
131
136
|
|
132
137
|
self._protocols = protocols
|
133
138
|
|
139
|
+
@property
|
140
|
+
def env_vars(self):
|
141
|
+
"""Gets the env_vars of this ServiceConfig. # noqa: E501
|
142
|
+
|
143
|
+
Environment variables to set on the service cluster # noqa: E501
|
144
|
+
|
145
|
+
:return: The env_vars of this ServiceConfig. # noqa: E501
|
146
|
+
:rtype: object
|
147
|
+
"""
|
148
|
+
return self._env_vars
|
149
|
+
|
150
|
+
@env_vars.setter
|
151
|
+
def env_vars(self, env_vars):
|
152
|
+
"""Sets the env_vars of this ServiceConfig.
|
153
|
+
|
154
|
+
Environment variables to set on the service cluster # noqa: E501
|
155
|
+
|
156
|
+
:param env_vars: The env_vars of this ServiceConfig. # noqa: E501
|
157
|
+
:type: object
|
158
|
+
"""
|
159
|
+
|
160
|
+
self._env_vars = env_vars
|
161
|
+
|
134
162
|
def to_dict(self):
|
135
163
|
"""Returns the model properties as a dict"""
|
136
164
|
result = {}
|
@@ -35,16 +35,18 @@ class WorkspaceDataplaneProxiedArtifacts(object):
|
|
35
35
|
openapi_types = {
|
36
36
|
'requirements': 'str',
|
37
37
|
'skip_packages_tracking': 'str',
|
38
|
-
'environment_variables': 'list[str]'
|
38
|
+
'environment_variables': 'list[str]',
|
39
|
+
'dockerfile': 'str'
|
39
40
|
}
|
40
41
|
|
41
42
|
attribute_map = {
|
42
43
|
'requirements': 'requirements',
|
43
44
|
'skip_packages_tracking': 'skip_packages_tracking',
|
44
|
-
'environment_variables': 'environment_variables'
|
45
|
+
'environment_variables': 'environment_variables',
|
46
|
+
'dockerfile': 'dockerfile'
|
45
47
|
}
|
46
48
|
|
47
|
-
def __init__(self, requirements=None, skip_packages_tracking=None, environment_variables=None, local_vars_configuration=None): # noqa: E501
|
49
|
+
def __init__(self, requirements=None, skip_packages_tracking=None, environment_variables=None, dockerfile=None, local_vars_configuration=None): # noqa: E501
|
48
50
|
"""WorkspaceDataplaneProxiedArtifacts - a model defined in OpenAPI""" # noqa: E501
|
49
51
|
if local_vars_configuration is None:
|
50
52
|
local_vars_configuration = Configuration()
|
@@ -53,6 +55,7 @@ class WorkspaceDataplaneProxiedArtifacts(object):
|
|
53
55
|
self._requirements = None
|
54
56
|
self._skip_packages_tracking = None
|
55
57
|
self._environment_variables = None
|
58
|
+
self._dockerfile = None
|
56
59
|
self.discriminator = None
|
57
60
|
|
58
61
|
if requirements is not None:
|
@@ -61,6 +64,8 @@ class WorkspaceDataplaneProxiedArtifacts(object):
|
|
61
64
|
self.skip_packages_tracking = skip_packages_tracking
|
62
65
|
if environment_variables is not None:
|
63
66
|
self.environment_variables = environment_variables
|
67
|
+
if dockerfile is not None:
|
68
|
+
self.dockerfile = dockerfile
|
64
69
|
|
65
70
|
@property
|
66
71
|
def requirements(self):
|
@@ -131,6 +136,29 @@ class WorkspaceDataplaneProxiedArtifacts(object):
|
|
131
136
|
|
132
137
|
self._environment_variables = environment_variables
|
133
138
|
|
139
|
+
@property
|
140
|
+
def dockerfile(self):
|
141
|
+
"""Gets the dockerfile of this WorkspaceDataplaneProxiedArtifacts. # noqa: E501
|
142
|
+
|
143
|
+
The Dockerfile of the workspace. # noqa: E501
|
144
|
+
|
145
|
+
:return: The dockerfile of this WorkspaceDataplaneProxiedArtifacts. # noqa: E501
|
146
|
+
:rtype: str
|
147
|
+
"""
|
148
|
+
return self._dockerfile
|
149
|
+
|
150
|
+
@dockerfile.setter
|
151
|
+
def dockerfile(self, dockerfile):
|
152
|
+
"""Sets the dockerfile of this WorkspaceDataplaneProxiedArtifacts.
|
153
|
+
|
154
|
+
The Dockerfile of the workspace. # noqa: E501
|
155
|
+
|
156
|
+
:param dockerfile: The dockerfile of this WorkspaceDataplaneProxiedArtifacts. # noqa: E501
|
157
|
+
:type: str
|
158
|
+
"""
|
159
|
+
|
160
|
+
self._dockerfile = dockerfile
|
161
|
+
|
134
162
|
def to_dict(self):
|
135
163
|
"""Returns the model properties as a dict"""
|
136
164
|
result = {}
|
@@ -35,16 +35,18 @@ class ServiceConfig(object):
|
|
35
35
|
openapi_types = {
|
36
36
|
'max_uptime_timeout_sec': 'int',
|
37
37
|
'access': 'AccessConfig',
|
38
|
-
'protocols': 'Protocols'
|
38
|
+
'protocols': 'Protocols',
|
39
|
+
'env_vars': 'object'
|
39
40
|
}
|
40
41
|
|
41
42
|
attribute_map = {
|
42
43
|
'max_uptime_timeout_sec': 'max_uptime_timeout_sec',
|
43
44
|
'access': 'access',
|
44
|
-
'protocols': 'protocols'
|
45
|
+
'protocols': 'protocols',
|
46
|
+
'env_vars': 'env_vars'
|
45
47
|
}
|
46
48
|
|
47
|
-
def __init__(self, max_uptime_timeout_sec=0, access=None, protocols=None, local_vars_configuration=None): # noqa: E501
|
49
|
+
def __init__(self, max_uptime_timeout_sec=0, access=None, protocols=None, env_vars=None, local_vars_configuration=None): # noqa: E501
|
48
50
|
"""ServiceConfig - a model defined in OpenAPI""" # noqa: E501
|
49
51
|
if local_vars_configuration is None:
|
50
52
|
local_vars_configuration = Configuration()
|
@@ -53,6 +55,7 @@ class ServiceConfig(object):
|
|
53
55
|
self._max_uptime_timeout_sec = None
|
54
56
|
self._access = None
|
55
57
|
self._protocols = None
|
58
|
+
self._env_vars = None
|
56
59
|
self.discriminator = None
|
57
60
|
|
58
61
|
if max_uptime_timeout_sec is not None:
|
@@ -61,6 +64,8 @@ class ServiceConfig(object):
|
|
61
64
|
self.access = access
|
62
65
|
if protocols is not None:
|
63
66
|
self.protocols = protocols
|
67
|
+
if env_vars is not None:
|
68
|
+
self.env_vars = env_vars
|
64
69
|
|
65
70
|
@property
|
66
71
|
def max_uptime_timeout_sec(self):
|
@@ -131,6 +136,29 @@ class ServiceConfig(object):
|
|
131
136
|
|
132
137
|
self._protocols = protocols
|
133
138
|
|
139
|
+
@property
|
140
|
+
def env_vars(self):
|
141
|
+
"""Gets the env_vars of this ServiceConfig. # noqa: E501
|
142
|
+
|
143
|
+
Environment variables to set on the service cluster # noqa: E501
|
144
|
+
|
145
|
+
:return: The env_vars of this ServiceConfig. # noqa: E501
|
146
|
+
:rtype: object
|
147
|
+
"""
|
148
|
+
return self._env_vars
|
149
|
+
|
150
|
+
@env_vars.setter
|
151
|
+
def env_vars(self, env_vars):
|
152
|
+
"""Sets the env_vars of this ServiceConfig.
|
153
|
+
|
154
|
+
Environment variables to set on the service cluster # noqa: E501
|
155
|
+
|
156
|
+
:param env_vars: The env_vars of this ServiceConfig. # noqa: E501
|
157
|
+
:type: object
|
158
|
+
"""
|
159
|
+
|
160
|
+
self._env_vars = env_vars
|
161
|
+
|
134
162
|
def to_dict(self):
|
135
163
|
"""Returns the model properties as a dict"""
|
136
164
|
result = {}
|
@@ -257,6 +257,7 @@ class PrivateServiceSDK(WorkloadSDK):
|
|
257
257
|
config=ExternalAPIServiceConfig(
|
258
258
|
access=AccessConfig(use_bearer_token=query_auth_token_enabled),
|
259
259
|
protocols=Protocols(grpc=self._build_grpc_protocol_config(config)),
|
260
|
+
env_vars=config.env_vars,
|
260
261
|
),
|
261
262
|
ray_gcs_external_storage_config=existing_config.ray_gcs_external_storage_config,
|
262
263
|
tracing_config=existing_config.tracing_config,
|
@@ -387,6 +388,7 @@ class PrivateServiceSDK(WorkloadSDK):
|
|
387
388
|
config=ExternalAPIServiceConfig(
|
388
389
|
access=AccessConfig(use_bearer_token=config.query_auth_token_enabled),
|
389
390
|
protocols=Protocols(grpc=self._build_grpc_protocol_config(config)),
|
391
|
+
env_vars=config.env_vars,
|
390
392
|
),
|
391
393
|
ray_gcs_external_storage_config=ray_gcs_external_storage_config,
|
392
394
|
tracing_config=tracing_config,
|
anyscale/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.25.
|
1
|
+
__version__ = "0.25.9"
|
@@ -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=NsKiCCQq5j7wW1paL-Bw27h63w_P0r0bIHvsX9TsjGY,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
|
@@ -39,7 +39,7 @@ anyscale/_private/docgen/__main__.py,sha256=K-U7QHryFUorzh8-Lj_uQYf-XEpvKsDkka3_
|
|
39
39
|
anyscale/_private/docgen/api.md,sha256=SzLoDy6GyriU60l8964CNWz3z_QNEJA7mFHr0FzXyPU,32527
|
40
40
|
anyscale/_private/docgen/generator.py,sha256=dgC3qlqhJrTt0bTl3ExlRFLDwpn_Is2Yv47TJ33jaeE,21711
|
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=cHLmXyk0N_DwTSJMLcS02IAbN4mUwNOdpr3mIS8FcgQ,280799
|
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=QdIKiyNpvjyUGqQtL4_J9qpCK6clHdmWiKV4jSFXunU,8217
|
@@ -341,7 +341,7 @@ anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.
|
|
341
341
|
anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py,sha256=I6mLkjAfXKWXejUOIBRvM9vt7W-XyvwU2MzXuYkyt-c,17231
|
342
342
|
anyscale/client/openapi_client/models/decorated_runtime_env.py,sha256=s3WrHVK_2E2CF-PLOPAjlsbmSh4DOlsLPRDDqYKmrsI,15604
|
343
343
|
anyscale/client/openapi_client/models/decorated_schedule.py,sha256=zCDLO0og8GMMxv_43k3BjYB3MAGc3znGcKV28GYoJwU,18193
|
344
|
-
anyscale/client/openapi_client/models/decorated_serve_deployment.py,sha256=
|
344
|
+
anyscale/client/openapi_client/models/decorated_serve_deployment.py,sha256=fujpuo3v3GNhKwwiHwBqtU8BrBvBrcbg_TTtSvVG7oY,24397
|
345
345
|
anyscale/client/openapi_client/models/decorated_service_event_api_model.py,sha256=TE2bxLquf15IQZTXDiqawOnRYQKT-0Gxrr9VJVNwu9c,17555
|
346
346
|
anyscale/client/openapi_client/models/decorated_session.py,sha256=t_dXa20Lf9JCNy42iRVtVOYrZxTHsVG5xURhVPIXmCw,68095
|
347
347
|
anyscale/client/openapi_client/models/decorated_support_request.py,sha256=FyU8FQbCVAXUpxikWjVmEn5WasPTZeFppafbU2B0kQE,9163
|
@@ -622,7 +622,7 @@ anyscale/client/openapi_client/models/servedeploymentfastapidocsstatus_response.
|
|
622
622
|
anyscale/client/openapi_client/models/servedeploymentlogs_response.py,sha256=DTBTm-3Is885wzaL0D1tRdEIAxsJ6Zug3HbKnPV-4vs,3627
|
623
623
|
anyscale/client/openapi_client/models/server_session_token.py,sha256=XTVc8rgZMIzORmutUvKImt45bYXmywlo1_63Pgl3nD8,3738
|
624
624
|
anyscale/client/openapi_client/models/serversessiontoken_response.py,sha256=uM_2Eeoww-S8G3nJ-TqLoF7Gxnmt98CaYw0jbd3i0ag,3616
|
625
|
-
anyscale/client/openapi_client/models/service_config.py,sha256=
|
625
|
+
anyscale/client/openapi_client/models/service_config.py,sha256=FJkfDMcT-OURoEmkWvh_EDOmIQpnNRreL1HqfRv2KZ4,6369
|
626
626
|
anyscale/client/openapi_client/models/service_event_current_state.py,sha256=QUYad9PGOpp7IESQ-mjKgxHrhX2T_R-dgW78XC-LunY,3258
|
627
627
|
anyscale/client/openapi_client/models/service_event_level.py,sha256=7FrhHJRf0j1Pgjlt3ZwYzu5GtIniMe8Zbvaf_JjK20g,2897
|
628
628
|
anyscale/client/openapi_client/models/service_event_origin.py,sha256=V0e1rhk4GHARa6GiBPD8po1gjcRe9-T_e1EVYc-zc0w,2994
|
@@ -749,7 +749,7 @@ anyscale/client/openapi_client/models/workload_info.py,sha256=LLQGnqpARetLifmfG8
|
|
749
749
|
anyscale/client/openapi_client/models/workload_type.py,sha256=Ouht9JhCu4nl1V2JVHYMllW8_GU3lw0t-8Ohgjf8FiU,2886
|
750
750
|
anyscale/client/openapi_client/models/workspace_dataplane_artifact.py,sha256=4UKF-kZceAbVK8xjPfC6jmrF543ZnZYoPXqG9lHbWGU,5382
|
751
751
|
anyscale/client/openapi_client/models/workspace_dataplane_artifacts.py,sha256=oihswrn-Dk675OYC36yO96NORjA0iN3lWMFpVzFGucU,3997
|
752
|
-
anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py,sha256=
|
752
|
+
anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py,sha256=QxvzcI3JWHacb08p41VZUsnOCOKOuL7-j_B82l6LYaA,6942
|
753
753
|
anyscale/client/openapi_client/models/workspace_event.py,sha256=qcNteYaARqbLJMUzpKM4d7MlTZBEaEZ56YrBwrygEYk,9990
|
754
754
|
anyscale/client/openapi_client/models/workspace_event_source.py,sha256=riSlr8KvUuFAFzGgP1F09urMXgyiLeDvN29sVGijm9E,2870
|
755
755
|
anyscale/client/openapi_client/models/workspace_event_source_filter.py,sha256=2JtMB3yrbRbmUoTl6MOhhchGAiVvWERynJKbj9lfCq0,2916
|
@@ -1037,7 +1037,7 @@ anyscale/sdk/anyscale_client/models/schedule_api_model.py,sha256=D4joOsKPeLUWOpa
|
|
1037
1037
|
anyscale/sdk/anyscale_client/models/schedule_config.py,sha256=VLYMEXM8wwe9Qz5PKp_9bCUXZkp2YSFeijLGalGPPXo,5014
|
1038
1038
|
anyscale/sdk/anyscale_client/models/scheduleapimodel_list_response.py,sha256=szv96dhwJXR50Op7QQUXhbLRKxeq2gA97Z8YEPUCcCE,4435
|
1039
1039
|
anyscale/sdk/anyscale_client/models/scheduleapimodel_response.py,sha256=TwR8KL9R0x_tVzYo1DY9PCnLN3TfaGDEfFYOhDW5h0s,3592
|
1040
|
-
anyscale/sdk/anyscale_client/models/service_config.py,sha256=
|
1040
|
+
anyscale/sdk/anyscale_client/models/service_config.py,sha256=bnWMpHDN4mO_QZ8VzsHuh-R7mDvz-H9fMOHHwdXwB7c,6367
|
1041
1041
|
anyscale/sdk/anyscale_client/models/service_event_current_state.py,sha256=eS3C4yY3_vl5wH53w2vYEQa0nBOzuQiASpZjSUmuN98,3256
|
1042
1042
|
anyscale/sdk/anyscale_client/models/service_goal_states.py,sha256=QCS6GBkR3ksZtI15V2cZhj1KyyxyBLk4Qwi6If5Z4hY,2859
|
1043
1043
|
anyscale/sdk/anyscale_client/models/service_model.py,sha256=TksWicNQIjrv-Gm3Dmj05dr6DbjTcTYmJx9w5pm1Xlc,21271
|
@@ -1089,7 +1089,7 @@ anyscale/sdk/anyscale_client/models/worker_node_type.py,sha256=bI3sPVPA4t4axjdbj
|
|
1089
1089
|
anyscale/service/__init__.py,sha256=-a1wMAR5ouEztZEpoS1c8iFCEKcaOtryTqXON8r2BJw,5702
|
1090
1090
|
anyscale/service/commands.py,sha256=esBm_l2iTTgk6idTLbetBUe-p3wTxp2y6hCATmiFH7o,10047
|
1091
1091
|
anyscale/service/models.py,sha256=-e-V1RKZ34ZXPzEBkvq4vfrvum33E_JTTu6uxmDA1Ak,24038
|
1092
|
-
anyscale/service/_private/service_sdk.py,sha256=
|
1092
|
+
anyscale/service/_private/service_sdk.py,sha256=NvsM5ftzPk1W1G_Vhxm_-OKmCI2UH5LpwFDFweBOh0Q,28737
|
1093
1093
|
anyscale/service_account/__init__.py,sha256=jV1OFo_ZTxU3vuPztO1300TuoMz-Ocudm6_84ZtjPQ4,2764
|
1094
1094
|
anyscale/service_account/commands.py,sha256=zipHgr0-HtxwpZv_fOU6RKe_l8HFIrUSxvzyikTYhl8,3429
|
1095
1095
|
anyscale/service_account/models.py,sha256=MhY-Fo5AZQ68brqtolTUMW3WQDrkNyL1udtNg70sNAU,2189
|
@@ -1112,7 +1112,7 @@ anyscale/shared_anyscale_utils/utils/__init__.py,sha256=M_ebCo5_hZ-aSP8SzcuqKwhC
|
|
1112
1112
|
anyscale/shared_anyscale_utils/utils/asyncio.py,sha256=aOlH-bw8QJbSIg7-BpbLuy8zBYJqEK56QJD2-DhBEAE,4145
|
1113
1113
|
anyscale/shared_anyscale_utils/utils/byod.py,sha256=yue93FlA9bzlLAtIpSkpVj0-0IWaV8ITgdpkBr3wNvU,1097
|
1114
1114
|
anyscale/shared_anyscale_utils/utils/collections.py,sha256=t_6SZNOskAn7EP0gwgJHRnRxj4ykYj_lxcqwLmUUs08,899
|
1115
|
-
anyscale/shared_anyscale_utils/utils/id_gen.py,sha256=
|
1115
|
+
anyscale/shared_anyscale_utils/utils/id_gen.py,sha256=OjC0xrV9f7ipS3-y0ZLiIoHk4bge0OPE39rqEoI4pmA,4829
|
1116
1116
|
anyscale/shared_anyscale_utils/utils/protected_string.py,sha256=8-T3VC37NrWeAhc7aPjMsUd9zhjcSF1xaGo2GRNjLL4,3166
|
1117
1117
|
anyscale/shared_anyscale_utils/utils/ray_semver.py,sha256=OzIJuawv4Ja-_irSCLUO8e-P1wc-qMvOAJcr689_hn4,2539
|
1118
1118
|
anyscale/user/__init__.py,sha256=mWpx3KTLWGWMB5m6a_GKOaqCOm-sqhBkXYb6iM78OOA,1220
|
@@ -1154,10 +1154,10 @@ anyscale/workspace/__init__.py,sha256=fIxkn8b_HADCQl5njPAbcJxAf0sajZoc55L_wMvGAx
|
|
1154
1154
|
anyscale/workspace/commands.py,sha256=21FubFd2wmEwlVbk-ng-adwBm-O4ZPBgEJnoavbfvbU,14035
|
1155
1155
|
anyscale/workspace/models.py,sha256=Ey67KqxdslS51yK7xetbRaFjE8sURAArpf-F38r3cUU,9760
|
1156
1156
|
anyscale/workspace/_private/workspace_sdk.py,sha256=4LOBmMm7kd-O94ii5uP1UDbkWLComh6zI5QmE2lXRTY,26824
|
1157
|
-
anyscale-0.25.
|
1158
|
-
anyscale-0.25.
|
1159
|
-
anyscale-0.25.
|
1160
|
-
anyscale-0.25.
|
1161
|
-
anyscale-0.25.
|
1162
|
-
anyscale-0.25.
|
1163
|
-
anyscale-0.25.
|
1157
|
+
anyscale-0.25.9.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
|
1158
|
+
anyscale-0.25.9.dist-info/METADATA,sha256=o1a5QVO8hmfZWRxfOQ74QzO6oDjtYnB9UsnpdX2N3L8,3049
|
1159
|
+
anyscale-0.25.9.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
|
1160
|
+
anyscale-0.25.9.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
1161
|
+
anyscale-0.25.9.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
|
1162
|
+
anyscale-0.25.9.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
|
1163
|
+
anyscale-0.25.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|