anyscale 0.26.37__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 (23) hide show
  1. anyscale/_private/docgen/models.md +1 -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/requeststateinfo_list_response.py +147 -0
  11. anyscale/sdk/anyscale_client/__init__.py +0 -1
  12. anyscale/sdk/anyscale_client/models/__init__.py +0 -1
  13. anyscale/sdk/anyscale_client/models/cloud_deployment_compute_config.py +5 -5
  14. anyscale/version.py +1 -1
  15. {anyscale-0.26.37.dist-info → anyscale-0.26.38.dist-info}/METADATA +1 -1
  16. {anyscale-0.26.37.dist-info → anyscale-0.26.38.dist-info}/RECORD +21 -19
  17. anyscale/client/openapi_client/models/cloud_deployment_selector.py +0 -206
  18. anyscale/sdk/anyscale_client/models/cloud_deployment_selector.py +0 -206
  19. {anyscale-0.26.37.dist-info → anyscale-0.26.38.dist-info}/LICENSE +0 -0
  20. {anyscale-0.26.37.dist-info → anyscale-0.26.38.dist-info}/NOTICE +0 -0
  21. {anyscale-0.26.37.dist-info → anyscale-0.26.38.dist-info}/WHEEL +0 -0
  22. {anyscale-0.26.37.dist-info → anyscale-0.26.38.dist-info}/entry_points.txt +0 -0
  23. {anyscale-0.26.37.dist-info → anyscale-0.26.38.dist-info}/top_level.txt +0 -0
@@ -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': '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
anyscale/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.26.37"
1
+ __version__ = "0.26.38"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: anyscale
3
- Version: 0.26.37
3
+ Version: 0.26.38
4
4
  Summary: Command Line Interface for Anyscale
5
5
  Author: Anyscale Inc.
6
6
  License: AS License
@@ -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=0oZ4sVYsXoNWPeoRVI4uLkxuL5LwE8Ph-F25MXMJ_lU,24
31
+ anyscale/version.py,sha256=T9EcVGuAa84saTU3BB9eVaF8TdJCislPCFleKXw9y7A,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=uOhlb1TEj2HRcEBqk9ZLdswVONBB-Grp_MC0w035MII,296010
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=YxposNbmVkw00WhZBNbvT6JOu09MIvZbz4g4vN0yIkI,110900
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=6HirUawZcEJ1I7_z-11yxTOkuPxiN7UXR2nYtsaQ7P0,50162
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=v6-qY7Whmm9OZtAxtghPKhFZ66nxAZ0VcKXxA6k-TUc,1776637
124
- anyscale/client/openapi_client/models/__init__.py,sha256=Ax4GnQuBALzMDQ7ZvIU2bH5a5j_4NrO4nViXHrvEZYU,49672
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
@@ -197,9 +197,8 @@ anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_response.p
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=ZTecoOP07ZnYxwF2joFQQNyKkGUgc0SxH9-NQGTfvsE,11124
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=Lrl9P4QhPLeOejHgUv_PHkcWDhxhsw_tmOk6KoYU4yM,13133
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=huOIUf-73KGsSOs_MQTi8xEtYAIenqZ3BbrXl37_0Z0,12635
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=H4yD-6LgUA9raBneT2Q7ICoDoQVbliw56A55-mDrmJs,11122
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
@@ -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.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,,
1091
+ anyscale-0.26.38.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1092
+ anyscale-0.26.38.dist-info/METADATA,sha256=cHOAPzcNRmrya8iTk1KT_befPMKZygrCVuVw_gv6l1Y,3269
1093
+ anyscale-0.26.38.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1094
+ anyscale-0.26.38.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
1095
+ anyscale-0.26.38.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1096
+ anyscale-0.26.38.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1097
+ anyscale-0.26.38.dist-info/RECORD,,