Skip to main content

dashboard_embedding_approved_domains

Operations on a dashboard_embedding_approved_domains resource.

Overview

Namedashboard_embedding_approved_domains
TypeResource
Iddatabricks_workspace.workspace.dashboard_embedding_approved_domains

Fields

NameDatatype
aibi_dashboard_embedding_approved_domainsobject
etagstring
setting_namestring

Methods

NameAccessible byRequired ParamsDescription
getSELECTdeployment_nameRetrieves the list of domains approved to host embedded AI/BI dashboards.
deleteDELETEdeployment_nameDelete the list of domains approved to host embedded AI/BI dashboards, reverting back to the default empty list.
updateUPDATEdeployment_nameUpdates the list of domains approved to host embedded AI/BI dashboards. This update will fail if the current workspace access policy is not ALLOW_APPROVED_DOMAINS.

SELECT examples

SELECT
aibi_dashboard_embedding_approved_domains,
etag,
setting_name
FROM databricks_workspace.workspace.dashboard_embedding_approved_domains
WHERE deployment_name = '{{ deployment_name }}';

UPDATE example

Updates a dashboard_embedding_approved_domains resource.

/*+ update */
-- replace field1, field2, etc. with the fields you want to update
UPDATE databricks_workspace.workspace.dashboard_embedding_approved_domains
SET field1 = '{{ value1 }}',
field2 = '{{ value2 }}', ...
WHERE deployment_name = '{{ deployment_name }}';

DELETE example

Deletes a dashboard_embedding_approved_domains resource.

/*+ delete */
DELETE FROM databricks_workspace.workspace.dashboard_embedding_approved_domains
WHERE deployment_name = '{{ deployment_name }}';