Skip to main content

all_cluster_library_statuses

Creates, updates, deletes, gets or lists an all_cluster_library_statuses resource.

Overview

Nameall_cluster_library_statuses
TypeResource
Iddatabricks_workspace.compute.all_cluster_library_statuses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
cluster_idstring
library_statusesarrayStatus of all libraries on the cluster.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectdeployment_nameGet the status of all libraries on all clusters. A status is returned for all libraries installed on

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
deployment_namestringThe Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc)

SELECT examples

Get the status of all libraries on all clusters. A status is returned for all libraries installed on

SELECT
cluster_id,
library_statuses
FROM databricks_workspace.compute.all_cluster_library_statuses
WHERE deployment_name = '{{ deployment_name }}' -- required
;