Skip to main content

cluster_permissions

Operations on a cluster_permissions resource.

Overview

Namecluster_permissions
TypeResource
Iddatabricks_workspace.compute.cluster_permissions

Fields

NameDatatype
access_control_listarray
object_idstring
object_typestring

Methods

NameAccessible byRequired ParamsDescription
getpermissionsSELECTcluster_id, deployment_nameGets the permissions of a cluster. Clusters can inherit permissions from their root object.
updatepermissionsUPDATEcluster_id, deployment_nameUpdates the permissions on a cluster. Clusters can inherit permissions from their root object.
setpermissionsREPLACEcluster_id, deployment_nameSets permissions on an object, replacing existing permissions if they exist. Deletes all direct permissions if none are specified. Objects can inherit permissions from their root object.

SELECT examples

SELECT
access_control_list,
object_id,
object_type
FROM databricks_workspace.compute.cluster_permissions
WHERE cluster_id = '{{ cluster_id }}' AND
deployment_name = '{{ deployment_name }}';

UPDATE example

Updates a cluster_permissions resource.

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

REPLACE example

Replaces a cluster_permissions resource.

/*+ update */
-- replace field1, field2, etc. with the fields you want to update
REPLACE databricks_workspace.compute.cluster_permissions
SET field1 = '{ value1 }',
field2 = '{ value2 }', ...
WHERE cluster_id = '{{ cluster_id }}' AND
deployment_name = '{{ deployment_name }}';