anyscale 0.26.48__py3-none-any.whl → 0.26.50__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.
@@ -0,0 +1,121 @@
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 MetricsQueryResponse(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
+ 'data': 'object'
37
+ }
38
+
39
+ attribute_map = {
40
+ 'data': 'data'
41
+ }
42
+
43
+ def __init__(self, data=None, local_vars_configuration=None): # noqa: E501
44
+ """MetricsQueryResponse - 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._data = None
50
+ self.discriminator = None
51
+
52
+ self.data = data
53
+
54
+ @property
55
+ def data(self):
56
+ """Gets the data of this MetricsQueryResponse. # noqa: E501
57
+
58
+
59
+ :return: The data of this MetricsQueryResponse. # noqa: E501
60
+ :rtype: object
61
+ """
62
+ return self._data
63
+
64
+ @data.setter
65
+ def data(self, data):
66
+ """Sets the data of this MetricsQueryResponse.
67
+
68
+
69
+ :param data: The data of this MetricsQueryResponse. # noqa: E501
70
+ :type: object
71
+ """
72
+ if self.local_vars_configuration.client_side_validation and data is None: # noqa: E501
73
+ raise ValueError("Invalid value for `data`, must not be `None`") # noqa: E501
74
+
75
+ self._data = data
76
+
77
+ def to_dict(self):
78
+ """Returns the model properties as a dict"""
79
+ result = {}
80
+
81
+ for attr, _ in six.iteritems(self.openapi_types):
82
+ value = getattr(self, attr)
83
+ if isinstance(value, list):
84
+ result[attr] = list(map(
85
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
86
+ value
87
+ ))
88
+ elif hasattr(value, "to_dict"):
89
+ result[attr] = value.to_dict()
90
+ elif isinstance(value, dict):
91
+ result[attr] = dict(map(
92
+ lambda item: (item[0], item[1].to_dict())
93
+ if hasattr(item[1], "to_dict") else item,
94
+ value.items()
95
+ ))
96
+ else:
97
+ result[attr] = value
98
+
99
+ return result
100
+
101
+ def to_str(self):
102
+ """Returns the string representation of the model"""
103
+ return pprint.pformat(self.to_dict())
104
+
105
+ def __repr__(self):
106
+ """For `print` and `pprint`"""
107
+ return self.to_str()
108
+
109
+ def __eq__(self, other):
110
+ """Returns true if both objects are equal"""
111
+ if not isinstance(other, MetricsQueryResponse):
112
+ return False
113
+
114
+ return self.to_dict() == other.to_dict()
115
+
116
+ def __ne__(self, other):
117
+ """Returns true if both objects are not equal"""
118
+ if not isinstance(other, MetricsQueryResponse):
119
+ return True
120
+
121
+ return self.to_dict() != other.to_dict()
@@ -18,7 +18,7 @@ import six
18
18
  from openapi_client.configuration import Configuration
19
19
 
20
20
 
21
- class ClouddeploymentResponse(object):
21
+ class MetricsqueryresponseResponse(object):
22
22
  """NOTE: This class is auto generated by OpenAPI Generator.
23
23
  Ref: https://openapi-generator.tech
24
24
 
@@ -33,7 +33,7 @@ class ClouddeploymentResponse(object):
33
33
  and the value is json key in definition.
34
34
  """
35
35
  openapi_types = {
36
- 'result': 'CloudDeployment'
36
+ 'result': 'MetricsQueryResponse'
37
37
  }
38
38
 
39
39
  attribute_map = {
@@ -41,7 +41,7 @@ class ClouddeploymentResponse(object):
41
41
  }
42
42
 
43
43
  def __init__(self, result=None, local_vars_configuration=None): # noqa: E501
44
- """ClouddeploymentResponse - a model defined in OpenAPI""" # noqa: E501
44
+ """MetricsqueryresponseResponse - a model defined in OpenAPI""" # noqa: E501
45
45
  if local_vars_configuration is None:
46
46
  local_vars_configuration = Configuration()
47
47
  self.local_vars_configuration = local_vars_configuration
@@ -53,21 +53,21 @@ class ClouddeploymentResponse(object):
53
53
 
54
54
  @property
55
55
  def result(self):
56
- """Gets the result of this ClouddeploymentResponse. # noqa: E501
56
+ """Gets the result of this MetricsqueryresponseResponse. # noqa: E501
57
57
 
58
58
 
59
- :return: The result of this ClouddeploymentResponse. # noqa: E501
60
- :rtype: CloudDeployment
59
+ :return: The result of this MetricsqueryresponseResponse. # noqa: E501
60
+ :rtype: MetricsQueryResponse
61
61
  """
62
62
  return self._result
63
63
 
64
64
  @result.setter
65
65
  def result(self, result):
66
- """Sets the result of this ClouddeploymentResponse.
66
+ """Sets the result of this MetricsqueryresponseResponse.
67
67
 
68
68
 
69
- :param result: The result of this ClouddeploymentResponse. # noqa: E501
70
- :type: CloudDeployment
69
+ :param result: The result of this MetricsqueryresponseResponse. # noqa: E501
70
+ :type: MetricsQueryResponse
71
71
  """
72
72
  if self.local_vars_configuration.client_side_validation and result is None: # noqa: E501
73
73
  raise ValueError("Invalid value for `result`, must not be `None`") # noqa: E501
@@ -108,14 +108,14 @@ class ClouddeploymentResponse(object):
108
108
 
109
109
  def __eq__(self, other):
110
110
  """Returns true if both objects are equal"""
111
- if not isinstance(other, ClouddeploymentResponse):
111
+ if not isinstance(other, MetricsqueryresponseResponse):
112
112
  return False
113
113
 
114
114
  return self.to_dict() == other.to_dict()
115
115
 
116
116
  def __ne__(self, other):
117
117
  """Returns true if both objects are not equal"""
118
- if not isinstance(other, ClouddeploymentResponse):
118
+ if not isinstance(other, MetricsqueryresponseResponse):
119
119
  return True
120
120
 
121
121
  return self.to_dict() != other.to_dict()
@@ -259,6 +259,7 @@ def cloud_config_group() -> None:
259
259
  help="Create a new cloud deployment in an existing cloud.",
260
260
  cls=AnyscaleCommand,
261
261
  example=command_examples.CLOUD_DEPLOYMENT_CREATE_EXAMPLE,
262
+ is_alpha=True,
262
263
  )
263
264
  @click.option(
264
265
  "--cloud",
@@ -292,6 +293,7 @@ def cloud_deployment_create(
292
293
  help="Get a cloud deployment for a cloud.",
293
294
  cls=AnyscaleCommand,
294
295
  example=command_examples.CLOUD_DEPLOYMENT_GET_EXAMPLE,
296
+ is_alpha=True,
295
297
  )
296
298
  @click.option(
297
299
  "--cloud",
@@ -318,6 +320,7 @@ def cloud_deployment_get(cloud: str, deployment: Optional[str]) -> None:
318
320
  help="Update a cloud deployment in an existing cloud.",
319
321
  cls=AnyscaleCommand,
320
322
  example=command_examples.CLOUD_DEPLOYMENT_UPDATE_EXAMPLE,
323
+ is_alpha=True,
321
324
  )
322
325
  @click.option(
323
326
  "--cloud",
@@ -354,6 +357,7 @@ def cloud_deployment_update(
354
357
  help="Remove a cloud deployment from an existing cloud.",
355
358
  cls=AnyscaleCommand,
356
359
  example=command_examples.CLOUD_DEPLOYMENT_DELETE_EXAMPLE,
360
+ is_alpha=True,
357
361
  )
358
362
  @click.option(
359
363
  "--cloud",
@@ -380,7 +384,6 @@ def cloud_deployment_delete(cloud: str, deployment: str, yes: bool,) -> None:
380
384
  @cloud_cli.command(
381
385
  name="update",
382
386
  help=(
383
- # TODO(janet): Update this help text when the -o option is un-hidden.
384
387
  "Update a managed cloud to the latest configuration. Only applicable for anyscale managed clouds."
385
388
  ),
386
389
  )
@@ -28,6 +28,9 @@ from anyscale.cli_logger import BlockLogger
28
28
  from anyscale.client.openapi_client.models.cloud_deployment import CloudDeployment
29
29
  from anyscale.client.openapi_client.models.cloud_providers import CloudProviders
30
30
  from anyscale.client.openapi_client.models.file_storage import FileStorage
31
+ from anyscale.client.openapi_client.models.kubernetes_config import (
32
+ KubernetesConfig as OpenAPIKubernetesConfig,
33
+ )
31
34
  from anyscale.controllers.cloud_file_storage_utils import verify_file_storage_exists
32
35
 
33
36
 
@@ -666,12 +669,12 @@ class OperatorVerifier:
666
669
  def verify_operator_identity(
667
670
  self,
668
671
  operator_data: OperatorData,
669
- kubernetes_config: Dict,
672
+ kubernetes_config: OpenAPIKubernetesConfig,
670
673
  cloud_provider: Optional[CloudProviders],
671
674
  ) -> bool:
672
675
  """Verify operator identity using pre-fetched config data."""
673
676
  # Validate kubernetes_config contents
674
- expected_identity = kubernetes_config.get("anyscale_operator_iam_identity")
677
+ expected_identity = kubernetes_config.anyscale_operator_iam_identity
675
678
  if not expected_identity:
676
679
  self.log.error(
677
680
  "Missing 'anyscale_operator_iam_identity' in kubernetes config"
@@ -16,6 +16,9 @@ class RequestHeaders(str, Enum):
16
16
  # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Authorization
17
17
  AUTHORIZATION = "Authorization"
18
18
 
19
+ # Cloud ID header for authentication clusters
20
+ CLOUD_ID = "X-Anyscale-Cloud-Id"
21
+
19
22
  # Identifies type of client (Web, SDK, CLI, etc.)
20
23
  CLIENT = "X-Anyscale-Client"
21
24
 
anyscale/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.26.48"
1
+ __version__ = "0.26.50"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: anyscale
3
- Version: 0.26.48
3
+ Version: 0.26.50
4
4
  Summary: Command Line Interface for Anyscale
5
5
  Author: Anyscale Inc.
6
6
  License: AS License
@@ -28,15 +28,15 @@ anyscale/snapshot.py,sha256=UGJT5C1s_4xmQxjWODK5DFpGxHRBX5jOCdSCqXESH8E,1685
28
28
  anyscale/tables.py,sha256=TV4F2uLnwehvbkAfaP7iuLlT2wLIo6ORH2LVdRGXW5g,2840
29
29
  anyscale/telemetry.py,sha256=U90C2Vgx48z9PMTI6EbzHFbP3jWnDUutbIfMPBb8-SI,14711
30
30
  anyscale/util.py,sha256=0iSmKKsDFV0i2eRmVQ1W60Sgh2g-vPeBoBw3ra3m6eI,42782
31
- anyscale/version.py,sha256=w9EKmcdtgPTJijvkzQDvuZQ263vBII9Ztt_ADLTPtR0,24
31
+ anyscale/version.py,sha256=YwMr6cD6xkZNL9FjG4Gfq3KaL5IIHaRS9TqPvcQ6pSE,24
32
32
  anyscale/workspace_utils.py,sha256=OViE88CnIF5ruVxd3kazQ0Mf2BxqtMq6wx-XQ5A2cp8,1204
33
- anyscale/_private/anyscale_client/README.md,sha256=gk8obk7kqg6VWoUHcqDMwJULh35tYKEZFC0UF_dixGA,718
33
+ anyscale/_private/anyscale_client/README.md,sha256=zKSxkDTTNjrty018PaCsV22LNYDk9AZ7j0JKxOLAxvE,3732
34
34
  anyscale/_private/anyscale_client/__init__.py,sha256=807Blx3RHQeS8BmKZcsOQQ4dYoKlCnpm6Bdsif2CrHg,337
35
- anyscale/_private/anyscale_client/anyscale_client.py,sha256=FY8rV2xQCUip_sMCVfNYXOAYwk_u50aN-sxEdN1YvpA,75329
35
+ anyscale/_private/anyscale_client/anyscale_client.py,sha256=r8me78h7bUPQRyFNu2Z570SP6rbuG05Q3wouto-P1Rs,75639
36
36
  anyscale/_private/anyscale_client/common.py,sha256=IYHcfcYtojsjAuR2oaSCn3xKIjT2AjWF0i29n_peftA,25361
37
37
  anyscale/_private/anyscale_client/fake_anyscale_client.py,sha256=XWnuS8EJ8Lo_vIPovoJ6AjftTr_f-ZwgzjLyURa-9rQ,57850
38
38
  anyscale/_private/docgen/README.md,sha256=z0tj8Jy0KmxWJBQMHKyzXGX_cYYgI8m5DCD6KCMU8oI,762
39
- anyscale/_private/docgen/__main__.py,sha256=pygSgxrOvqAIgqu8sRwlJhRKM-49PvbTkYov41auIIE,24748
39
+ anyscale/_private/docgen/__main__.py,sha256=ZY971H3B7yTmNKckHUprz6mUjXFznSrDh-bHS9qYq6s,25032
40
40
  anyscale/_private/docgen/api.md,sha256=VKW293yubbeUG17A38wYuaONKDL5XICMguyfZ2xkIyY,27495
41
41
  anyscale/_private/docgen/generator.py,sha256=omKNavkjvRJ-hpc0O7tM1UgURm5cZYdnWwinXFPQbcI,22543
42
42
  anyscale/_private/docgen/generator_legacy.py,sha256=f6eJzQXjkqGEOWsKPIthl8Bx1yh5MHidhEuEHN-nukk,4853
@@ -51,7 +51,7 @@ anyscale/_private/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
51
51
  anyscale/_private/utils/progress_util.py,sha256=7gOI91b8tKsS5dEtbhoenzvsl8408rvw6fhK90DgIXg,2303
52
52
  anyscale/_private/workload/__init__.py,sha256=_wOZsawqp5NZV9He502e2gFSM66hjqxhxNZTqxnrMws,134
53
53
  anyscale/_private/workload/workload_config.py,sha256=ilKbG93gGKcN8HSGz6kR0aqB5PCuq1NHWImIg_Le8R4,8920
54
- anyscale/_private/workload/workload_sdk.py,sha256=oX3p6Dz2fTsC5xHFIN3FWb4RxRBIEXWRXRfd2RSmhpg,14369
54
+ anyscale/_private/workload/workload_sdk.py,sha256=gFQqN4tgulvQ73JFIILNAOhcQF5iED4QugsWw4tUmPQ,14425
55
55
  anyscale/aggregated_instance_usage/__init__.py,sha256=mOreJrOZ87NAF3GD2ZEJ48sSwkUDKcTOPa9_DsRBZY8,1290
56
56
  anyscale/aggregated_instance_usage/commands.py,sha256=VonXROdszXPk4fUBADwMoUDxtYSenNO3XyyoHUQdYf0,1337
57
57
  anyscale/aggregated_instance_usage/models.py,sha256=600C2wssovjQkj1KQwzpK-jzXRAzDTxOGcZd_qD9wQ0,2871
@@ -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=a7WRhgMnQcrUuvAmR3ad6JWisSQmNNpEPVVl2rFlbas,115077
109
+ anyscale/client/README.md,sha256=st5IPaeuNGo81hxvz3o6bvjESLHlmrG0jayEy5gwbsc,115609
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=gSlMkdZIoheEvdyY6pYV6bI0XsrwvK5qFVsxgHuDqAM,51795
117
+ anyscale/client/openapi_client/__init__.py,sha256=Ov8bXBAWfOiP9VFOdalry5c86oT3sBMseDQgIxluMgY,52070
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=LySbqt1kukr5dFNK8cqI7wJ7obNdLvb-HlUl0QdiD1U,1846054
124
- anyscale/client/openapi_client/models/__init__.py,sha256=i81mDa4ASPjLZG-YNGIc8o0_ATveOr6Z0bqvOxyhSj8,51305
123
+ anyscale/client/openapi_client/api/default_api.py,sha256=m2om4Ebc8EtVZJjZDO4BODx36JW042Ez1eevH-YoZi8,1864065
124
+ anyscale/client/openapi_client/models/__init__.py,sha256=vPm7p-GuqxDksMCS-9oaTub5QDrx9-Wg16MYzOeTyiU,51580
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
@@ -224,7 +224,6 @@ anyscale/client/openapi_client/models/cloudcollaborator_list_response.py,sha256=
224
224
  anyscale/client/openapi_client/models/clouddatabucketpresigneduploadinfo_response.py,sha256=Oqayf777CsQTa5mU0AEsu_54VNDYL7kpxgn5Icn8jOg,3792
225
225
  anyscale/client/openapi_client/models/clouddatabucketpresignedurlresponse_response.py,sha256=dNN9ed8MqR0wA45kniuFPPBTiMx_fdoVlarg5lS9oGw,3803
226
226
  anyscale/client/openapi_client/models/clouddeployment_list_response.py,sha256=dUAeCsqyvzyubsgfCfB0y_H8YlaCZpoTnghJvDp0fD8,4422
227
- anyscale/client/openapi_client/models/clouddeployment_response.py,sha256=axJRmEklVXvJCj9tgjzqlA7VqEPqQ1VW4ZQfbbcNB3Q,3583
228
227
  anyscale/client/openapi_client/models/clouddeploymentconfig_response.py,sha256=0_eUWAir01cMeA32XNqkL-NKAEhGJscl9R-yEp0dQAY,3649
229
228
  anyscale/client/openapi_client/models/cloudoverviewdashboard_response.py,sha256=87-kKGf6T50b0QjYYo9Vek5P0O71pc7sly8flWQmorA,3660
230
229
  anyscale/client/openapi_client/models/cloudregionandzones_response.py,sha256=SHlXZwLnQTkvpUYVj8JaPxOYZ80yB9y_MO-NCiNwCs8,3627
@@ -323,6 +322,7 @@ anyscale/client/openapi_client/models/dataset_upload.py,sha256=rOHyuUSC_14OlJU2I
323
322
  anyscale/client/openapi_client/models/datasetupload_response.py,sha256=0c090SMm7H---lZkx9lPHAimah54Nk1hdwJK7pd82Mg,3561
324
323
  anyscale/client/openapi_client/models/decorated_application_template.py,sha256=p8td6V3VQ0NqW4mnabM4W7EughggIduIo8Xv7jUZgEE,16407
325
324
  anyscale/client/openapi_client/models/decorated_build.py,sha256=wel4rROizNrKxMXz5BrmhMSgO04XQrerLPLopsuEXuo,22984
325
+ anyscale/client/openapi_client/models/decorated_cloud_deployment.py,sha256=E47Hg6PEK5TGkaC-5c6-5gxuBEpAlVXi71_SmWeNNPM,15630
326
326
  anyscale/client/openapi_client/models/decorated_compute_template.py,sha256=7bDVlmudYB-CPqqONBfpFc7-B2MItWEnsxefFlcSVUo,14186
327
327
  anyscale/client/openapi_client/models/decorated_compute_template_config.py,sha256=TjiPN3e55YHAQG6W0yVeSfV_-og9qvnsnty5k-L5vhs,21362
328
328
  anyscale/client/openapi_client/models/decorated_interactive_session.py,sha256=S2m6CuKL-yKYPSQFE5wHIZMBX-sNAG-6Wy2JnQ2sfVo,24575
@@ -343,6 +343,7 @@ anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response
343
343
  anyscale/client/openapi_client/models/decoratedapplicationtemplate_response.py,sha256=CgwU7WhZwIARVmYdw8vnERm_PSgaQnOh1Nev-2MWKg4,3726
344
344
  anyscale/client/openapi_client/models/decoratedbuild_list_response.py,sha256=JqSAdvm2mQpCrxyd0sJ4RtGfvub9OQz5WxpudzO-6jg,4407
345
345
  anyscale/client/openapi_client/models/decoratedbuild_response.py,sha256=S90M8FU_KSV4vsPwvr40ZfYdIlyHEWiOPGWRoyvZ8vU,3572
346
+ anyscale/client/openapi_client/models/decoratedclouddeployment_response.py,sha256=egCbMIxC7fFeUaolr1y2Rg9ZN0i8yd3QMi1Q3L84cwY,3682
346
347
  anyscale/client/openapi_client/models/decoratedcomputetemplate_list_response.py,sha256=Alfs5DAYxFHVJmxBl598-UmhZII1HDrTTcQHt2R70is,4557
347
348
  anyscale/client/openapi_client/models/decoratedcomputetemplate_response.py,sha256=y6V6CUYnB-UwPMZl-W9NU6GetkbzRpxanG4oViEFymA,3682
348
349
  anyscale/client/openapi_client/models/decoratedinteractivesession_list_response.py,sha256=LGAK6Oy3NtZ-2tY5xH6ENeWlQieHvcrUF6N2YyX4Id8,4602
@@ -488,6 +489,8 @@ anyscale/client/openapi_client/models/machine_state_info.py,sha256=vTwjL3buXuT7Q
488
489
  anyscale/client/openapi_client/models/machinepoolsearchresult_list_response.py,sha256=ipNZbR7ak2JZm5kkDLf-1w52b0packN8ZAmOzANzAec,4542
489
490
  anyscale/client/openapi_client/models/machinestateinfo_list_response.py,sha256=lelg5QcblkfQjRAHoTDGKRtcp8D0EReIFOTPP7I0MZo,4437
490
491
  anyscale/client/openapi_client/models/metric.py,sha256=q5GOXJFhGdpTj_Gg-V05Pc1E_VjjjKB8OZEV0Qof9G0,8921
492
+ anyscale/client/openapi_client/models/metrics_query_response.py,sha256=-XA-ICSMj4yOXRPw_k7F5F8oAhiO3hLy4otafFI4HFg,3490
493
+ anyscale/client/openapi_client/models/metricsqueryresponse_response.py,sha256=lD1Vy0AA0fPuHcYScfXUqDRCDoqj1oJ2HJyxNHJc5Dw,3638
491
494
  anyscale/client/openapi_client/models/metronome_customer_info_model.py,sha256=TNHzxUfadF8RDFkhNDSsasgXEEv0hjMoyrsFVKx50zM,4847
492
495
  anyscale/client/openapi_client/models/metronome_dashboard_type.py,sha256=maFESxv00_Nj3hL_snx52zehYzGMElEdtMmcQxqqJ3g,2902
493
496
  anyscale/client/openapi_client/models/metronomecustomerinfomodel_list_response.py,sha256=X37CbQsoSE85ciDZZioX7te1iBcb5Tw-Iccyw77Oous,4587
@@ -749,7 +752,7 @@ anyscale/cloud/_private/cloud_sdk.py,sha256=5TBGyGSjMI4jLOnSle1WWC6za0psP9xgTGWU
749
752
  anyscale/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
750
753
  anyscale/commands/aggregated_instance_usage_commands.py,sha256=TRP1X3hdIWbKg9V20VtazlDXsYAeV--M0DH3-Z5tnj4,2293
751
754
  anyscale/commands/auth_commands.py,sha256=X1g6Yu9kqgPb4HLODlZTYEk8G5AVLeyizPIgagWx-p0,1026
752
- anyscale/commands/cloud_commands.py,sha256=cz9hu1LTm507nIpoP45JHAqm5DHJVxD8187z1Zm4ycw,51256
755
+ anyscale/commands/cloud_commands.py,sha256=m1vtB965x28fTqllGTIyZ4GxhilTb8HIp-0_QKbbSzw,51254
753
756
  anyscale/commands/cloud_commands_util.py,sha256=d-6TSZ_syrGkZ3Fc1uRX6jG4dqYMebNkBNpYLojOJFg,247
754
757
  anyscale/commands/cluster_commands.py,sha256=taNcffyFfqJ1MgOQd0cz9kzRXWFTdp-wfLPM4l_2tBc,13487
755
758
  anyscale/commands/cluster_env_commands.py,sha256=KNWylyE8Ew1sDi7yu2Tp4RLcRu2_KJJJIzVGRyPflJo,3899
@@ -804,7 +807,7 @@ anyscale/controllers/config_controller.py,sha256=VsfdARHxo4tMLfeiYkTNOMGW3sIcNhV
804
807
  anyscale/controllers/experimental_integrations_controller.py,sha256=_22_hAQCJIMg3E10s8xajoFF6Lf1HqVlAdAVt0Rh2DY,3889
805
808
  anyscale/controllers/job_controller.py,sha256=sNQGzSLtp6e8PSbrmMrW_dp3pYytS8KCGcE-YjaNz5I,25425
806
809
  anyscale/controllers/jobs_bg_controller.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
807
- anyscale/controllers/kubernetes_verifier.py,sha256=bOcvkOVmIht3-pXskF5bsHcAcR_PQGBPuYvj1SjoREI,58593
810
+ anyscale/controllers/kubernetes_verifier.py,sha256=p5H1fcmQB9eAVEV9qWnvaHf4lbyrNS7z-zv3ctACqBg,58726
808
811
  anyscale/controllers/list_controller.py,sha256=oaOS6oo2TKPpXhGjs_laxuIVKinv3FwYfHt1CIzeTuU,11621
809
812
  anyscale/controllers/logs_controller.py,sha256=x5GBUVdPYhbWRA3RfMQZJi3hBS2i35RkgzROfmY47h4,17647
810
813
  anyscale/controllers/machine_controller.py,sha256=WauNi7Spzt2TFZrIN4PwULzgJZBVDFlytzFqpDQ106w,1188
@@ -1033,7 +1036,7 @@ anyscale/shared_anyscale_utils/conf.py,sha256=nn5Uh-Aj8qShfnFBciKDUarnaGUGo1Xptf
1033
1036
  anyscale/shared_anyscale_utils/constants.py,sha256=wtk4r_dIuKVUEeziugYqsZrJv27qxLkMtaa3FJ3SFqo,197
1034
1037
  anyscale/shared_anyscale_utils/default_anyscale_aws.yaml,sha256=wU8xPUQ6sMtVB5q3QYYGYlhCKkI5QDtg8LvH53hQ6WE,1650
1035
1038
  anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml,sha256=rmwavzx7aTsSPio-jmYhdvfkHCuu8BOkNOuMSKMgBRE,1817
1036
- anyscale/shared_anyscale_utils/headers.py,sha256=KtrK5uyzVd67UPFoH9bOsi_KAQaakgff7akVzSsuL1Q,1140
1039
+ anyscale/shared_anyscale_utils/headers.py,sha256=JfyGJJGszaH1_hByz_2X0SCefi3S-q_xaQQw-FBWUkM,1228
1037
1040
  anyscale/shared_anyscale_utils/latest_ray_version.py,sha256=GVJFc7HX2P80XYdRiusLwij8Foy2qBaEUDsQK-0EihY,163
1038
1041
  anyscale/shared_anyscale_utils/project.py,sha256=7gQ6RXWV1bQEWRN5hloj-U3DxmEw6LEEhGoF0oWoAm8,476
1039
1042
  anyscale/shared_anyscale_utils/test_util.py,sha256=bYkCdHV9ZTlFrvHOtub5vivj4TXCct1WECzIPTRMU1I,657
@@ -1088,10 +1091,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
1088
1091
  anyscale/workspace/commands.py,sha256=b1sqNseoPj-1VXznqQOLe0V_a663bOTvJX-TaOMJa1Y,14590
1089
1092
  anyscale/workspace/models.py,sha256=N2vHfoKzqvx1kVvbMVMcn0tKAiRab52rp0aQACS0RvQ,10044
1090
1093
  anyscale/workspace/_private/workspace_sdk.py,sha256=2CMeYfJt0UtIFCocDn1ukw1iI5esKHdopLe6duEs-qE,27599
1091
- anyscale-0.26.48.dist-info/licenses/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1092
- anyscale-0.26.48.dist-info/licenses/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1093
- anyscale-0.26.48.dist-info/METADATA,sha256=sfNT-_uOC6JKw0GtU8dZOcKtdCRMGKUfWpD-fzT0BGU,3231
1094
- anyscale-0.26.48.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1095
- anyscale-0.26.48.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1096
- anyscale-0.26.48.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1097
- anyscale-0.26.48.dist-info/RECORD,,
1094
+ anyscale-0.26.50.dist-info/licenses/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1095
+ anyscale-0.26.50.dist-info/licenses/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1096
+ anyscale-0.26.50.dist-info/METADATA,sha256=WSkz_1AM7SQU2UwzYx6sAxcvUZSnupWkOXFgTwyPm8E,3231
1097
+ anyscale-0.26.50.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1098
+ anyscale-0.26.50.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1099
+ anyscale-0.26.50.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1100
+ anyscale-0.26.50.dist-info/RECORD,,