Skip to main content

job_permissions

Operations on a job_permissions resource.

Overview

Namejob_permissions
TypeResource
Iddatabricks_workspace.workflows.job_permissions

Fields

NameDatatype
access_control_listarray
object_idstring
object_typestring

Methods

NameAccessible byRequired ParamsDescription
getpermissionsSELECTjob_id, deployment_nameGets the permissions of a job. Jobs can inherit permissions from their root object.
updatepermissionsUPDATEjob_id, deployment_nameUpdates the permissions on a job. Jobs can inherit permissions from their root object.
setpermissionsREPLACEjob_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.workflows.job_permissions
WHERE job_id = '{{ job_id }}' AND
deployment_name = '{{ deployment_name }}';

UPDATE example

Updates a job_permissions resource.

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

REPLACE example

Replaces a job_permissions resource.

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