anyscale 0.26.36__py3-none-any.whl → 0.26.38__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.
Files changed (25) hide show
  1. anyscale/_private/docgen/models.md +2 -12
  2. anyscale/client/README.md +6 -1
  3. anyscale/client/openapi_client/__init__.py +4 -1
  4. anyscale/client/openapi_client/api/default_api.py +236 -0
  5. anyscale/client/openapi_client/models/__init__.py +4 -1
  6. anyscale/client/openapi_client/models/cloud_deployment_compute_config.py +5 -5
  7. anyscale/client/openapi_client/models/describe_machine_pool_machines_request.py +123 -0
  8. anyscale/client/openapi_client/models/describe_machine_pool_requests_request.py +123 -0
  9. anyscale/client/openapi_client/models/machinestateinfo_list_response.py +147 -0
  10. anyscale/client/openapi_client/models/ray_runtime_env_config.py +31 -3
  11. anyscale/client/openapi_client/models/requeststateinfo_list_response.py +147 -0
  12. anyscale/sdk/anyscale_client/__init__.py +0 -1
  13. anyscale/sdk/anyscale_client/models/__init__.py +0 -1
  14. anyscale/sdk/anyscale_client/models/cloud_deployment_compute_config.py +5 -5
  15. anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +31 -3
  16. anyscale/version.py +1 -1
  17. {anyscale-0.26.36.dist-info → anyscale-0.26.38.dist-info}/METADATA +1 -1
  18. {anyscale-0.26.36.dist-info → anyscale-0.26.38.dist-info}/RECORD +23 -21
  19. anyscale/client/openapi_client/models/cloud_deployment_selector.py +0 -206
  20. anyscale/sdk/anyscale_client/models/cloud_deployment_selector.py +0 -206
  21. {anyscale-0.26.36.dist-info → anyscale-0.26.38.dist-info}/LICENSE +0 -0
  22. {anyscale-0.26.36.dist-info → anyscale-0.26.38.dist-info}/NOTICE +0 -0
  23. {anyscale-0.26.36.dist-info → anyscale-0.26.38.dist-info}/WHEEL +0 -0
  24. {anyscale-0.26.36.dist-info → anyscale-0.26.38.dist-info}/entry_points.txt +0 -0
  25. {anyscale-0.26.36.dist-info → anyscale-0.26.38.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,123 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Managed Ray API
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from openapi_client.configuration import Configuration
19
+
20
+
21
+ class DescribeMachinePoolRequestsRequest(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ openapi_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ openapi_types = {
36
+ 'machine_pool_name': 'str'
37
+ }
38
+
39
+ attribute_map = {
40
+ 'machine_pool_name': 'machine_pool_name'
41
+ }
42
+
43
+ def __init__(self, machine_pool_name=None, local_vars_configuration=None): # noqa: E501
44
+ """DescribeMachinePoolRequestsRequest - a model defined in OpenAPI""" # noqa: E501
45
+ if local_vars_configuration is None:
46
+ local_vars_configuration = Configuration()
47
+ self.local_vars_configuration = local_vars_configuration
48
+
49
+ self._machine_pool_name = None
50
+ self.discriminator = None
51
+
52
+ self.machine_pool_name = machine_pool_name
53
+
54
+ @property
55
+ def machine_pool_name(self):
56
+ """Gets the machine_pool_name of this DescribeMachinePoolRequestsRequest. # noqa: E501
57
+
58
+ The name of the machine pool to describe. # noqa: E501
59
+
60
+ :return: The machine_pool_name of this DescribeMachinePoolRequestsRequest. # noqa: E501
61
+ :rtype: str
62
+ """
63
+ return self._machine_pool_name
64
+
65
+ @machine_pool_name.setter
66
+ def machine_pool_name(self, machine_pool_name):
67
+ """Sets the machine_pool_name of this DescribeMachinePoolRequestsRequest.
68
+
69
+ The name of the machine pool to describe. # noqa: E501
70
+
71
+ :param machine_pool_name: The machine_pool_name of this DescribeMachinePoolRequestsRequest. # noqa: E501
72
+ :type: str
73
+ """
74
+ if self.local_vars_configuration.client_side_validation and machine_pool_name is None: # noqa: E501
75
+ raise ValueError("Invalid value for `machine_pool_name`, must not be `None`") # noqa: E501
76
+
77
+ self._machine_pool_name = machine_pool_name
78
+
79
+ def to_dict(self):
80
+ """Returns the model properties as a dict"""
81
+ result = {}
82
+
83
+ for attr, _ in six.iteritems(self.openapi_types):
84
+ value = getattr(self, attr)
85
+ if isinstance(value, list):
86
+ result[attr] = list(map(
87
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
88
+ value
89
+ ))
90
+ elif hasattr(value, "to_dict"):
91
+ result[attr] = value.to_dict()
92
+ elif isinstance(value, dict):
93
+ result[attr] = dict(map(
94
+ lambda item: (item[0], item[1].to_dict())
95
+ if hasattr(item[1], "to_dict") else item,
96
+ value.items()
97
+ ))
98
+ else:
99
+ result[attr] = value
100
+
101
+ return result
102
+
103
+ def to_str(self):
104
+ """Returns the string representation of the model"""
105
+ return pprint.pformat(self.to_dict())
106
+
107
+ def __repr__(self):
108
+ """For `print` and `pprint`"""
109
+ return self.to_str()
110
+
111
+ def __eq__(self, other):
112
+ """Returns true if both objects are equal"""
113
+ if not isinstance(other, DescribeMachinePoolRequestsRequest):
114
+ return False
115
+
116
+ return self.to_dict() == other.to_dict()
117
+
118
+ def __ne__(self, other):
119
+ """Returns true if both objects are not equal"""
120
+ if not isinstance(other, DescribeMachinePoolRequestsRequest):
121
+ return True
122
+
123
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,147 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Managed Ray API
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from openapi_client.configuration import Configuration
19
+
20
+
21
+ class MachinestateinfoListResponse(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ openapi_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ openapi_types = {
36
+ 'results': 'list[MachineStateInfo]',
37
+ 'metadata': 'ListResponseMetadata'
38
+ }
39
+
40
+ attribute_map = {
41
+ 'results': 'results',
42
+ 'metadata': 'metadata'
43
+ }
44
+
45
+ def __init__(self, results=None, metadata=None, local_vars_configuration=None): # noqa: E501
46
+ """MachinestateinfoListResponse - a model defined in OpenAPI""" # noqa: E501
47
+ if local_vars_configuration is None:
48
+ local_vars_configuration = Configuration()
49
+ self.local_vars_configuration = local_vars_configuration
50
+
51
+ self._results = None
52
+ self._metadata = None
53
+ self.discriminator = None
54
+
55
+ self.results = results
56
+ if metadata is not None:
57
+ self.metadata = metadata
58
+
59
+ @property
60
+ def results(self):
61
+ """Gets the results of this MachinestateinfoListResponse. # noqa: E501
62
+
63
+
64
+ :return: The results of this MachinestateinfoListResponse. # noqa: E501
65
+ :rtype: list[MachineStateInfo]
66
+ """
67
+ return self._results
68
+
69
+ @results.setter
70
+ def results(self, results):
71
+ """Sets the results of this MachinestateinfoListResponse.
72
+
73
+
74
+ :param results: The results of this MachinestateinfoListResponse. # noqa: E501
75
+ :type: list[MachineStateInfo]
76
+ """
77
+ if self.local_vars_configuration.client_side_validation and results is None: # noqa: E501
78
+ raise ValueError("Invalid value for `results`, must not be `None`") # noqa: E501
79
+
80
+ self._results = results
81
+
82
+ @property
83
+ def metadata(self):
84
+ """Gets the metadata of this MachinestateinfoListResponse. # noqa: E501
85
+
86
+
87
+ :return: The metadata of this MachinestateinfoListResponse. # noqa: E501
88
+ :rtype: ListResponseMetadata
89
+ """
90
+ return self._metadata
91
+
92
+ @metadata.setter
93
+ def metadata(self, metadata):
94
+ """Sets the metadata of this MachinestateinfoListResponse.
95
+
96
+
97
+ :param metadata: The metadata of this MachinestateinfoListResponse. # noqa: E501
98
+ :type: ListResponseMetadata
99
+ """
100
+
101
+ self._metadata = metadata
102
+
103
+ def to_dict(self):
104
+ """Returns the model properties as a dict"""
105
+ result = {}
106
+
107
+ for attr, _ in six.iteritems(self.openapi_types):
108
+ value = getattr(self, attr)
109
+ if isinstance(value, list):
110
+ result[attr] = list(map(
111
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
112
+ value
113
+ ))
114
+ elif hasattr(value, "to_dict"):
115
+ result[attr] = value.to_dict()
116
+ elif isinstance(value, dict):
117
+ result[attr] = dict(map(
118
+ lambda item: (item[0], item[1].to_dict())
119
+ if hasattr(item[1], "to_dict") else item,
120
+ value.items()
121
+ ))
122
+ else:
123
+ result[attr] = value
124
+
125
+ return result
126
+
127
+ def to_str(self):
128
+ """Returns the string representation of the model"""
129
+ return pprint.pformat(self.to_dict())
130
+
131
+ def __repr__(self):
132
+ """For `print` and `pprint`"""
133
+ return self.to_str()
134
+
135
+ def __eq__(self, other):
136
+ """Returns true if both objects are equal"""
137
+ if not isinstance(other, MachinestateinfoListResponse):
138
+ return False
139
+
140
+ return self.to_dict() == other.to_dict()
141
+
142
+ def __ne__(self, other):
143
+ """Returns true if both objects are not equal"""
144
+ if not isinstance(other, MachinestateinfoListResponse):
145
+ return True
146
+
147
+ return self.to_dict() != other.to_dict()
@@ -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 = {}
@@ -0,0 +1,147 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Managed Ray API
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from openapi_client.configuration import Configuration
19
+
20
+
21
+ class RequeststateinfoListResponse(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ openapi_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ openapi_types = {
36
+ 'results': 'list[RequestStateInfo]',
37
+ 'metadata': 'ListResponseMetadata'
38
+ }
39
+
40
+ attribute_map = {
41
+ 'results': 'results',
42
+ 'metadata': 'metadata'
43
+ }
44
+
45
+ def __init__(self, results=None, metadata=None, local_vars_configuration=None): # noqa: E501
46
+ """RequeststateinfoListResponse - a model defined in OpenAPI""" # noqa: E501
47
+ if local_vars_configuration is None:
48
+ local_vars_configuration = Configuration()
49
+ self.local_vars_configuration = local_vars_configuration
50
+
51
+ self._results = None
52
+ self._metadata = None
53
+ self.discriminator = None
54
+
55
+ self.results = results
56
+ if metadata is not None:
57
+ self.metadata = metadata
58
+
59
+ @property
60
+ def results(self):
61
+ """Gets the results of this RequeststateinfoListResponse. # noqa: E501
62
+
63
+
64
+ :return: The results of this RequeststateinfoListResponse. # noqa: E501
65
+ :rtype: list[RequestStateInfo]
66
+ """
67
+ return self._results
68
+
69
+ @results.setter
70
+ def results(self, results):
71
+ """Sets the results of this RequeststateinfoListResponse.
72
+
73
+
74
+ :param results: The results of this RequeststateinfoListResponse. # noqa: E501
75
+ :type: list[RequestStateInfo]
76
+ """
77
+ if self.local_vars_configuration.client_side_validation and results is None: # noqa: E501
78
+ raise ValueError("Invalid value for `results`, must not be `None`") # noqa: E501
79
+
80
+ self._results = results
81
+
82
+ @property
83
+ def metadata(self):
84
+ """Gets the metadata of this RequeststateinfoListResponse. # noqa: E501
85
+
86
+
87
+ :return: The metadata of this RequeststateinfoListResponse. # noqa: E501
88
+ :rtype: ListResponseMetadata
89
+ """
90
+ return self._metadata
91
+
92
+ @metadata.setter
93
+ def metadata(self, metadata):
94
+ """Sets the metadata of this RequeststateinfoListResponse.
95
+
96
+
97
+ :param metadata: The metadata of this RequeststateinfoListResponse. # noqa: E501
98
+ :type: ListResponseMetadata
99
+ """
100
+
101
+ self._metadata = metadata
102
+
103
+ def to_dict(self):
104
+ """Returns the model properties as a dict"""
105
+ result = {}
106
+
107
+ for attr, _ in six.iteritems(self.openapi_types):
108
+ value = getattr(self, attr)
109
+ if isinstance(value, list):
110
+ result[attr] = list(map(
111
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
112
+ value
113
+ ))
114
+ elif hasattr(value, "to_dict"):
115
+ result[attr] = value.to_dict()
116
+ elif isinstance(value, dict):
117
+ result[attr] = dict(map(
118
+ lambda item: (item[0], item[1].to_dict())
119
+ if hasattr(item[1], "to_dict") else item,
120
+ value.items()
121
+ ))
122
+ else:
123
+ result[attr] = value
124
+
125
+ return result
126
+
127
+ def to_str(self):
128
+ """Returns the string representation of the model"""
129
+ return pprint.pformat(self.to_dict())
130
+
131
+ def __repr__(self):
132
+ """For `print` and `pprint`"""
133
+ return self.to_str()
134
+
135
+ def __eq__(self, other):
136
+ """Returns true if both objects are equal"""
137
+ if not isinstance(other, RequeststateinfoListResponse):
138
+ return False
139
+
140
+ return self.to_dict() == other.to_dict()
141
+
142
+ def __ne__(self, other):
143
+ """Returns true if both objects are not equal"""
144
+ if not isinstance(other, RequeststateinfoListResponse):
145
+ return True
146
+
147
+ return self.to_dict() != other.to_dict()
@@ -42,7 +42,6 @@ from anyscale_client.models.build_status import BuildStatus
42
42
  from anyscale_client.models.cloud import Cloud
43
43
  from anyscale_client.models.cloud_config import CloudConfig
44
44
  from anyscale_client.models.cloud_deployment_compute_config import CloudDeploymentComputeConfig
45
- from anyscale_client.models.cloud_deployment_selector import CloudDeploymentSelector
46
45
  from anyscale_client.models.cloud_list_response import CloudListResponse
47
46
  from anyscale_client.models.cloud_providers import CloudProviders
48
47
  from anyscale_client.models.cloud_response import CloudResponse
@@ -28,7 +28,6 @@ from anyscale_client.models.build_status import BuildStatus
28
28
  from anyscale_client.models.cloud import Cloud
29
29
  from anyscale_client.models.cloud_config import CloudConfig
30
30
  from anyscale_client.models.cloud_deployment_compute_config import CloudDeploymentComputeConfig
31
- from anyscale_client.models.cloud_deployment_selector import CloudDeploymentSelector
32
31
  from anyscale_client.models.cloud_list_response import CloudListResponse
33
32
  from anyscale_client.models.cloud_providers import CloudProviders
34
33
  from anyscale_client.models.cloud_response import CloudResponse
@@ -33,7 +33,7 @@ class CloudDeploymentComputeConfig(object):
33
33
  and the value is json key in definition.
34
34
  """
35
35
  openapi_types = {
36
- 'cloud_deployment': 'CloudDeploymentSelector',
36
+ 'cloud_deployment': 'str',
37
37
  'allowed_azs': 'list[str]',
38
38
  'head_node_type': 'ComputeNodeType',
39
39
  'worker_node_types': 'list[WorkerNodeType]',
@@ -85,10 +85,10 @@ class CloudDeploymentComputeConfig(object):
85
85
  def cloud_deployment(self):
86
86
  """Gets the cloud_deployment of this CloudDeploymentComputeConfig. # noqa: E501
87
87
 
88
- The cloud deployment to use for this compute config. If not specified, the default cloud deployment for the cloud will be used. # noqa: E501
88
+ The name of the cloud deployment to use for this compute config. If not specified, the primary cloud deployment for the cloud will be used. # noqa: E501
89
89
 
90
90
  :return: The cloud_deployment of this CloudDeploymentComputeConfig. # noqa: E501
91
- :rtype: CloudDeploymentSelector
91
+ :rtype: str
92
92
  """
93
93
  return self._cloud_deployment
94
94
 
@@ -96,10 +96,10 @@ class CloudDeploymentComputeConfig(object):
96
96
  def cloud_deployment(self, cloud_deployment):
97
97
  """Sets the cloud_deployment of this CloudDeploymentComputeConfig.
98
98
 
99
- The cloud deployment to use for this compute config. If not specified, the default cloud deployment for the cloud will be used. # noqa: E501
99
+ The name of the cloud deployment to use for this compute config. If not specified, the primary cloud deployment for the cloud will be used. # noqa: E501
100
100
 
101
101
  :param cloud_deployment: The cloud_deployment of this CloudDeploymentComputeConfig. # noqa: E501
102
- :type: CloudDeploymentSelector
102
+ :type: str
103
103
  """
104
104
 
105
105
  self._cloud_deployment = cloud_deployment
@@ -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.36"
1
+ __version__ = "0.26.38"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: anyscale
3
- Version: 0.26.36
3
+ Version: 0.26.38
4
4
  Summary: Command Line Interface for Anyscale
5
5
  Author: Anyscale Inc.
6
6
  License: AS License