published_apps
Operations on a published_apps
resource.
Overview
Name | published_apps |
Type | Resource |
Id | databricks_account.oauth.published_apps |
Fields
Name | Datatype |
---|---|
name | string |
description | string |
app_id | string |
client_id | string |
is_confidential_client | boolean |
redirect_urls | array |
scopes | array |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | account_id | Get all the available published OAuth apps in Databricks. |
SELECT
examples
SELECT
name,
description,
app_id,
client_id,
is_confidential_client,
redirect_urls,
scopes
FROM databricks_account.oauth.published_apps
WHERE account_id = '{{ account_id }}';