Databricks SDK for JavaScript
    Preparing search index...

    Interface UpdateCustomOAuthAppIntegrationRequest

    interface UpdateCustomOAuthAppIntegrationRequest {
        accountId?: string;
        integrationId?: string;
        redirectUrls?: string[];
        scopes?: string[];
        tokenAccessPolicy?: TokenAccessPolicy;
        userAuthorizedScopes?: string[];
    }
    Index

    Properties

    accountId?: string
    integrationId?: string
    redirectUrls?: string[]

    List of OAuth redirect urls to be updated in the custom OAuth app integration

    scopes?: string[]

    List of OAuth scopes to be updated in the custom OAuth app integration, similar to redirect URIs this will fully replace the existing values instead of appending

    tokenAccessPolicy?: TokenAccessPolicy

    Token access policy to be updated in the custom OAuth app integration

    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.