Databricks SDK for JavaScript
    Preparing search index...

    Interface CreateCustomOAuthAppIntegrationRequest

    interface CreateCustomOAuthAppIntegrationRequest {
        accountId?: string;
        confidential?: boolean;
        name?: string;
        redirectUrls?: string[];
        scopes?: string[];
        tokenAccessPolicy?: TokenAccessPolicy;
        userAuthorizedScopes?: string[];
    }
    Index

    Properties

    accountId?: string
    confidential?: boolean

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

    name?: string

    Name of the custom OAuth app

    redirectUrls?: string[]

    List of OAuth redirect urls

    scopes?: string[]

    OAuth scopes granted to the application. Supported scopes: all-apis, sql, offline_access, openid, profile, email.

    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.