consumer_providers
Operations on a consumer_providers
resource.
Overview
Name | consumer_providers |
Type | Resource |
Id | databricks_workspace.marketplace.consumer_providers |
Fields
Name | Datatype |
---|---|
id | string |
name | string |
description | string |
business_contact_email | string |
company_website_link | string |
dark_mode_icon_file_id | string |
dark_mode_icon_file_path | string |
icon_file_id | string |
icon_file_path | string |
is_featured | boolean |
privacy_policy_link | string |
published_by | string |
support_contact_email | string |
term_of_service_link | string |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | id, deployment_name | Get a provider in the Databricks Marketplace with at least one visible listing. |
list | SELECT | deployment_name | List all providers in the Databricks Marketplace with at least one visible listing. |
batchget | EXEC | deployment_name | Batch get a provider in the Databricks Marketplace with at least one visible listing. |
SELECT
examples
- consumer_providers (list)
- consumer_providers (get)
SELECT
id,
name,
description,
business_contact_email,
company_website_link,
dark_mode_icon_file_id,
dark_mode_icon_file_path,
icon_file_id,
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 }}';
SELECT
id,
name,
description,
business_contact_email,
company_website_link,
dark_mode_icon_file_id,
dark_mode_icon_file_path,
icon_file_id,
icon_file_path,
is_featured,
privacy_policy_link,
published_by,
support_contact_email,
term_of_service_link
FROM databricks_workspace.marketplace.consumer_providers
WHERE id = '{{ id }}' AND
deployment_name = '{{ deployment_name }}';