consumer_listings
Operations on a consumer_listings
resource.
Overview
Name | consumer_listings |
Type | Resource |
Id | databricks_workspace.marketplace.consumer_listings |
Fields
Name | Datatype |
---|---|
id | string |
detail | object |
summary | object |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | id, deployment_name | Get a published listing in the Databricks Marketplace that the consumer has access to. |
list | SELECT | deployment_name | List all published listings in the Databricks Marketplace that the consumer has access to. |
search | SELECT | query, deployment_name | Search published listings in the Databricks Marketplace that the consumer has access to. This query supports a variety of different search parameters and performs fuzzy matching. |
batchget | EXEC | deployment_name | Batch get a published listing in the Databricks Marketplace that the consumer has access to. |
SELECT
examples
- consumer_listings (list)
- consumer_listings (get)
- consumer_listings (search)
SELECT
id,
detail,
summary
FROM databricks_workspace.marketplace.consumer_listings
WHERE deployment_name = '{{ deployment_name }}';
SELECT
id,
detail,
summary
FROM databricks_workspace.marketplace.consumer_listings
WHERE id = '{{ id }}' AND
deployment_name = '{{ deployment_name }}';
SELECT
id,
detail,
summary
FROM databricks_workspace.marketplace.consumer_listings
WHERE query = '{{ query }}' AND
deployment_name = '{{ deployment_name }}';