Skip to main content

published_apps

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

Overview

Namepublished_apps
TypeResource
Iddatabricks_account.oauth.published_apps

Fields

The following fields are returned by SELECT queries:

Request completed successfully.

NameDatatypeDescription
namestring
app_idstring
client_idstring
descriptionstring
is_confidential_clientboolean
redirect_urlsarray
scopesarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectGet 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.

NameDatatypeDescription

SELECT examples

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;