Databricks SDK for JavaScript
    Preparing search index...

    Interface PublishedOAuthApp

    interface PublishedOAuthApp {
        appId?: string;
        clientId?: string;
        description?: string;
        isConfidentialClient?: boolean;
        name?: string;
        redirectUrls?: string[];
        scopes?: string[];
    }
    Index

    Properties

    appId?: string

    Unique ID of the published OAuth app.

    clientId?: string

    Client ID of the published OAuth app. It is the client_id in the OAuth flow

    description?: string

    Description of the published OAuth app.

    isConfidentialClient?: boolean

    Whether the published OAuth app is a confidential client. It is always false for published OAuth apps.

    name?: string

    The display name of the published OAuth app.

    redirectUrls?: string[]

    Redirect URLs of the published OAuth app.

    scopes?: string[]

    Required scopes for the published OAuth app.