dashboard_embedding_approved_domains
Operations on a dashboard_embedding_approved_domains
resource.
Overview
Name | dashboard_embedding_approved_domains |
Type | Resource |
Id | databricks_workspace.workspace.dashboard_embedding_approved_domains |
Fields
Name | Datatype |
---|---|
aibi_dashboard_embedding_approved_domains | object |
etag | string |
setting_name | string |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | deployment_name | Retrieves the list of domains approved to host embedded AI/BI dashboards. |
delete | DELETE | deployment_name | Delete the list of domains approved to host embedded AI/BI dashboards, reverting back to the default empty list. |
update | UPDATE | deployment_name | Updates 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 }}';