summaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/models/level1Instance.ts
blob: b7925b8bd5fecef5cec61e62f750f535046c26ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import {ChildNodeInstance} from "./nodeInstance";
import {DefaultDataGeneratorService} from "../services/defaultDataServiceGenerator/default.data.generator.service";

export class Level1Instance extends ChildNodeInstance{
  uuid : string;
  isEcompGeneratedNaming: boolean;
  productFamilyId: string;
  lcpCloudRegionId: string;
  legacyRegion: string;
  tenantId: string;
  platformName: string;
  lineOfBusiness: string;
  rollbackOnFailure: string;
  originalName: string;

  constructor() {
    super();
    this.rollbackOnFailure = 'true';
    this.originalName = null;
    this.isMissingData= false;
    this.trackById = DefaultDataGeneratorService.createRandomTrackById();
    this.inMaint= false;
  }
}