anyscale 0.26.42__py3-none-any.whl → 0.26.43__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/client/README.md CHANGED
@@ -623,6 +623,7 @@ Class | Method | HTTP request | Description
623
623
  - [DeletedPlatformFineTunedModel](docs/DeletedPlatformFineTunedModel.md)
624
624
  - [DeletedplatformfinetunedmodelResponse](docs/DeletedplatformfinetunedmodelResponse.md)
625
625
  - [DeletemachinepoolresponseResponse](docs/DeletemachinepoolresponseResponse.md)
626
+ - [DescribeMachinePoolMachinesFilters](docs/DescribeMachinePoolMachinesFilters.md)
626
627
  - [DescribeMachinePoolMachinesRequest](docs/DescribeMachinePoolMachinesRequest.md)
627
628
  - [DescribeMachinePoolRequest](docs/DescribeMachinePoolRequest.md)
628
629
  - [DescribeMachinePoolRequestsRequest](docs/DescribeMachinePoolRequestsRequest.md)
@@ -275,6 +275,7 @@ from openapi_client.models.delete_machine_request import DeleteMachineRequest
275
275
  from openapi_client.models.deleted_platform_fine_tuned_model import DeletedPlatformFineTunedModel
276
276
  from openapi_client.models.deletedplatformfinetunedmodel_response import DeletedplatformfinetunedmodelResponse
277
277
  from openapi_client.models.deletemachinepoolresponse_response import DeletemachinepoolresponseResponse
278
+ from openapi_client.models.describe_machine_pool_machines_filters import DescribeMachinePoolMachinesFilters
278
279
  from openapi_client.models.describe_machine_pool_machines_request import DescribeMachinePoolMachinesRequest
279
280
  from openapi_client.models.describe_machine_pool_request import DescribeMachinePoolRequest
280
281
  from openapi_client.models.describe_machine_pool_requests_request import DescribeMachinePoolRequestsRequest
@@ -261,6 +261,7 @@ from openapi_client.models.delete_machine_request import DeleteMachineRequest
261
261
  from openapi_client.models.deleted_platform_fine_tuned_model import DeletedPlatformFineTunedModel
262
262
  from openapi_client.models.deletedplatformfinetunedmodel_response import DeletedplatformfinetunedmodelResponse
263
263
  from openapi_client.models.deletemachinepoolresponse_response import DeletemachinepoolresponseResponse
264
+ from openapi_client.models.describe_machine_pool_machines_filters import DescribeMachinePoolMachinesFilters
264
265
  from openapi_client.models.describe_machine_pool_machines_request import DescribeMachinePoolMachinesRequest
265
266
  from openapi_client.models.describe_machine_pool_request import DescribeMachinePoolRequest
266
267
  from openapi_client.models.describe_machine_pool_requests_request import DescribeMachinePoolRequestsRequest
@@ -0,0 +1,122 @@
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 DescribeMachinePoolMachinesFilters(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
+ 'allocation_states': 'list[MachineAllocationState]'
37
+ }
38
+
39
+ attribute_map = {
40
+ 'allocation_states': 'allocation_states'
41
+ }
42
+
43
+ def __init__(self, allocation_states=None, local_vars_configuration=None): # noqa: E501
44
+ """DescribeMachinePoolMachinesFilters - 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._allocation_states = None
50
+ self.discriminator = None
51
+
52
+ if allocation_states is not None:
53
+ self.allocation_states = allocation_states
54
+
55
+ @property
56
+ def allocation_states(self):
57
+ """Gets the allocation_states of this DescribeMachinePoolMachinesFilters. # noqa: E501
58
+
59
+ The allocation states to filter by. # noqa: E501
60
+
61
+ :return: The allocation_states of this DescribeMachinePoolMachinesFilters. # noqa: E501
62
+ :rtype: list[MachineAllocationState]
63
+ """
64
+ return self._allocation_states
65
+
66
+ @allocation_states.setter
67
+ def allocation_states(self, allocation_states):
68
+ """Sets the allocation_states of this DescribeMachinePoolMachinesFilters.
69
+
70
+ The allocation states to filter by. # noqa: E501
71
+
72
+ :param allocation_states: The allocation_states of this DescribeMachinePoolMachinesFilters. # noqa: E501
73
+ :type: list[MachineAllocationState]
74
+ """
75
+
76
+ self._allocation_states = allocation_states
77
+
78
+ def to_dict(self):
79
+ """Returns the model properties as a dict"""
80
+ result = {}
81
+
82
+ for attr, _ in six.iteritems(self.openapi_types):
83
+ value = getattr(self, attr)
84
+ if isinstance(value, list):
85
+ result[attr] = list(map(
86
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
87
+ value
88
+ ))
89
+ elif hasattr(value, "to_dict"):
90
+ result[attr] = value.to_dict()
91
+ elif isinstance(value, dict):
92
+ result[attr] = dict(map(
93
+ lambda item: (item[0], item[1].to_dict())
94
+ if hasattr(item[1], "to_dict") else item,
95
+ value.items()
96
+ ))
97
+ else:
98
+ result[attr] = value
99
+
100
+ return result
101
+
102
+ def to_str(self):
103
+ """Returns the string representation of the model"""
104
+ return pprint.pformat(self.to_dict())
105
+
106
+ def __repr__(self):
107
+ """For `print` and `pprint`"""
108
+ return self.to_str()
109
+
110
+ def __eq__(self, other):
111
+ """Returns true if both objects are equal"""
112
+ if not isinstance(other, DescribeMachinePoolMachinesFilters):
113
+ return False
114
+
115
+ return self.to_dict() == other.to_dict()
116
+
117
+ def __ne__(self, other):
118
+ """Returns true if both objects are not equal"""
119
+ if not isinstance(other, DescribeMachinePoolMachinesFilters):
120
+ return True
121
+
122
+ return self.to_dict() != other.to_dict()
@@ -33,23 +33,28 @@ class DescribeMachinePoolMachinesRequest(object):
33
33
  and the value is json key in definition.
34
34
  """
35
35
  openapi_types = {
36
- 'machine_pool_name': 'str'
36
+ 'machine_pool_name': 'str',
37
+ 'filters': 'DescribeMachinePoolMachinesFilters'
37
38
  }
38
39
 
39
40
  attribute_map = {
40
- 'machine_pool_name': 'machine_pool_name'
41
+ 'machine_pool_name': 'machine_pool_name',
42
+ 'filters': 'filters'
41
43
  }
42
44
 
43
- def __init__(self, machine_pool_name=None, local_vars_configuration=None): # noqa: E501
45
+ def __init__(self, machine_pool_name=None, filters=None, local_vars_configuration=None): # noqa: E501
44
46
  """DescribeMachinePoolMachinesRequest - a model defined in OpenAPI""" # noqa: E501
45
47
  if local_vars_configuration is None:
46
48
  local_vars_configuration = Configuration()
47
49
  self.local_vars_configuration = local_vars_configuration
48
50
 
49
51
  self._machine_pool_name = None
52
+ self._filters = None
50
53
  self.discriminator = None
51
54
 
52
55
  self.machine_pool_name = machine_pool_name
56
+ if filters is not None:
57
+ self.filters = filters
53
58
 
54
59
  @property
55
60
  def machine_pool_name(self):
@@ -76,6 +81,29 @@ class DescribeMachinePoolMachinesRequest(object):
76
81
 
77
82
  self._machine_pool_name = machine_pool_name
78
83
 
84
+ @property
85
+ def filters(self):
86
+ """Gets the filters of this DescribeMachinePoolMachinesRequest. # noqa: E501
87
+
88
+ Filters to apply to the machines. # noqa: E501
89
+
90
+ :return: The filters of this DescribeMachinePoolMachinesRequest. # noqa: E501
91
+ :rtype: DescribeMachinePoolMachinesFilters
92
+ """
93
+ return self._filters
94
+
95
+ @filters.setter
96
+ def filters(self, filters):
97
+ """Sets the filters of this DescribeMachinePoolMachinesRequest.
98
+
99
+ Filters to apply to the machines. # noqa: E501
100
+
101
+ :param filters: The filters of this DescribeMachinePoolMachinesRequest. # noqa: E501
102
+ :type: DescribeMachinePoolMachinesFilters
103
+ """
104
+
105
+ self._filters = filters
106
+
79
107
  def to_dict(self):
80
108
  """Returns the model properties as a dict"""
81
109
  result = {}
@@ -33,23 +33,28 @@ class DescribeMachinePoolRequestsRequest(object):
33
33
  and the value is json key in definition.
34
34
  """
35
35
  openapi_types = {
36
- 'machine_pool_name': 'str'
36
+ 'machine_pool_name': 'str',
37
+ 'workload_name': 'TextQuery'
37
38
  }
38
39
 
39
40
  attribute_map = {
40
- 'machine_pool_name': 'machine_pool_name'
41
+ 'machine_pool_name': 'machine_pool_name',
42
+ 'workload_name': 'workload_name'
41
43
  }
42
44
 
43
- def __init__(self, machine_pool_name=None, local_vars_configuration=None): # noqa: E501
45
+ def __init__(self, machine_pool_name=None, workload_name=None, local_vars_configuration=None): # noqa: E501
44
46
  """DescribeMachinePoolRequestsRequest - a model defined in OpenAPI""" # noqa: E501
45
47
  if local_vars_configuration is None:
46
48
  local_vars_configuration = Configuration()
47
49
  self.local_vars_configuration = local_vars_configuration
48
50
 
49
51
  self._machine_pool_name = None
52
+ self._workload_name = None
50
53
  self.discriminator = None
51
54
 
52
55
  self.machine_pool_name = machine_pool_name
56
+ if workload_name is not None:
57
+ self.workload_name = workload_name
53
58
 
54
59
  @property
55
60
  def machine_pool_name(self):
@@ -76,6 +81,29 @@ class DescribeMachinePoolRequestsRequest(object):
76
81
 
77
82
  self._machine_pool_name = machine_pool_name
78
83
 
84
+ @property
85
+ def workload_name(self):
86
+ """Gets the workload_name of this DescribeMachinePoolRequestsRequest. # noqa: E501
87
+
88
+ Filters requests by workload name. If this field is absent, no filtering is done. # noqa: E501
89
+
90
+ :return: The workload_name of this DescribeMachinePoolRequestsRequest. # noqa: E501
91
+ :rtype: TextQuery
92
+ """
93
+ return self._workload_name
94
+
95
+ @workload_name.setter
96
+ def workload_name(self, workload_name):
97
+ """Sets the workload_name of this DescribeMachinePoolRequestsRequest.
98
+
99
+ Filters requests by workload name. If this field is absent, no filtering is done. # noqa: E501
100
+
101
+ :param workload_name: The workload_name of this DescribeMachinePoolRequestsRequest. # noqa: E501
102
+ :type: TextQuery
103
+ """
104
+
105
+ self._workload_name = workload_name
106
+
79
107
  def to_dict(self):
80
108
  """Returns the model properties as a dict"""
81
109
  result = {}
@@ -179,7 +179,10 @@ class PrivateComputeConfigSDK(BaseSDK):
179
179
  head_node_type=self._convert_head_node_config_to_api_model(
180
180
  compute_config.head_node,
181
181
  cloud=cloud,
182
- schedulable_by_default=compute_config.worker_nodes == [],
182
+ schedulable_by_default=(
183
+ not compute_config.worker_nodes
184
+ and not compute_config.auto_select_worker_config
185
+ ),
183
186
  ),
184
187
  worker_node_types=self._convert_worker_node_group_configs_to_api_models(
185
188
  compute_config.worker_nodes, cloud=cloud,
@@ -269,14 +269,16 @@ class CloudController(BaseController):
269
269
  "ParameterKey": "MemoryDBRedisPort",
270
270
  "ParameterValue": MEMORYDB_REDIS_PORT,
271
271
  },
272
- {
273
- "ParameterKey": "EnableEFS",
274
- "ParameterValue": "true"
275
- if shared_storage == SharedStorageType.NFS
276
- else "false",
277
- },
278
272
  ]
279
273
  if not is_anyscale_hosted:
274
+ parameters.append(
275
+ {
276
+ "ParameterKey": "EnableEFS",
277
+ "ParameterValue": "true"
278
+ if shared_storage == SharedStorageType.NFS
279
+ else "false",
280
+ }
281
+ )
280
282
  parameters.append(
281
283
  {
282
284
  "ParameterKey": "AnyscaleCrossAccountIAMRoleName",
anyscale/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.26.42"
1
+ __version__ = "0.26.43"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: anyscale
3
- Version: 0.26.42
3
+ Version: 0.26.43
4
4
  Summary: Command Line Interface for Anyscale
5
5
  Author: Anyscale Inc.
6
6
  License: AS License
@@ -39,18 +39,6 @@ Requires-Dist: termcolor>=1.1.0
39
39
  Requires-Dist: colorama>=0.3.9
40
40
  Requires-Dist: websockets; python_version > "3.8"
41
41
  Requires-Dist: websockets==13.1.0; python_version <= "3.8"
42
- Provides-Extra: backend
43
- Requires-Dist: terminado==0.10.1; extra == "backend"
44
- Requires-Dist: tornado; extra == "backend"
45
- Requires-Dist: ray>=1.4.0; extra == "backend"
46
- Requires-Dist: google-api-python-client; extra == "backend"
47
- Requires-Dist: google-cloud-secret-manager; extra == "backend"
48
- Requires-Dist: google-cloud-compute; extra == "backend"
49
- Requires-Dist: google-cloud-resource-manager; extra == "backend"
50
- Requires-Dist: google-cloud-filestore; extra == "backend"
51
- Requires-Dist: google-cloud-storage; extra == "backend"
52
- Requires-Dist: google-cloud-redis; extra == "backend"
53
- Requires-Dist: google-cloud-certificate-manager; extra == "backend"
54
42
  Provides-Extra: gcp
55
43
  Requires-Dist: google-api-python-client; extra == "gcp"
56
44
  Requires-Dist: google-cloud-secret-manager; extra == "gcp"
@@ -61,7 +49,6 @@ Requires-Dist: google-cloud-storage; extra == "gcp"
61
49
  Requires-Dist: google-cloud-redis; extra == "gcp"
62
50
  Requires-Dist: google-cloud-certificate-manager; extra == "gcp"
63
51
  Provides-Extra: all
64
- Requires-Dist: ray>=1.4.0; extra == "all"
65
52
  Requires-Dist: google-api-python-client; extra == "all"
66
53
  Requires-Dist: google-cloud-secret-manager; extra == "all"
67
54
  Requires-Dist: google-cloud-compute; extra == "all"
@@ -70,6 +57,18 @@ Requires-Dist: google-cloud-filestore; extra == "all"
70
57
  Requires-Dist: google-cloud-storage; extra == "all"
71
58
  Requires-Dist: google-cloud-redis; extra == "all"
72
59
  Requires-Dist: google-cloud-certificate-manager; extra == "all"
60
+ Requires-Dist: ray>=2.0.0; extra == "all"
61
+ Provides-Extra: backend
62
+ Requires-Dist: google-api-python-client; extra == "backend"
63
+ Requires-Dist: google-cloud-secret-manager; extra == "backend"
64
+ Requires-Dist: google-cloud-compute; extra == "backend"
65
+ Requires-Dist: google-cloud-resource-manager; extra == "backend"
66
+ Requires-Dist: google-cloud-filestore; extra == "backend"
67
+ Requires-Dist: google-cloud-storage; extra == "backend"
68
+ Requires-Dist: google-cloud-redis; extra == "backend"
69
+ Requires-Dist: google-cloud-certificate-manager; extra == "backend"
70
+ Requires-Dist: terminado; extra == "backend"
71
+ Requires-Dist: tornado; extra == "backend"
73
72
 
74
73
  # Anyscale
75
74
 
@@ -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=0iSmKKsDFV0i2eRmVQ1W60Sgh2g-vPeBoBw3ra3m6eI,42782
31
- anyscale/version.py,sha256=sJPJJpFuAngUBVvK1BAPMS56myKG9N28w8dV3QoQ7kU,24
31
+ anyscale/version.py,sha256=sHaZNqGHE9lTBrft7ZcYS8Fs3K1g_TBgPrb4Kd0D5F8,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
@@ -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=1pK6EJ2CeaFczKSc26N2Ym6ImSuUlFUeEk9p8dIygyg,112728
109
+ anyscale/client/README.md,sha256=uKUb5CZohHGlShdpbafVOGFvP7mU2jyedsDhu9y-k9Y,112812
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=zDoZC3zvutRrjQmwgPcR2nsKVxfO2U4Tx9eIzM08Bvg,50830
117
+ anyscale/client/openapi_client/__init__.py,sha256=FRklyxL5VP9yuGnwqTvX90AYZPg7pfnqKNCd1Bo4mZQ,50938
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
123
  anyscale/client/openapi_client/api/default_api.py,sha256=oTddRA3EjTR7JAz2Bfn0qIIOCrl2qtqQqPsV3NHrUm8,1808734
124
- anyscale/client/openapi_client/models/__init__.py,sha256=XKA3Dmnmnq2zbL0430kJcPmp5DFGeDbVPkKVjPJLA-E,50340
124
+ anyscale/client/openapi_client/models/__init__.py,sha256=7BbR1TeqS3aHejYjGRNrwgpGI0Zrdg4IU_LvZImTTkU,50448
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
@@ -369,9 +369,10 @@ anyscale/client/openapi_client/models/delete_machine_request.py,sha256=ojQo15olj
369
369
  anyscale/client/openapi_client/models/deleted_platform_fine_tuned_model.py,sha256=taeiJGnAwTWIU222goX2j8nHE9OsSuS-8EsGv4LJUho,4451
370
370
  anyscale/client/openapi_client/models/deletedplatformfinetunedmodel_response.py,sha256=oiprY6NmSneyQwX8KIlMHlKAfAuujHZeVmddOpyeydQ,3737
371
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
372
+ anyscale/client/openapi_client/models/describe_machine_pool_machines_filters.py,sha256=MLReaLzoyexvdZgZm-iUOQfqzhFD_p4hX5xVS8f80Io,3890
373
+ anyscale/client/openapi_client/models/describe_machine_pool_machines_request.py,sha256=2hDulfPYPu92gM_3-2z53sHwnKj3tDChtkA1UJdLbSk,4924
373
374
  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
375
+ anyscale/client/openapi_client/models/describe_machine_pool_requests_request.py,sha256=HfYseu-BjeZpbAb49AlFeH-be8mTSvYmOXJpHZm_XHc,5065
375
376
  anyscale/client/openapi_client/models/describe_machine_pool_response.py,sha256=dtcGBS48Vz07CbIVPfeU4XBS9aQMpt9ADEhG_KCNl48,3887
376
377
  anyscale/client/openapi_client/models/describe_system_workload_response.py,sha256=6BkN7_HAuCaRqxpq4ub8rl8VhwmDWTDgOjXN6ll-6Nc,7517
377
378
  anyscale/client/openapi_client/models/describemachinepoolresponse_response.py,sha256=OmIz6PJBcV4VnNHf0PxnuwOg1EMop2aoi6Wv8N1OVD4,3715
@@ -778,7 +779,7 @@ anyscale/commands/llm/models_commands.py,sha256=xwkh56TyUsY_lTMzuerFmSkL-jmOor1j
778
779
  anyscale/compute_config/__init__.py,sha256=p2Io4L9DOkoPskCBXLaN8V-D61VOAVuAdpsaXzWh8Ic,3161
779
780
  anyscale/compute_config/commands.py,sha256=jSU-BemFgr085b7r9-sA2_m63Oa2pN-6GeFJxaSWtKU,4266
780
781
  anyscale/compute_config/models.py,sha256=OzJK7UM64LDZCrvdpX57LAhAWQZ1KH6gKGOXX-uUopQ,21412
781
- anyscale/compute_config/_private/compute_config_sdk.py,sha256=rG82k4J8yCyvC6Oomw6-KKEfMc1Zcysa2m1FdWxIK2A,17820
782
+ anyscale/compute_config/_private/compute_config_sdk.py,sha256=adEt_WuI7m0HhoND6fuJQ4gKt0Mb1UXplMnJDIJzu14,17927
782
783
  anyscale/connect_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
783
784
  anyscale/connect_utils/prepare_cluster.py,sha256=uxBjxKuzcgbQdzGT0VWPpO_Iljeep8UcpQzc0oOvvVc,41792
784
785
  anyscale/connect_utils/project.py,sha256=LwcGqTQS_mZp6C79NMoMhmcWGR9j2C1Zi1S4PnPNzhQ,12239
@@ -786,7 +787,7 @@ anyscale/connect_utils/start_interactive_session.py,sha256=DbuIK2wuWofmbwJ9MLbsb
786
787
  anyscale/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
787
788
  anyscale/controllers/auth_controller.py,sha256=hDY2sPvUP8pvh8PnlDYH5rCHjQes2v3b_KBVjMbrzeE,5127
788
789
  anyscale/controllers/base_controller.py,sha256=1QFJoScFUV7YTzpKarhwPOc1SvI-xqX3TZmwxKonW6I,1998
789
- anyscale/controllers/cloud_controller.py,sha256=YG4AJfux-vJw6arbUVWl40PJMNk3PjbHb7xCxTopgZM,178536
790
+ anyscale/controllers/cloud_controller.py,sha256=n236oQaTe5WxT09JJixfsMx-EyCxkH907Lw3D6FK6JY,178604
790
791
  anyscale/controllers/cloud_functional_verification_controller.py,sha256=YsEfdHT9hPtxy_3a5Q62UlRXW0iFJ1lVS4IZ_NHoemE,33399
791
792
  anyscale/controllers/cluster_controller.py,sha256=Sb5wVjrjpycg5iqmENAVtZ4iy9Kr6kM97_ck-KH85LM,28745
792
793
  anyscale/controllers/cluster_env_controller.py,sha256=JalGzcmnFtMHefYL5U6ijMY3nX6W6BsMEfZSMtgBvtU,8048
@@ -1092,10 +1093,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
1092
1093
  anyscale/workspace/commands.py,sha256=b1sqNseoPj-1VXznqQOLe0V_a663bOTvJX-TaOMJa1Y,14590
1093
1094
  anyscale/workspace/models.py,sha256=HBvM9ybOdJjqQeViQ30C36gdKT_AwH_JHPoL-DTkESo,9841
1094
1095
  anyscale/workspace/_private/workspace_sdk.py,sha256=2CMeYfJt0UtIFCocDn1ukw1iI5esKHdopLe6duEs-qE,27599
1095
- anyscale-0.26.42.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1096
- anyscale-0.26.42.dist-info/METADATA,sha256=NY30T092PjHIB_Mr7ktEoFW1lUtrcq5WFPRi9C1ULkk,3055
1097
- anyscale-0.26.42.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1098
- anyscale-0.26.42.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
1099
- anyscale-0.26.42.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1100
- anyscale-0.26.42.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1101
- anyscale-0.26.42.dist-info/RECORD,,
1096
+ anyscale-0.26.43.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1097
+ anyscale-0.26.43.dist-info/METADATA,sha256=wy0pA9tunDPyk4lo-h3vuNSUxp4CvNNdx9AMg10-G1M,3001
1098
+ anyscale-0.26.43.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1099
+ anyscale-0.26.43.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
1100
+ anyscale-0.26.43.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1101
+ anyscale-0.26.43.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1102
+ anyscale-0.26.43.dist-info/RECORD,,