dashboard_embedding_access_policy
Operations on a dashboard_embedding_access_policy
resource.
Overview
Name | dashboard_embedding_access_policy |
Type | Resource |
Id | databricks_workspace.workspace.dashboard_embedding_access_policy |
Fields
Name | Datatype |
---|---|
aibi_dashboard_embedding_access_policy | object |
etag | string |
setting_name | string |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | deployment_name | Retrieves the AI/BI dashboard embedding access policy. The default setting is ALLOW_APPROVED_DOMAINS, permitting AI/BI dashboards to be embedded on approved domains. |
delete | DELETE | deployment_name | Delete the AI/BI dashboard embedding access policy, reverting back to the default. |
update | UPDATE | deployment_name | Updates the AI/BI dashboard embedding access policy at the workspace level. |
SELECT
examples
SELECT
aibi_dashboard_embedding_access_policy,
etag,
setting_name
FROM databricks_workspace.workspace.dashboard_embedding_access_policy
WHERE deployment_name = '{{ deployment_name }}';
UPDATE
example
Updates a dashboard_embedding_access_policy
resource.
/*+ update */
-- replace field1, field2, etc. with the fields you want to update
UPDATE databricks_workspace.workspace.dashboard_embedding_access_policy
SET field1 = '{{ value1 }}',
field2 = '{{ value2 }}', ...
WHERE deployment_name = '{{ deployment_name }}';
DELETE
example
Deletes a dashboard_embedding_access_policy
resource.
/*+ delete */
DELETE FROM databricks_workspace.workspace.dashboard_embedding_access_policy
WHERE deployment_name = '{{ deployment_name }}';