Skip to main content

provider_exchanges

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

Overview

Nameprovider_exchanges
TypeResource
Iddatabricks_workspace.marketplace.provider_exchanges

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
exchangeobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectid, deployment_nameGet an exchange.
listselectdeployment_namepage_size, page_tokenList exchanges visible to provider
createinsertdeployment_name, exchangeCreate an exchange
updatereplaceid, deployment_name, exchangeUpdate an exchange
deletedeleteid, deployment_nameThis removes a listing from marketplace.

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
page_sizeinteger
page_tokenstring

SELECT examples

Get an exchange.

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

INSERT examples

Create an exchange

INSERT INTO databricks_workspace.marketplace.provider_exchanges (
exchange,
deployment_name
)
SELECT
'{{ exchange }}' /* required */,
'{{ deployment_name }}'
RETURNING
exchange_id
;

REPLACE examples

Update an exchange

REPLACE databricks_workspace.marketplace.provider_exchanges
SET
exchange = '{{ exchange }}'
WHERE
id = '{{ id }}' --required
AND deployment_name = '{{ deployment_name }}' --required
AND exchange = '{{ exchange }}' --required
RETURNING
exchange;

DELETE examples

This removes a listing from marketplace.

DELETE FROM databricks_workspace.marketplace.provider_exchanges
WHERE id = '{{ id }}' --required
AND deployment_name = '{{ deployment_name }}' --required
;