anyscale 0.26.36__py3-none-any.whl → 0.26.37__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/ray_runtime_env_config.py +31 -3
- anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +31 -3
- anyscale/version.py +1 -1
- {anyscale-0.26.36.dist-info → anyscale-0.26.37.dist-info}/METADATA +1 -1
- {anyscale-0.26.36.dist-info → anyscale-0.26.37.dist-info}/RECORD +11 -11
- {anyscale-0.26.36.dist-info → anyscale-0.26.37.dist-info}/LICENSE +0 -0
- {anyscale-0.26.36.dist-info → anyscale-0.26.37.dist-info}/NOTICE +0 -0
- {anyscale-0.26.36.dist-info → anyscale-0.26.37.dist-info}/WHEEL +0 -0
- {anyscale-0.26.36.dist-info → anyscale-0.26.37.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.36.dist-info → anyscale-0.26.37.dist-info}/top_level.txt +0 -0
|
@@ -1399,6 +1399,7 @@ Name | Type | Description | Notes
|
|
|
1399
1399
|
**conda** | **object** | [Union[Dict[str, Any], str]: Either the conda YAML config or the name of a local conda env (e.g., \"pytorch_p36\"), | [optional] [default to null]
|
|
1400
1400
|
**env_vars** | **Dict(str, str)** | Environment variables to set. | [optional] [default to null]
|
|
1401
1401
|
**config** | [**object**](#) | Config for runtime environment. Can be used to setup setup_timeout_seconds, the timeout of runtime environment creation. | [optional] [default to null]
|
|
1402
|
+
**image_uri** | **str** | Specifies the image URI of the container in which the job will run. | [optional] [default to null]
|
|
1402
1403
|
|
|
1403
1404
|
## Resources
|
|
1404
1405
|
|
|
@@ -39,7 +39,8 @@ class RayRuntimeEnvConfig(object):
|
|
|
39
39
|
'pip': 'list[str]',
|
|
40
40
|
'conda': 'object',
|
|
41
41
|
'env_vars': 'dict(str, str)',
|
|
42
|
-
'config': 'object'
|
|
42
|
+
'config': 'object',
|
|
43
|
+
'image_uri': 'str'
|
|
43
44
|
}
|
|
44
45
|
|
|
45
46
|
attribute_map = {
|
|
@@ -49,10 +50,11 @@ class RayRuntimeEnvConfig(object):
|
|
|
49
50
|
'pip': 'pip',
|
|
50
51
|
'conda': 'conda',
|
|
51
52
|
'env_vars': 'env_vars',
|
|
52
|
-
'config': 'config'
|
|
53
|
+
'config': 'config',
|
|
54
|
+
'image_uri': 'image_uri'
|
|
53
55
|
}
|
|
54
56
|
|
|
55
|
-
def __init__(self, working_dir=None, py_modules=None, py_executable=None, pip=None, conda=None, env_vars=None, config=None, local_vars_configuration=None): # noqa: E501
|
|
57
|
+
def __init__(self, working_dir=None, py_modules=None, py_executable=None, pip=None, conda=None, env_vars=None, config=None, image_uri=None, local_vars_configuration=None): # noqa: E501
|
|
56
58
|
"""RayRuntimeEnvConfig - a model defined in OpenAPI""" # noqa: E501
|
|
57
59
|
if local_vars_configuration is None:
|
|
58
60
|
local_vars_configuration = Configuration()
|
|
@@ -65,6 +67,7 @@ class RayRuntimeEnvConfig(object):
|
|
|
65
67
|
self._conda = None
|
|
66
68
|
self._env_vars = None
|
|
67
69
|
self._config = None
|
|
70
|
+
self._image_uri = None
|
|
68
71
|
self.discriminator = None
|
|
69
72
|
|
|
70
73
|
if working_dir is not None:
|
|
@@ -81,6 +84,8 @@ class RayRuntimeEnvConfig(object):
|
|
|
81
84
|
self.env_vars = env_vars
|
|
82
85
|
if config is not None:
|
|
83
86
|
self.config = config
|
|
87
|
+
if image_uri is not None:
|
|
88
|
+
self.image_uri = image_uri
|
|
84
89
|
|
|
85
90
|
@property
|
|
86
91
|
def working_dir(self):
|
|
@@ -243,6 +248,29 @@ class RayRuntimeEnvConfig(object):
|
|
|
243
248
|
|
|
244
249
|
self._config = config
|
|
245
250
|
|
|
251
|
+
@property
|
|
252
|
+
def image_uri(self):
|
|
253
|
+
"""Gets the image_uri of this RayRuntimeEnvConfig. # noqa: E501
|
|
254
|
+
|
|
255
|
+
Specifies the image URI of the container in which the job will run. # noqa: E501
|
|
256
|
+
|
|
257
|
+
:return: The image_uri of this RayRuntimeEnvConfig. # noqa: E501
|
|
258
|
+
:rtype: str
|
|
259
|
+
"""
|
|
260
|
+
return self._image_uri
|
|
261
|
+
|
|
262
|
+
@image_uri.setter
|
|
263
|
+
def image_uri(self, image_uri):
|
|
264
|
+
"""Sets the image_uri of this RayRuntimeEnvConfig.
|
|
265
|
+
|
|
266
|
+
Specifies the image URI of the container in which the job will run. # noqa: E501
|
|
267
|
+
|
|
268
|
+
:param image_uri: The image_uri of this RayRuntimeEnvConfig. # noqa: E501
|
|
269
|
+
:type: str
|
|
270
|
+
"""
|
|
271
|
+
|
|
272
|
+
self._image_uri = image_uri
|
|
273
|
+
|
|
246
274
|
def to_dict(self):
|
|
247
275
|
"""Returns the model properties as a dict"""
|
|
248
276
|
result = {}
|
|
@@ -39,7 +39,8 @@ class RayRuntimeEnvConfig(object):
|
|
|
39
39
|
'pip': 'list[str]',
|
|
40
40
|
'conda': 'object',
|
|
41
41
|
'env_vars': 'dict(str, str)',
|
|
42
|
-
'config': 'object'
|
|
42
|
+
'config': 'object',
|
|
43
|
+
'image_uri': 'str'
|
|
43
44
|
}
|
|
44
45
|
|
|
45
46
|
attribute_map = {
|
|
@@ -49,10 +50,11 @@ class RayRuntimeEnvConfig(object):
|
|
|
49
50
|
'pip': 'pip',
|
|
50
51
|
'conda': 'conda',
|
|
51
52
|
'env_vars': 'env_vars',
|
|
52
|
-
'config': 'config'
|
|
53
|
+
'config': 'config',
|
|
54
|
+
'image_uri': 'image_uri'
|
|
53
55
|
}
|
|
54
56
|
|
|
55
|
-
def __init__(self, working_dir=None, py_modules=None, py_executable=None, pip=None, conda=None, env_vars=None, config=None, local_vars_configuration=None): # noqa: E501
|
|
57
|
+
def __init__(self, working_dir=None, py_modules=None, py_executable=None, pip=None, conda=None, env_vars=None, config=None, image_uri=None, local_vars_configuration=None): # noqa: E501
|
|
56
58
|
"""RayRuntimeEnvConfig - a model defined in OpenAPI""" # noqa: E501
|
|
57
59
|
if local_vars_configuration is None:
|
|
58
60
|
local_vars_configuration = Configuration()
|
|
@@ -65,6 +67,7 @@ class RayRuntimeEnvConfig(object):
|
|
|
65
67
|
self._conda = None
|
|
66
68
|
self._env_vars = None
|
|
67
69
|
self._config = None
|
|
70
|
+
self._image_uri = None
|
|
68
71
|
self.discriminator = None
|
|
69
72
|
|
|
70
73
|
if working_dir is not None:
|
|
@@ -81,6 +84,8 @@ class RayRuntimeEnvConfig(object):
|
|
|
81
84
|
self.env_vars = env_vars
|
|
82
85
|
if config is not None:
|
|
83
86
|
self.config = config
|
|
87
|
+
if image_uri is not None:
|
|
88
|
+
self.image_uri = image_uri
|
|
84
89
|
|
|
85
90
|
@property
|
|
86
91
|
def working_dir(self):
|
|
@@ -243,6 +248,29 @@ class RayRuntimeEnvConfig(object):
|
|
|
243
248
|
|
|
244
249
|
self._config = config
|
|
245
250
|
|
|
251
|
+
@property
|
|
252
|
+
def image_uri(self):
|
|
253
|
+
"""Gets the image_uri of this RayRuntimeEnvConfig. # noqa: E501
|
|
254
|
+
|
|
255
|
+
Specifies the image URI of the container in which the job will run. # noqa: E501
|
|
256
|
+
|
|
257
|
+
:return: The image_uri of this RayRuntimeEnvConfig. # noqa: E501
|
|
258
|
+
:rtype: str
|
|
259
|
+
"""
|
|
260
|
+
return self._image_uri
|
|
261
|
+
|
|
262
|
+
@image_uri.setter
|
|
263
|
+
def image_uri(self, image_uri):
|
|
264
|
+
"""Sets the image_uri of this RayRuntimeEnvConfig.
|
|
265
|
+
|
|
266
|
+
Specifies the image URI of the container in which the job will run. # noqa: E501
|
|
267
|
+
|
|
268
|
+
:param image_uri: The image_uri of this RayRuntimeEnvConfig. # noqa: E501
|
|
269
|
+
:type: str
|
|
270
|
+
"""
|
|
271
|
+
|
|
272
|
+
self._image_uri = image_uri
|
|
273
|
+
|
|
246
274
|
def to_dict(self):
|
|
247
275
|
"""Returns the model properties as a dict"""
|
|
248
276
|
result = {}
|
anyscale/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.26.
|
|
1
|
+
__version__ = "0.26.37"
|
|
@@ -28,7 +28,7 @@ anyscale/snapshot.py,sha256=UGJT5C1s_4xmQxjWODK5DFpGxHRBX5jOCdSCqXESH8E,1685
|
|
|
28
28
|
anyscale/tables.py,sha256=TV4F2uLnwehvbkAfaP7iuLlT2wLIo6ORH2LVdRGXW5g,2840
|
|
29
29
|
anyscale/telemetry.py,sha256=wklWABN8wtq8Cq3ptPFEeQQC9xjKP5ytxybCuWAvNI0,15229
|
|
30
30
|
anyscale/util.py,sha256=14AHIhl4c4hKAW4gLZIvy5w56-zDjcPmrdWqazsvnHU,41860
|
|
31
|
-
anyscale/version.py,sha256=
|
|
31
|
+
anyscale/version.py,sha256=0oZ4sVYsXoNWPeoRVI4uLkxuL5LwE8Ph-F25MXMJ_lU,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
|
|
@@ -40,7 +40,7 @@ anyscale/_private/docgen/__main__.py,sha256=rVYAjasr4c-wIaCmETsZRiYaEos0KvLsjVz4
|
|
|
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
|
|
43
|
-
anyscale/_private/docgen/models.md,sha256=
|
|
43
|
+
anyscale/_private/docgen/models.md,sha256=uOhlb1TEj2HRcEBqk9ZLdswVONBB-Grp_MC0w035MII,296010
|
|
44
44
|
anyscale/_private/models/__init__.py,sha256=ZrkdHhJZNeCYiogsHc_po8m7vaVdxEjkNGixNeYdlgs,125
|
|
45
45
|
anyscale/_private/models/image_uri.py,sha256=CMzHc-MNTBsBXvX0G73bjkiznCbm95DYQusgXJ8drm8,3971
|
|
46
46
|
anyscale/_private/models/model_base.py,sha256=GJLA4JC0yHT554ctMYS_1es-YoTHQH9oqRHr28vV4R0,11354
|
|
@@ -558,7 +558,7 @@ anyscale/client/openapi_client/models/protocols.py,sha256=Q_QNTShXYTtz-Ct9iNGJl3
|
|
|
558
558
|
anyscale/client/openapi_client/models/python_modules.py,sha256=PplQop90t5MefEQFdLw_RYvKTb1HudY2szGUB4qY_og,4560
|
|
559
559
|
anyscale/client/openapi_client/models/quota.py,sha256=j1WHnVQGu4O3XKDvEg4ybgHLJiOce8FNe_UQSil7rh4,5467
|
|
560
560
|
anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py,sha256=O01Zt4yeVFVWMPpvMjPrYDZVx9BTAhvR5VYZQmg6HUE,5826
|
|
561
|
-
anyscale/client/openapi_client/models/ray_runtime_env_config.py,sha256=
|
|
561
|
+
anyscale/client/openapi_client/models/ray_runtime_env_config.py,sha256=JzSXS9XOsZMKc5C3uZEEKutOINprLSIIlhcclXv8sVI,9959
|
|
562
562
|
anyscale/client/openapi_client/models/ray_session.py,sha256=SuFSTgFBe0nVHSsYh2gqCBCVNaF1XGVxLtDMLU3g6iM,3653
|
|
563
563
|
anyscale/client/openapi_client/models/read_billing_version.py,sha256=0hOQby7NUkwl1FxlH_7S2iBZrNluYRfzCYorqFPXxRE,7481
|
|
564
564
|
anyscale/client/openapi_client/models/readbillingversion_list_response.py,sha256=1jdBzaiunHku2Y85OuqSQEH3cTpSmQgBgKwkSmqSWBk,4467
|
|
@@ -974,7 +974,7 @@ anyscale/sdk/anyscale_client/models/protocols.py,sha256=9qfVw8NFAPiOYpKgpTpqfBMs
|
|
|
974
974
|
anyscale/sdk/anyscale_client/models/python_modules.py,sha256=c-azFLGNKajibYjCigBuGK0_ac2UmL5FJ4ODbQJk9mY,4558
|
|
975
975
|
anyscale/sdk/anyscale_client/models/python_version.py,sha256=O84bJhjGnVXRZIiTWFzvC5HcFSSNAcm6w1X8GYBt8rQ,2945
|
|
976
976
|
anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py,sha256=BEtUR1Kh5aaNFjFHU7MsxooBqQc-hGal6_mipYJcW0g,5824
|
|
977
|
-
anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py,sha256=
|
|
977
|
+
anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py,sha256=ZfhVaicqpp0YigDzpehsL5TtnvrLq-Gv2wjse8b6rzY,9957
|
|
978
978
|
anyscale/sdk/anyscale_client/models/resources.py,sha256=eTejVIl2V0FdAFfIt728G_trQ-VvQM7brJhmpShDnxs,8186
|
|
979
979
|
anyscale/sdk/anyscale_client/models/rollback_service_model.py,sha256=_vMH6PeOIvsIo7s6al9Fkvc4F0PC2W4BlCRmwdlTD7k,3725
|
|
980
980
|
anyscale/sdk/anyscale_client/models/rollout_strategy.py,sha256=AWZEjQEn8_goS97NXMgJtuPdtRS1HrA9rVKWmOWFKYQ,2845
|
|
@@ -1086,10 +1086,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
|
|
|
1086
1086
|
anyscale/workspace/commands.py,sha256=b1sqNseoPj-1VXznqQOLe0V_a663bOTvJX-TaOMJa1Y,14590
|
|
1087
1087
|
anyscale/workspace/models.py,sha256=HBvM9ybOdJjqQeViQ30C36gdKT_AwH_JHPoL-DTkESo,9841
|
|
1088
1088
|
anyscale/workspace/_private/workspace_sdk.py,sha256=2CMeYfJt0UtIFCocDn1ukw1iI5esKHdopLe6duEs-qE,27599
|
|
1089
|
-
anyscale-0.26.
|
|
1090
|
-
anyscale-0.26.
|
|
1091
|
-
anyscale-0.26.
|
|
1092
|
-
anyscale-0.26.
|
|
1093
|
-
anyscale-0.26.
|
|
1094
|
-
anyscale-0.26.
|
|
1095
|
-
anyscale-0.26.
|
|
1089
|
+
anyscale-0.26.37.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
|
|
1090
|
+
anyscale-0.26.37.dist-info/METADATA,sha256=r7fvUIqGd9lMEgBfpcTpMajICulm4nYKoZsEfB_D4BE,3269
|
|
1091
|
+
anyscale-0.26.37.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
|
|
1092
|
+
anyscale-0.26.37.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
1093
|
+
anyscale-0.26.37.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
|
|
1094
|
+
anyscale-0.26.37.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
|
|
1095
|
+
anyscale-0.26.37.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|