-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathIDBSQLClient.ts
49 lines (42 loc) · 1.21 KB
/
IDBSQLClient.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import IDBSQLLogger from './IDBSQLLogger';
import IDBSQLSession from './IDBSQLSession';
import IAuthentication from '../connection/contracts/IAuthentication';
import { ProxyOptions } from '../connection/contracts/IConnectionOptions';
import OAuthPersistence from '../connection/auth/DatabricksOAuth/OAuthPersistence';
export interface ClientOptions {
logger?: IDBSQLLogger;
}
type AuthOptions =
| {
authType?: 'access-token';
token: string;
}
| {
authType: 'databricks-oauth';
persistence?: OAuthPersistence;
azureTenantId?: string;
oauthClientId?: string;
oauthClientSecret?: string;
useDatabricksOAuthInAzure?: boolean;
}
| {
authType: 'custom';
provider: IAuthentication;
};
export type ConnectionOptions = {
host: string;
port?: number;
path: string;
userAgentEntry?: string;
socketTimeout?: number;
proxy?: ProxyOptions;
} & AuthOptions;
export interface OpenSessionRequest {
initialCatalog?: string;
initialSchema?: string;
}
export default interface IDBSQLClient {
connect(options: ConnectionOptions): Promise<IDBSQLClient>;
openSession(request?: OpenSessionRequest): Promise<IDBSQLSession>;
close(): Promise<void>;
}