Fix Bug 2292: Invalid Member VNF index in Manual Scaling after NS Update remove operation
[osm/NG-UI.git] / src / models / VNFInstanceModel.ts
index 37f3bf3..4fd63db 100644 (file)
@@ -37,7 +37,7 @@ export interface VNFInstanceDetails {
 }
 
 /** Interface for VDUR */
-interface VDUR {
+export interface VDUR {
     'ip-address': string;
     'vim-id': string;
     'internal-connection-point': string[];
@@ -79,3 +79,9 @@ export interface VNFInstanceData {
     VNFD?: string;
     VNFID?: string;
 }
+/** interface for the nsdInstanceData */
+export interface InstanceData {
+    MemberIndex?: string;
+    VNFInstanceId?: string;
+    VNFD?: string;
+}