aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/models/vfModuleInstance.ts
blob: 7aedab42ab3c8302576f5674996b94aa2e69a20e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import {ChildNodeInstance} from "./nodeInstance";
import {PauseStatus} from "./serviceInstanceActions";

export class VfModuleInstance extends ChildNodeInstance{
  volumeGroupName: string;
  instanceParams: { [key: string] : string; };
  position: any;
  statusMessage?: string;
  tenantId? :string;
  lcpCloudRegionId?: string;
  pauseInstantiation?: PauseStatus;

  constructor() {
    super();
    this.instanceParams = {};
  }
}