blob: 7f41e483a4dbe110d9c2a151c719521fd0fb3627 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import {VfModuleMap} from "./vfModulesMap";
export class VnfInstance {
instanceName: string;
isUserProvidedNaming: boolean;
productFamilyId: string;
lcpCloudRegionId: string;
legacyRegion: string;
tenantId: string;
platformName: string;
lineOfBusiness: string;
rollbackOnFailure: string;
vfModules: { [vf_module_model_name: string] : VfModuleMap; };
constructor() {
this.rollbackOnFailure = 'true';
this.vfModules = {};
}
}
|