recipient_share_permissions
Creates, updates, deletes, gets or lists a recipient_share_permissions
resource.
Overview
Name | recipient_share_permissions |
Type | Resource |
Id | databricks_workspace.deltasharing.recipient_share_permissions |
Fields
The following fields are returned by SELECT
queries:
- sharepermissions
The recipient share permissions list was successfully retrieved.
Name | Datatype | Description |
---|---|---|
share_name | string | |
privilege_assignments | array |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
sharepermissions | select | deployment_name | Gets the share permissions for the specified Recipient. The caller must be a metastore admin or the owner of the Recipient. |
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
- sharepermissions
Gets the share permissions for the specified Recipient. The caller must be a metastore admin or the owner of the Recipient.
SELECT
share_name,
privilege_assignments
FROM databricks_workspace.deltasharing.recipient_share_permissions
WHERE deployment_name = '{{ deployment_name }}' -- required;