Add SQL MIAA Upgrade Management tab (#19238)

* Added sql upgrade management page and fixed icon for dc and sql upgrade

* Added logic for figuring out MIAA version, loading proper entries for table.

* Added PR comment changes

Co-authored-by: Candice Ye <canye@microsoft.com>
This commit is contained in:
Candice Ye
2022-05-09 14:35:42 -07:00
committed by GitHub
parent c09ab8d0a9
commit adf6f253f0
13 changed files with 531 additions and 44 deletions

View File

@@ -35,6 +35,7 @@ export class IconPathHelper {
public static properties: IconPath;
public static networking: IconPath;
public static pitr: IconPath;
public static upgrade: IconPath;
public static refresh: IconPath;
public static reset: IconPath;
public static support: IconPath;
@@ -160,6 +161,10 @@ export class IconPathHelper {
light: context.asAbsolutePath('images/pitr.svg'),
dark: context.asAbsolutePath('images/pitr.svg'),
};
IconPathHelper.upgrade = {
light: context.asAbsolutePath('images/upgrade.svg'),
dark: context.asAbsolutePath('images/upgrade.svg'),
};
}
}