Merge from ecomp 718fd196 - Modern UI
[vid.git] / vid-webpack-master / src / app / drawingBoard / service-planning / objectsToTree / shared.tree.service.spec.ts
1 import {HttpClientTestingModule} from "@angular/common/http/testing";
2 import {getTestBed, TestBed} from "@angular/core/testing";
3 import {NgReduxTestingModule} from "@angular-redux/store/testing";
4 import {SharedTreeService} from "./shared.tree.service";
5 import {ObjectToInstanceTreeService} from "./objectToInstanceTree/objectToInstanceTree.service";
6 import {ObjectToTreeService} from "./objectToTree.service";
7 import {DefaultDataGeneratorService} from "../../../shared/services/defaultDataServiceGenerator/default.data.generator.service";
8 import {DynamicInputsService} from "./dynamicInputs.service";
9 import {DialogService} from "ng2-bootstrap-modal";
10 import {VnfPopupService} from "../../../shared/components/genericFormPopup/genericFormServices/vnf/vnf.popup.service";
11 import {BasicControlGenerator} from "../../../shared/components/genericForm/formControlsServices/basic.control.generator";
12 import {AaiService} from "../../../shared/services/aaiService/aai.service";
13 import {NetworkPopupService} from "../../../shared/components/genericFormPopup/genericFormServices/network/network.popup.service";
14 import {NetworkControlGenerator} from "../../../shared/components/genericForm/formControlsServices/networkGenerator/network.control.generator";
15 import {VfModulePopuopService} from "../../../shared/components/genericFormPopup/genericFormServices/vfModule/vfModule.popuop.service";
16 import {VfModuleControlGenerator} from "../../../shared/components/genericForm/formControlsServices/vfModuleGenerator/vfModule.control.generator";
17 import {VnfGroupControlGenerator} from "../../../shared/components/genericForm/formControlsServices/vnfGroupGenerator/vnfGroup.control.generator";
18 import {FeatureFlagsService} from "../../../shared/services/featureFlag/feature-flags.service";
19 import {VnfControlGenerator} from "../../../shared/components/genericForm/formControlsServices/vnfGenerator/vnf.control.generator";
20 import {NgRedux} from "@angular-redux/store";
21 import {GenericFormService} from "../../../shared/components/genericForm/generic-form.service";
22 import {FormBuilder} from "@angular/forms";
23 import {SdcUiComponentsModule} from "onap-ui-angular";
24 import {LogService} from "../../../shared/utils/log/log.service";
25 import {IframeService} from "../../../shared/utils/iframe.service";
26 import {BasicPopupService} from "../../../shared/components/genericFormPopup/genericFormServices/basic.popup.service";
27 import {VnfGroupPopupService} from "../../../shared/components/genericFormPopup/genericFormServices/vnfGroup/vnfGroup.popup.service";
28 import {DuplicateService} from "../duplicate/duplicate.service";
29 import {AppState} from "../../../shared/store/reducers";
30 import {MessageBoxService} from "../../../shared/components/messageBox/messageBox.service";
31 import {ErrorMsgService} from "../../../shared/components/error-msg/error-msg.service";
32 import {AuditInfoModalComponent} from "../../../shared/components/auditInfoModal/auditInfoModal.component";
33 import {ILevelNodeInfo} from "./models/basic.model.info";
34 import {VnfModelInfo} from "./models/vnf/vnf.model.info";
35 import {ServiceInstanceActions} from "../../../shared/models/serviceInstanceActions";
36 import each from "jest-each";
37 import {DrawingBoardModes} from "../drawing-board.modes";
38 import {ComponentInfoService} from "../component-info/component-info.service";
39 import {ComponentInfoModel, ComponentInfoType} from "../component-info/component-info-model";
40 import {ModelInformationItem} from "../../../shared/components/model-information/model-information.component";
41 import {VpnStepService} from "./models/vrf/vrfModal/vpnStep/vpn.step.service";
42 import {NetworkStepService} from "./models/vrf/vrfModal/networkStep/network.step.service";
43
44 class MockAppStore<T> {
45   getState() {
46     return getStore()
47   }
48
49   dispatch() {
50   }
51 }
52
53 class MockVnfModelInfo<T> {
54   getModel() {
55     return {}
56   }
57 }
58
59
60 describe('Shared Tree Service', () => {
61   let injector;
62   let service: SharedTreeService;
63   let _objectToInstanceTreeService: ObjectToInstanceTreeService;
64   let store: NgRedux<AppState>;
65   beforeAll(done => (async () => {
66     TestBed.configureTestingModule({
67       imports: [HttpClientTestingModule, NgReduxTestingModule, SdcUiComponentsModule],
68       providers: [
69         SharedTreeService,
70         ObjectToTreeService,
71         DefaultDataGeneratorService,
72         DialogService,
73         VnfPopupService,
74         BasicControlGenerator,
75         AaiService,
76         LogService,
77         BasicPopupService,
78         VnfGroupPopupService,
79         DuplicateService,
80         IframeService,
81         DynamicInputsService,
82         NetworkPopupService,
83         NetworkControlGenerator,
84         VfModulePopuopService,
85         VfModuleControlGenerator,
86         VnfGroupControlGenerator,
87         DialogService,
88         FeatureFlagsService,
89         VnfControlGenerator,
90         AaiService,
91         DialogService,
92         GenericFormService,
93         FormBuilder,
94         ErrorMsgService,
95         ObjectToInstanceTreeService,
96         ComponentInfoService,
97         NetworkStepService,
98         VpnStepService,
99         {provide: NgRedux, useClass: MockAppStore}
100       ]
101     });
102     await TestBed.compileComponents();
103     injector = getTestBed();
104     service = injector.get(SharedTreeService);
105     _objectToInstanceTreeService = injector.get(ObjectToInstanceTreeService);
106     store = injector.get(NgRedux);
107   })().then(done).catch(done.fail));
108
109   test('SharedTreeService should be defined', () => {
110     expect(service).toBeDefined();
111   });
112
113   test('shouldShowDeleteInstanceWithChildrenModal should open modal if child exist with action create', () => {
114     jest.spyOn(MessageBoxService.openModal, 'next');
115     let foo = () => {
116
117     };
118     let node = <any>{
119       children: [{action: "Create"}, {action: "None"}],
120       data: {
121         typeName: 'VNF'
122       }
123     };
124     service.shouldShowDeleteInstanceWithChildrenModal(node, "serviceModelId", foo);
125     expect(MessageBoxService.openModal.next).toHaveBeenCalled();
126   });
127
128   test('openAuditInfoModal should open modal for failed instance', () => {
129     jest.spyOn(AuditInfoModalComponent.openInstanceAuditInfoModal, 'next');
130
131     let modelInfoServiceMock: ILevelNodeInfo = new VnfModelInfo(null, null, null, null, null, null, null, null, null, null,null);
132     const modelMock = {"a": "a"};
133     const instanceMock = {"instance": "instance", "trackById": "123456789"};
134     const instanceTypeMock = "instanceTypeMock";
135     jest.spyOn(modelInfoServiceMock, 'getModel').mockReturnValue(modelMock);
136     let node = <any>{
137       data: {
138         modelId: '6b528779-44a3-4472-bdff-9cd15ec93450',
139         trackById: '1245df21',
140         isFailed: true
141       }
142     };
143     service.openAuditInfoModal(node, "serviceModelId", instanceMock, instanceTypeMock, <any>modelInfoServiceMock);
144     expect(AuditInfoModalComponent.openInstanceAuditInfoModal.next).toHaveBeenCalledWith(
145       {
146         "instance": instanceMock,
147         "instanceId": "serviceModelId",
148         "model": modelMock,
149         "type": instanceTypeMock
150       });
151   });
152
153   test('shouldShowDeleteInstanceWithChildrfenModal should not open modal if all childs with action None', () => {
154     let foo = () => {
155     };
156     spyOn(MessageBoxService.openModal, 'next');
157
158     let node = <any>{
159       children: [{action: "None"}, {action: "None"}],
160       data: {
161         typeName: 'VNF'
162       }
163     };
164     service.shouldShowDeleteInstanceWithChildrenModal(node, "serviceModelId", foo);
165     expect(MessageBoxService.openModal.next).not.toHaveBeenCalled();
166   });
167
168   test ('addGeneralInfoItems should return correct info - ordered',()=>{
169     let specificNetworkInfo = [
170       ModelInformationItem.createInstance('Network role', "network role 1, network role 2")
171     ];
172     const actualInfoModel: ComponentInfoModel = service.addGeneralInfoItems(specificNetworkInfo,ComponentInfoType.NETWORK, getNetworkModel(),getNetworkInstance());
173
174     let expectedGeneralInfo = [
175       ModelInformationItem.createInstance('Model version', '37.0'),
176       ModelInformationItem.createInstance('Model customization ID', '94fdd893-4a36-4d70-b16a-ec29c54c184f'),
177       ModelInformationItem.createInstance('Instance ID', 'NETWORK4_INSTANCE_ID'),
178       ModelInformationItem.createInstance('Instance type', 'CONTRAIL30_HIMELGUARD'),
179       ModelInformationItem.createInstance('In maintenance', false),
180       ModelInformationItem.createInstance('Network role', 'network role 1, network role 2')
181     ];
182     expect(actualInfoModel.modelInfoItems).toEqual(expectedGeneralInfo);
183   });
184
185
186
187   test('statusProperties should be prop on node according to node properties', () => {
188     let node = service.addingStatusProperty({orchStatus: 'completed', provStatus: 'inProgress', inMaint: false});
189     expect(node.statusProperties).toBeDefined();
190     expect(node.statusProperties).toEqual([Object({
191       key: 'Prov Status:',
192       value: 'inProgress',
193       testId: 'provStatus'
194     }), Object({key: 'Orch Status:', value: 'completed', testId: 'orchStatus'})]);
195     node = service.addingStatusProperty({orchStatus: 'completed', provStatus: 'inProgress', inMaint: true});
196     expect(node.statusProperties).toEqual([Object({
197       key: 'Prov Status:',
198       value: 'inProgress',
199       testId: 'provStatus'
200     }), Object({key: 'Orch Status:', value: 'completed', testId: 'orchStatus'}), Object({
201       key: 'In-maintenance',
202       value: '',
203       testId: 'inMaint'
204     })]);
205   });
206   const enableRemoveAndEditItemsDataProvider = [
207     ['Create action CREATE mode', DrawingBoardModes.CREATE ,ServiceInstanceActions.Create, true],
208     ['Create action VIEW mode',DrawingBoardModes.VIEW , ServiceInstanceActions.Create,false],
209     ['Create action RETRY_EDIT mode',DrawingBoardModes.RETRY_EDIT,  ServiceInstanceActions.Create,  true],
210     ['Create action EDIT mode',DrawingBoardModes.EDIT, ServiceInstanceActions.Create,  true],
211     ['Create action RETRY mode',DrawingBoardModes.RETRY, ServiceInstanceActions.Create,  false],
212     ['None action EDIT mode',DrawingBoardModes.EDIT,  ServiceInstanceActions.None, false],
213     ['None action RETRY_EDIT mode', DrawingBoardModes.RETRY_EDIT, ServiceInstanceActions.None, false]];
214   each(enableRemoveAndEditItemsDataProvider).test('shouldShowEditAndDelete if child exist with %s', (description, mode, action, enabled) => {
215     jest.spyOn(store, 'getState').mockReturnValue(<any>{
216         global: {
217           drawingBoardStatus: mode
218         }
219       });
220       let node = <any>{
221         data:{
222           action: action
223         },
224       };
225       let res = service.shouldShowRemoveAndEdit(node);
226       expect(res).toBe(enabled);
227     });
228 });
229 function generateService() {
230   return {
231     "vnfs": {
232       "2017-488_PASQUALE-vPE 0": {
233         "inMaint": false,
234         "rollbackOnFailure": "true",
235         "originalName": "2017-488_PASQUALE-vPE 0",
236         "isMissingData": false,
237         "trackById": "stigekyxrqi",
238         "vfModules": {
239           "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
240             "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0gytfi": {
241               "isMissingData": false,
242               "sdncPreReload": null,
243               "modelInfo": {
244                 "modelType": "VFmodule",
245                 "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
246                 "modelVersionId": "f8360508-3f17-4414-a2ed-6bc71161e8db",
247                 "modelName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
248                 "modelVersion": "5",
249                 "modelCustomizationId": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
250                 "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0"
251               },
252               "instanceParams": [{}],
253               "trackById": "3oj23o7nupo"
254             }
255           }
256         },
257         "vnfStoreKey": "2017-488_PASQUALE-vPE 0",
258         "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
259         "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
260         "lcpCloudRegionId": "AAIAIC25",
261         "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
262         "lineOfBusiness": "ONAP",
263         "platformName": "xxx1",
264         "modelInfo": {
265           "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
266           "modelVersionId": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
267           "modelName": "2017-488_PASQUALE-vPE",
268           "modelVersion": "5.0",
269           "modelCustomizationName": "2017-488_PASQUALE-vPE 0",
270           "modelCustomizationId": "1da7b585-5e61-4993-b95e-8e6606c81e45",
271           "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09"
272         },
273         "legacyRegion": "11111111",
274         "instanceParams": [{}]
275       },
276       "2017-388_PASQUALE-vPE 0": {
277         "inMaint": false,
278         "rollbackOnFailure": "true",
279         "originalName": "2017-388_PASQUALE-vPE 0",
280         "isMissingData": false,
281         "trackById": "nib719t5vca",
282         "vfModules": {},
283         "vnfStoreKey": "2017-388_PASQUALE-vPE 0",
284         "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
285         "lcpCloudRegionId": "AAIAIC25",
286         "legacyRegion": "11111",
287         "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
288         "platformName": "platform",
289         "lineOfBusiness": "zzz1",
290         "instanceParams": [{}],
291         "modelInfo": {
292           "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
293           "modelVersionId": "afacccf6-397d-45d6-b5ae-94c39734b168",
294           "modelName": "2017-388_PASQUALE-vPE",
295           "modelVersion": "4.0",
296           "modelCustomizationId": "b3c76f73-eeb5-4fb6-9d31-72a889f1811c",
297           "modelCustomizationName": "2017-388_PASQUALE-vPE 0",
298           "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168"
299         },
300         "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168"
301       },
302       "2017-388_PASQUALE-vPE 1": {
303         "inMaint": false,
304         "rollbackOnFailure": "true",
305         "originalName": "2017-388_PASQUALE-vPE 1",
306         "isMissingData": false,
307         "trackById": "cv7l1ak8vpe",
308         "vfModules": {},
309         "vnfStoreKey": "2017-388_PASQUALE-vPE 1",
310         "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
311         "lcpCloudRegionId": "AAIAIC25",
312         "legacyRegion": "123",
313         "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
314         "platformName": "platform",
315         "lineOfBusiness": "ONAP",
316         "instanceParams": [{}],
317         "modelInfo": {
318           "modelInvariantId": "00beb8f9-6d39-452f-816d-c709b9cbb87d",
319           "modelVersionId": "0903e1c0-8e03-4936-b5c2-260653b96413",
320           "modelName": "2017-388_PASQUALE-vPE",
321           "modelVersion": "1.0",
322           "modelCustomizationId": "280dec31-f16d-488b-9668-4aae55d6648a",
323           "modelCustomizationName": "2017-388_PASQUALE-vPE 1",
324           "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413"
325         },
326         "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413"
327       }
328     },
329     "instanceParams": [{}],
330     "validationCounter": 0,
331     "existingNames": {"yoav": ""},
332     "existingVNFCounterMap": {
333       "69e09f68-8b63-4cc9-b9ff-860960b5db09": 1,
334       "afacccf6-397d-45d6-b5ae-94c39734b168": 1,
335       "0903e1c0-8e03-4936-b5c2-260653b96413": 1
336     },
337     "existingVnfGroupCounterMap": {
338       "daeb6568-cef8-417f-9075-ed259ce59f48": 0,
339       "c2b300e6-45de-4e5e-abda-3032bee2de56": -1
340     },
341     "existingNetworksCounterMap": {"ddc3f20c-08b5-40fd-af72-c6d14636b986": 1},
342     "networks": {
343       "ExtVL 0": {
344         "inMaint": false,
345         "rollbackOnFailure": "true",
346         "originalName": "ExtVL 0",
347         "isMissingData": false,
348         "trackById": "s6okajvv2n8",
349         "networkStoreKey": "ExtVL 0",
350         "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
351         "lcpCloudRegionId": "AAIAIC25",
352         "legacyRegion": "12355555",
353         "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
354         "platformName": "platform",
355         "lineOfBusiness": null,
356         "instanceParams": [{}],
357         "modelInfo": {
358           "modelInvariantId": "379f816b-a7aa-422f-be30-17114ff50b7c",
359           "modelVersionId": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
360           "modelName": "ExtVL",
361           "modelVersion": "37.0",
362           "modelCustomizationId": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
363           "modelCustomizationName": "ExtVL 0",
364           "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986"
365         },
366         "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986"
367       }
368     },
369     "vnfGroups": {
370       "groupingservicefortest..ResourceInstanceGroup..0": {
371         "inMaint": false,
372         "rollbackOnFailure": "true",
373         "originalName": "groupingservicefortest..ResourceInstanceGroup..0",
374         "isMissingData": false,
375         "trackById": "se0obn93qq",
376         "vnfGroupStoreKey": "groupingservicefortest..ResourceInstanceGroup..0",
377         "instanceName": "groupingservicefortestResourceInstanceGroup0",
378         "instanceParams": [{}],
379         "modelInfo": {
380           "modelInvariantId": "4bb2e27e-ddab-4790-9c6d-1f731bc14a45",
381           "modelVersionId": "daeb6568-cef8-417f-9075-ed259ce59f48",
382           "modelName": "groupingservicefortest..ResourceInstanceGroup..0",
383           "modelVersion": "1",
384           "modelCustomizationName": "groupingservicefortest..ResourceInstanceGroup..0",
385           "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48"
386         },
387         "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48"
388       }
389     },
390     "instanceName": "yoav",
391     "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
392     "subscriptionServiceType": "TYLER SILVIA",
393     "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
394     "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
395     "lcpCloudRegionId": "AAIAIC25",
396     "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
397     "aicZoneId": "ATL53",
398     "pause": null,
399     "projectName": "WATKINS",
400     "rollbackOnFailure": "true",
401     "bulkSize": 1,
402     "aicZoneName": "AAIATLTE-ATL53",
403     "owningEntityName": "WayneHolland",
404     "testApi": "VNF_API",
405     "isEcompGeneratedNaming": false,
406     "tenantName": "USP-SIP-IC-24335-T-01",
407     "modelInfo": {
408       "modelInvariantId": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632",
409       "modelVersionId": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
410       "modelName": "action-data",
411       "modelVersion": "1.0",
412       "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"
413     },
414     "isALaCarte": false,
415     "name": "action-data",
416     "version": "1.0",
417     "description": "PASQUALE vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM",
418     "category": "Network L1-3",
419     "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
420     "invariantUuid": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632",
421     "serviceType": "pnf",
422     "serviceRole": "Testing",
423     "vidNotions": {"instantiationUI": "legacy", "modelCategory": "other", "viewEditUI": "legacy"},
424     "isMultiStepDesign": true
425   };
426 }
427
428 function getStore() {
429   return {
430     "global": {
431       "name": null,
432       "flags": {
433         "CREATE_INSTANCE_TEST": false,
434         "EMPTY_DRAWING_BOARD_TEST": false,
435         "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
436         "FLAG_ADD_MSO_TESTAPI_FIELD": true,
437         "FLAG_SERVICE_MODEL_CACHE": true,
438         "FLAG_SHOW_ASSIGNMENTS": true,
439         "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
440         "FLAG_DEFAULT_VNF": true,
441         "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": true,
442         "FLAG_A_LA_CARTE_AUDIT_INFO": true,
443         "FLAG_1810_CR_ADD_CLOUD_OWNER_TO_MSO_REQUEST": true,
444         "FLAG_PRESENT_PROVIDER_NETWORKS_ASSOCIATIONS": true,
445         "FLAG_1810_CR_SOFT_DELETE_ALACARTE_VF_MODULE": true,
446         "FLAG_1902_NEW_VIEW_EDIT": true,
447         "FLAG_1810_IDENTIFY_SERVICE_FOR_NEW_UI": false,
448         "FLAG_1902_VNF_GROUPING": true,
449         "FLAG_SHOW_VERIFY_SERVICE": true,
450         "FLAG_ASYNC_ALACARTE_VFMODULE": true,
451         "FLAG_ASYNC_ALACARTE_VNF": true,
452         "FLAG_1810_AAI_LOCAL_CACHE": true,
453         "FLAG_EXP_USE_DEFAULT_HOST_NAME_VERIFIER": false,
454         "FLAG_EXP_ANY_ALACARTE_NEW_INSTANTIATION_UI": false,
455         "FLAG_SUPPLEMENTARY_FILE": true,
456         "FLAG_5G_IN_NEW_INSTANTIATION_UI": true,
457         "FLAG_RESTRICTED_SELECT": false,
458         "FLAG_1810_CR_LET_SELECTING_COLLECTOR_TYPE_UNCONDITIONALLY": true
459       },
460       "drawingBoardStatus": "VIEW",
461       "type": "UPDATE_DRAWING_BOARD_STATUS"
462     },
463     "service": {
464       "serviceHierarchy": {
465         "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd": {
466           "service": {
467             "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
468             "invariantUuid": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632",
469             "name": "action-data",
470             "version": "1.0",
471             "toscaModelURL": null,
472             "category": "Network L1-3",
473             "serviceType": "pnf",
474             "serviceRole": "Testing",
475             "description": "PASQUALE vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM",
476             "serviceEcompNaming": "false",
477             "instantiationType": "Macro",
478             "inputs": {},
479             "vidNotions": {"instantiationUI": "legacy", "modelCategory": "other", "viewEditUI": "legacy"}
480           },
481           "vnfs": {
482             "2017-388_PASQUALE-vPE 1": {
483               "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413",
484               "invariantUuid": "00beb8f9-6d39-452f-816d-c709b9cbb87d",
485               "description": "Name PASQUALE vPE Description The provider edge function for the PASQUALE service supported by the Junipers VMX product Category Router Vendor Juniper Vendor Release Code 17.2 Owners Mary Fragale. Updated 9-25 to use v8.0 of the Juniper Valid 2 VLM",
486               "name": "2017-388_PASQUALE-vPE",
487               "version": "1.0",
488               "customizationUuid": "280dec31-f16d-488b-9668-4aae55d6648a",
489               "inputs": {},
490               "commands": {},
491               "properties": {
492                 "vmxvre_retype": "RE-VMX",
493                 "vnf_config_template_version": "get_input:2017488_pasqualevpe0_vnf_config_template_version",
494                 "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
495                 "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
496                 "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
497                 "int_ctl_net_name": "VMX-INTXI",
498                 "vmx_int_ctl_prefix": "10.0.0.10",
499                 "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
500                 "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
501                 "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
502                 "nf_type": "vPE",
503                 "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
504                 "is_AVPN_service": "false",
505                 "vmx_RSG_name": "vREXI-affinity",
506                 "vmx_int_ctl_forwarding": "l2",
507                 "vmxvre_oam_ip_0": "10.0.0.10",
508                 "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
509                 "vmxvpfe_sriov41_0_port_vlanstrip": "false",
510                 "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
511                 "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
512                 "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2",
513                 "vmxvre_instance": "0",
514                 "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
515                 "vmxvre_flavor_name": "ns.c1r16d32.v5",
516                 "vmxvpfe_volume_size_0": "40.0",
517                 "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
518                 "nf_naming": "{ecomp_generated_naming=true}",
519                 "multi_stage_design": "true",
520                 "nf_naming_code": "Navneet",
521                 "vmxvre_name_0": "vREXI",
522                 "vmxvpfe_sriov42_0_port_vlanstrip": "false",
523                 "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
524                 "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
525                 "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
526                 "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
527                 "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
528                 "vmxvre_console": "vidconsole",
529                 "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
530                 "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
531                 "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
532                 "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
533                 "vmxvpfe_sriov44_0_port_vlanstrip": "false",
534                 "vf_module_id": "123",
535                 "nf_function": "JAI",
536                 "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
537                 "vmxvre_int_ctl_ip_0": "10.0.0.10",
538                 "ecomp_generated_naming": "true",
539                 "AIC_CLLI": "get_input:2017488_pasqualevpe0_AIC_CLLI",
540                 "vnf_name": "mtnj309me6vre",
541                 "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
542                 "vmxvre_volume_type_1": "HITACHI",
543                 "vmxvpfe_sriov44_0_port_broadcastallow": "true",
544                 "vmxvre_volume_type_0": "HITACHI",
545                 "vmxvpfe_volume_type_0": "HITACHI",
546                 "vmxvpfe_sriov43_0_port_broadcastallow": "true",
547                 "bandwidth_units": "get_input:2017488_pasqualevpe0_bandwidth_units",
548                 "vnf_id": "123",
549                 "vmxvre_oam_prefix": "24",
550                 "availability_zone_0": "mtpocfo-kvm-az01",
551                 "ASN": "get_input:2017488_pasqualevpe0_ASN",
552                 "vmxvre_chassis_i2cid": "161",
553                 "vmxvpfe_name_0": "vPFEXI",
554                 "bandwidth": "get_input:2017488_pasqualevpe0_bandwidth",
555                 "availability_zone_max_count": "1",
556                 "vmxvre_volume_size_0": "45.0",
557                 "vmxvre_volume_size_1": "50.0",
558                 "vmxvpfe_sriov42_0_port_broadcastallow": "true",
559                 "vmxvre_oam_gateway": "10.0.0.10",
560                 "vmxvre_volume_name_1": "vREXI_FAVolume",
561                 "vmxvre_ore_present": "0",
562                 "vmxvre_volume_name_0": "vREXI_FBVolume",
563                 "vmxvre_type": "0",
564                 "vnf_instance_name": "get_input:2017488_pasqualevpe0_vnf_instance_name",
565                 "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
566                 "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
567                 "vmx_int_ctl_len": "24",
568                 "vmxvpfe_sriov43_0_port_vlanstrip": "false",
569                 "vmxvpfe_sriov41_0_port_broadcastallow": "true",
570                 "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
571                 "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
572                 "nf_role": "Testing",
573                 "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
574                 "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
575                 "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
576               },
577               "type": "VF",
578               "modelCustomizationName": "2017-388_PASQUALE-vPE 1",
579               "vfModules": {},
580               "volumeGroups": {},
581               "vfcInstanceGroups": {}
582             },
583             "2017-388_PASQUALE-vPE 0": {
584               "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168",
585               "invariantUuid": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
586               "description": "Name PASQUALE vPE Description The provider edge function for the PASQUALE service supported by the Junipers VMX product Category Router Vendor Juniper Vendor Release Code 17.2 Owners Mary Fragale. Updated 9-25 to use v8.0 of the Juniper Valid 2 VLM",
587               "name": "2017-388_PASQUALE-vPE",
588               "version": "4.0",
589               "customizationUuid": "b3c76f73-eeb5-4fb6-9d31-72a889f1811c",
590               "inputs": {},
591               "commands": {},
592               "properties": {
593                 "vmxvre_retype": "RE-VMX",
594                 "vnf_config_template_version": "get_input:2017488_pasqualevpe0_vnf_config_template_version",
595                 "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
596                 "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
597                 "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
598                 "int_ctl_net_name": "VMX-INTXI",
599                 "vmx_int_ctl_prefix": "10.0.0.10",
600                 "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
601                 "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
602                 "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
603                 "nf_type": "vPE",
604                 "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
605                 "is_AVPN_service": "false",
606                 "vmx_RSG_name": "vREXI-affinity",
607                 "vmx_int_ctl_forwarding": "l2",
608                 "vmxvre_oam_ip_0": "10.0.0.10",
609                 "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
610                 "vmxvpfe_sriov41_0_port_vlanstrip": "false",
611                 "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
612                 "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
613                 "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2",
614                 "vmxvre_instance": "0",
615                 "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
616                 "vmxvre_flavor_name": "ns.c1r16d32.v5",
617                 "vmxvpfe_volume_size_0": "40.0",
618                 "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
619                 "nf_naming": "{ecomp_generated_naming=true}",
620                 "multi_stage_design": "true",
621                 "nf_naming_code": "Navneet",
622                 "vmxvre_name_0": "vREXI",
623                 "vmxvpfe_sriov42_0_port_vlanstrip": "false",
624                 "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
625                 "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
626                 "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
627                 "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
628                 "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
629                 "vmxvre_console": "vidconsole",
630                 "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
631                 "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
632                 "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
633                 "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
634                 "vmxvpfe_sriov44_0_port_vlanstrip": "false",
635                 "vf_module_id": "123",
636                 "nf_function": "JAI",
637                 "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
638                 "vmxvre_int_ctl_ip_0": "10.0.0.10",
639                 "ecomp_generated_naming": "true",
640                 "AIC_CLLI": "get_input:2017488_pasqualevpe0_AIC_CLLI",
641                 "vnf_name": "mtnj309me6vre",
642                 "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
643                 "vmxvre_volume_type_1": "HITACHI",
644                 "vmxvpfe_sriov44_0_port_broadcastallow": "true",
645                 "vmxvre_volume_type_0": "HITACHI",
646                 "vmxvpfe_volume_type_0": "HITACHI",
647                 "vmxvpfe_sriov43_0_port_broadcastallow": "true",
648                 "bandwidth_units": "get_input:2017488_pasqualevpe0_bandwidth_units",
649                 "vnf_id": "123",
650                 "vmxvre_oam_prefix": "24",
651                 "availability_zone_0": "mtpocfo-kvm-az01",
652                 "ASN": "get_input:2017488_pasqualevpe0_ASN",
653                 "vmxvre_chassis_i2cid": "161",
654                 "vmxvpfe_name_0": "vPFEXI",
655                 "bandwidth": "get_input:2017488_pasqualevpe0_bandwidth",
656                 "availability_zone_max_count": "1",
657                 "vmxvre_volume_size_0": "45.0",
658                 "vmxvre_volume_size_1": "50.0",
659                 "vmxvpfe_sriov42_0_port_broadcastallow": "true",
660                 "vmxvre_oam_gateway": "10.0.0.10",
661                 "vmxvre_volume_name_1": "vREXI_FAVolume",
662                 "vmxvre_ore_present": "0",
663                 "vmxvre_volume_name_0": "vREXI_FBVolume",
664                 "vmxvre_type": "0",
665                 "vnf_instance_name": "get_input:2017488_pasqualevpe0_vnf_instance_name",
666                 "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
667                 "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
668                 "vmx_int_ctl_len": "24",
669                 "vmxvpfe_sriov43_0_port_vlanstrip": "false",
670                 "vmxvpfe_sriov41_0_port_broadcastallow": "true",
671                 "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
672                 "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
673                 "nf_role": "Testing",
674                 "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
675                 "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
676                 "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
677               },
678               "type": "VF",
679               "modelCustomizationName": "2017-388_PASQUALE-vPE 0",
680               "vfModules": {},
681               "volumeGroups": {},
682               "vfcInstanceGroups": {}
683             },
684             "2017-488_PASQUALE-vPE 0": {
685               "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
686               "invariantUuid": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
687               "description": "Name PASQUALE vPE Description The provider edge function for the PASQUALE service supported by the Junipers VMX product Category Router Vendor Juniper Vendor Release Code 17.2 Owners Mary Fragale. Updated 9-25 to use v8.0 of the Juniper Valid 2 VLM",
688               "name": "2017-488_PASQUALE-vPE",
689               "version": "5.0",
690               "customizationUuid": "1da7b585-5e61-4993-b95e-8e6606c81e45",
691               "inputs": {},
692               "commands": {},
693               "properties": {
694                 "max_instances": 1,
695                 "vmxvre_retype": "RE-VMX",
696                 "vnf_config_template_version": "get_input:2017488_pasqualevpe0_vnf_config_template_version",
697                 "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
698                 "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
699                 "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
700                 "int_ctl_net_name": "VMX-INTXI",
701                 "vmx_int_ctl_prefix": "10.0.0.10",
702                 "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
703                 "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
704                 "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
705                 "nf_type": "vPE",
706                 "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
707                 "is_AVPN_service": "false",
708                 "vmx_RSG_name": "vREXI-affinity",
709                 "vmx_int_ctl_forwarding": "l2",
710                 "vmxvre_oam_ip_0": "10.0.0.10",
711                 "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
712                 "vmxvpfe_sriov41_0_port_vlanstrip": "false",
713                 "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
714                 "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
715                 "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2",
716                 "vmxvre_instance": "0",
717                 "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
718                 "vmxvre_flavor_name": "ns.c1r16d32.v5",
719                 "vmxvpfe_volume_size_0": "40.0",
720                 "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
721                 "nf_naming": "{ecomp_generated_naming=true}",
722                 "multi_stage_design": "true",
723                 "nf_naming_code": "Navneet",
724                 "vmxvre_name_0": "vREXI",
725                 "vmxvpfe_sriov42_0_port_vlanstrip": "false",
726                 "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
727                 "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
728                 "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
729                 "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
730                 "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
731                 "vmxvre_console": "vidconsole",
732                 "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
733                 "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
734                 "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
735                 "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
736                 "vmxvpfe_sriov44_0_port_vlanstrip": "false",
737                 "vf_module_id": "123",
738                 "nf_function": "JAI",
739                 "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
740                 "vmxvre_int_ctl_ip_0": "10.0.0.10",
741                 "ecomp_generated_naming": "true",
742                 "AIC_CLLI": "get_input:2017488_pasqualevpe0_AIC_CLLI",
743                 "vnf_name": "mtnj309me6vre",
744                 "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
745                 "vmxvre_volume_type_1": "HITACHI",
746                 "vmxvpfe_sriov44_0_port_broadcastallow": "true",
747                 "vmxvre_volume_type_0": "HITACHI",
748                 "vmxvpfe_volume_type_0": "HITACHI",
749                 "vmxvpfe_sriov43_0_port_broadcastallow": "true",
750                 "bandwidth_units": "get_input:2017488_pasqualevpe0_bandwidth_units",
751                 "vnf_id": "123",
752                 "vmxvre_oam_prefix": "24",
753                 "availability_zone_0": "mtpocfo-kvm-az01",
754                 "ASN": "get_input:2017488_pasqualevpe0_ASN",
755                 "vmxvre_chassis_i2cid": "161",
756                 "vmxvpfe_name_0": "vPFEXI",
757                 "bandwidth": "get_input:2017488_pasqualevpe0_bandwidth",
758                 "availability_zone_max_count": "1",
759                 "vmxvre_volume_size_0": "45.0",
760                 "vmxvre_volume_size_1": "50.0",
761                 "vmxvpfe_sriov42_0_port_broadcastallow": "true",
762                 "vmxvre_oam_gateway": "10.0.0.10",
763                 "vmxvre_volume_name_1": "vREXI_FAVolume",
764                 "vmxvre_ore_present": "0",
765                 "vmxvre_volume_name_0": "vREXI_FBVolume",
766                 "vmxvre_type": "0",
767                 "vnf_instance_name": "get_input:2017488_pasqualevpe0_vnf_instance_name",
768                 "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
769                 "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
770                 "vmx_int_ctl_len": "24",
771                 "vmxvpfe_sriov43_0_port_vlanstrip": "false",
772                 "vmxvpfe_sriov41_0_port_broadcastallow": "true",
773                 "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
774                 "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
775                 "nf_role": "Testing",
776                 "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
777                 "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
778                 "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
779               },
780               "type": "VF",
781               "modelCustomizationName": "2017-488_PASQUALE-vPE 0",
782               "vfModules": {
783                 "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
784                   "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
785                   "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
786                   "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
787                   "description": null,
788                   "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
789                   "version": "6",
790                   "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
791                   "properties": {
792                     "minCountInstances": 0,
793                     "maxCountInstances": null,
794                     "initialCount": 0,
795                     "vfModuleLabel": "PASQUALE_vRE_BV",
796                     "baseModule": false
797                   },
798                   "inputs": {},
799                   "volumeGroupAllowed": true
800                 },
801                 "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
802                   "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
803                   "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
804                   "customizationUuid": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
805                   "description": null,
806                   "name": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
807                   "version": "5",
808                   "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
809                   "properties": {
810                     "minCountInstances": 1,
811                     "maxCountInstances": 1,
812                     "initialCount": 1,
813                     "vfModuleLabel": "PASQUALE_base_vPE_BV",
814                     "baseModule": true
815                   },
816                   "inputs": {},
817                   "volumeGroupAllowed": false
818                 },
819                 "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
820                   "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
821                   "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
822                   "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
823                   "description": null,
824                   "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
825                   "version": "6",
826                   "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
827                   "properties": {
828                     "minCountInstances": 0,
829                     "maxCountInstances": null,
830                     "initialCount": 0,
831                     "vfModuleLabel": "PASQUALE_vPFE_BV",
832                     "baseModule": false
833                   },
834                   "inputs": {},
835                   "volumeGroupAllowed": true
836                 }
837               },
838               "volumeGroups": {
839                 "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
840                   "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
841                   "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
842                   "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
843                   "description": null,
844                   "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
845                   "version": "6",
846                   "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
847                   "properties": {
848                     "minCountInstances": 0,
849                     "maxCountInstances": null,
850                     "initialCount": 0,
851                     "vfModuleLabel": "PASQUALE_vRE_BV",
852                     "baseModule": false
853                   },
854                   "inputs": {}
855                 },
856                 "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
857                   "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
858                   "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
859                   "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
860                   "description": null,
861                   "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
862                   "version": "6",
863                   "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
864                   "properties": {
865                     "minCountInstances": 0,
866                     "maxCountInstances": null,
867                     "initialCount": 0,
868                     "vfModuleLabel": "PASQUALE_vPFE_BV",
869                     "baseModule": false
870                   },
871                   "inputs": {}
872                 }
873               },
874               "vfcInstanceGroups": {}
875             }
876           },
877           "networks": {
878             "ExtVL 0": {
879               "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
880               "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
881               "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
882               "name": "ExtVL",
883               "version": "37.0",
884               "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
885               "inputs": {},
886               "commands": {},
887               "properties": {
888                 "network_assignments": "{is_external_network=false, ipv4_subnet_default_assignment={min_subnets_count=1}, ecomp_generated_network_assignment=false, ipv6_subnet_default_assignment={min_subnets_count=1}}",
889                 "exVL_naming": "{ecomp_generated_naming=true}",
890                 "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
891                 "network_homing": "{ecomp_selected_instance_node_target=false}"
892               },
893               "type": "VL",
894               "modelCustomizationName": "ExtVL 0"
895             }
896           },
897           "collectionResources": {},
898           "configurations": {},
899           "fabricConfigurations": {},
900           "serviceProxies": {},
901           "vfModules": {
902             "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
903               "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
904               "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
905               "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
906               "description": null,
907               "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
908               "version": "6",
909               "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
910               "properties": {
911                 "minCountInstances": 0,
912                 "maxCountInstances": null,
913                 "initialCount": 0,
914                 "vfModuleLabel": "PASQUALE_vRE_BV",
915                 "baseModule": false
916               },
917               "inputs": {},
918               "volumeGroupAllowed": true
919             },
920             "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
921               "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
922               "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
923               "customizationUuid": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
924               "description": null,
925               "name": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
926               "version": "5",
927               "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
928               "properties": {
929                 "minCountInstances": 1,
930                 "maxCountInstances": 1,
931                 "initialCount": 1,
932                 "vfModuleLabel": "PASQUALE_base_vPE_BV",
933                 "baseModule": true
934               },
935               "inputs": {},
936               "volumeGroupAllowed": false
937             },
938             "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
939               "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
940               "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
941               "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
942               "description": null,
943               "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
944               "version": "6",
945               "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
946               "properties": {
947                 "minCountInstances": 0,
948                 "maxCountInstances": null,
949                 "initialCount": 0,
950                 "vfModuleLabel": "PASQUALE_vPFE_BV",
951                 "baseModule": false
952               },
953               "inputs": {},
954               "volumeGroupAllowed": true
955             }
956           },
957           "volumeGroups": {
958             "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
959               "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
960               "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
961               "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
962               "description": null,
963               "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
964               "version": "6",
965               "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
966               "properties": {
967                 "minCountInstances": 0,
968                 "maxCountInstances": null,
969                 "initialCount": 0,
970                 "vfModuleLabel": "PASQUALE_vRE_BV",
971                 "baseModule": false
972               },
973               "inputs": {}
974             },
975             "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
976               "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
977               "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
978               "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
979               "description": null,
980               "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
981               "version": "6",
982               "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
983               "properties": {
984                 "minCountInstances": 0,
985                 "maxCountInstances": null,
986                 "initialCount": 0,
987                 "vfModuleLabel": "PASQUALE_vPFE_BV",
988                 "baseModule": false
989               },
990               "inputs": {}
991             }
992           },
993           "pnfs": {},
994           "vnfGroups": {
995             "groupingservicefortest..ResourceInstanceGroup..0": {
996               "type": "VnfGroup",
997               "invariantUuid": "4bb2e27e-ddab-4790-9c6d-1f731bc14a45",
998               "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48",
999               "version": "1",
1000               "name": "groupingservicefortest..ResourceInstanceGroup..0",
1001               "modelCustomizationName": "groupingservicefortest..ResourceInstanceGroup..0",
1002               "properties": {
1003                 "contained_resource_type": "VF",
1004                 "role": "SERVICE-ACCESS",
1005                 "function": "DATA",
1006                 "description": "DDD0",
1007                 "type": "LOAD-GROUP",
1008                 "ecomp_generated_naming": "true"
1009               },
1010               "members": {
1011                 "vdorothea_svc_vprs_proxy 0": {
1012                   "uuid": "65fadfa8-a0d9-443f-95ad-836cd044e26c",
1013                   "invariantUuid": "f4baae0c-b3a5-4ca1-a777-afbffe7010bc",
1014                   "description": "A Proxy for Service vDOROTHEA_Svc_vPRS",
1015                   "name": "vDOROTHEA_Svc_vPRS Service Proxy",
1016                   "version": "1.0",
1017                   "customizationUuid": "bdb63d23-e132-4ce7-af2c-a493b4cafac9",
1018                   "inputs": {},
1019                   "commands": {},
1020                   "properties": {},
1021                   "type": "Service Proxy",
1022                   "sourceModelUuid": "da7827a2-366d-4be6-8c68-a69153c61274",
1023                   "sourceModelInvariant": "24632e6b-584b-4f45-80d4-fefd75fd9f14",
1024                   "sourceModelName": "vDOROTHEA_Svc_vPRS"
1025                 }
1026               }
1027             },
1028             "groupingservicefortest..ResourceInstanceGroup..1": {
1029               "type": "VnfGroup",
1030               "invariantUuid": "a704112d-dbc6-4e56-8d4e-aec57e95ef9a",
1031               "uuid": "c2b300e6-45de-4e5e-abda-3032bee2de56",
1032               "version": "1",
1033               "name": "groupingservicefortest..ResourceInstanceGroup..1",
1034               "modelCustomizationName": "groupingservicefortest..ResourceInstanceGroup..1",
1035               "properties": {
1036                 "contained_resource_type": "VF",
1037                 "role": "SERVICE-ACCESS",
1038                 "function": "SIGNALING",
1039                 "description": "DDD1",
1040                 "type": "LOAD-GROUP",
1041                 "ecomp_generated_naming": "true"
1042               },
1043               "members": {
1044                 "tsbc0001vm001_svc_proxy 0": {
1045                   "uuid": "65fadfa8-a0d9-443f-95ad-836cd044e26c",
1046                   "invariantUuid": "f4baae0c-b3a5-4ca1-a777-afbffe7010bc",
1047                   "description": "A Proxy for Service tsbc0001vm001_Svc",
1048                   "name": "tsbc0001vm001_Svc Service Proxy",
1049                   "version": "1.0",
1050                   "customizationUuid": "3d814462-30fb-4c62-b997-9aa360d27ead",
1051                   "inputs": {},
1052                   "commands": {},
1053                   "properties": {},
1054                   "type": "Service Proxy",
1055                   "sourceModelUuid": "28aeb8f6-5620-4148-8bfb-a5fb406f0309",
1056                   "sourceModelInvariant": "c989ab9a-33c7-46ec-b521-1b2daef5f047",
1057                   "sourceModelName": "tsbc0001vm001_Svc"
1058                 }
1059               }
1060             }
1061           }
1062         },
1063         "b75e0d22-05ff-4448-9266-5f0d4e1dbbd6": {
1064           "service": {
1065             "uuid": "b75e0d22-05ff-4448-9266-5f0d4e1dbbd6",
1066             "invariantUuid": "5b9c0f33-eec1-484a-bf77-736a6644d7a8",
1067             "name": "Using VID for VoIP Network Instantiations Shani",
1068             "version": "1.0",
1069             "toscaModelURL": null,
1070             "category": "VoIP Call Control",
1071             "serviceType": "",
1072             "serviceRole": "",
1073             "description": "Using VID for VoIP Network Instantiations Shani",
1074             "serviceEcompNaming": "true",
1075             "instantiationType": "ClientConfig",
1076             "inputs": {},
1077             "vidNotions": {"instantiationUI": "legacy", "modelCategory": "other", "viewEditUI": "legacy"}
1078           },
1079           "vnfs": {},
1080           "networks": {
1081             "AIC30_CONTRAIL_BASIC 0": {
1082               "uuid": "ac815c68-35b7-4ea4-9d04-92d2f844b27c",
1083               "invariantUuid": "de01afb5-532b-451d-aac4-ff9ff0644060",
1084               "description": "Basic contrail 3.0.x L3 network for AIC 3.x sites. ",
1085               "name": "AIC30_CONTRAIL_BASIC",
1086               "version": "3.0",
1087               "customizationUuid": "e94d61f7-b4b2-489a-a4a7-30b1a1a80daf",
1088               "inputs": {},
1089               "commands": {},
1090               "properties": {
1091                 "network_assignments": "{is_external_network=false, ipv4_subnet_default_assignment={min_subnets_count=1}, ecomp_generated_network_assignment=false, ipv6_subnet_default_assignment={min_subnets_count=1}}",
1092                 "exVL_naming": "{ecomp_generated_naming=true}",
1093                 "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
1094                 "network_scope": "Service",
1095                 "network_type": "AIC30_CONTRAIL_BASIC",
1096                 "network_technology": "Contrail",
1097                 "network_homing": "{ecomp_selected_instance_node_target=false}"
1098               },
1099               "type": "VL",
1100               "modelCustomizationName": "AIC30_CONTRAIL_BASIC 0"
1101             }
1102           },
1103           "collectionResources": {},
1104           "configurations": {},
1105           "fabricConfigurations": {},
1106           "serviceProxies": {},
1107           "vfModules": {},
1108           "volumeGroups": {},
1109           "pnfs": {},
1110           "vnfGroups": {}
1111         }
1112       },
1113       "serviceInstance": {
1114         "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd": {
1115           "vnfs": {
1116             "2017-488_PASQUALE-vPE 0": {
1117               "action": "None",
1118               "inMaint": false,
1119               "rollbackOnFailure": "true",
1120               "originalName": "2017-488_PASQUALE-vPE 0",
1121               "isMissingData": false,
1122               "trackById": "stigekyxrqi",
1123               "vfModules": {
1124                 "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
1125                   "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0gytfi": {
1126                     "isMissingData": false,
1127                     "sdncPreReload": null,
1128                     "modelInfo": {
1129                       "modelType": "VFmodule",
1130                       "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
1131                       "modelVersionId": "f8360508-3f17-4414-a2ed-6bc71161e8db",
1132                       "modelName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
1133                       "modelVersion": "5",
1134                       "modelCustomizationId": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
1135                       "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0"
1136                     },
1137                     "instanceParams": [{}],
1138                     "trackById": "3oj23o7nupo"
1139                   }
1140                 }
1141               },
1142               "vnfStoreKey": "2017-488_PASQUALE-vPE 0",
1143               "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
1144               "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
1145               "lcpCloudRegionId": "AAIAIC25",
1146               "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
1147               "lineOfBusiness": "ONAP",
1148               "platformName": "xxx1",
1149               "modelInfo": {
1150                 "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
1151                 "modelVersionId": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
1152                 "modelName": "2017-488_PASQUALE-vPE",
1153                 "modelVersion": "5.0",
1154                 "modelCustomizationName": "2017-488_PASQUALE-vPE 0",
1155                 "modelCustomizationId": "1da7b585-5e61-4993-b95e-8e6606c81e45",
1156                 "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09"
1157               },
1158               "legacyRegion": "11111111",
1159               "instanceParams": [{}]
1160             },
1161             "2017-388_PASQUALE-vPE 0": {
1162               "action": "Create",
1163               "inMaint": false,
1164               "rollbackOnFailure": "true",
1165               "originalName": "2017-388_PASQUALE-vPE 0",
1166               "isMissingData": false,
1167               "trackById": "nib719t5vca",
1168               "vfModules": {},
1169               "vnfStoreKey": "2017-388_PASQUALE-vPE 0",
1170               "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
1171               "lcpCloudRegionId": "AAIAIC25",
1172               "legacyRegion": "11111",
1173               "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
1174               "platformName": "platform",
1175               "lineOfBusiness": "zzz1",
1176               "instanceParams": [{}],
1177               "modelInfo": {
1178                 "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
1179                 "modelVersionId": "afacccf6-397d-45d6-b5ae-94c39734b168",
1180                 "modelName": "2017-388_PASQUALE-vPE",
1181                 "modelVersion": "4.0",
1182                 "modelCustomizationId": "b3c76f73-eeb5-4fb6-9d31-72a889f1811c",
1183                 "modelCustomizationName": "2017-388_PASQUALE-vPE 0",
1184                 "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168"
1185               },
1186               "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168"
1187             },
1188             "2017-388_PASQUALE-vPE 1": {
1189               "action": "None",
1190               "inMaint": false,
1191               "rollbackOnFailure": "true",
1192               "originalName": "2017-388_PASQUALE-vPE 1",
1193               "isMissingData": false,
1194               "trackById": "cv7l1ak8vpe",
1195               "vfModules": {},
1196               "vnfStoreKey": "2017-388_PASQUALE-vPE 1",
1197               "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
1198               "lcpCloudRegionId": "AAIAIC25",
1199               "legacyRegion": "123",
1200               "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
1201               "platformName": "platform",
1202               "lineOfBusiness": "ONAP",
1203               "instanceParams": [{}],
1204               "modelInfo": {
1205                 "modelInvariantId": "00beb8f9-6d39-452f-816d-c709b9cbb87d",
1206                 "modelVersionId": "0903e1c0-8e03-4936-b5c2-260653b96413",
1207                 "modelName": "2017-388_PASQUALE-vPE",
1208                 "modelVersion": "1.0",
1209                 "modelCustomizationId": "280dec31-f16d-488b-9668-4aae55d6648a",
1210                 "modelCustomizationName": "2017-388_PASQUALE-vPE 1",
1211                 "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413"
1212               },
1213               "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413"
1214             }
1215           },
1216           "instanceParams": [{}],
1217           "validationCounter": 0,
1218           "existingNames": {"yoav": ""},
1219           "existingVNFCounterMap": {
1220             "69e09f68-8b63-4cc9-b9ff-860960b5db09": 1,
1221             "afacccf6-397d-45d6-b5ae-94c39734b168": 1,
1222             "0903e1c0-8e03-4936-b5c2-260653b96413": 1
1223           },
1224           "existingVnfGroupCounterMap": {
1225             "daeb6568-cef8-417f-9075-ed259ce59f48": 0,
1226             "c2b300e6-45de-4e5e-abda-3032bee2de56": -1
1227           },
1228           "existingNetworksCounterMap": {"ddc3f20c-08b5-40fd-af72-c6d14636b986": 1},
1229           "networks": {
1230             "ExtVL 0": {
1231               "inMaint": false,
1232               "rollbackOnFailure": "true",
1233               "originalName": "ExtVL 0",
1234               "isMissingData": false,
1235               "trackById": "s6okajvv2n8",
1236               "networkStoreKey": "ExtVL 0",
1237               "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
1238               "lcpCloudRegionId": "AAIAIC25",
1239               "legacyRegion": "12355555",
1240               "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
1241               "platformName": "platform",
1242               "lineOfBusiness": null,
1243               "instanceParams": [{}],
1244               "modelInfo": {
1245                 "modelInvariantId": "379f816b-a7aa-422f-be30-17114ff50b7c",
1246                 "modelVersionId": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
1247                 "modelName": "ExtVL",
1248                 "modelVersion": "37.0",
1249                 "modelCustomizationId": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
1250                 "modelCustomizationName": "ExtVL 0",
1251                 "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986"
1252               },
1253               "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986"
1254             }
1255           },
1256           "vnfGroups": {
1257             "groupingservicefortest..ResourceInstanceGroup..0": {
1258               "inMaint": false,
1259               "rollbackOnFailure": "true",
1260               "originalName": "groupingservicefortest..ResourceInstanceGroup..0",
1261               "isMissingData": false,
1262               "trackById": "se0obn93qq",
1263               "vnfGroupStoreKey": "groupingservicefortest..ResourceInstanceGroup..0",
1264               "instanceName": "groupingservicefortestResourceInstanceGroup0",
1265               "instanceParams": [{}],
1266               "modelInfo": {
1267                 "modelInvariantId": "4bb2e27e-ddab-4790-9c6d-1f731bc14a45",
1268                 "modelVersionId": "daeb6568-cef8-417f-9075-ed259ce59f48",
1269                 "modelName": "groupingservicefortest..ResourceInstanceGroup..0",
1270                 "modelVersion": "1",
1271                 "modelCustomizationName": "groupingservicefortest..ResourceInstanceGroup..0",
1272                 "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48"
1273               },
1274               "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48"
1275             }
1276           },
1277           "instanceName": "yoav",
1278           "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
1279           "subscriptionServiceType": "TYLER SILVIA",
1280           "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
1281           "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
1282           "lcpCloudRegionId": "AAIAIC25",
1283           "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
1284           "aicZoneId": "ATL53",
1285           "pause": null,
1286           "projectName": "WATKINS",
1287           "rollbackOnFailure": "true",
1288           "bulkSize": 1,
1289           "aicZoneName": "AAIATLTE-ATL53",
1290           "owningEntityName": "WayneHolland",
1291           "testApi": "VNF_API",
1292           "isEcompGeneratedNaming": false,
1293           "tenantName": "USP-SIP-IC-24335-T-01",
1294           "modelInfo": {
1295             "modelInvariantId": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632",
1296             "modelVersionId": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
1297             "modelName": "action-data",
1298             "modelVersion": "1.0",
1299             "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"
1300           },
1301           "isALaCarte": false,
1302           "name": "action-data",
1303           "version": "1.0",
1304           "description": "PASQUALE vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM",
1305           "category": "Network L1-3",
1306           "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
1307           "invariantUuid": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632",
1308           "serviceType": "pnf",
1309           "serviceRole": "Testing",
1310           "vidNotions": {"instantiationUI": "legacy", "modelCategory": "other", "viewEditUI": "legacy"},
1311           "isMultiStepDesign": true
1312         }
1313       },
1314       "lcpRegionsAndTenants": {
1315         "lcpRegionList": [{
1316           "id": "AAIAIC25",
1317           "name": "AAIAIC25 (AIC)",
1318           "isPermitted": true,
1319           "cloudOwner": "irma-aic"
1320         }, {"id": "hvf6", "name": "hvf6 (AIC)", "isPermitted": true, "cloudOwner": "irma-aic"}],
1321         "lcpRegionsTenantsMap": {
1322           "AAIAIC25": [{
1323             "id": "092eb9e8e4b7412e8787dd091bc58e86",
1324             "name": "USP-SIP-IC-24335-T-01",
1325             "isPermitted": true,
1326             "cloudOwner": "irma-aic"
1327           }],
1328           "hvf6": [{
1329             "id": "bae71557c5bb4d5aac6743a4e5f1d054",
1330             "name": "AIN Web Tool-15-D-testalexandria",
1331             "isPermitted": true,
1332             "cloudOwner": "irma-aic"
1333           }, {
1334             "id": "229bcdc6eaeb4ca59d55221141d01f8e",
1335             "name": "AIN Web Tool-15-D-STTest2",
1336             "isPermitted": true,
1337             "cloudOwner": "irma-aic"
1338           }, {
1339             "id": "1178612d2b394be4834ad77f567c0af2",
1340             "name": "AIN Web Tool-15-D-SSPtestcustome",
1341             "isPermitted": true,
1342             "cloudOwner": "irma-aic"
1343           }, {
1344             "id": "19c5ade915eb461e8af52fb2fd8cd1f2",
1345             "name": "AIN Web Tool-15-D-UncheckedEcopm",
1346             "isPermitted": true,
1347             "cloudOwner": "irma-aic"
1348           }, {
1349             "id": "de007636e25249238447264a988a927b",
1350             "name": "AIN Web Tool-15-D-dfsdf",
1351             "isPermitted": true,
1352             "cloudOwner": "irma-aic"
1353           }, {
1354             "id": "62f29b3613634ca6a3065cbe0e020c44",
1355             "name": "AIN/SMS-16-D-Multiservices1",
1356             "isPermitted": true,
1357             "cloudOwner": "irma-aic"
1358           }, {
1359             "id": "649289e30d3244e0b48098114d63c2aa",
1360             "name": "AIN Web Tool-15-D-SSPST66",
1361             "isPermitted": true,
1362             "cloudOwner": "irma-aic"
1363           }, {
1364             "id": "3f21eeea6c2c486bba31dab816c05a32",
1365             "name": "AIN Web Tool-15-D-ASSPST47",
1366             "isPermitted": true,
1367             "cloudOwner": "irma-aic"
1368           }, {
1369             "id": "f60ce21d3ee6427586cff0d22b03b773",
1370             "name": "CESAR-100-D-sspjg67246",
1371             "isPermitted": true,
1372             "cloudOwner": "irma-aic"
1373           }, {
1374             "id": "8774659e425f479895ae091bb5d46560",
1375             "name": "CESAR-100-D-sspjg68359",
1376             "isPermitted": true,
1377             "cloudOwner": "irma-aic"
1378           }, {
1379             "id": "624eb554b0d147c19ff8885341760481",
1380             "name": "AINWebTool-15-D-iftach",
1381             "isPermitted": true,
1382             "cloudOwner": "irma-aic"
1383           }, {
1384             "id": "214f55f5fc414c678059c383b03e4962",
1385             "name": "CESAR-100-D-sspjg612401",
1386             "isPermitted": true,
1387             "cloudOwner": "irma-aic"
1388           }, {
1389             "id": "c90666c291664841bb98e4d981ff1db5",
1390             "name": "CESAR-100-D-sspjg621340",
1391             "isPermitted": true,
1392             "cloudOwner": "irma-aic"
1393           }, {
1394             "id": "ce5b6bc5c7b348e1bf4b91ac9a174278",
1395             "name": "sspjg621351cloned",
1396             "isPermitted": true,
1397             "cloudOwner": "irma-aic"
1398           }, {
1399             "id": "b386b768a3f24c8e953abbe0b3488c02",
1400             "name": "AINWebTool-15-D-eteancomp",
1401             "isPermitted": true,
1402             "cloudOwner": "irma-aic"
1403           }, {
1404             "id": "dc6c4dbfd225474e9deaadd34968646c",
1405             "name": "AINWebTool-15-T-SPFET",
1406             "isPermitted": true,
1407             "cloudOwner": "irma-aic"
1408           }, {
1409             "id": "02cb5030e9914aa4be120bd9ed1e19eb",
1410             "name": "AINWebTool-15-X-eeweww",
1411             "isPermitted": true,
1412             "cloudOwner": "irma-aic"
1413           }, {
1414             "id": "f2f3830e4c984d45bcd00e1a04158a79",
1415             "name": "CESAR-100-D-spjg61909",
1416             "isPermitted": true,
1417             "cloudOwner": "irma-aic"
1418           }, {
1419             "id": "05b91bd5137f4929878edd965755c06d",
1420             "name": "CESAR-100-D-sspjg621512cloned",
1421             "isPermitted": true,
1422             "cloudOwner": "irma-aic"
1423           }, {
1424             "id": "7002fbe8482d4a989ddf445b1ce336e0",
1425             "name": "AINWebTool-15-X-vdr",
1426             "isPermitted": true,
1427             "cloudOwner": "irma-aic"
1428           }, {
1429             "id": "4008522be43741dcb1f5422022a2aa0b",
1430             "name": "AINWebTool-15-D-ssasa",
1431             "isPermitted": true,
1432             "cloudOwner": "irma-aic"
1433           }, {
1434             "id": "f44e2e96a1b6476abfda2fa407b00169",
1435             "name": "AINWebTool-15-D-PFNPT",
1436             "isPermitted": true,
1437             "cloudOwner": "irma-aic"
1438           }, {
1439             "id": "b69a52bec8a84669a37a1e8b72708be7",
1440             "name": "AINWebTool-15-X-vdre",
1441             "isPermitted": true,
1442             "cloudOwner": "irma-aic"
1443           }, {
1444             "id": "fac7d9fd56154caeb9332202dcf2969f",
1445             "name": "AINWebTool-15-X-NONPODECOMP",
1446             "isPermitted": true,
1447             "cloudOwner": "irma-aic"
1448           }, {
1449             "id": "2d34d8396e194eb49969fd61ffbff961",
1450             "name": "DN5242-Nov16-T5",
1451             "isPermitted": true,
1452             "cloudOwner": "irma-aic"
1453           }, {
1454             "id": "cb42a77ff45b48a8b8deb83bb64acc74",
1455             "name": "ro-T11",
1456             "isPermitted": true,
1457             "cloudOwner": "irma-aic"
1458           }, {
1459             "id": "fa45ca53c80b492fa8be5477cd84fc2b",
1460             "name": "ro-T112",
1461             "isPermitted": true,
1462             "cloudOwner": "irma-aic"
1463           }, {
1464             "id": "4914ab0ab3a743e58f0eefdacc1dde77",
1465             "name": "DN5242-Nov21-T1",
1466             "isPermitted": true,
1467             "cloudOwner": "irma-aic"
1468           }, {
1469             "id": "d0a3e3f2964542259d155a81c41aadc3",
1470             "name": "test-hvf6-09",
1471             "isPermitted": true,
1472             "cloudOwner": "irma-aic"
1473           }, {
1474             "id": "cbb99fe4ada84631b7baf046b6fd2044",
1475             "name": "DN5242-Nov16-T3",
1476             "isPermitted": true,
1477             "cloudOwner": "irma-aic"
1478           }]
1479         }
1480       },
1481       "subscribers": [{
1482         "id": "ERICA5779-Subscriber-2",
1483         "name": "ERICA5779-Subscriber-2",
1484         "isPermitted": false
1485       }, {
1486         "id": "ERICA5779-Subscriber-3",
1487         "name": "ERICA5779-Subscriber-3",
1488         "isPermitted": false
1489       }, {
1490         "id": "ERICA5779-Subscriber-4",
1491         "name": "ERICA5779-Subscriber-5",
1492         "isPermitted": false
1493       }, {
1494         "id": "ERICA5779-TestSub-PWT-101",
1495         "name": "ERICA5779-TestSub-PWT-101",
1496         "isPermitted": false
1497       }, {
1498         "id": "ERICA5779-TestSub-PWT-102",
1499         "name": "ERICA5779-TestSub-PWT-102",
1500         "isPermitted": false
1501       }, {
1502         "id": "ERICA5779-TestSub-PWT-103",
1503         "name": "ERICA5779-TestSub-PWT-103",
1504         "isPermitted": false
1505       }, {
1506         "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
1507         "name": "CRAIG/ROBERTS",
1508         "isPermitted": false
1509       }, {"id": "DHV1707-TestSubscriber-2", "name": "DALE BRIDGES", "isPermitted": false}, {
1510         "id": "jimmy-example",
1511         "name": "JimmyExampleCust-20161102",
1512         "isPermitted": false
1513       }, {"id": "jimmy-example2", "name": "JimmyExampleCust-20161103", "isPermitted": false}, {
1514         "id": "CAR_2020_ER",
1515         "name": "CAR_2020_ER",
1516         "isPermitted": true
1517       }, {
1518         "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
1519         "name": "Emanuel",
1520         "isPermitted": false
1521       }, {
1522         "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
1523         "name": "JULIO ERICKSON",
1524         "isPermitted": false
1525       }, {
1526         "id": "DHV1707-TestSubscriber-1",
1527         "name": "LLOYD BRIDGES",
1528         "isPermitted": false
1529       }, {"id": "e433710f-9217-458d-a79d-1c7aff376d89", "name": "SILVIA ROBBINS", "isPermitted": true}],
1530       "productFamilies": null,
1531       "serviceTypes": {
1532         "e433710f-9217-458d-a79d-1c7aff376d89": [{
1533           "id": "17",
1534           "name": "JOHANNA_SANTOS",
1535           "isPermitted": false
1536         }, {"id": "16", "name": "LINDSEY", "isPermitted": false}, {
1537           "id": "2",
1538           "name": "Emanuel",
1539           "isPermitted": false
1540         }, {"id": "5", "name": "Kennedy", "isPermitted": false}, {
1541           "id": "14",
1542           "name": "SSD",
1543           "isPermitted": false
1544         }, {"id": "1", "name": "TYLER SILVIA", "isPermitted": true}, {
1545           "id": "12",
1546           "name": "VPMS",
1547           "isPermitted": false
1548         }, {"id": "3", "name": "vJamie", "isPermitted": false}, {
1549           "id": "0",
1550           "name": "vRichardson",
1551           "isPermitted": false
1552         }, {"id": "18", "name": "vCarroll", "isPermitted": false}, {
1553           "id": "9",
1554           "name": "vFLORENCE",
1555           "isPermitted": false
1556         }, {"id": "13", "name": "vWINIFRED", "isPermitted": false}, {
1557           "id": "10",
1558           "name": "vMNS",
1559           "isPermitted": false
1560         }, {"id": "15", "name": "vMOG", "isPermitted": false}, {
1561           "id": "8",
1562           "name": "vOTA",
1563           "isPermitted": false
1564         }, {"id": "11", "name": "vEsmeralda", "isPermitted": false}, {
1565           "id": "6",
1566           "name": "vPorfirio",
1567           "isPermitted": false
1568         }, {"id": "7", "name": "vVM", "isPermitted": false}, {"id": "4", "name": "vVoiceMail", "isPermitted": false}]
1569       },
1570       "aicZones": [{"id": "ATL53", "name": "AAIATLTE-ATL53"}, {"id": "ABC15", "name": "AAITESAN-ABC15"}, {
1571         "id": "TES36",
1572         "name": "ABCEETES-TES36"
1573       }, {"id": "ATL54", "name": "AICFTAAI-ATL54"}, {"id": "ATL43", "name": "AICLOCID-ATL43"}, {
1574         "id": "AMD15",
1575         "name": "AMDFAA01-AMD15"
1576       }, {"id": "AMF11", "name": "AMDOCS01-AMF11"}, {"id": "RCT1", "name": "AMSTERNL-RCT1"}, {
1577         "id": "AMS1",
1578         "name": "AMSTNLBW-AMS1"
1579       }, {"id": "HJH1", "name": "AOEEQQQD-HJH1"}, {"id": "HJE1", "name": "AOEEWWWD-HJE1"}, {
1580         "id": "MCS1",
1581         "name": "ASACMAMS-MCS1"
1582       }, {"id": "AUG1", "name": "ASDFGHJK-AUG1"}, {"id": "LUC1", "name": "ATLDFGYC-LUC1"}, {
1583         "id": "ATL1",
1584         "name": "ATLNGAMA-ATL1"
1585       }, {"id": "ATL2", "name": "ATLNGANW-ATL2"}, {"id": "HPO1", "name": "ATLNGAUP-HPO1"}, {
1586         "id": "ANI1",
1587         "name": "ATLNGTRE-ANI1"
1588       }, {"id": "ATL44", "name": "ATLSANAB-ATL44"}, {"id": "ATL56", "name": "ATLSANAC-ATL56"}, {
1589         "id": "ABC11",
1590         "name": "ATLSANAI-ABC11"
1591       }, {"id": "ATL34", "name": "ATLSANAI-ATL34"}, {"id": "ATL63", "name": "ATLSANEW-ATL63"}, {
1592         "id": "ABC12",
1593         "name": "ATLSECIA-ABC12"
1594       }, {"id": "AMD18", "name": "AUDIMA01-AMD18"}, {"id": "AVT1", "name": "AVTRFLHD-AVT1"}, {
1595         "id": "KIT1",
1596         "name": "BHYJFGLN-KIT1"
1597       }, {"id": "BHY17", "name": "BHYTFRF3-BHY17"}, {"id": "RTW5", "name": "BHYTFRY4-RTW5"}, {
1598         "id": "RTZ4",
1599         "name": "BHYTFRZ6-RTZ4"
1600       }, {"id": "RTD2", "name": "BHYTFRk4-RTD2"}, {"id": "BNA1", "name": "BNARAGBK-BNA1"}, {
1601         "id": "VEL1",
1602         "name": "BNMLKUIK-VEL1"
1603       }, {"id": "BOT1", "name": "BOTHWAKY-BOT1"}, {"id": "CAL33", "name": "CALIFORN-CAL33"}, {
1604         "id": "ATL84",
1605         "name": "CANTTCOC-ATL84"
1606       }, {"id": "HSD1", "name": "CHASKCDS-HSD1"}, {"id": "CHI1", "name": "CHILLIWE-CHI1"}, {
1607         "id": "XCP12",
1608         "name": "CHKGH123-XCP12"
1609       }, {"id": "JNL1", "name": "CJALSDAC-JNL1"}, {"id": "KJN1", "name": "CKALDKSA-KJN1"}, {
1610         "id": "CLG1",
1611         "name": "CLGRABAD-CLG1"
1612       }, {"id": "CKL1", "name": "CLKSKCKK-CKL1"}, {"id": "ATL66", "name": "CLLIAAII-ATL66"}, {
1613         "id": "CQK1",
1614         "name": "CQKSCAKK-CQK1"
1615       }, {"id": "CWY1", "name": "CWYMOWBS-CWY1"}, {"id": "DKJ1", "name": "DKJSJDKA-DKJ1"}, {
1616         "id": "DSF45",
1617         "name": "DSFBG123-DSF45"
1618       }, {"id": "DSL12", "name": "DSLFK242-DSL12"}, {"id": "FDE55", "name": "FDERT555-FDE55"}, {
1619         "id": "VEN2",
1620         "name": "FGHJUHIL-VEN2"
1621       }, {"id": "ATL64", "name": "FORLOAAJ-ATL64"}, {"id": "GNV1", "name": "GNVLSCTL-GNV1"}, {
1622         "id": "SAN22",
1623         "name": "GNVLSCTL-SAN22"
1624       }, {"id": "KAP1", "name": "HIOUYTRQ-KAP1"}, {"id": "LIS1", "name": "HOSTPROF-LIS1"}, {
1625         "id": "HRG1",
1626         "name": "HRGHRGGS-HRG1"
1627       }, {"id": "HST25", "name": "HSTNTX01-HST25"}, {"id": "STN27", "name": "HSTNTX01-STN27"}, {
1628         "id": "HST70",
1629         "name": "HSTNTX70-HST70"
1630       }, {"id": "KOR1", "name": "HYFLNBVT-KOR1"}, {"id": "RAD10", "name": "INDIPUNE-RAD10"}, {
1631         "id": "REL1",
1632         "name": "INGERFGT-REL1"
1633       }, {"id": "JAD1", "name": "JADECLLI-JAD1"}, {"id": "HKA1", "name": "JAKHLASS-HKA1"}, {
1634         "id": "JCS1",
1635         "name": "JCSJSCJS-JCS1"
1636       }, {"id": "JCV1", "name": "JCVLFLBW-JCV1"}, {"id": "KGM2", "name": "KGMTNC20-KGM2"}, {
1637         "id": "KJF12",
1638         "name": "KJFDH123-KJF12"
1639       }, {"id": "JGS1", "name": "KSJKKKKK-JGS1"}, {"id": "LAG1", "name": "LARGIZON-LAG1"}, {
1640         "id": "LAG1a",
1641         "name": "LARGIZON-LAG1a"
1642       }, {"id": "LAG45", "name": "LARGIZON-LAG1a"}, {"id": "LAG1b", "name": "LARGIZON-LAG1b"}, {
1643         "id": "WAN1",
1644         "name": "LEIWANGW-WAN1"
1645       }, {"id": "DSA1", "name": "LKJHGFDS-DSA1"}, {"id": "LON1", "name": "LONEENCO-LON1"}, {
1646         "id": "SITE",
1647         "name": "LONEENCO-SITE"
1648       }, {"id": "ZXL1", "name": "LWLWCANN-ZXL1"}, {"id": "hvf20", "name": "MDTWNJ21-hvf20"}, {
1649         "id": "hvf32",
1650         "name": "MDTWNJ21-hvf32"
1651       }, {"id": "AMD13", "name": "MEMATLAN-AMD13"}, {"id": "MIC54", "name": "MICHIGAN-MIC54"}, {
1652         "id": "MAR1",
1653         "name": "MNBVCXZM-MAR1"
1654       }, {"id": "NCA1", "name": "NCANCANN-NCA1"}, {"id": "NFT1", "name": "NFTJSSSS-NFT1"}, {
1655         "id": "GAR1",
1656         "name": "NGFVSJKO-GAR1"
1657       }, {"id": "NYC1", "name": "NYCMNY54-NYC1"}, {"id": "OKC1", "name": "OKCBOK55-OKC1"}, {
1658         "id": "OLG1",
1659         "name": "OLHOLHOL-OLG1"
1660       }, {"id": "OLK1", "name": "OLKOLKLS-OLK1"}, {"id": "NIR1", "name": "ORFLMANA-NIR1"}, {
1661         "id": "JAN1",
1662         "name": "ORFLMATT-JAN1"
1663       }, {"id": "ORL1", "name": "ORLDFLMA-ORL1"}, {"id": "PAR1", "name": "PARSFRCG-PAR1"}, {
1664         "id": "PBL1",
1665         "name": "PBLAPBAI-PBL1"
1666       }, {"id": "mac10", "name": "PKGTESTF-mac10"}, {"id": "mac20", "name": "PKGTESTF-mac20"}, {
1667         "id": "TIR2",
1668         "name": "PLKINHYI-TIR2"
1669       }, {"id": "IBB1", "name": "PLMKOIJU-IBB1"}, {"id": "COM1", "name": "PLMKOPIU-COM1"}, {
1670         "id": "POI1",
1671         "name": "PLMNJKIU-POI1"
1672       }, {"id": "PLT1", "name": "PLTNCA60-PLT1"}, {"id": "POI22", "name": "POIUY123-POI22"}, {
1673         "id": "DCC1",
1674         "name": "POIUYTGH-DCC1"
1675       }, {"id": "DCC1a", "name": "POIUYTGH-DCC1a"}, {"id": "DCC1b", "name": "POIUYTGH-DCC1b"}, {
1676         "id": "DCC2",
1677         "name": "POIUYTGH-DCC2"
1678       }, {"id": "DCC3", "name": "POIUYTGH-DCC3"}, {"id": "IAA1", "name": "QAZXSWED-IAA1"}, {
1679         "id": "QWE1",
1680         "name": "QWECLLI1-QWE1"
1681       }, {"id": "NUM1", "name": "QWERTYUI-NUM1"}, {"id": "RAD1", "name": "RADICAL1-RAD1"}, {
1682         "id": "RJN1",
1683         "name": "RJNRBZAW-RJN1"
1684       }, {"id": "SAA13", "name": "SAIT1AA9-SAA13"}, {"id": "SAA14", "name": "SAIT1AA9-SAA14"}, {
1685         "id": "SDD81",
1686         "name": "SAIT1DD6-SDD81"
1687       }, {"id": "SDD82", "name": "SAIT1DD9-SDD82"}, {"id": "SAA11", "name": "SAIT9AA2-SAA11"}, {
1688         "id": "SAA80",
1689         "name": "SAIT9AA3-SAA80"
1690       }, {"id": "SAA12", "name": "SAIT9AF8-SAA12"}, {"id": "SCC80", "name": "SAIT9CC3-SCC80"}, {
1691         "id": "ATL75",
1692         "name": "SANAAIRE-ATL75"
1693       }, {"id": "ICC1", "name": "SANJITAT-ICC1"}, {"id": "SCK1", "name": "SCKSCKSK-SCK1"}, {
1694         "id": "EHH78",
1695         "name": "SDCSHHH5-EHH78"
1696       }, {"id": "SAA78", "name": "SDCTAAA1-SAA78"}, {"id": "SAX78", "name": "SDCTAXG1-SAX78"}, {
1697         "id": "SBX78",
1698         "name": "SDCTBXG1-SBX78"
1699       }, {"id": "SEE78", "name": "SDCTEEE4-SEE78"}, {"id": "SGG78", "name": "SDCTGGG1-SGG78"}, {
1700         "id": "SXB78",
1701         "name": "SDCTGXB1-SXB78"
1702       }, {"id": "SJJ78", "name": "SDCTJJJ1-SJJ78"}, {"id": "SKK78", "name": "SDCTKKK1-SKK78"}, {
1703         "id": "SLF78",
1704         "name": "SDCTLFN1-SLF78"
1705       }, {"id": "SLL78", "name": "SDCTLLL1-SLL78"}, {"id": "MAD11", "name": "SDFQWGKL-MAD11"}, {
1706         "id": "HGD1",
1707         "name": "SDFQWHGD-HGD1"
1708       }, {"id": "SBB78", "name": "SDIT1BBB-SBB78"}, {"id": "SDG78", "name": "SDIT1BDG-SDG78"}, {
1709         "id": "SBU78",
1710         "name": "SDIT1BUB-SBU78"
1711       }, {"id": "SHH78", "name": "SDIT1HHH-SHH78"}, {"id": "SJU78", "name": "SDIT1JUB-SJU78"}, {
1712         "id": "SNA1",
1713         "name": "SNANTXCA-SNA1"
1714       }, {"id": "SAM1", "name": "SNDGCA64-SAN1"}, {"id": "SNG1", "name": "SNGPSIAU-SNG1"}, {
1715         "id": "SSA56",
1716         "name": "SSIT2AA7-SSA56"
1717       }, {"id": "STG1", "name": "STTGGE62-STG1"}, {"id": "STT1", "name": "STTLWA02-STT1"}, {
1718         "id": "SYD1",
1719         "name": "SYDNAUBV-SYD1"
1720       }, {"id": "ATL99", "name": "TEESTAAI-ATL43"}, {"id": "ATL98", "name": "TEESTAAI-ATL43"}, {
1721         "id": "ATL76",
1722         "name": "TELEPAAI-ATL76"
1723       }, {"id": "ABC14", "name": "TESAAISA-ABC14"}, {"id": "TAT33", "name": "TESAAISA-TAT33"}, {
1724         "id": "TAT34",
1725         "name": "TESAAISB-TAT34"
1726       }, {"id": "TAT37", "name": "TESAAISD-TAT37"}, {"id": "ATL62", "name": "TESSASCH-ATL62"}, {
1727         "id": "TLP1",
1728         "name": "TLPNXM18-TLP1"
1729       }, {"id": "SAN13", "name": "TOKYJPFA-SAN13"}, {"id": "TOK1", "name": "TOKYJPFA-TOK1"}, {
1730         "id": "TOL1",
1731         "name": "TOLDOH21-TOL1"
1732       }, {"id": "TOR1", "name": "TOROONXN-TOR1"}, {"id": "TOY1", "name": "TORYONNZ-TOY1"}, {
1733         "id": "ATL35",
1734         "name": "TTESSAAI-ATL35"
1735       }, {"id": "TUF1", "name": "TUFCLLI1-TUF1"}, {"id": "SAI1", "name": "UBEKQLPD-SAI1"}, {
1736         "id": "UUU4",
1737         "name": "UUUAAAUU-UUU4"
1738       }, {"id": "YYY1", "name": "UUUAIAAI-YYY1"}, {"id": "BAN1", "name": "VSDKYUTP-BAN1"}, {
1739         "id": "WAS1",
1740         "name": "WASHDCSW-WAS1"
1741       }, {"id": "APP1", "name": "WBHGTYUI-APP1"}, {"id": "SUL2", "name": "WERTYUJK-SUL2"}, {
1742         "id": "DEF2",
1743         "name": "WSBHGTYL-DEF2"
1744       }, {"id": "DHA12", "name": "WSXEDECF-DHA12"}, {"id": "MNT11", "name": "WSXEFBTH-MNT11"}, {
1745         "id": "RAJ1",
1746         "name": "YGBIJNLQ-RAJ1"
1747       }, {"id": "JAG1", "name": "YUDFJULP-JAG1"}, {"id": "ZEN1", "name": "ZENCLLI1-ZEN1"}, {
1748         "id": "ZOG1",
1749         "name": "ZOGASTRO-ZOG1"
1750       }, {"id": "SDE1", "name": "ZXCVBNMA-SDE1"}, {"id": "SIP1", "name": "ZXCVBNMK-SIP1"}, {
1751         "id": "JUL1",
1752         "name": "ZXCVBNMM-JUL1"
1753       }, {"id": "ERT1", "name": "ertclli1-ERT1"}, {"id": "IOP1", "name": "iopclli1-IOP1"}, {
1754         "id": "OPA1",
1755         "name": "opaclli1-OPA1"
1756       }, {"id": "RAI1", "name": "poiuytre-RAI1"}, {"id": "PUR1", "name": "purelyde-PUR1"}, {
1757         "id": "RTY1",
1758         "name": "rtyclli1-RTY1"
1759       }, {"id": "SDF1", "name": "sdfclli1-SDF1"}, {"id": "SSW56", "name": "ss8126GT-SSW56"}, {
1760         "id": "UIO1",
1761         "name": "uioclli1-UIO1"
1762       }],
1763       "categoryParameters": {
1764         "owningEntityList": [{
1765           "id": "aaa1",
1766           "name": "aaa1"
1767         }, {"id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc", "name": "WayneHolland"}, {
1768           "id": "Melissa",
1769           "name": "Melissa"
1770         }],
1771         "projectList": [{"id": "WATKINS", "name": "WATKINS"}, {"id": "x1", "name": "x1"}, {"id": "yyy1", "name": "yyy1"}],
1772         "lineOfBusinessList": [{"id": "ONAP", "name": "ONAP"}, {"id": "zzz1", "name": "zzz1"}],
1773         "platformList": [{"id": "platform", "name": "platform"}, {"id": "xxx1", "name": "xxx1"}]
1774       },
1775       "type": "UPDATE_LCP_REGIONS_AND_TENANTS"
1776     }
1777   }
1778 }
1779
1780 function getNetworkModel(){
1781   return {
1782     "customizationUuid":"94fdd893-4a36-4d70-b16a-ec29c54c184f",
1783     "name":"ExtVL",
1784     "version":"37.0",
1785     "description":"ECOMP generic virtual link (network) base type for all other service-level and global networks",
1786     "uuid":"ddc3f20c-08b5-40fd-af72-c6d14636b986",
1787     "invariantUuid":"379f816b-a7aa-422f-be30-17114ff50b7c",
1788     "max":1,
1789     "min":0,
1790     "isEcompGeneratedNaming":false,
1791     "type":"VL",
1792     "modelCustomizationName":"ExtVL 0",
1793     "roles":["network role 1"," network role 2"],
1794     "properties":{
1795       "network_role":"network role 1, network role 2",
1796       "network_assignments":
1797         "{is_external_network=false, ipv4_subnet_default_assignment={min_subnets_count=1}, ecomp_generated_network_assignment=false, ipv6_subnet_default_assignment={min_subnets_count=1}}",
1798       "exVL_naming":"{ecomp_generated_naming=true}","network_flows":"{is_network_policy=false, is_bound_to_vpn=false}",
1799       "network_homing":"{ecomp_selected_instance_node_target=false}"
1800     }
1801   };
1802
1803 }
1804
1805 function getNetworkInstance() {
1806   return {
1807     "modelCustomizationId": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
1808     "modelId": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
1809     "modelUniqueId": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
1810     "missingData": true,
1811     "id": "NETWORK4_INSTANCE_ID",
1812     "action": "None",
1813     "orchStatus": "Created",
1814     "provStatus": "preprov",
1815     "inMaint": false,
1816     "instanceId": "NETWORK4_INSTANCE_ID",
1817     "instanceType": "CONTRAIL30_HIMELGUARD",
1818     "instanceName": "NETWORK4_INSTANCE_NAME",
1819     "name": "NETWORK4_INSTANCE_NAME",
1820     "modelName": "ExtVL 0",
1821     "type": "VL",
1822     "isEcompGeneratedNaming": false,
1823     "networkStoreKey": "NETWORK4_INSTANCE_ID",
1824     "typeName": "N",
1825     "menuActions": {"edit": {}, "showAuditInfo": {}, "duplicate": {}, "remove": {}, "delete": {}, "undoDelete": {}},
1826     "isFailed": false,
1827     "statusMessage": "",
1828     "statusProperties": [{"key": "Prov Status:", "value": "preprov", "testId": "provStatus"}, {
1829       "key": "Orch Status:",
1830       "value": "Created",
1831       "testId": "orchStatus"
1832     }],
1833     "trackById": "1wvr73xl999",
1834     "parentType": "",
1835     "componentInfoType": "Network",
1836     "errors": {}
1837   };
1838 }