published_apps
Creates, updates, deletes, gets or lists a published_apps resource.
Overview
| Name | published_apps |
| Type | Resource |
| Id | databricks_account.oauth.published_apps |
Fields
The following fields are returned by SELECT queries:
- list
Request completed successfully.
| Name | Datatype | Description |
|---|---|---|
name | string | |
app_id | string | |
client_id | string | |
description | string | |
is_confidential_client | boolean | |
redirect_urls | array | |
scopes | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | Get all the available published OAuth apps in Databricks. |
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 |
|---|
SELECT examples
- list
Get all the available published OAuth apps in Databricks.
SELECT
name,
app_id,
client_id,
description,
is_confidential_client,
redirect_urls,
scopes
FROM databricks_account.oauth.published_apps;