anyscale 0.26.65__py3-none-any.whl → 0.26.66__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.
@@ -57,7 +57,7 @@ from anyscale.utils.workspace_notification import WorkspaceNotification
57
57
  # Maybe just make it part of the release process to update it, or fetch the
58
58
  # default builds and get the latest one. The best thing to do is probably
59
59
  # to populate this in the backend.
60
- DEFAULT_RAY_VERSION = "2.49.2" # RAY_RELEASE_UPDATE: update to latest version.
60
+ DEFAULT_RAY_VERSION = "2.50.0" # RAY_RELEASE_UPDATE: update to latest version.
61
61
  DEFAULT_PYTHON_VERSION = "py311"
62
62
  RUNTIME_ENV_PACKAGE_FORMAT = "pkg_{content_hash}.zip"
63
63
 
anyscale/client/README.md CHANGED
@@ -391,7 +391,6 @@ Class | Method | HTTP request | Description
391
391
  *DefaultApi* | [**try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post**](docs/DefaultApi.md#try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post) | **POST** /api/v2/aioa_cloud_waitlist/claim_cloud | Try Claim Cloud
392
392
  *DefaultApi* | [**try_login_api_v2_users_try_login_post**](docs/DefaultApi.md#try_login_api_v2_users_try_login_post) | **POST** /api/v2/users/try-login | Try Login
393
393
  *DefaultApi* | [**update_cloud_auto_add_user_api_v2_clouds_cloud_id_auto_add_user_put**](docs/DefaultApi.md#update_cloud_auto_add_user_api_v2_clouds_cloud_id_auto_add_user_put) | **PUT** /api/v2/clouds/{cloud_id}/auto_add_user | Update Cloud Auto Add User
394
- *DefaultApi* | [**update_cloud_deployment_api_v2_clouds_cloud_id_update_deployment_put**](docs/DefaultApi.md#update_cloud_deployment_api_v2_clouds_cloud_id_update_deployment_put) | **PUT** /api/v2/clouds/{cloud_id}/update_deployment | Update Cloud Deployment
395
394
  *DefaultApi* | [**update_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_put**](docs/DefaultApi.md#update_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_put) | **PUT** /api/v2/clouds/{cloud_id}/deployment/{cloud_deployment_id}/config | Update Cloud Deployment Config
396
395
  *DefaultApi* | [**update_cloud_resources_api_v2_clouds_cloud_id_resources_put**](docs/DefaultApi.md#update_cloud_resources_api_v2_clouds_cloud_id_resources_put) | **PUT** /api/v2/clouds/{cloud_id}/resources | Update Cloud Resources
397
396
  *DefaultApi* | [**update_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_put**](docs/DefaultApi.md#update_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_put) | **PUT** /api/v2/clouds_with_cloud_resource_gcp_router/{cloud_id} | Update Cloud With Cloud Resource
@@ -6787,7 +6787,7 @@ class DefaultApi(object):
6787
6787
  def delete_cloud_api_v2_clouds_cloud_id_delete(self, cloud_id, **kwargs): # noqa: E501
6788
6788
  """Delete Cloud # noqa: E501
6789
6789
 
6790
- Deletes a Cloud. Will delete all clusters that are using this cloud. If any of those clusters are not terminated, this call will fail. # noqa: E501
6790
+ Deletes a Cloud. Will delete all clusters that are using this cloud. If the cloud has a system cluster, it will be terminated before the cloud is deleted.If any of those clusters are not terminated, this call will fail. # noqa: E501
6791
6791
  This method makes a synchronous HTTP request by default. To make an
6792
6792
  asynchronous HTTP request, please pass async_req=True
6793
6793
  >>> thread = api.delete_cloud_api_v2_clouds_cloud_id_delete(cloud_id, async_req=True)
@@ -6812,7 +6812,7 @@ class DefaultApi(object):
6812
6812
  def delete_cloud_api_v2_clouds_cloud_id_delete_with_http_info(self, cloud_id, **kwargs): # noqa: E501
6813
6813
  """Delete Cloud # noqa: E501
6814
6814
 
6815
- Deletes a Cloud. Will delete all clusters that are using this cloud. If any of those clusters are not terminated, this call will fail. # noqa: E501
6815
+ Deletes a Cloud. Will delete all clusters that are using this cloud. If the cloud has a system cluster, it will be terminated before the cloud is deleted.If any of those clusters are not terminated, this call will fail. # noqa: E501
6816
6816
  This method makes a synchronous HTTP request by default. To make an
6817
6817
  asynchronous HTTP request, please pass async_req=True
6818
6818
  >>> thread = api.delete_cloud_api_v2_clouds_cloud_id_delete_with_http_info(cloud_id, async_req=True)
@@ -38283,131 +38283,6 @@ class DefaultApi(object):
38283
38283
  _request_timeout=local_var_params.get('_request_timeout'),
38284
38284
  collection_formats=collection_formats)
38285
38285
 
38286
- def update_cloud_deployment_api_v2_clouds_cloud_id_update_deployment_put(self, cloud_id, cloud_deployment, **kwargs): # noqa: E501
38287
- """Update Cloud Deployment # noqa: E501
38288
-
38289
- This method makes a synchronous HTTP request by default. To make an
38290
- asynchronous HTTP request, please pass async_req=True
38291
- >>> thread = api.update_cloud_deployment_api_v2_clouds_cloud_id_update_deployment_put(cloud_id, cloud_deployment, async_req=True)
38292
- >>> result = thread.get()
38293
-
38294
- :param async_req bool: execute request asynchronously
38295
- :param str cloud_id: (required)
38296
- :param CloudDeployment cloud_deployment: (required)
38297
- :param _preload_content: if False, the urllib3.HTTPResponse object will
38298
- be returned without reading/decoding response
38299
- data. Default is True.
38300
- :param _request_timeout: timeout setting for this request. If one
38301
- number provided, it will be total request
38302
- timeout. It can also be a pair (tuple) of
38303
- (connection, read) timeouts.
38304
- :return: object
38305
- If the method is called asynchronously,
38306
- returns the request thread.
38307
- """
38308
- kwargs['_return_http_data_only'] = True
38309
- return self.update_cloud_deployment_api_v2_clouds_cloud_id_update_deployment_put_with_http_info(cloud_id, cloud_deployment, **kwargs) # noqa: E501
38310
-
38311
- def update_cloud_deployment_api_v2_clouds_cloud_id_update_deployment_put_with_http_info(self, cloud_id, cloud_deployment, **kwargs): # noqa: E501
38312
- """Update Cloud Deployment # noqa: E501
38313
-
38314
- This method makes a synchronous HTTP request by default. To make an
38315
- asynchronous HTTP request, please pass async_req=True
38316
- >>> thread = api.update_cloud_deployment_api_v2_clouds_cloud_id_update_deployment_put_with_http_info(cloud_id, cloud_deployment, async_req=True)
38317
- >>> result = thread.get()
38318
-
38319
- :param async_req bool: execute request asynchronously
38320
- :param str cloud_id: (required)
38321
- :param CloudDeployment cloud_deployment: (required)
38322
- :param _return_http_data_only: response data without head status code
38323
- and headers
38324
- :param _preload_content: if False, the urllib3.HTTPResponse object will
38325
- be returned without reading/decoding response
38326
- data. Default is True.
38327
- :param _request_timeout: timeout setting for this request. If one
38328
- number provided, it will be total request
38329
- timeout. It can also be a pair (tuple) of
38330
- (connection, read) timeouts.
38331
- :return: tuple(object, status_code(int), headers(HTTPHeaderDict))
38332
- If the method is called asynchronously,
38333
- returns the request thread.
38334
- """
38335
-
38336
- local_var_params = locals()
38337
-
38338
- all_params = [
38339
- 'cloud_id',
38340
- 'cloud_deployment'
38341
- ]
38342
- all_params.extend(
38343
- [
38344
- 'async_req',
38345
- '_return_http_data_only',
38346
- '_preload_content',
38347
- '_request_timeout'
38348
- ]
38349
- )
38350
-
38351
- for key, val in six.iteritems(local_var_params['kwargs']):
38352
- if key not in all_params:
38353
- raise ApiTypeError(
38354
- "Got an unexpected keyword argument '%s'"
38355
- " to method update_cloud_deployment_api_v2_clouds_cloud_id_update_deployment_put" % key
38356
- )
38357
- local_var_params[key] = val
38358
- del local_var_params['kwargs']
38359
- # verify the required parameter 'cloud_id' is set
38360
- if self.api_client.client_side_validation and ('cloud_id' not in local_var_params or # noqa: E501
38361
- local_var_params['cloud_id'] is None): # noqa: E501
38362
- raise ApiValueError("Missing the required parameter `cloud_id` when calling `update_cloud_deployment_api_v2_clouds_cloud_id_update_deployment_put`") # noqa: E501
38363
- # verify the required parameter 'cloud_deployment' is set
38364
- if self.api_client.client_side_validation and ('cloud_deployment' not in local_var_params or # noqa: E501
38365
- local_var_params['cloud_deployment'] is None): # noqa: E501
38366
- raise ApiValueError("Missing the required parameter `cloud_deployment` when calling `update_cloud_deployment_api_v2_clouds_cloud_id_update_deployment_put`") # noqa: E501
38367
-
38368
- collection_formats = {}
38369
-
38370
- path_params = {}
38371
- if 'cloud_id' in local_var_params:
38372
- path_params['cloud_id'] = local_var_params['cloud_id'] # noqa: E501
38373
-
38374
- query_params = []
38375
-
38376
- header_params = {}
38377
-
38378
- form_params = []
38379
- local_var_files = {}
38380
-
38381
- body_params = None
38382
- if 'cloud_deployment' in local_var_params:
38383
- body_params = local_var_params['cloud_deployment']
38384
- # HTTP header `Accept`
38385
- header_params['Accept'] = self.api_client.select_header_accept(
38386
- ['application/json']) # noqa: E501
38387
-
38388
- # HTTP header `Content-Type`
38389
- header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
38390
- ['application/json']) # noqa: E501
38391
-
38392
- # Authentication setting
38393
- auth_settings = [] # noqa: E501
38394
-
38395
- return self.api_client.call_api(
38396
- '/api/v2/clouds/{cloud_id}/update_deployment', 'PUT',
38397
- path_params,
38398
- query_params,
38399
- header_params,
38400
- body=body_params,
38401
- post_params=form_params,
38402
- files=local_var_files,
38403
- response_type='object', # noqa: E501
38404
- auth_settings=auth_settings,
38405
- async_req=local_var_params.get('async_req'),
38406
- _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
38407
- _preload_content=local_var_params.get('_preload_content', True),
38408
- _request_timeout=local_var_params.get('_request_timeout'),
38409
- collection_formats=collection_formats)
38410
-
38411
38286
  def update_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_put(self, cloud_id, cloud_deployment_id, cloud_deployment_config, **kwargs): # noqa: E501
38412
38287
  """Update Cloud Deployment Config # noqa: E501
38413
38288