mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-05 09:35:39 -05:00
Add connection profile persistence to MIAA dashboard (#11061)
* wip * fixes * fix pg model * more updates * Add resourceType check
This commit is contained in:
@@ -14,7 +14,15 @@ import { AzureArcTreeDataProvider } from '../ui/tree/azureArcTreeDataProvider';
|
||||
export type ControllerInfo = {
|
||||
url: string,
|
||||
username: string,
|
||||
rememberPassword: boolean
|
||||
rememberPassword: boolean,
|
||||
resources: ResourceInfo[]
|
||||
};
|
||||
|
||||
export type ResourceInfo = {
|
||||
namespace: string,
|
||||
name: string,
|
||||
resourceType: ResourceType | string,
|
||||
connectionId?: string
|
||||
};
|
||||
|
||||
export interface Registration extends RegistrationResponse {
|
||||
|
||||
Reference in New Issue
Block a user