Bug 1382 - VNF packages list doesn't show short names
[osm/NG-UI.git] / src / models / NSDModel.ts
index e4f94b0..354ccde 100644 (file)
@@ -23,10 +23,10 @@ import { VNFDAdminDetails } from './VNFDModel';
 
 /** Interface for NSData */
 export interface NSData {
-    shortName: string;
+    shortName?: string;
     identifier: string;
     description: string;
-    vendor: string;
+    vendor?: string;
     version: string;
     page?: string;
     name?: string;
@@ -174,3 +174,10 @@ export interface VDUPRIMITIVELEVEL {
     name: string;
     'vdu-configuration': {};
 }
+
+/** Interface for the KDU Primitive Levels */
+export interface KDUPRIMITIVELEVEL {
+    name: string;
+    'juju-bundle': string;
+    'kdu-configuration': {};
+}