UNPKG

@databricks/sql

Version:

Driver for connection to Databricks SQL via Thrift API.

9 lines (8 loc) 437 B
import BaseCommand from './BaseCommand'; import { TRenewDelegationTokenReq, TRenewDelegationTokenResp } from '../../../thrift/TCLIService_types'; import IThriftClient from '../../contracts/IThriftClient'; type Client = Pick<IThriftClient, 'RenewDelegationToken'>; export default class RenewDelegationTokenCommand extends BaseCommand<Client> { execute(data: TRenewDelegationTokenReq): Promise<TRenewDelegationTokenResp>; } export {};