Feature 10941: User Management Enhancements
[osm/NG-UI.git] / src / models / VNFDModel.ts
index 7029ace..530ba48 100644 (file)
@@ -18,7 +18,6 @@
 /**
  * @file  Model for VNFD related information.
  */
-// tslint:disable: completed-docs
 /** Interface for Project */
 export interface ProjectModel {
     project_id: string;
@@ -32,6 +31,19 @@ export interface ProjectModel {
     username: string;
     remote_host: string;
     admin: boolean;
+    message?: string;
+    user_id?: string;
+    roles?: RolesData[];
+    last_login?: number;
+    login_count?: string;
+    user_show?: boolean;
+    admin_show?: boolean;
+}
+
+/** Interface for Roles */
+export interface RolesData {
+    name?: string;
+    id?: string;
 }
 
 /** Interface for ProjectDetails */
@@ -63,6 +75,7 @@ export interface VNFD {
     usageState?: string;
     vdu?: VDU[];
     version?: string;
+    'software-version'?: string;
     'virtual-compute-desc'?: string;
     'virtual-storage-desc'?: string[];
     _admin?: VNFDAdminDetails;