Package com.databricks.sdk.service.sql
Interface DbsqlPermissionsService
-
@Generated public interface DbsqlPermissionsService
The SQL Permissions API is similar to the endpoints of the :method:permissions/set. However, this exposes only one endpoint, which gets the Access Control List for a given object. You cannot modify any permissions using this API.There are three levels of permission:
- `CAN_VIEW`: Allows read-only access
- `CAN_RUN`: Allows read access and run access (superset of `CAN_VIEW`)
- `CAN_MANAGE`: Allows all actions: read, run, edit, delete, modify permissions (superset of `CAN_RUN`)
This is the high-level interface, that contains generated methods.
Evolving: this interface is under development. Method signatures may change.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetResponse
get(GetDbsqlPermissionRequest getDbsqlPermissionRequest)
Get object ACL.SetResponse
set(SetRequest setRequest)
Set object ACL.Success
transferOwnership(TransferOwnershipRequest transferOwnershipRequest)
Transfer object ownership.
-
-
-
Method Detail
-
get
GetResponse get(GetDbsqlPermissionRequest getDbsqlPermissionRequest)
Get object ACL.Gets a JSON representation of the access control list (ACL) for a specified object.
-
set
SetResponse set(SetRequest setRequest)
Set object ACL.Sets the access control list (ACL) for a specified object. This operation will complete rewrite the ACL.
-
transferOwnership
Success transferOwnership(TransferOwnershipRequest transferOwnershipRequest)
Transfer object ownership.Transfers ownership of a dashboard, query, or alert to an active user. Requires an admin API key.
-
-