consumer_providers
Creates, updates, deletes, gets or lists a consumer_providers
resource.
Overview
Name | consumer_providers |
Type | Resource |
Id | databricks_workspace.marketplace.consumer_providers |
Fields
The following fields are returned by SELECT
queries:
- list
- get
Request completed successfully.
Name | Datatype | Description |
---|---|---|
id | string | |
name | string | |
dark_mode_icon_file_id | string | |
icon_file_id | string | |
business_contact_email | string | |
company_website_link | string | |
dark_mode_icon_file_path | string | |
description | string | |
icon_file_path | string | |
is_featured | boolean | |
privacy_policy_link | string | |
published_by | string | |
support_contact_email | string | |
term_of_service_link | string |
Request completed successfully.
Name | Datatype | Description |
---|---|---|
id | string | |
name | string | |
dark_mode_icon_file_id | string | |
icon_file_id | string | |
business_contact_email | string | |
company_website_link | string | |
dark_mode_icon_file_path | string | |
description | 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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | deployment_name | List all providers in the Databricks Marketplace with at least one visible listing. | |
get | select | deployment_name | Get a provider 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. |
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.
Name | Datatype | Description |
---|---|---|
deployment_name | string | The Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc) |
SELECT
examples
- list
- get
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;
Get a provider 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
- batchget
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;