anyscale 0.26.37__py3-none-any.whl → 0.26.39__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 -12
- anyscale/client/README.md +6 -1
- anyscale/client/openapi_client/__init__.py +4 -1
- anyscale/client/openapi_client/api/default_api.py +236 -0
- anyscale/client/openapi_client/models/__init__.py +4 -1
- anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_request.py +31 -3
- anyscale/client/openapi_client/models/cloud_deployment_compute_config.py +5 -5
- anyscale/client/openapi_client/models/describe_machine_pool_machines_request.py +123 -0
- anyscale/client/openapi_client/models/describe_machine_pool_requests_request.py +123 -0
- anyscale/client/openapi_client/models/machinestateinfo_list_response.py +147 -0
- anyscale/client/openapi_client/models/requeststateinfo_list_response.py +147 -0
- anyscale/sdk/anyscale_client/__init__.py +0 -1
- anyscale/sdk/anyscale_client/models/__init__.py +0 -1
- anyscale/sdk/anyscale_client/models/cloud_deployment_compute_config.py +5 -5
- anyscale/service/_private/service_sdk.py +1 -0
- anyscale/version.py +1 -1
- {anyscale-0.26.37.dist-info → anyscale-0.26.39.dist-info}/METADATA +1 -1
- {anyscale-0.26.37.dist-info → anyscale-0.26.39.dist-info}/RECORD +23 -21
- anyscale/client/openapi_client/models/cloud_deployment_selector.py +0 -206
- anyscale/sdk/anyscale_client/models/cloud_deployment_selector.py +0 -206
- {anyscale-0.26.37.dist-info → anyscale-0.26.39.dist-info}/LICENSE +0 -0
- {anyscale-0.26.37.dist-info → anyscale-0.26.39.dist-info}/NOTICE +0 -0
- {anyscale-0.26.37.dist-info → anyscale-0.26.39.dist-info}/WHEEL +0 -0
- {anyscale-0.26.37.dist-info → anyscale-0.26.39.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.37.dist-info → anyscale-0.26.39.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()
|
|
@@ -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': '
|
|
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
|
|
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:
|
|
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
|
|
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:
|
|
102
|
+
:type: str
|
|
103
103
|
"""
|
|
104
104
|
|
|
105
105
|
self._cloud_deployment = cloud_deployment
|
|
@@ -78,6 +78,7 @@ class PrivateServiceSDK(WorkloadSDK):
|
|
|
78
78
|
cloud_id=cloud_id,
|
|
79
79
|
autopopulate_in_workspace=autopopulate_in_workspace,
|
|
80
80
|
additional_py_modules=config.py_modules,
|
|
81
|
+
py_executable_override=config.py_executable,
|
|
81
82
|
)
|
|
82
83
|
new_runtime_envs = self.override_and_load_requirements_files(
|
|
83
84
|
new_runtime_envs,
|
anyscale/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.26.
|
|
1
|
+
__version__ = "0.26.39"
|
|
@@ -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=_ZbrPLn9Sd33bHq1MeHMMwsQwtg8l6F4LTTwEHAo8ww,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=wLqRz6Bs-eb21S1vZeQGpsCJU3QJaiYnWRrv_MVi2wE,295171
|
|
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
|
|
@@ -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=1IcoSA9PA1kJMOiozVDvzU9Y2a_8CpNjbKDM9q20I-w,111700
|
|
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=q6w1EaFMOZPWVT3D0an1TcZPyMcc75-6wfEQxvR5tuw,50482
|
|
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=CgK0FQYGnIn4DbamQ3EsjHB47M1T7Txo3xBq7eHsLIQ,1788969
|
|
124
|
+
anyscale/client/openapi_client/models/__init__.py,sha256=ETyxJbqQ5M0JOefgfixkLflycf3qOA2LTya9608N2Ro,49992
|
|
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
|
|
@@ -192,14 +192,13 @@ anyscale/client/openapi_client/models/cloud_data_bucket_file_type.py,sha256=3-qb
|
|
|
192
192
|
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_info.py,sha256=oDuxszeCGe8_mMBx84yIE9uQypMRNDvUoN8CR84QaDQ,10068
|
|
193
193
|
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_request.py,sha256=1a5lhtKDaXO46Mrdm6s5HMGFuoj5o_4kkEc7gFTadiI,5268
|
|
194
194
|
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_scheme.py,sha256=5si79TIn1yIdm52omXlmNmyrfHgbCykKPmVXtOIlWXQ,2943
|
|
195
|
-
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_request.py,sha256=
|
|
195
|
+
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_request.py,sha256=E2OwezVPluHQngJmM5MGxhExW58R6IefF0dO4T2di5Y,8708
|
|
196
196
|
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_response.py,sha256=zJA18_gxkpKOo1b4R7MakUBBM8DX-WLFuAVIfxRmP6U,10827
|
|
197
197
|
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_scheme.py,sha256=Vpnb4gAa6TBj0p5OfiIzLTWFGZ3Xd5s7jXdOJw06msM,2916
|
|
198
198
|
anyscale/client/openapi_client/models/cloud_data_bucket_request_scope.py,sha256=IqPon7rEzfGPfSifMNzUZZDXv2NS-v9D0Zab57WFnYw,2901
|
|
199
199
|
anyscale/client/openapi_client/models/cloud_deployment.py,sha256=7oM6B5WLfC82G-fQsraK3nBHEQgatHY2ju2V4UmXIjI,12343
|
|
200
|
-
anyscale/client/openapi_client/models/cloud_deployment_compute_config.py,sha256=
|
|
200
|
+
anyscale/client/openapi_client/models/cloud_deployment_compute_config.py,sha256=6XmKxZcIXaLW1rbI152yTWI5QSxVDBDB46RxIoXiQMs,11088
|
|
201
201
|
anyscale/client/openapi_client/models/cloud_deployment_config.py,sha256=cFErRe2NF9C8DI2SBTvHp37PB736A_jeg5UBc4Erl3Y,3468
|
|
202
|
-
anyscale/client/openapi_client/models/cloud_deployment_selector.py,sha256=vq9vtLNCsh22pzFpvPp1C4ZDslGeTmpmC4LKouaETnM,6150
|
|
203
202
|
anyscale/client/openapi_client/models/cloud_hosting_type.py,sha256=DkHIvvYUmj8K_NQtKBHZNtbjh6dpzz60C2VBqVzeUAU,2896
|
|
204
203
|
anyscale/client/openapi_client/models/cloud_list_response.py,sha256=I2zXNTv1ipWz0ndW0NijCnq9PSAHahDXcLvz_-6hlvI,4272
|
|
205
204
|
anyscale/client/openapi_client/models/cloud_name_options.py,sha256=3olGjYqgPVaINvhbitPncKbjyiezeaDcnO6dbZnu6sA,3449
|
|
@@ -370,7 +369,9 @@ anyscale/client/openapi_client/models/delete_machine_request.py,sha256=ojQo15olj
|
|
|
370
369
|
anyscale/client/openapi_client/models/deleted_platform_fine_tuned_model.py,sha256=taeiJGnAwTWIU222goX2j8nHE9OsSuS-8EsGv4LJUho,4451
|
|
371
370
|
anyscale/client/openapi_client/models/deletedplatformfinetunedmodel_response.py,sha256=oiprY6NmSneyQwX8KIlMHlKAfAuujHZeVmddOpyeydQ,3737
|
|
372
371
|
anyscale/client/openapi_client/models/deletemachinepoolresponse_response.py,sha256=zQGPRw4tweSZTaQcF_6MbFR_KPMwN6s19QJE8TLgrjM,3636
|
|
372
|
+
anyscale/client/openapi_client/models/describe_machine_pool_machines_request.py,sha256=5wwpUii7k8oD6ROVpdraVuPQzl0x-kjP9qHfSKHl0RY,3994
|
|
373
373
|
anyscale/client/openapi_client/models/describe_machine_pool_request.py,sha256=7ECyUCAlwLFLdcIQrvyNiAOILBzNGUTN5_nK7EN84yg,3739
|
|
374
|
+
anyscale/client/openapi_client/models/describe_machine_pool_requests_request.py,sha256=GsrysgY7worVO8UqTU4-L-179rYNG9HQTby_U1elSQ8,3994
|
|
374
375
|
anyscale/client/openapi_client/models/describe_machine_pool_response.py,sha256=dtcGBS48Vz07CbIVPfeU4XBS9aQMpt9ADEhG_KCNl48,3887
|
|
375
376
|
anyscale/client/openapi_client/models/describe_system_workload_response.py,sha256=6BkN7_HAuCaRqxpq4ub8rl8VhwmDWTDgOjXN6ll-6Nc,7517
|
|
376
377
|
anyscale/client/openapi_client/models/describemachinepoolresponse_response.py,sha256=OmIz6PJBcV4VnNHf0PxnuwOg1EMop2aoi6Wv8N1OVD4,3715
|
|
@@ -476,6 +477,7 @@ anyscale/client/openapi_client/models/machine_info.py,sha256=3L1vM8pOHOX4VZz-sIf
|
|
|
476
477
|
anyscale/client/openapi_client/models/machine_launch_failure.py,sha256=9MMZ17hGYKR0xBfUKcVc2yhtVsBQFtxcNXSBmnnMU7Y,4601
|
|
477
478
|
anyscale/client/openapi_client/models/machine_pool.py,sha256=0_tga2wp9DR-tGeGHg3AE1F1iiKn8N_ruWCr_aVtxX0,9135
|
|
478
479
|
anyscale/client/openapi_client/models/machine_state_info.py,sha256=vTwjL3buXuT7Qkub3bf4-OlAzUr7mj1Yh1ReUVk0XZk,11351
|
|
480
|
+
anyscale/client/openapi_client/models/machinestateinfo_list_response.py,sha256=lelg5QcblkfQjRAHoTDGKRtcp8D0EReIFOTPP7I0MZo,4437
|
|
479
481
|
anyscale/client/openapi_client/models/metric.py,sha256=q5GOXJFhGdpTj_Gg-V05Pc1E_VjjjKB8OZEV0Qof9G0,8921
|
|
480
482
|
anyscale/client/openapi_client/models/metronome_customer_info_model.py,sha256=TNHzxUfadF8RDFkhNDSsasgXEEv0hjMoyrsFVKx50zM,4847
|
|
481
483
|
anyscale/client/openapi_client/models/metronome_dashboard_type.py,sha256=maFESxv00_Nj3hL_snx52zehYzGMElEdtMmcQxqqJ3g,2902
|
|
@@ -570,6 +572,7 @@ anyscale/client/openapi_client/models/request_password_reset_params.py,sha256=S6
|
|
|
570
572
|
anyscale/client/openapi_client/models/request_state_info.py,sha256=_ncxrW-LCKLkqEFvV32quwcg3snBmtl95E0D9g8OIDg,6791
|
|
571
573
|
anyscale/client/openapi_client/models/requestemailmagiclinkresponse_response.py,sha256=hxoYP5m0eA_2lCP83gxb5b5uuPdhAnz-rzX9Lnxt5JM,3737
|
|
572
574
|
anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py,sha256=MRpp_kGIa8jMDxQqjtM5mWmK5SBXCMd_c20ZCE6u17Y,3682
|
|
575
|
+
anyscale/client/openapi_client/models/requeststateinfo_list_response.py,sha256=BG-mOjBIOWGyaMXwlD0QZfX9L-eGwPb3q-IitxJ4xYs,4437
|
|
573
576
|
anyscale/client/openapi_client/models/reset_password_params.py,sha256=UVh4iLrSOGIgIgnRy_dnGWPdvHOQLbHk2qyG8EPkLpg,4421
|
|
574
577
|
anyscale/client/openapi_client/models/resource_alert_event_type.py,sha256=wqSibRzNN4NfdYpugrAb3us5iTwB1M-sMaHJO3JOovw,3376
|
|
575
578
|
anyscale/client/openapi_client/models/resource_notification.py,sha256=v9-GaEj2jzJgzPAJSJd64KjfsQYXSUPZUVD2vcu6LLI,14308
|
|
@@ -843,7 +846,7 @@ anyscale/schedule/__init__.py,sha256=xZ07hHVUBMs_6tkhIJYqdskoDtgAndL7Zb0bMY9fCF8
|
|
|
843
846
|
anyscale/schedule/commands.py,sha256=5KvhT0QFeBU3WpqtuC-pbFombb-4mvaHzSv0bCgD17Y,4727
|
|
844
847
|
anyscale/schedule/models.py,sha256=l3vVpY6ovr1vAgiwjFjVXyHa2tTJ0cLCR0cFIIpllKg,4561
|
|
845
848
|
anyscale/schedule/_private/schedule_sdk.py,sha256=8rOyQM-XG3cb787KHaC7JzJmOvVMjLIl0kdydbuqgIk,6220
|
|
846
|
-
anyscale/sdk/anyscale_client/__init__.py,sha256=
|
|
849
|
+
anyscale/sdk/anyscale_client/__init__.py,sha256=GrG84nUlyv-0_I4kX50VN0f-D3duNl1TKU34Y0JRsCg,13048
|
|
847
850
|
anyscale/sdk/anyscale_client/api_client.py,sha256=fyYpBZLDufVvXbN9KdUaer52hmKPdRSIJL2vOLN_aCk,25565
|
|
848
851
|
anyscale/sdk/anyscale_client/configuration.py,sha256=k65_MVukneN2JA_WUHXjnqiqpmBWjEmguSZvHx4Uihg,12361
|
|
849
852
|
anyscale/sdk/anyscale_client/exceptions.py,sha256=A57t810Y_rVxFpbQlfaDhCwOjeFSB6jsx0I85qkKTUQ,3789
|
|
@@ -851,7 +854,7 @@ anyscale/sdk/anyscale_client/rest.py,sha256=HVsalJFwXwGTEYgVsLJcsLKUU47wZ5oFSWmO
|
|
|
851
854
|
anyscale/sdk/anyscale_client/sdk.py,sha256=GtBluXl1AJi02AkwnvJOC5IGUxAFVTOYXBDFg8JyH10,27709
|
|
852
855
|
anyscale/sdk/anyscale_client/api/__init__.py,sha256=aI2dYRCOMQk0Ma2_qiEkpFpQGkEquzKNPGPSErfbhro,142
|
|
853
856
|
anyscale/sdk/anyscale_client/api/default_api.py,sha256=fx6yWJVl2vi2_VCoZbM25BBS4nx2ATK-wJYACTDxWqs,342998
|
|
854
|
-
anyscale/sdk/anyscale_client/models/__init__.py,sha256=
|
|
857
|
+
anyscale/sdk/anyscale_client/models/__init__.py,sha256=Xes_6hp6Sl68Bxawg5yKHMzzcOKt8jwFx_DcHUNzluE,12550
|
|
855
858
|
anyscale/sdk/anyscale_client/models/access_config.py,sha256=FOH_2UU2astWm_ilA1_FpWqKQRxwMYXjGC-UT4Zj65Y,3646
|
|
856
859
|
anyscale/sdk/anyscale_client/models/app_config.py,sha256=1sWYt1jiljHiXtWCQi7HJw4sBvulaqPV8tmTvNpgZYI,13439
|
|
857
860
|
anyscale/sdk/anyscale_client/models/app_config_config_schema.py,sha256=0RD9ffMfQ_XFXyVY7qjisOropKYT2tZ2p3XyxPrqjE0,7897
|
|
@@ -865,8 +868,7 @@ anyscale/sdk/anyscale_client/models/build_response.py,sha256=lC_GmJ5eYUMSAC_g7Vw
|
|
|
865
868
|
anyscale/sdk/anyscale_client/models/build_status.py,sha256=4L-hAKlhaOUy41MV1sXIq7Ls7u8CMkWMB5NsKD4wXJ0,3015
|
|
866
869
|
anyscale/sdk/anyscale_client/models/cloud.py,sha256=uNZ2s8JrC-0CCeF7_zj4DSrT0egcJucQupHSBJMXc48,27791
|
|
867
870
|
anyscale/sdk/anyscale_client/models/cloud_config.py,sha256=koZOTPKLpjHmC5UukNYDOTkhal566xNWbYPzptJ03Wc,7505
|
|
868
|
-
anyscale/sdk/anyscale_client/models/cloud_deployment_compute_config.py,sha256=
|
|
869
|
-
anyscale/sdk/anyscale_client/models/cloud_deployment_selector.py,sha256=_17xZcTWoy_MOKv9-tl5mpY5v8lk7dzmn7beExOD6vA,6148
|
|
871
|
+
anyscale/sdk/anyscale_client/models/cloud_deployment_compute_config.py,sha256=kgtFfd-W7NztIJL_nwIdJq08hFSQqtBqZmYbjZn5FF4,11086
|
|
870
872
|
anyscale/sdk/anyscale_client/models/cloud_list_response.py,sha256=D3Ixmub2dnow4VGVuWjTEHbFqUxuiubUF39oEWtMT7o,4270
|
|
871
873
|
anyscale/sdk/anyscale_client/models/cloud_providers.py,sha256=NFsuErmp86tOk8uiaji94Y9rxlzYvLV1816tyxAIwuI,2943
|
|
872
874
|
anyscale/sdk/anyscale_client/models/cloud_response.py,sha256=d21OnA7MCnGRIfRRIFZSkXXhGHeMh7igrwqxF9X3_gw,3471
|
|
@@ -1019,7 +1021,7 @@ anyscale/sdk/anyscale_client/models/worker_node_type.py,sha256=bI3sPVPA4t4axjdbj
|
|
|
1019
1021
|
anyscale/service/__init__.py,sha256=8L7JynFGOfZ28WIDTUM-ipzbrChZ_ZqadJuIhApTvFM,7988
|
|
1020
1022
|
anyscale/service/commands.py,sha256=cef52vv7KlUX_vOhQubUOM9t3rT4NbE_GNhllCFZWvg,14384
|
|
1021
1023
|
anyscale/service/models.py,sha256=In9Nn6xYWSpKwjYaMe1zyRWs1gU-g9J-tNt74BQh0js,25985
|
|
1022
|
-
anyscale/service/_private/service_sdk.py,sha256=
|
|
1024
|
+
anyscale/service/_private/service_sdk.py,sha256=FS9r3Ku-lf2yV6h9HrAiZr5gREWUV-7omdF9dWxoeVc,34979
|
|
1023
1025
|
anyscale/service_account/__init__.py,sha256=jV1OFo_ZTxU3vuPztO1300TuoMz-Ocudm6_84ZtjPQ4,2764
|
|
1024
1026
|
anyscale/service_account/commands.py,sha256=pkJjZwK8aRKFFVfE5swMTJrm9CTnPcNJETEFdMkPiic,3680
|
|
1025
1027
|
anyscale/service_account/models.py,sha256=MhY-Fo5AZQ68brqtolTUMW3WQDrkNyL1udtNg70sNAU,2189
|
|
@@ -1086,10 +1088,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
|
|
|
1086
1088
|
anyscale/workspace/commands.py,sha256=b1sqNseoPj-1VXznqQOLe0V_a663bOTvJX-TaOMJa1Y,14590
|
|
1087
1089
|
anyscale/workspace/models.py,sha256=HBvM9ybOdJjqQeViQ30C36gdKT_AwH_JHPoL-DTkESo,9841
|
|
1088
1090
|
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.
|
|
1091
|
+
anyscale-0.26.39.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
|
|
1092
|
+
anyscale-0.26.39.dist-info/METADATA,sha256=gErmTm1VqZYm8lEd8yGE7NOFxrw2f8OAhmz74i47Y90,3269
|
|
1093
|
+
anyscale-0.26.39.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
|
|
1094
|
+
anyscale-0.26.39.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
1095
|
+
anyscale-0.26.39.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
|
|
1096
|
+
anyscale-0.26.39.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
|
|
1097
|
+
anyscale-0.26.39.dist-info/RECORD,,
|