listing_installations
Creates, updates, deletes, gets or lists a listing_installations
resource.
Overview
Name | listing_installations |
Type | Resource |
Id | databricks_workspace.marketplace.listing_installations |
Fields
The following fields are returned by SELECT
queries:
- listlistinginstallations
Request completed successfully.
Name | Datatype | Description |
---|---|---|
id | string | |
listing_id | string | |
catalog_name | string | |
listing_name | string | |
repo_name | string | |
share_name | string | |
error_message | string | |
installed_on | integer | |
recipient_type | string | |
repo_path | string | |
status | string | |
token_detail | object | |
tokens | array |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
listlistinginstallations | select | deployment_name | List all installations for a particular listing. |
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
- listlistinginstallations
List all installations for a particular listing.
SELECT
id,
listing_id,
catalog_name,
listing_name,
repo_name,
share_name,
error_message,
installed_on,
recipient_type,
repo_path,
status,
token_detail,
tokens
FROM databricks_workspace.marketplace.listing_installations
WHERE deployment_name = '{{ deployment_name }}' -- required;