dashboard_embedding_approved_domains
Creates, updates, deletes, gets or lists a dashboard_embedding_approved_domains
resource.
Overview
Name | dashboard_embedding_approved_domains |
Type | Resource |
Id | databricks_workspace.workspace.dashboard_embedding_approved_domains |
Fields
The following fields are returned by SELECT
queries:
- get
Request completed successfully.
Name | Datatype | Description |
---|---|---|
setting_name | string | |
aibi_dashboard_embedding_approved_domains | object | |
etag | string |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | deployment_name | Retrieves the list of domains approved to host embedded AI/BI dashboards. | |
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. | |
delete | delete | deployment_name | Delete the list of domains approved to host embedded AI/BI dashboards, reverting back to the default empty list. |
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
- get
Retrieves the list of domains approved to host embedded AI/BI dashboards.
SELECT
setting_name,
aibi_dashboard_embedding_approved_domains,
etag
FROM databricks_workspace.workspace.dashboard_embedding_approved_domains
WHERE deployment_name = '{{ deployment_name }}' -- required;
UPDATE
examples
- update
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.
UPDATE databricks_workspace.workspace.dashboard_embedding_approved_domains
SET
data__allow_missing = '{{ allow_missing }}',
data__field_mask = {{ field_mask }},
data__setting = '{{ setting }}'
WHERE
deployment_name = '{{ deployment_name }}' --required
RETURNING
setting_name,
aibi_dashboard_embedding_approved_domains,
etag;
DELETE
examples
- delete
Delete the list of domains approved to host embedded AI/BI dashboards, reverting back to the default empty list.
DELETE FROM databricks_workspace.workspace.dashboard_embedding_approved_domains
WHERE deployment_name = '{{ deployment_name }}' --required;