anyscale 0.26.13__py3-none-any.whl → 0.26.15__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 (54) hide show
  1. anyscale/_private/anyscale_client/fake_anyscale_client.py +1 -1
  2. anyscale/_private/docgen/models.md +2 -2
  3. anyscale/_private/models/model_base.py +5 -2
  4. anyscale/_private/utils/progress_util.py +2 -2
  5. anyscale/_private/workload/workload_sdk.py +4 -3
  6. anyscale/anyscale-cloud-setup.yaml +4 -0
  7. anyscale/client/README.md +20 -2
  8. anyscale/client/openapi_client/__init__.py +14 -1
  9. anyscale/client/openapi_client/api/default_api.py +847 -241
  10. anyscale/client/openapi_client/models/__init__.py +14 -1
  11. anyscale/client/openapi_client/models/baseimagesenum.py +2 -4
  12. anyscale/client/openapi_client/models/supportedbaseimagesenum.py +2 -2
  13. anyscale/client/openapi_client/models/task_exception_group_aggregate.py +175 -0
  14. anyscale/client/openapi_client/models/task_exception_group_aggregate_response.py +174 -0
  15. anyscale/client/openapi_client/models/task_function_name_group_aggregate.py +202 -0
  16. anyscale/client/openapi_client/models/task_function_name_group_aggregate_response.py +174 -0
  17. anyscale/client/openapi_client/models/task_grouped_aggregate_metrics.py +337 -0
  18. anyscale/client/openapi_client/models/task_job_group_aggregate.py +175 -0
  19. anyscale/client/openapi_client/models/task_job_group_aggregate_response.py +174 -0
  20. anyscale/client/openapi_client/models/task_state.py +103 -0
  21. anyscale/client/openapi_client/models/task_summary.py +256 -0
  22. anyscale/client/openapi_client/models/task_table_config.py +250 -0
  23. anyscale/client/openapi_client/models/task_table_response.py +174 -0
  24. anyscale/client/openapi_client/models/task_table_row.py +491 -0
  25. anyscale/client/openapi_client/models/task_type.py +100 -0
  26. anyscale/client/openapi_client/models/tasksummary_response.py +121 -0
  27. anyscale/cloud_resource.py +1 -1
  28. anyscale/cloud_utils.py +6 -2
  29. anyscale/cluster_compute.py +4 -3
  30. anyscale/cluster_env.py +8 -5
  31. anyscale/commands/command_examples.py +22 -0
  32. anyscale/compute_config/_private/compute_config_sdk.py +1 -1
  33. anyscale/connect_utils/prepare_cluster.py +14 -4
  34. anyscale/controllers/cloud_controller.py +2 -2
  35. anyscale/controllers/cloud_functional_verification_controller.py +4 -2
  36. anyscale/controllers/service_controller.py +1 -1
  37. anyscale/project_utils.py +4 -3
  38. anyscale/sdk/anyscale_client/models/baseimagesenum.py +2 -4
  39. anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +2 -2
  40. anyscale/sdk/anyscale_client/sdk.py +4 -4
  41. anyscale/utils/connect_helpers.py +16 -3
  42. anyscale/utils/runtime_env.py +3 -1
  43. anyscale/version.py +1 -1
  44. anyscale/workspace/__init__.py +10 -5
  45. anyscale/workspace/_private/workspace_sdk.py +4 -4
  46. anyscale/workspace/commands.py +1 -1
  47. {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/METADATA +1 -1
  48. {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/RECORD +53 -40
  49. anyscale/client/openapi_client/models/buffer_registration.py +0 -285
  50. {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/LICENSE +0 -0
  51. {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/NOTICE +0 -0
  52. {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/WHEEL +0 -0
  53. {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/entry_points.txt +0 -0
  54. {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/top_level.txt +0 -0
@@ -1102,7 +1102,7 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
1102
1102
  return self._clusters_headnode_ip.get(cluster_id, "")
1103
1103
 
1104
1104
  def get_cluster_ssh_key(self, cluster_id: str) -> SessionSshKey:
1105
- return self._clusters_ssh_key.get(cluster_id, None)
1105
+ return self._clusters_ssh_key.get(cluster_id, None) # type: ignore
1106
1106
 
1107
1107
  def get_workspace_default_dir_name(self, workspace_id) -> str:
1108
1108
  workspace = self._workspaces.get(workspace_id, None)