Databricks SDK for JavaScript
    Preparing search index...

    Interface CustomOAuthAppIntegration

    interface CustomOAuthAppIntegration {
        clientId?: string;
        confidential?: boolean;
        createdBy?: bigint;
        createTime?: string;
        creatorUsername?: string;
        integrationId?: string;
        name?: string;
        redirectUrls?: string[];
        scopes?: string[];
        tokenAccessPolicy?: TokenAccessPolicy;
        userAuthorizedScopes?: string[];
    }
    Index

    Properties

    clientId?: string

    The client id of the custom OAuth app

    confidential?: boolean

    This field indicates whether an OAuth client secret is required to authenticate this client.

    createdBy?: bigint
    createTime?: string
    creatorUsername?: string
    integrationId?: string

    ID of this custom app

    name?: string

    The display name of the custom OAuth app

    redirectUrls?: string[]

    List of OAuth redirect urls

    scopes?: string[]
    tokenAccessPolicy?: TokenAccessPolicy

    Token access policy

    userAuthorizedScopes?: string[]

    Scopes that will need to be consented by end user to mint the access token. If the user does not authorize the access token will not be minted. Must be a subset of scopes.