Adding a temporary target selection page for sql migration (#14053)

* Adding a temporary target selection page

* Fixed the wizard page title
This commit is contained in:
Aasim Khan
2021-01-26 10:50:02 -08:00
committed by GitHub
parent db0464d07c
commit 300bce4070
3 changed files with 145 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ import { SKURecommendationPage } from './skuRecommendationPage';
import { DatabaseBackupPage } from './databaseBackupPage';
import { AccountsSelectionPage } from './accountsSelectionPage';
import { IntergrationRuntimePage } from './integrationRuntimePage';
import { TempTargetSelectionPage } from './tempTargetSelectionPage';
export class WizardController {
constructor(private readonly extensionContext: vscode.ExtensionContext) {
@@ -38,12 +39,14 @@ export class WizardController {
const skuRecommendationPage = new SKURecommendationPage(wizard, stateModel);
// const subscriptionSelectionPage = new SubscriptionSelectionPage(wizard, stateModel);
const azureAccountsPage = new AccountsSelectionPage(wizard, stateModel);
const tempTargetSelectionPage = new TempTargetSelectionPage(wizard, stateModel);
const databaseBackupPage = new DatabaseBackupPage(wizard, stateModel);
const integrationRuntimePage = new IntergrationRuntimePage(wizard, stateModel);
const pages: MigrationWizardPage[] = [
// subscriptionSelectionPage,
azureAccountsPage,
tempTargetSelectionPage,
sourceConfigurationPage,
skuRecommendationPage,
databaseBackupPage,