Skip to main content

dashboards_published

Creates, updates, deletes, gets or lists a dashboards_published resource.

Overview

Namedashboards_published
TypeResource
Iddatabricks_workspace.lakeview.dashboards_published

Fields

The following fields are returned by SELECT queries:

Request completed successfully.

NameDatatypeDescription
warehouse_idstring
display_namestring
embed_credentialsboolean
revision_create_timestring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getpublishedselectdeployment_nameGet the current published dashboard.

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 current published dashboard.

SELECT
warehouse_id,
display_name,
embed_credentials,
revision_create_time
FROM databricks_workspace.lakeview.dashboards_published
WHERE deployment_name = '{{ deployment_name }}' -- required;