mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-07 01:25:38 -05:00
Connection URI with complete options (finalized) (#22735)
* Connection URI made to include every option available instead of basic details (#22045) * Revert "Merge remote-tracking branch 'origin' into feat/connectionUri" This reverts commit 11b2d31bf99e216daee823f732254f69a017fee1, reversing changes made to 36e4db8c0744f81565efdfd2f56a3ae3c0026896. * Revert "Revert "Merge remote-tracking branch 'origin' into feat/connectionUri"" This reverts commit f439673c2693e1144c52e04c14e82cd8566c13a6. * Added changes and fixes for feat connectionuri (#22706) * add title generation at start * added await to refreshConnectionTreeTitles
This commit is contained in:
8
src/sql/azdata.proposed.d.ts
vendored
8
src/sql/azdata.proposed.d.ts
vendored
@@ -508,6 +508,14 @@ declare module 'azdata' {
|
||||
* @returns The new password that is returned from the operation or undefined if unsuccessful.
|
||||
*/
|
||||
export function openChangePasswordDialog(profile: IConnectionProfile): Thenable<string | undefined>;
|
||||
|
||||
/**
|
||||
* Gets the formatted title of the connection profile for display
|
||||
* @param profile The connection profile we want to get the full display info for (without non default options).
|
||||
* @param getNonDefaultsOnly Provide if you only want to get the non default options string (for some titles).
|
||||
* @returns The title formatted with connection name in front, server info in the middle, with non default options at the end.
|
||||
*/
|
||||
export function getEditorConnectionProfileTitle(profile: IConnectionProfile, getNonDefaultsOnly?: boolean): Thenable<string>;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user