Skip to main content

consumer_providers

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

Overview

Nameconsumer_providers
TypeResource
Iddatabricks_workspace.marketplace.consumer_providers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
providerobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectid, deployment_nameGet a provider in the Databricks Marketplace with at least one visible listing.
listselectdeployment_nameis_featured, page_size, page_tokenList all providers in the Databricks Marketplace with at least one visible listing.
batch_getexecdeployment_nameidsBatch get a provider in the Databricks Marketplace with at least one visible 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.

NameDatatypeDescription
deployment_namestringThe Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc)
idstring
idsarray
page_sizeinteger
page_tokenstring

SELECT examples

Get a provider in the Databricks Marketplace with at least one visible listing.

SELECT
provider
FROM databricks_workspace.marketplace.consumer_providers
WHERE id = '{{ id }}' -- required
AND deployment_name = '{{ deployment_name }}' -- required
;

Lifecycle Methods

Batch get a provider in the Databricks Marketplace with at least one visible listing.

EXEC databricks_workspace.marketplace.consumer_providers.batch_get 
@deployment_name='{{ deployment_name }}' --required,
@ids='{{ ids }}'
;