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:

Request completed successfully.

NameDatatypeDescription
idstring
namestring
dark_mode_icon_file_idstring
icon_file_idstring
business_contact_emailstring
company_website_linkstring
dark_mode_icon_file_pathstring
descriptionstring
icon_file_pathstring
is_featuredboolean
privacy_policy_linkstring
published_bystring
support_contact_emailstring
term_of_service_linkstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectdeployment_nameList all providers in the Databricks Marketplace with at least one visible listing.
getselectdeployment_nameGet a provider in the Databricks Marketplace with at least one visible listing.
batchgetexecdeployment_nameBatch 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)

SELECT examples

List all providers in the Databricks Marketplace with at least one visible listing.

SELECT
id,
name,
dark_mode_icon_file_id,
icon_file_id,
business_contact_email,
company_website_link,
dark_mode_icon_file_path,
description,
icon_file_path,
is_featured,
privacy_policy_link,
published_by,
support_contact_email,
term_of_service_link
FROM databricks_workspace.marketplace.consumer_providers
WHERE 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.batchget 
@deployment_name='{{ deployment_name }}' --required;