summaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/models/vnfInstance.ts
blob: 8959cc5c3bc5970af08b923f122d827fccb2b080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import {VfModuleMap} from "./vfModulesMap";
import {Level1Instance} from "./level1Instance";


export class VnfInstance extends Level1Instance {

  vfModules: { [vf_module_model_name: string] : VfModuleMap; };
  vnfStoreKey : string;
  isFailed: boolean;
  position: number;
  statusMessage?: string;

  constructor() {
    super();
    this.vfModules = {};
    this.vnfStoreKey = null;
  }
}