dashboards_published
Creates, updates, deletes, gets or lists a dashboards_published
resource.
Overview
Name | dashboards_published |
Type | Resource |
Id | databricks_workspace.lakeview.dashboards_published |
Fields
The following fields are returned by SELECT
queries:
- getpublished
Request completed successfully.
Name | Datatype | Description |
---|---|---|
warehouse_id | string | |
display_name | string | |
embed_credentials | boolean | |
revision_create_time | string |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
getpublished | select | deployment_name | Get 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.
Name | Datatype | Description |
---|---|---|
deployment_name | string | The Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc) |
SELECT
examples
- getpublished
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;