anyscale 0.26.63__py3-none-any.whl → 0.26.65__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 (52) hide show
  1. anyscale/_private/docgen/__main__.py +23 -4
  2. anyscale/_private/docgen/generator.py +127 -34
  3. anyscale/_private/docgen/generator_legacy.py +35 -12
  4. anyscale/client/README.md +37 -0
  5. anyscale/client/openapi_client/__init__.py +26 -0
  6. anyscale/client/openapi_client/api/default_api.py +1423 -97
  7. anyscale/client/openapi_client/models/__init__.py +26 -0
  8. anyscale/client/openapi_client/models/apply_production_service_v2_model.py +2 -2
  9. anyscale/client/openapi_client/models/connection_type.py +99 -0
  10. anyscale/client/openapi_client/models/create_experimental_workspace.py +29 -1
  11. anyscale/client/openapi_client/models/data_catalog.py +281 -0
  12. anyscale/client/openapi_client/models/data_catalog_connection.py +308 -0
  13. anyscale/client/openapi_client/models/data_catalog_connection_status.py +102 -0
  14. anyscale/client/openapi_client/models/data_catalog_provider.py +101 -0
  15. anyscale/client/openapi_client/models/databricks_connection_config.py +152 -0
  16. anyscale/client/openapi_client/models/databricks_connection_info.py +229 -0
  17. anyscale/client/openapi_client/models/databricks_connection_response.py +148 -0
  18. anyscale/client/openapi_client/models/databricks_register_request.py +187 -0
  19. anyscale/client/openapi_client/models/databricksconnectioninfo_response.py +121 -0
  20. anyscale/client/openapi_client/models/databricksconnectionresponse_response.py +121 -0
  21. anyscale/client/openapi_client/models/datacatalog_list_response.py +147 -0
  22. anyscale/client/openapi_client/models/datacatalogconnection_list_response.py +147 -0
  23. anyscale/client/openapi_client/models/decorated_session.py +29 -1
  24. anyscale/client/openapi_client/models/domain_verification.py +181 -0
  25. anyscale/client/openapi_client/models/list_databricks_connections.py +121 -0
  26. anyscale/client/openapi_client/models/o_auth_connection_response.py +229 -0
  27. anyscale/client/openapi_client/models/oauth_auth_url_response.py +121 -0
  28. anyscale/client/openapi_client/models/oauthconnectionresponse_response.py +121 -0
  29. anyscale/client/openapi_client/models/sso_config.py +148 -0
  30. anyscale/client/openapi_client/models/sso_connection.py +148 -0
  31. anyscale/client/openapi_client/models/sso_connection_state.py +100 -0
  32. anyscale/client/openapi_client/models/ssoconfig_response.py +121 -0
  33. anyscale/client/openapi_client/models/update_workspace_template.py +346 -0
  34. anyscale/client/openapi_client/models/usage_by_cluster_type.py +174 -0
  35. anyscale/client/openapi_client/models/usagebyclustertype_list_response.py +147 -0
  36. anyscale/client/openapi_client/models/validation_status.py +101 -0
  37. anyscale/commands/cloud_commands.py +310 -206
  38. anyscale/controllers/cloud_controller.py +174 -240
  39. anyscale/controllers/cloud_functional_verification_controller.py +6 -3
  40. anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +2 -2
  41. anyscale/sdk/anyscale_client/models/apply_service_model.py +2 -2
  42. anyscale/sdk/anyscale_client/models/session.py +31 -3
  43. anyscale/util.py +1 -1
  44. anyscale/version.py +1 -1
  45. {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/METADATA +1 -1
  46. {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/RECORD +51 -26
  47. anyscale/commands/cloud_commands_util.py +0 -10
  48. {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/WHEEL +0 -0
  49. {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/entry_points.txt +0 -0
  50. {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/licenses/LICENSE +0 -0
  51. {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/licenses/NOTICE +0 -0
  52. {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/top_level.txt +0 -0
@@ -18,7 +18,7 @@ from rich.progress import (
18
18
  TextColumn,
19
19
  TimeElapsedColumn,
20
20
  )
21
- from rich.table import Table
21
+ from rich.table import Column, Table
22
22
 
23
23
  from anyscale.cli_logger import LogsLogger
24
24
  from anyscale.client.openapi_client.models import (
@@ -283,7 +283,7 @@ class CloudFunctionalVerificationController(BaseController):
283
283
  False, f"[bold red]Failed to create workspace: {e}"
284
284
  )
285
285
  return False
286
- url = get_endpoint(f"/workspaces/{workspace.id}/{workspace.cluster_id}")
286
+ url = get_endpoint(f"/workspaces/{workspace.id}")
287
287
  create_workspace_task.update(
288
288
  True, f"[bold green]Workspace created at {url}"
289
289
  )
@@ -756,7 +756,10 @@ class CloudFunctionalVerificationController(BaseController):
756
756
  for function in functions_to_verify:
757
757
  progress_table = Table.grid(expand=True)
758
758
  step_progress = Progress(
759
- TimeElapsedColumn(), TextColumn("{task.description}"),
759
+ TextColumn(
760
+ "{task.description}",
761
+ table_column=Column(no_wrap=False, overflow="fold"),
762
+ ),
760
763
  )
761
764
  self.step_progress[function] = step_progress
762
765
  event_log_table = Table(box=None)
@@ -193,7 +193,7 @@ class ApplyProductionServiceV2Model(object):
193
193
  def version(self):
194
194
  """Gets the version of this ApplyProductionServiceV2Model. # noqa: E501
195
195
 
196
- A version string that represents the version for this service. Will be populated with the hash of the config if not specified. # noqa: E501
196
+ A version string that represents the version for this service. Will be populated with a random version if not specified. # noqa: E501
197
197
 
198
198
  :return: The version of this ApplyProductionServiceV2Model. # noqa: E501
199
199
  :rtype: str
@@ -204,7 +204,7 @@ class ApplyProductionServiceV2Model(object):
204
204
  def version(self, version):
205
205
  """Sets the version of this ApplyProductionServiceV2Model.
206
206
 
207
- A version string that represents the version for this service. Will be populated with the hash of the config if not specified. # noqa: E501
207
+ A version string that represents the version for this service. Will be populated with a random version if not specified. # noqa: E501
208
208
 
209
209
  :param version: The version of this ApplyProductionServiceV2Model. # noqa: E501
210
210
  :type: str
@@ -193,7 +193,7 @@ class ApplyServiceModel(object):
193
193
  def version(self):
194
194
  """Gets the version of this ApplyServiceModel. # noqa: E501
195
195
 
196
- A version string that represents the version for this service. Will be populated with the hash of the config if not specified. # noqa: E501
196
+ A version string that represents the version for this service. Will be populated with a random version if not specified. # noqa: E501
197
197
 
198
198
  :return: The version of this ApplyServiceModel. # noqa: E501
199
199
  :rtype: str
@@ -204,7 +204,7 @@ class ApplyServiceModel(object):
204
204
  def version(self, version):
205
205
  """Sets the version of this ApplyServiceModel.
206
206
 
207
- A version string that represents the version for this service. Will be populated with the hash of the config if not specified. # noqa: E501
207
+ A version string that represents the version for this service. Will be populated with a random version if not specified. # noqa: E501
208
208
 
209
209
  :param version: The version of this ApplyServiceModel. # noqa: E501
210
210
  :type: str
@@ -85,7 +85,8 @@ class Session(object):
85
85
  'activity_details': 'object',
86
86
  'maximum_uptime_will_terminate_cluster_at': 'datetime',
87
87
  'idle_termination_status': 'IdleTerminationStatus',
88
- 'ray_dashboard_snapshot_last_reported_at': 'datetime'
88
+ 'ray_dashboard_snapshot_last_reported_at': 'datetime',
89
+ 'is_system_cluster': 'bool'
89
90
  }
90
91
 
91
92
  attribute_map = {
@@ -141,10 +142,11 @@ class Session(object):
141
142
  'activity_details': 'activity_details',
142
143
  'maximum_uptime_will_terminate_cluster_at': 'maximum_uptime_will_terminate_cluster_at',
143
144
  'idle_termination_status': 'idle_termination_status',
144
- 'ray_dashboard_snapshot_last_reported_at': 'ray_dashboard_snapshot_last_reported_at'
145
+ 'ray_dashboard_snapshot_last_reported_at': 'ray_dashboard_snapshot_last_reported_at',
146
+ 'is_system_cluster': 'is_system_cluster'
145
147
  }
146
148
 
147
- def __init__(self, name=None, project_id=None, cloud_id=None, cluster_config=None, build_id=None, compute_template_id=None, idle_timeout=120, uses_app_config=False, allow_public_internet_traffic=False, user_service_access=None, user_service_token=None, ha_job_id=None, id=None, state=None, pending_state=None, state_data=None, status=None, status_details=None, creator_id=None, created_at=None, archived_at=None, webterminal_auth_url=None, metrics_dashboard_url=None, data_metrics_dashboard_url=None, train_metrics_dashboard_url=None, serve_metrics_dashboard_url=None, serve_deployment_metrics_dashboard_url=None, serve_llm_metrics_dashboard_url=None, supports_full_grafana_view=False, persistent_metrics_url=None, connect_url=None, jupyter_notebook_url=None, ray_dashboard_url=None, access_token=None, service_proxy_url=None, tensorboard_available=None, cluster_config_last_modified_at=None, host_name=None, head_node_ip=None, ssh_authorized_keys=None, ssh_private_key=None, anyscaled_config=None, anyscaled_config_generated_at=None, default_build_id=None, idle_timeout_last_activity_at=None, ray_version=None, ray_version_last_updated_at=None, user_service_url=None, ray_component_activities_last_reported_at=None, activity_details=None, maximum_uptime_will_terminate_cluster_at=None, idle_termination_status=None, ray_dashboard_snapshot_last_reported_at=None, local_vars_configuration=None): # noqa: E501
149
+ def __init__(self, name=None, project_id=None, cloud_id=None, cluster_config=None, build_id=None, compute_template_id=None, idle_timeout=120, uses_app_config=False, allow_public_internet_traffic=False, user_service_access=None, user_service_token=None, ha_job_id=None, id=None, state=None, pending_state=None, state_data=None, status=None, status_details=None, creator_id=None, created_at=None, archived_at=None, webterminal_auth_url=None, metrics_dashboard_url=None, data_metrics_dashboard_url=None, train_metrics_dashboard_url=None, serve_metrics_dashboard_url=None, serve_deployment_metrics_dashboard_url=None, serve_llm_metrics_dashboard_url=None, supports_full_grafana_view=False, persistent_metrics_url=None, connect_url=None, jupyter_notebook_url=None, ray_dashboard_url=None, access_token=None, service_proxy_url=None, tensorboard_available=None, cluster_config_last_modified_at=None, host_name=None, head_node_ip=None, ssh_authorized_keys=None, ssh_private_key=None, anyscaled_config=None, anyscaled_config_generated_at=None, default_build_id=None, idle_timeout_last_activity_at=None, ray_version=None, ray_version_last_updated_at=None, user_service_url=None, ray_component_activities_last_reported_at=None, activity_details=None, maximum_uptime_will_terminate_cluster_at=None, idle_termination_status=None, ray_dashboard_snapshot_last_reported_at=None, is_system_cluster=False, local_vars_configuration=None): # noqa: E501
148
150
  """Session - a model defined in OpenAPI""" # noqa: E501
149
151
  if local_vars_configuration is None:
150
152
  local_vars_configuration = Configuration()
@@ -203,6 +205,7 @@ class Session(object):
203
205
  self._maximum_uptime_will_terminate_cluster_at = None
204
206
  self._idle_termination_status = None
205
207
  self._ray_dashboard_snapshot_last_reported_at = None
208
+ self._is_system_cluster = None
206
209
  self.discriminator = None
207
210
 
208
211
  self.name = name
@@ -298,6 +301,8 @@ class Session(object):
298
301
  self.idle_termination_status = idle_termination_status
299
302
  if ray_dashboard_snapshot_last_reported_at is not None:
300
303
  self.ray_dashboard_snapshot_last_reported_at = ray_dashboard_snapshot_last_reported_at
304
+ if is_system_cluster is not None:
305
+ self.is_system_cluster = is_system_cluster
301
306
 
302
307
  @property
303
308
  def name(self):
@@ -1544,6 +1549,29 @@ class Session(object):
1544
1549
 
1545
1550
  self._ray_dashboard_snapshot_last_reported_at = ray_dashboard_snapshot_last_reported_at
1546
1551
 
1552
+ @property
1553
+ def is_system_cluster(self):
1554
+ """Gets the is_system_cluster of this Session. # noqa: E501
1555
+
1556
+ Represents clusters that are used for system workloads but not visible to the user # noqa: E501
1557
+
1558
+ :return: The is_system_cluster of this Session. # noqa: E501
1559
+ :rtype: bool
1560
+ """
1561
+ return self._is_system_cluster
1562
+
1563
+ @is_system_cluster.setter
1564
+ def is_system_cluster(self, is_system_cluster):
1565
+ """Sets the is_system_cluster of this Session.
1566
+
1567
+ Represents clusters that are used for system workloads but not visible to the user # noqa: E501
1568
+
1569
+ :param is_system_cluster: The is_system_cluster of this Session. # noqa: E501
1570
+ :type: bool
1571
+ """
1572
+
1573
+ self._is_system_cluster = is_system_cluster
1574
+
1547
1575
  def to_dict(self):
1548
1576
  """Returns the model properties as a dict"""
1549
1577
  result = {}
anyscale/util.py CHANGED
@@ -636,7 +636,7 @@ def validate_non_negative_arg(ctx, param, value): # noqa: ARG001
636
636
  """
637
637
  Checks that an integer option to click command is non-negative.
638
638
  """
639
- if value < 0:
639
+ if value is not None and value < 0:
640
640
  raise click.ClickException(
641
641
  f"Please specify a non-negative value for {param.opts[0]}"
642
642
  )
anyscale/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.26.63"
1
+ __version__ = "0.26.65"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: anyscale
3
- Version: 0.26.63
3
+ Version: 0.26.65
4
4
  Summary: Command Line Interface for Anyscale
5
5
  Author: Anyscale Inc.
6
6
  License: AS License
@@ -27,8 +27,8 @@ anyscale/scripts.py,sha256=86L8yDU9uq0NFDDcD8kotorzMl9KSsGJa5-yp3d9D8k,5605
27
27
  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
- anyscale/util.py,sha256=7YPUcm1KCWnmwQpgO0iy0Ly3kSKEAdsCI2jmFridKH0,42881
31
- anyscale/version.py,sha256=YwHEJi7ifYX9dLo3P3a2Toi-dP28q3wJuObI_gswiw4,24
30
+ anyscale/util.py,sha256=3jfGH2CyDmXrSg-3owSF7F8FnqKbLJ-aHUbepyCKuqQ,42903
31
+ anyscale/version.py,sha256=7IGxKNk0cA7asOL2R79q-Tx_TzwkRuUUKzaKT_DvZCI,24
32
32
  anyscale/workspace_utils.py,sha256=OViE88CnIF5ruVxd3kazQ0Mf2BxqtMq6wx-XQ5A2cp8,1204
33
33
  anyscale/_private/anyscale_client/README.md,sha256=kSfI2Jfw5RHZWYtu0di3XtdSCx0d2pSwKMfjmDvw7Tg,3770
34
34
  anyscale/_private/anyscale_client/__init__.py,sha256=807Blx3RHQeS8BmKZcsOQQ4dYoKlCnpm6Bdsif2CrHg,337
@@ -36,10 +36,10 @@ anyscale/_private/anyscale_client/anyscale_client.py,sha256=wmOKitarsg5d9pH0PsvI
36
36
  anyscale/_private/anyscale_client/common.py,sha256=w7PtoLKfZZGBjNz4_5_KF2I38HjaXzAt2Xb05pHtYKI,27436
37
37
  anyscale/_private/anyscale_client/fake_anyscale_client.py,sha256=y_Rq-nqVndWdO5y55KVL262YKCQRM8AGYvg-SbQxe_c,63526
38
38
  anyscale/_private/docgen/README.md,sha256=z0tj8Jy0KmxWJBQMHKyzXGX_cYYgI8m5DCD6KCMU8oI,762
39
- anyscale/_private/docgen/__main__.py,sha256=2kz6Kp1QKPiuMu3FmdwccC-GVzKETBrUNy9wiXMx4tc,25112
39
+ anyscale/_private/docgen/__main__.py,sha256=KZuf-luVv9jEiSiuq-xkjCZj9FMNJXVHS_nr-HO31wQ,25798
40
40
  anyscale/_private/docgen/api.md,sha256=VKW293yubbeUG17A38wYuaONKDL5XICMguyfZ2xkIyY,27495
41
- anyscale/_private/docgen/generator.py,sha256=9HvkVxTmaeAFBjK59eZ5pil6tpGjFQDqf0LNP2-lg4s,24041
42
- anyscale/_private/docgen/generator_legacy.py,sha256=f6eJzQXjkqGEOWsKPIthl8Bx1yh5MHidhEuEHN-nukk,4853
41
+ anyscale/_private/docgen/generator.py,sha256=TGS-AxQJ9AVbEG9P7BivneaATzwOl7GGVDyAWmcmbDQ,27647
42
+ anyscale/_private/docgen/generator_legacy.py,sha256=fP2tYkGXXm8d4Kgorx3fCFTXRqcw2mwvlivzgMrgay0,5826
43
43
  anyscale/_private/docgen/models.md,sha256=LoDr83TbUSsk-bsK9IMWAdAIZx5xKkqNukecVVApwgQ,312489
44
44
  anyscale/_private/models/__init__.py,sha256=ZrkdHhJZNeCYiogsHc_po8m7vaVdxEjkNGixNeYdlgs,125
45
45
  anyscale/_private/models/image_uri.py,sha256=CMzHc-MNTBsBXvX0G73bjkiznCbm95DYQusgXJ8drm8,3971
@@ -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=xfqDhkI-BxZ51Uk7GdGHo3E_cY6yYa1OFEwFJtVkEjQ,125810
109
+ anyscale/client/README.md,sha256=vZcHk6f2W4XVHH6oe_jOosa8L6rKbRC0NOqpPJXDCzE,130388
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=ZJ_wYTQVawWm9ghn_bER3vixvPS1wagjfoRgbBnf7bo,56584
117
+ anyscale/client/openapi_client/__init__.py,sha256=b-c1lof23LY0MYsuBNLux_e1KPw87ueD5ltlQPOLnlg,58726
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=pb3jaNTgTPVtONsxcSAS2GYyx0kjf7wCuyfw4-_BP9s,2055566
124
- anyscale/client/openapi_client/models/__init__.py,sha256=aOd4ASAlQcUBfi6N4bGVLj5JGU8VBuKzhePVGEhVPik,56094
123
+ anyscale/client/openapi_client/api/default_api.py,sha256=PWkg90hOFLXD3jNJRRq-_VMy0FWb99T_RhxDy8GSzkY,2123253
124
+ anyscale/client/openapi_client/models/__init__.py,sha256=C-fwaLsEv15SLgFnX8KGiFZndsVFApWVwVjLc7hXaRA,58236
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
@@ -148,7 +148,7 @@ anyscale/client/openapi_client/models/appconfig_list_response.py,sha256=rQBfyypj
148
148
  anyscale/client/openapi_client/models/appconfig_response.py,sha256=HLFj1evH-rcO1MoJfGh7BN2CL70RbhfuW7LJlGF6XAw,3517
149
149
  anyscale/client/openapi_client/models/application_type.py,sha256=JbtN0lMj9FwGMAGQKC1s4LMm3iusRAqsSx2G4ODgf8U,2808
150
150
  anyscale/client/openapi_client/models/applied_snapshot.py,sha256=E8NoLPyvm7W-gFjDiq3N5zvtyXHLTnHmSx_xQrK7gdM,5173
151
- anyscale/client/openapi_client/models/apply_production_service_v2_model.py,sha256=dp-el8mVBhMVYRkF8ZPOg4WETmbqUbkRrSGcbL25GxQ,21065
151
+ anyscale/client/openapi_client/models/apply_production_service_v2_model.py,sha256=hDRM4Z7LwBh7h9xo1NmlhjDyiL0_wXAT78UG-yQuaIA,21053
152
152
  anyscale/client/openapi_client/models/archive_status.py,sha256=wdqbSNwU-tjYNBcA4BSr0uHVCOL4iNimbV1llKObDJ0,2875
153
153
  anyscale/client/openapi_client/models/attach_machine_pool_to_cloud_request.py,sha256=M3iOlHPrWthJmqkBCoMAMk1Ks3oCWk0lvL0XZBClVJw,5011
154
154
  anyscale/client/openapi_client/models/attachmachinepooltocloudresponse_response.py,sha256=eCMGXJNPVGsaXAIzMbJKwyzTmzQh_WTQo3Hfw5_OArU,3692
@@ -257,6 +257,7 @@ anyscale/client/openapi_client/models/compute_template_config.py,sha256=5epZdd0_
257
257
  anyscale/client/openapi_client/models/compute_template_query.py,sha256=aSNMEZQIc_Vz2cSyV6JD7rzcFe3iHhZujYhHpHi0LMg,10266
258
258
  anyscale/client/openapi_client/models/computetemplate_response.py,sha256=VYAbVSP_wQ3kIvFxsIhSP8TuCcJQ_gFscQBMFkTqkE4,3583
259
259
  anyscale/client/openapi_client/models/computetemplateconfig_response.py,sha256=qwCTKMrd-yXi1g2yR4xRAaA4te_jzXCjYOmOKnVRkHw,3649
260
+ anyscale/client/openapi_client/models/connection_type.py,sha256=P5YuOlmyqX9t5tTKbbjt0i4usFhSq59I7WB7fzEvwe0,2828
260
261
  anyscale/client/openapi_client/models/create_aioa_cloud_waitlist.py,sha256=wNEz4SFW-fkNCNpFVRvl6m2kFr8bTP_wXY6Pg3IqmMs,4963
261
262
  anyscale/client/openapi_client/models/create_analytics_event.py,sha256=_trE0YfjoN5ROVvLaGCdjNIzqYEBJ0CyEs0J_I1fCRo,3823
262
263
  anyscale/client/openapi_client/models/create_app_config.py,sha256=iPXNq1AqcaKj4m1N9I2aUyJr6B4WZge8gz9-7tCyRQo,7064
@@ -274,7 +275,7 @@ anyscale/client/openapi_client/models/create_cluster_compute_config.py,sha256=zZ
274
275
  anyscale/client/openapi_client/models/create_compute_template.py,sha256=NpjLX4CxR-7VCMqE2qGz-xI2rnWVpTIvpMvg-AlCs0M,6977
275
276
  anyscale/client/openapi_client/models/create_compute_template_config.py,sha256=CBaM5VgvQxqiv1Kgb2z4CootHUTbZnI6gS_Gc6aXsmY,20557
276
277
  anyscale/client/openapi_client/models/create_dataset.py,sha256=fTcTUHQjutWziTlCEdRwY2ezmvDqGNKM5MmWgI811ZA,5666
277
- anyscale/client/openapi_client/models/create_experimental_workspace.py,sha256=Ts7sZIPIWe4Xrz2qafRqEaAdSgMntvdQ5pnVhHa65BY,17573
278
+ anyscale/client/openapi_client/models/create_experimental_workspace.py,sha256=FpRzAHoECU1f5wGbppU3BcRMiEZukdxzM5dvBv1j-p8,18632
278
279
  anyscale/client/openapi_client/models/create_instance_usage_budget.py,sha256=54uVdd4kFTbjVMEzxWP6A3vApzraMGYW5-NaVqpzp3o,8142
279
280
  anyscale/client/openapi_client/models/create_internal_production_job.py,sha256=pmvHogLleTocvyNrjtI786fbFUgEUTbLNQOssp_mHJA,9109
280
281
  anyscale/client/openapi_client/models/create_job_queue_config.py,sha256=UGjwSG2WAM8pKE4ye8CtsxYBpehg0MURNnj_z-UPqRo,7659
@@ -312,6 +313,18 @@ anyscale/client/openapi_client/models/credit_type.py,sha256=9xx435374f9njhOra03k
312
313
  anyscale/client/openapi_client/models/credits_v2.py,sha256=ZpWqxRL40C1yNdVXfZ3TWnYY3nXmRDe7FCaxaKJYpkU,12801
313
314
  anyscale/client/openapi_client/models/customer_alert_status.py,sha256=hcvEKv0QHAy-98ENvrud0FfIVHK5Lu6GOC8QDBRfCrU,2890
314
315
  anyscale/client/openapi_client/models/dashboard_panel.py,sha256=8Fy4WD7yyWwzqiUd4IdAJX2viWbE59Z13HcKMCJICX8,4151
316
+ anyscale/client/openapi_client/models/data_catalog.py,sha256=l9apIt3wBOxIiQlYuLMJmWU06gQfoNawz6nEiBUqUPs,8091
317
+ anyscale/client/openapi_client/models/data_catalog_connection.py,sha256=iwxe74iKYzuOyUyZ7jMNJT15EDv1BfrUZhjM1kBxeis,9466
318
+ anyscale/client/openapi_client/models/data_catalog_connection_status.py,sha256=hcCapdFZwPnr2xeJtwYVHoHcJg1EXn4sAgaDduGLvvg,2982
319
+ anyscale/client/openapi_client/models/data_catalog_provider.py,sha256=EiegwTtEQLfzd6PcNoOVdfs-EhllserCKWTQQdlpwng,2905
320
+ anyscale/client/openapi_client/models/databricks_connection_config.py,sha256=CRKZ4lkw5EngDE6qz9DqsGsvoVzTv20Awcyl7S672BQ,4802
321
+ anyscale/client/openapi_client/models/databricks_connection_info.py,sha256=8-zI_eBGBmS5iXpZ8FY_UTNUNJRZSA2GGMbr0ulDa5s,7505
322
+ anyscale/client/openapi_client/models/databricks_connection_response.py,sha256=DENqwKVVXSxFgVFI3JUzkAB6gNukHFYIRfN9lsuDV80,4361
323
+ anyscale/client/openapi_client/models/databricks_register_request.py,sha256=N3vYZvRiq-BwWEggnAS1sZEIghA2PdpyNIApCu87kKQ,6498
324
+ anyscale/client/openapi_client/models/databricksconnectioninfo_response.py,sha256=waTTsVTZFlJIzQ3Ii_YG_hVJe_Nn6qhDZZOkrui6P7c,3682
325
+ anyscale/client/openapi_client/models/databricksconnectionresponse_response.py,sha256=N0Q87zRxwMSaQhCgTeNa_i04BwEyy3oU3vh7NjkwaFY,3726
326
+ anyscale/client/openapi_client/models/datacatalog_list_response.py,sha256=OdbXHonADbWlAC2f5HLPINITUB1EtmDHt6I9E84QsI0,4362
327
+ anyscale/client/openapi_client/models/datacatalogconnection_list_response.py,sha256=fhQdbszPL98_OEk8scEcUUc82QaNkRJMv7jSP0jF2Zg,4512
315
328
  anyscale/client/openapi_client/models/dataplane_services.py,sha256=iPEKAk7R83srccjR0l25YY2pntdf_6IfID-dhDA9v_4,2918
316
329
  anyscale/client/openapi_client/models/dataset.py,sha256=Gok0vAOXDEj2A3vZwbGxNnH-2Ajxu9pRGWZvfQ0usSQ,12062
317
330
  anyscale/client/openapi_client/models/dataset_dag.py,sha256=_8wixt-pAWipBz8MQ20Cs5zb3whNJZK0xRPYQa9HUaM,6680
@@ -338,7 +351,7 @@ anyscale/client/openapi_client/models/decorated_production_service_v2_version_ap
338
351
  anyscale/client/openapi_client/models/decorated_schedule.py,sha256=zCDLO0og8GMMxv_43k3BjYB3MAGc3znGcKV28GYoJwU,18193
339
352
  anyscale/client/openapi_client/models/decorated_serve_deployment.py,sha256=fujpuo3v3GNhKwwiHwBqtU8BrBvBrcbg_TTtSvVG7oY,24397
340
353
  anyscale/client/openapi_client/models/decorated_service_event_api_model.py,sha256=TE2bxLquf15IQZTXDiqawOnRYQKT-0Gxrr9VJVNwu9c,17555
341
- anyscale/client/openapi_client/models/decorated_session.py,sha256=wlBiEeIrXEbSAGMqr3zvNOP7XXOxVx23wRp1eMcYLBY,71719
354
+ anyscale/client/openapi_client/models/decorated_session.py,sha256=GgMiFSnMLr19jKfc4sKL8KR9W8DOBuipWK5giqZmzuE,72786
342
355
  anyscale/client/openapi_client/models/decorated_support_request.py,sha256=FyU8FQbCVAXUpxikWjVmEn5WasPTZeFppafbU2B0kQE,9163
343
356
  anyscale/client/openapi_client/models/decorated_unified_job.py,sha256=chXCS6V5Zkweel9Xeg2mqotcLgKXwo4uoM-kZMWVeJ4,13976
344
357
  anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py,sha256=Aqq7NLQ1JszMgO7GDZkY-taxuMuohu83MziWxKyAw3o,4617
@@ -391,6 +404,7 @@ anyscale/client/openapi_client/models/describemachinepoolresponse_response.py,sh
391
404
  anyscale/client/openapi_client/models/describesystemworkloadresponse_response.py,sha256=ypwUXSYHJDkKNcGDoKXdtK6fUHTZIRS_oJwjDK_2sn8,3748
392
405
  anyscale/client/openapi_client/models/detach_machine_pool_from_cloud_request.py,sha256=Nw-cDoZAPFBGReuRca0Z7bsyrlEPi7b9fynlzljLGwM,5037
393
406
  anyscale/client/openapi_client/models/detachmachinepoolfromcloudresponse_response.py,sha256=oN-M0hqR05b4rxKw8nw2bFGed8oHYTBDHhaZ1TqBWBE,3708
407
+ anyscale/client/openapi_client/models/domain_verification.py,sha256=549iRdKeJO2BIgH_r-CXyzKzBbCJwCay4cNgK-IORuw,5395
394
408
  anyscale/client/openapi_client/models/editable_cloud_resource.py,sha256=E6POl5WoPaW3kYTvEVYXipIVOJ7ufgo6xYB65lL4SU4,6691
395
409
  anyscale/client/openapi_client/models/editable_cloud_resource_gcp.py,sha256=etJzNB6b8dhiDO50d9iUUSbDPpfO91en5R8agSyzoWs,6377
396
410
  anyscale/client/openapi_client/models/email_verification_request.py,sha256=E3VDLakRZHtFZ95BVLJKQ9JQF07-pu7qjjQPtjchIVY,5596
@@ -467,6 +481,7 @@ anyscale/client/openapi_client/models/kubernetes_manager_registration_response.p
467
481
  anyscale/client/openapi_client/models/kubernetesmanagerregistrationresponse_response.py,sha256=8UH867yGDAOgZrfXdkRzVkfTLViyTRQIZFBFd0vghu0,3825
468
482
  anyscale/client/openapi_client/models/lb_resource.py,sha256=UAjfCjXZAvAn64WSltl-VWw1WyjMrCi73A1jtY2F4To,3739
469
483
  anyscale/client/openapi_client/models/lbresource_response.py,sha256=AgJpUmMDDuF6ohHI2LbPoXICUKeBKWskgjaOcr59t8E,3528
484
+ anyscale/client/openapi_client/models/list_databricks_connections.py,sha256=XRCO-FYXXWEcQ7qm1gL4uu7XP_1HSiwAx-AoNB4AtJA,3749
470
485
  anyscale/client/openapi_client/models/list_machine_pools_response.py,sha256=lH_AGSraAalhusdwbb31uSCNBobNIdTA8mTVPkA_X7Y,3842
471
486
  anyscale/client/openapi_client/models/list_machines_response.py,sha256=8aS1GNXSzf_j9MaKoRjWxJ-7xQoe1_4wS5oX3qUZEi0,3607
472
487
  anyscale/client/openapi_client/models/list_ray_sessions_response.py,sha256=w-H88MahnNNVOqZOoMis6s2WVW3XAfdBIJlsllsbuLw,3607
@@ -537,6 +552,9 @@ anyscale/client/openapi_client/models/nodemetricsresponse_response.py,sha256=3Xf
537
552
  anyscale/client/openapi_client/models/notification_channel_email_config.py,sha256=UZr99vatPMwuH8IzeNkv-2qZAWtZOMckh-JcYcbSoCs,3621
538
553
  anyscale/client/openapi_client/models/notification_channel_slack_config.py,sha256=kYQ18Z8dvq8TY1QqNuJS6w7xz62AW44VwOjaVddHX7Y,3705
539
554
  anyscale/client/openapi_client/models/notification_channel_webhook_config.py,sha256=1kbsG1xp7W_MwNoemXH0oJA5KAdKHWNdCi5DEOQbMBw,3763
555
+ anyscale/client/openapi_client/models/o_auth_connection_response.py,sha256=qoT3msFGkDKLwP3rSzv53hFQX2KAE3-8ykVZK9qzO3E,7199
556
+ anyscale/client/openapi_client/models/oauth_auth_url_response.py,sha256=Rfksk83-rX3rYNgnR0LlUfhhIYNU-_RHSIVn0kjxjJw,3565
557
+ anyscale/client/openapi_client/models/oauthconnectionresponse_response.py,sha256=0zjYHXmiSshL1_CHkRLEptTdsesPuOSWiHQzov_qkZ0,3671
540
558
  anyscale/client/openapi_client/models/object_storage.py,sha256=6D52QtI0PKLZ3s1xMSfnoeIxu4ZjXnLwU3wI_fxkvfw,5663
541
559
  anyscale/client/openapi_client/models/operation_error.py,sha256=GFDVbjzXwFb9ocl0rkzzmp15AX5huyIU1QSpdNuKs58,3662
542
560
  anyscale/client/openapi_client/models/operation_progress.py,sha256=K7TAuDeJ2b_uBQthLAowetZwHL6WVbB0nqY40jyJe7g,3682
@@ -673,8 +691,12 @@ anyscale/client/openapi_client/models/sessionsshkey_response.py,sha256=z0YT-uC_D
673
691
  anyscale/client/openapi_client/models/show_otp_source_return_api_model.py,sha256=gNK_eO-cTjA-aMCD2-U61psMxVsD4N9DzT6JQlOV1kQ,3642
674
692
  anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py,sha256=nQpVssn04QuNZ6zx10SpfEl8G216X9-QenYXqUDkkYA,3715
675
693
  anyscale/client/openapi_client/models/sort_order.py,sha256=nmc0YdVaBIZ7pLPrOnteLDbc2Pu2vPfeOMclZH89VV4,2799
694
+ anyscale/client/openapi_client/models/sso_config.py,sha256=7AXSbN6VAvuBnl8a8GAczHGQC_WqEoEJUzBiNSjmVuM,4712
695
+ anyscale/client/openapi_client/models/sso_connection.py,sha256=17ozU818ziEDQqX0wz6NfAuZFgMy-kPWZ17qSFkLj6E,4205
696
+ anyscale/client/openapi_client/models/sso_connection_state.py,sha256=07b4Lqx0OMfuXR6A00a4zppyj8uaqLlvpuN7NY2xclw,2856
676
697
  anyscale/client/openapi_client/models/sso_login_info.py,sha256=I_l8h9DiWVaOCy4iWn3k5AbYyvsa0_A-66AOEPcgGYA,4515
677
698
  anyscale/client/openapi_client/models/sso_mode.py,sha256=rowexQjIbUajbZXI8nJfLUmXkREmMaFocRoTowpm_1Y,2839
699
+ anyscale/client/openapi_client/models/ssoconfig_response.py,sha256=zgNYS5zW3l6fgHyQDRYjkEHKouAjV7aMD_Rwsky00x8,3517
678
700
  anyscale/client/openapi_client/models/ssologininfo_response.py,sha256=NprIco_jVOCO1K-6B8wAfRpEefG4cybZUlWw-weLjDU,3550
679
701
  anyscale/client/openapi_client/models/start_session_options.py,sha256=dd_57VoQMiOA0AHPItn3JpVyhGQ6wtQkMQqHhaxZHh4,4204
680
702
  anyscale/client/openapi_client/models/stop_session_options.py,sha256=8ulrBPdfMNEUqwtrtAwJhby8V3MBQf3sVvOX-f9A54k,6939
@@ -732,17 +754,20 @@ anyscale/client/openapi_client/models/update_organization_collaborator.py,sha256
732
754
  anyscale/client/openapi_client/models/update_payment_info.py,sha256=DYGMBA9f1K10EKOYfnNFUkJcbUjOmVhyMxBoTcTC1x8,3773
733
755
  anyscale/client/openapi_client/models/update_project_collaborator.py,sha256=xT3k_qmoR_8Fxx9z5KwSxnbR08T2KILf38TAFfRCdZQ,3809
734
756
  anyscale/client/openapi_client/models/update_resource_quota.py,sha256=P_ogoveZ5ZX35KxIWN4VJstJeylPU0za8IXUAwRGies,3423
757
+ anyscale/client/openapi_client/models/update_workspace_template.py,sha256=BbZ2-LMrbgbzRY0tLPeL5F-DRml7gpGwBXlM0X_sUzk,10798
735
758
  anyscale/client/openapi_client/models/updatemachinepoolresponse_response.py,sha256=0OKygqkvkOimTVYKNwDQv_KRA5hVBdyw9vTlNcGYIZ8,3636
736
759
  anyscale/client/openapi_client/models/upload_session_command_logs_locations.py,sha256=NzG16v1z2XwpZWvzrIWyL5yuakx5xSJhbL-4Uy-MadE,4877
737
760
  anyscale/client/openapi_client/models/uploadsessioncommandlogslocations_response.py,sha256=M1xhkXsnWWtfPV3F0R5gyEN1JCHuULCBBzuLEPzKTY0,3781
738
761
  anyscale/client/openapi_client/models/upsert_resource_tags_request.py,sha256=0dix3e2lKmsIek7-UkBZ67RfZ286g53maV6BdoPtZ_Y,5516
739
762
  anyscale/client/openapi_client/models/usage_by_cloud.py,sha256=u8mBG22uCy5LO4BP0l-KvaBn4SOVHdsmxX0nS2BPXb0,5927
740
763
  anyscale/client/openapi_client/models/usage_by_cluster.py,sha256=pVQdpj5_DLdkJzXlDnIdy0TC1KQ8P73sCb_BwAuIXBY,16915
764
+ anyscale/client/openapi_client/models/usage_by_cluster_type.py,sha256=GQiTGq3H3mSktGMenUK_9BDyfIblQ2bC2rj4Fg72kvk,5250
741
765
  anyscale/client/openapi_client/models/usage_by_instance_type.py,sha256=34CHIst9Hdjif0L17gsk8ynQU2HmjtuM5Hsn2wFymUQ,5287
742
766
  anyscale/client/openapi_client/models/usage_by_project.py,sha256=tgqXuT8-TdpWP-nBbBAf-EudWIfnoRrKFC8x_ZFlkjQ,7739
743
767
  anyscale/client/openapi_client/models/usage_by_user.py,sha256=4mD2tC61jjR110UWDROtXehNaD-jtOWETYRkE-xavhA,6718
744
768
  anyscale/client/openapi_client/models/usagebycloud_list_response.py,sha256=pPQPsla9jQBLRZrorOuhNU4fdjR5zRXK6I3SfXGZ0g4,4377
745
769
  anyscale/client/openapi_client/models/usagebycluster_list_response.py,sha256=hA1uhb9To-fc1Wq9m2H-wz741LNKvUdGwnf4robKIuQ,4407
770
+ anyscale/client/openapi_client/models/usagebyclustertype_list_response.py,sha256=D9vB9bpgaj5NWe3mmrXYfPUedfySHl5vClW0ApVih4Y,4467
746
771
  anyscale/client/openapi_client/models/usagebyinstancetype_list_response.py,sha256=EKejWN6hg2ZJawcnTEqllbstcMaMH4h_gWLkcGt4VIE,4482
747
772
  anyscale/client/openapi_client/models/usagebyproject_list_response.py,sha256=5zi_6q_TfS39dVvEDz-pusHE-Ljq14W-eoKoKKpM82g,4407
748
773
  anyscale/client/openapi_client/models/usagebyuser_list_response.py,sha256=eMb_EP3-gL4DfcQ2qtKrOH3_H892nX5o5R3-LOuGNrY,4362
@@ -756,6 +781,7 @@ anyscale/client/openapi_client/models/utm_fields.py,sha256=oGWZLb480SM6USTwygPBG
756
781
  anyscale/client/openapi_client/models/ux_instance.py,sha256=Sblo6opLgk_o0shR6vFKGn3iGTd-ITJ7hjn2TuinbCc,15937
757
782
  anyscale/client/openapi_client/models/validate_otp_params_api_model.py,sha256=uErBR9NPILSCtfku6LnNAk9engTzdCqwS_9xnYc3w5E,3500
758
783
  anyscale/client/openapi_client/models/validation_error.py,sha256=uLs9b2XoppBnbd0-JqQrC5LjDArFEyKenqfKUK0Y2LY,4903
784
+ anyscale/client/openapi_client/models/validation_status.py,sha256=V6bBLkxRWuaSJbdRUbZFnHXM3BGK5x0n6I6S-xq8NDw,2884
759
785
  anyscale/client/openapi_client/models/waitlist_status_response.py,sha256=Su4G2eES1vCrHaT8kgt0KO3m5zJkRufLeCDnEMIY-M4,3587
760
786
  anyscale/client/openapi_client/models/waitlist_status_type.py,sha256=Bmp1_5ti1JnIrgvvuA6Jvs39BEKhXu1si1QwNwK8rXo,2871
761
787
  anyscale/client/openapi_client/models/waitliststatusresponse_response.py,sha256=PNNx1b5OjpIA7BVCRoRC_2gH6WuugseukY520qNlYkw,3660
@@ -808,8 +834,7 @@ anyscale/cloud/_private/cloud_sdk.py,sha256=5TBGyGSjMI4jLOnSle1WWC6za0psP9xgTGWU
808
834
  anyscale/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
809
835
  anyscale/commands/aggregated_instance_usage_commands.py,sha256=TRP1X3hdIWbKg9V20VtazlDXsYAeV--M0DH3-Z5tnj4,2293
810
836
  anyscale/commands/auth_commands.py,sha256=X1g6Yu9kqgPb4HLODlZTYEk8G5AVLeyizPIgagWx-p0,1026
811
- anyscale/commands/cloud_commands.py,sha256=YVKcaUS6ftHHlUCy-c_UNQKH9kiUGmLi61GvS30rR10,54573
812
- anyscale/commands/cloud_commands_util.py,sha256=d-6TSZ_syrGkZ3Fc1uRX6jG4dqYMebNkBNpYLojOJFg,247
837
+ anyscale/commands/cloud_commands.py,sha256=iNuDD8LoJe4y12bZpCDiYCs2YNxRC1rkLuzmgt7Rj_k,58604
813
838
  anyscale/commands/cluster_commands.py,sha256=taNcffyFfqJ1MgOQd0cz9kzRXWFTdp-wfLPM4l_2tBc,13487
814
839
  anyscale/commands/cluster_env_commands.py,sha256=KNWylyE8Ew1sDi7yu2Tp4RLcRu2_KJJJIzVGRyPflJo,3899
815
840
  anyscale/commands/command_examples.py,sha256=pSj1DyHwlzmSxw-Ko5RUTQ57uFA7v7Jgur0s7K55bts,25182
@@ -853,9 +878,9 @@ anyscale/connect_utils/start_interactive_session.py,sha256=m-RCH0e_bQBF6dAOskbP9
853
878
  anyscale/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
854
879
  anyscale/controllers/auth_controller.py,sha256=hDY2sPvUP8pvh8PnlDYH5rCHjQes2v3b_KBVjMbrzeE,5127
855
880
  anyscale/controllers/base_controller.py,sha256=1QFJoScFUV7YTzpKarhwPOc1SvI-xqX3TZmwxKonW6I,1998
856
- anyscale/controllers/cloud_controller.py,sha256=9LKmEtEUVO4V3jDMG0VuyaGluFjbn8c-as52oj1l-_o,205316
881
+ anyscale/controllers/cloud_controller.py,sha256=NOW6YhtK5CfqaWFOrjX-AicYgqPpL71wAxEV8jN75H0,201943
857
882
  anyscale/controllers/cloud_file_storage_utils.py,sha256=ifaqClEybTgxhqGWHYoH1vrlbxwjRuO-De_3666R2O4,6987
858
- anyscale/controllers/cloud_functional_verification_controller.py,sha256=YsEfdHT9hPtxy_3a5Q62UlRXW0iFJ1lVS4IZ_NHoemE,33399
883
+ anyscale/controllers/cloud_functional_verification_controller.py,sha256=uro10r981CTlt2zlisUCmNYljbrYBiWzh7vrqrcur3I,33475
859
884
  anyscale/controllers/cluster_controller.py,sha256=Sb5wVjrjpycg5iqmENAVtZ4iy9Kr6kM97_ck-KH85LM,28745
860
885
  anyscale/controllers/cluster_env_controller.py,sha256=JalGzcmnFtMHefYL5U6ijMY3nX6W6BsMEfZSMtgBvtU,8048
861
886
  anyscale/controllers/compute_config_controller.py,sha256=2o1ZG31ThZChAddY8UzyJIg5yv5oS_DD9nRFSDu6zJQ,13271
@@ -917,8 +942,8 @@ anyscale/sdk/anyscale_client/models/__init__.py,sha256=Xes_6hp6Sl68Bxawg5yKHMzzc
917
942
  anyscale/sdk/anyscale_client/models/access_config.py,sha256=FOH_2UU2astWm_ilA1_FpWqKQRxwMYXjGC-UT4Zj65Y,3646
918
943
  anyscale/sdk/anyscale_client/models/app_config.py,sha256=1sWYt1jiljHiXtWCQi7HJw4sBvulaqPV8tmTvNpgZYI,13439
919
944
  anyscale/sdk/anyscale_client/models/app_config_config_schema.py,sha256=0RD9ffMfQ_XFXyVY7qjisOropKYT2tZ2p3XyxPrqjE0,7897
920
- anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py,sha256=L_wMc3vo6qX9IX98gFSoxzSTNQaCfq-SaWAnUxatmeE,21063
921
- anyscale/sdk/anyscale_client/models/apply_service_model.py,sha256=vTjg_zCiM2GmD7dM48gjnSS5aOj2NkO78QQ39oSt5-U,20295
945
+ anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py,sha256=Fql0K5fHEojt_Z1T7mlbGgdqFW45L0KW49KgpnP_8LY,21051
946
+ anyscale/sdk/anyscale_client/models/apply_service_model.py,sha256=FDB7ANoSG37SVt1q7Q8Xs5qCi8uTgGIimHiJXCJssdA,20283
922
947
  anyscale/sdk/anyscale_client/models/archive_status.py,sha256=C5z72r5glAaa5cOXzwhECfBN3QiVP769B_2_Q9G4znk,2873
923
948
  anyscale/sdk/anyscale_client/models/base_job_status.py,sha256=wW3Cq4H1Bchg1OVf-f0eQyEugMDvM8BgDu6zrAQuYic,3008
924
949
  anyscale/sdk/anyscale_client/models/baseimagesenum.py,sha256=7MluBXqSt0gNZ0tu6fnapZuewvEJ1VcE_L6_o-HzpYw,312225
@@ -1053,7 +1078,7 @@ anyscale/sdk/anyscale_client/models/service_type.py,sha256=rZdrus7PK1yag9evso0hM
1053
1078
  anyscale/sdk/anyscale_client/models/service_version_state.py,sha256=70UygIXv31YQgInoublJt-lZqwIbNCWJFFH0jqkS6iA,3110
1054
1079
  anyscale/sdk/anyscale_client/models/servicemodel_list_response.py,sha256=-71b0cU3Lj_dTh74WcTlHRbB6OqIDyRPmXBLhhY-P-w,4375
1055
1080
  anyscale/sdk/anyscale_client/models/servicemodel_response.py,sha256=3rAjmUOO6HKR8gEklDxoHKvn6IXECCRCuqQiLbZCmw0,3548
1056
- anyscale/sdk/anyscale_client/models/session.py,sha256=hdaS_DuyWKZfV2y7xv8ncfZKmj8wdDFVUAZmWL5NZbI,62417
1081
+ anyscale/sdk/anyscale_client/models/session.py,sha256=QCecvQjfnsiwxTKX4xkeGnLmDf2VQb0jURBFoF08omY,63448
1057
1082
  anyscale/sdk/anyscale_client/models/session_response.py,sha256=wB3HFhPxlVOX4F7IJPH4mxc4qxQWsyYRPeUuftZknLQ,3493
1058
1083
  anyscale/sdk/anyscale_client/models/session_starting_up_data.py,sha256=kfwpLY1s4-Tf8Gdkdah4cSkRHE2JRYJNd3Rjkj8q5eQ,4366
1059
1084
  anyscale/sdk/anyscale_client/models/session_state.py,sha256=HbGrjYS-zATMtgCjKdiV0_ViadEyXIUAZU-8wVjnRF4,3388
@@ -1147,10 +1172,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
1147
1172
  anyscale/workspace/commands.py,sha256=b1sqNseoPj-1VXznqQOLe0V_a663bOTvJX-TaOMJa1Y,14590
1148
1173
  anyscale/workspace/models.py,sha256=uiMqoJRQNRgTcOIIsysSrtlHMtnI7paUWS34EN626Cg,10016
1149
1174
  anyscale/workspace/_private/workspace_sdk.py,sha256=2CMeYfJt0UtIFCocDn1ukw1iI5esKHdopLe6duEs-qE,27599
1150
- anyscale-0.26.63.dist-info/licenses/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1151
- anyscale-0.26.63.dist-info/licenses/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1152
- anyscale-0.26.63.dist-info/METADATA,sha256=XfE0ilmn6pG-37QpZla7kJYWSXjtNE-L_fyVKwoed7Q,3231
1153
- anyscale-0.26.63.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1154
- anyscale-0.26.63.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1155
- anyscale-0.26.63.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1156
- anyscale-0.26.63.dist-info/RECORD,,
1175
+ anyscale-0.26.65.dist-info/licenses/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1176
+ anyscale-0.26.65.dist-info/licenses/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1177
+ anyscale-0.26.65.dist-info/METADATA,sha256=NLpXJruAgB6vuxqYZ5f8qCdzGXVMdYNnphv14P67T_s,3231
1178
+ anyscale-0.26.65.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1179
+ anyscale-0.26.65.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1180
+ anyscale-0.26.65.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1181
+ anyscale-0.26.65.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- import re
2
-
3
-
4
- def validate_memorystore_instance_name(memorystore_instance_name: str) -> bool:
5
- if (
6
- re.search("projects/.+/locations/.+/instances/.+", memorystore_instance_name)
7
- is None
8
- ):
9
- return False
10
- return True