Feature 10922: Start, Stop and Rebuild
*Added NG-UI support for Start, Stop and Rebuild
*In NS Instances page. Click "Start" or "Stop" or "Rebuild" in the actions menu.
*Then a new pop-up page will be opened.
*In the popup there will be fields containing membervnfIndex, vduid, count index mandatory fields to start, stop or rebuild VNF Instances
*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: Idc0b6316af06b2190732beb198d1e74bcb8b23b0
Signed-off-by: SANDHYA.JS <sandhya.j@tataelxsi.co.in>
diff --git a/src/app/AppModule.ts b/src/app/AppModule.ts
index cc9af15..30c6842 100644
--- a/src/app/AppModule.ts
+++ b/src/app/AppModule.ts
@@ -74,6 +74,7 @@
import { SDNControllerActionComponent } from 'SDNControllerActionComponent';
import { SharedModule } from 'SharedModule';
import { ShowInfoComponent } from 'ShowInfoComponent';
+import { StartStopRebuildComponent } from 'StartStopRebuildComponent';
import { SwitchProjectComponent } from 'SwitchProjectComponent';
import { UsersActionComponent } from 'UsersActionComponent';
import { UserSettingsComponent } from 'UserSettingsComponent';
@@ -133,7 +134,8 @@
ChangePasswordComponent,
VmMigrationComponent,
NsUpdateComponent,
- WarningComponent
+ WarningComponent,
+ StartStopRebuildComponent
],
imports: [
NotifierModule.withConfig(customNotifierOptions),
@@ -210,7 +212,8 @@
ChangePasswordComponent,
VmMigrationComponent,
NsUpdateComponent,
- WarningComponent
+ WarningComponent,
+ StartStopRebuildComponent
]
})