mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-08 17:24:01 -05:00
Modify connection management to support Active Directory authType for non-SQL DBs (#8434)
* First attempt to add Azure MFA login for PostgreSQL * Finish merge with master * Fix auth type default selection * Add AzureMFAAndUser auth type for Orcas * Fix formatting * Update change log * Incorporate some review comments * Missed an occurrence of AzureResource * Try to move all changes out of azdata.d.ts and sqlops.d.ts * Concrete implementation of ConnectionProfile in azdata no longer has azureAccount * Use enum names instead of numbers in config files
This commit is contained in:
27
src/sql/azdata.proposed.d.ts
vendored
27
src/sql/azdata.proposed.d.ts
vendored
@@ -86,4 +86,31 @@ declare module 'azdata' {
|
||||
*/
|
||||
onDidClick: vscode.Event<any>;
|
||||
}
|
||||
|
||||
/*
|
||||
* Add optional azureAccount for connectionWidget.
|
||||
*/
|
||||
export interface IConnectionProfile extends ConnectionInfo {
|
||||
azureAccount?: string;
|
||||
}
|
||||
|
||||
/*
|
||||
* Add optional per-OS default value.
|
||||
*/
|
||||
export interface DefaultValueOsOverride {
|
||||
os: string;
|
||||
|
||||
defaultValueOverride: string;
|
||||
}
|
||||
|
||||
export interface ConnectionOption {
|
||||
defaultValueOsOverrides?: DefaultValueOsOverride[];
|
||||
}
|
||||
|
||||
/*
|
||||
* Add OssRdbms for sqlops AzureResource.
|
||||
*/
|
||||
export enum AzureResource {
|
||||
OssRdbms = 2
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user