@databricks/sql
Version:
Driver for connection to Databricks SQL via Thrift API.
9 lines (8 loc) • 425 B
TypeScript
import BaseCommand from './BaseCommand';
import { TGetDelegationTokenReq, TGetDelegationTokenResp } from '../../../thrift/TCLIService_types';
import IThriftClient from '../../contracts/IThriftClient';
type Client = Pick<IThriftClient, 'GetDelegationToken'>;
export default class GetDelegationTokenCommand extends BaseCommand<Client> {
execute(data: TGetDelegationTokenReq): Promise<TGetDelegationTokenResp>;
}
export {};