recipient_activation
Creates, updates, deletes, gets or lists a recipient_activation resource.
Overview
| Name | recipient_activation |
| Type | Resource |
| Id | databricks_workspace.sharing.recipient_activation |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_url | exec | activation_url, deployment_name | Gets an activation URL for a share. | |
retrieve_token | exec | activation_url, deployment_name | Retrieve access token with an activation url. This is a public API without any authentication. |
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 |
|---|---|---|
activation_url | string | The one time activation url. It also accepts activation token. |
deployment_name | string | The Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc) |
Lifecycle Methods
- get_url
- retrieve_token
Gets an activation URL for a share.
EXEC databricks_workspace.sharing.recipient_activation.get_url
@activation_url='{{ activation_url }}' --required,
@deployment_name='{{ deployment_name }}' --required
;
Retrieve access token with an activation url. This is a public API without any authentication.
EXEC databricks_workspace.sharing.recipient_activation.retrieve_token
@activation_url='{{ activation_url }}' --required,
@deployment_name='{{ deployment_name }}' --required
;