Skip to main content

consumer_listings

Creates, updates, deletes, gets or lists a consumer_listings resource.

Overview

Nameconsumer_listings
TypeResource
Iddatabricks_workspace.marketplace.consumer_listings

Fields

The following fields are returned by SELECT queries:

Request completed successfully.

NameDatatypeDescription
idstring
detailobject
summaryobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
searchselectdeployment_nameSearch 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.
listselectdeployment_nameList all published listings in the Databricks Marketplace that the consumer has access to.
getselectdeployment_nameGet a published listing in the Databricks Marketplace that the consumer has access to.
batchgetexecdeployment_nameBatch get a published listing in the Databricks Marketplace that the consumer has access to.

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.

NameDatatypeDescription
deployment_namestringThe Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc)

SELECT examples

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.

SELECT
id,
detail,
summary
FROM databricks_workspace.marketplace.consumer_listings
WHERE deployment_name = '{{ deployment_name }}' -- required;

Lifecycle Methods

Batch get a published listing in the Databricks Marketplace that the consumer has access to.

EXEC databricks_workspace.marketplace.consumer_listings.batchget 
@deployment_name='{{ deployment_name }}' --required;