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.
- anyscale/_private/anyscale_client/fake_anyscale_client.py +1 -1
- anyscale/_private/docgen/models.md +2 -2
- anyscale/_private/models/model_base.py +5 -2
- anyscale/_private/utils/progress_util.py +2 -2
- anyscale/_private/workload/workload_sdk.py +4 -3
- anyscale/anyscale-cloud-setup.yaml +4 -0
- anyscale/client/README.md +20 -2
- anyscale/client/openapi_client/__init__.py +14 -1
- anyscale/client/openapi_client/api/default_api.py +847 -241
- anyscale/client/openapi_client/models/__init__.py +14 -1
- anyscale/client/openapi_client/models/baseimagesenum.py +2 -4
- anyscale/client/openapi_client/models/supportedbaseimagesenum.py +2 -2
- anyscale/client/openapi_client/models/task_exception_group_aggregate.py +175 -0
- anyscale/client/openapi_client/models/task_exception_group_aggregate_response.py +174 -0
- anyscale/client/openapi_client/models/task_function_name_group_aggregate.py +202 -0
- anyscale/client/openapi_client/models/task_function_name_group_aggregate_response.py +174 -0
- anyscale/client/openapi_client/models/task_grouped_aggregate_metrics.py +337 -0
- anyscale/client/openapi_client/models/task_job_group_aggregate.py +175 -0
- anyscale/client/openapi_client/models/task_job_group_aggregate_response.py +174 -0
- anyscale/client/openapi_client/models/task_state.py +103 -0
- anyscale/client/openapi_client/models/task_summary.py +256 -0
- anyscale/client/openapi_client/models/task_table_config.py +250 -0
- anyscale/client/openapi_client/models/task_table_response.py +174 -0
- anyscale/client/openapi_client/models/task_table_row.py +491 -0
- anyscale/client/openapi_client/models/task_type.py +100 -0
- anyscale/client/openapi_client/models/tasksummary_response.py +121 -0
- anyscale/cloud_resource.py +1 -1
- anyscale/cloud_utils.py +6 -2
- anyscale/cluster_compute.py +4 -3
- anyscale/cluster_env.py +8 -5
- anyscale/commands/command_examples.py +22 -0
- anyscale/compute_config/_private/compute_config_sdk.py +1 -1
- anyscale/connect_utils/prepare_cluster.py +14 -4
- anyscale/controllers/cloud_controller.py +2 -2
- anyscale/controllers/cloud_functional_verification_controller.py +4 -2
- anyscale/controllers/service_controller.py +1 -1
- anyscale/project_utils.py +4 -3
- anyscale/sdk/anyscale_client/models/baseimagesenum.py +2 -4
- anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +2 -2
- anyscale/sdk/anyscale_client/sdk.py +4 -4
- anyscale/utils/connect_helpers.py +16 -3
- anyscale/utils/runtime_env.py +3 -1
- anyscale/version.py +1 -1
- anyscale/workspace/__init__.py +10 -5
- anyscale/workspace/_private/workspace_sdk.py +4 -4
- anyscale/workspace/commands.py +1 -1
- {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/METADATA +1 -1
- {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/RECORD +53 -40
- anyscale/client/openapi_client/models/buffer_registration.py +0 -285
- {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/LICENSE +0 -0
- {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/NOTICE +0 -0
- {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/WHEEL +0 -0
- {anyscale-0.26.13.dist-info → anyscale-0.26.15.dist-info}/entry_points.txt +0 -0
- {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)
|