Feature 10911-Vertical scaling of VM instances from OSM

	*Added NG-UI support for Vertical scaling
	*In NS Instances page. Click "Vertical Scaling" in the VIM action menu.
        *Then a new pop-up page will be opened.
        *In the popup there will be fields containing membervnfIndex, vduid, count index mandatory fields with Virtual Memory, size of storage and vcpu count field to vertically scale
        *When the fields are selected then Click Apply button.
        *The pop-up window is closed and the page is directed to "History of operations" page

Change-Id: I6d898c8637b361af69dc7e516e46834a346cda82
Signed-off-by: SANDHYA.JS <sandhya.j@tataelxsi.co.in>
diff --git a/src/app/AppModule.ts b/src/app/AppModule.ts
index 30c6842..5244bb2 100644
--- a/src/app/AppModule.ts
+++ b/src/app/AppModule.ts
@@ -78,6 +78,7 @@
 import { SwitchProjectComponent } from 'SwitchProjectComponent';
 import { UsersActionComponent } from 'UsersActionComponent';
 import { UserSettingsComponent } from 'UserSettingsComponent';
+import { VerticalScalingComponent } from 'VerticalScalingComponent';
 import { VimAccountsActionComponent } from 'VimAccountsAction';
 import { VmMigrationComponent } from 'VmMigrationComponent';
 import { VNFInstancesActionComponent } from 'VNFInstancesActionComponent';
@@ -135,7 +136,8 @@
         VmMigrationComponent,
         NsUpdateComponent,
         WarningComponent,
-        StartStopRebuildComponent
+        StartStopRebuildComponent,
+        VerticalScalingComponent
     ],
     imports: [
         NotifierModule.withConfig(customNotifierOptions),
@@ -213,7 +215,8 @@
         VmMigrationComponent,
         NsUpdateComponent,
         WarningComponent,
-        StartStopRebuildComponent
+        StartStopRebuildComponent,
+        VerticalScalingComponent
     ]
 })