mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
controller dropdown field to SQL MIAA and Postgres deployment. (#12217)
* saving first draft * throw if no controllers * cleanup * bug fixes * bug fixes and caching controller access * pr comments and bug fixes. * fixes * fixes * comment fix * remove debug prints * comment fixes * remove debug logs * inputValueTransformer returns string|Promise * PR feedback * pr fixes * remove _ from protected fields * anonymous to full methods * small fixes
This commit is contained in:
8
extensions/arc/src/typings/arc.d.ts
vendored
8
extensions/arc/src/typings/arc.d.ts
vendored
@@ -35,7 +35,13 @@ declare module 'arc' {
|
||||
resources: ResourceInfo[]
|
||||
};
|
||||
|
||||
export interface DataController {
|
||||
label: string,
|
||||
info: ControllerInfo
|
||||
}
|
||||
export interface IExtension {
|
||||
getRegisteredDataControllers(): Promise<ControllerInfo[]>;
|
||||
getRegisteredDataControllers(): Promise<DataController[]>;
|
||||
getControllerPassword(controllerInfo: ControllerInfo): Promise<string>;
|
||||
reacquireControllerPassword(controllerInfo: ControllerInfo, password: string, retryCount?: number): Promise<string>;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user