Feature-9904: Enhancing NG-UI to enable Juju operational view dashboard
* NG-UI able to show the Juju Operational view dashboard of launched NS.
Change-Id: I9c7feadce8dbfca00e4e9321dffed3818a2e4510
Signed-off-by: Barath Kumar R <barath.r@tataelxsi.co.in>
diff --git a/src/models/CommonModel.ts b/src/models/CommonModel.ts
index 7bd1cca..7b51e9e 100644
--- a/src/models/CommonModel.ts
+++ b/src/models/CommonModel.ts
@@ -17,6 +17,7 @@
*/
import { HttpHeaders } from '@angular/common/http';
import { NSD } from 'NSInstanceModel';
+import { EXECUTEDACTIONS } from 'OperationalModel';
import { VNFD } from 'VNFDModel';
/**
@@ -41,7 +42,8 @@
oneMB = 1048576,
paginationDefaultValue = 10,
splitLongitude = 1,
- splitLatitude = 2
+ splitLatitude = 2,
+ timeOutDefaultSeconds = 5
}
/**
* handle count @enum
@@ -115,6 +117,9 @@
nsID?: string;
nsd?: NSD;
data?: VNFD[];
+ configs?: object;
+ actions?: object;
+ executedActions?: EXECUTEDACTIONS[];
}
/** Handle the Delete params */
export interface DELETEPARAMS {