recipient_activation_token
Creates, updates, deletes, gets or lists a recipient_activation_token resource.
Overview
| Name | recipient_activation_token |
| Type | Resource |
| Id | databricks_workspace.deltasharing.recipient_activation_token |
Fields
The following fields are returned by SELECT queries:
- retrievetoken
The access token was successfully retrieved.
| Name | Datatype | Description |
|---|---|---|
bearerToken | string | |
endpoint | string | |
expirationTime | string | |
shareCredentialsVersion | integer |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
retrievetoken | select | 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 |
|---|---|---|
deployment_name | string | The Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc) |
SELECT examples
- retrievetoken
Retrieve access token with an activation url. This is a public API without any authentication.
SELECT
bearerToken,
endpoint,
expirationTime,
shareCredentialsVersion
FROM databricks_workspace.deltasharing.recipient_activation_token
WHERE deployment_name = '{{ deployment_name }}' -- required;