Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame] | 1 | import {VfModuleMap} from "./vfModulesMap"; |
| 2 | |
| 3 | export class VnfInstance { |
| 4 | instanceName: string; |
| 5 | isUserProvidedNaming: boolean; |
| 6 | productFamilyId: string; |
| 7 | lcpCloudRegionId: string; |
| 8 | legacyRegion: string; |
| 9 | tenantId: string; |
| 10 | platformName: string; |
| 11 | lineOfBusiness: string; |
| 12 | rollbackOnFailure: string; |
| 13 | vfModules: { [vf_module_model_name: string] : VfModuleMap; }; |
| 14 | |
| 15 | constructor() { |
| 16 | this.rollbackOnFailure = 'true'; |
| 17 | this.vfModules = {}; |
| 18 | } |
| 19 | } |