Feature 10912, 10916: NS Update
*Added NG-UI support to remove VNF and change VNF in NS update
*In NS Instances page. Click "Ns Update" in the actions menu.
*Then a new pop-up page will opened.
*In the popup there will be drop-down containing Update Type with 'CHANGE_VNFPKG' & 'REMOVE_VNFPKG', membervnfIndex and text field Vnfd Id.
*When the fields are selected then Click Apply button.
*For CHANGE_VNFPKG type, the software-version will be checked whether matching or not and corresponding popup will be shown.
*The pop-up window is closed and the page is directed to "History of operations" page
Change-Id: I135dda039a381b1faa62baa263543e1f210384f7
Signed-off-by: SANDHYA.JS <sandhya.j@tataelxsi.co.in>
diff --git a/src/app/AppModule.ts b/src/app/AppModule.ts
index 06d1004..cc9af15 100644
--- a/src/app/AppModule.ts
+++ b/src/app/AppModule.ts
@@ -65,6 +65,7 @@
import { NetslicePackagesActionComponent } from 'NetslicePackagesAction';
import { NSInstancesActionComponent } from 'NSInstancesActionComponent';
import { NsPackagesActionComponent } from 'NsPackagesAction';
+import { NsUpdateComponent } from 'NsUpdateComponent';
import { PageNotFoundComponent } from 'PageNotFound';
import { PDUInstancesActionComponent } from 'PDUInstancesActionComponent';
import { ProjectLinkComponent } from 'ProjectLinkComponent';
@@ -81,6 +82,7 @@
import { VNFInstancesActionComponent } from 'VNFInstancesActionComponent';
import { VNFLinkComponent } from 'VNFLinkComponent';
import { VNFPackagesActionComponent } from 'VNFPackagesAction';
+import { WarningComponent } from 'WarningComponent';
import { WIMAccountsActionComponent } from 'WIMAccountsAction';
/**
@@ -129,7 +131,9 @@
GoToTopDirective,
ScalingComponent,
ChangePasswordComponent,
- VmMigrationComponent
+ VmMigrationComponent,
+ NsUpdateComponent,
+ WarningComponent
],
imports: [
NotifierModule.withConfig(customNotifierOptions),
@@ -204,7 +208,9 @@
SwitchProjectComponent,
ScalingComponent,
ChangePasswordComponent,
- VmMigrationComponent
+ VmMigrationComponent,
+ NsUpdateComponent,
+ WarningComponent
]
})