Merge "Condense unneeded data on Modern UI tests"
[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
40 class MockAppStore<T> {
41   getState() {
42     return getStore()
43   }
44
45   dispatch() {
46   }
47 }
48
49 class MockVnfModelInfo<T> {
50   getModel() {
51     return {}
52   }
53 }
54
55
56 describe('Shared Tree Service', () => {
57   let injector;
58   let service: SharedTreeService;
59   let _objectToInstanceTreeService: ObjectToInstanceTreeService;
60   let store: NgRedux<AppState>;
61   beforeAll(done => (async () => {
62     TestBed.configureTestingModule({
63       imports: [HttpClientTestingModule, NgReduxTestingModule, SdcUiComponentsModule],
64       providers: [
65         SharedTreeService,
66         ObjectToTreeService,
67         DefaultDataGeneratorService,
68         DialogService,
69         VnfPopupService,
70         BasicControlGenerator,
71         AaiService,
72         LogService,
73         BasicPopupService,
74         VnfGroupPopupService,
75         DuplicateService,
76         IframeService,
77         DynamicInputsService,
78         NetworkPopupService,
79         NetworkControlGenerator,
80         VfModulePopuopService,
81         VfModuleControlGenerator,
82         VnfGroupControlGenerator,
83         DialogService,
84         FeatureFlagsService,
85         VnfControlGenerator,
86         AaiService,
87         DialogService,
88         GenericFormService,
89         FormBuilder,
90         ErrorMsgService,
91         ObjectToInstanceTreeService,
92         ComponentInfoService,
93         {provide: NgRedux, useClass: MockAppStore}
94       ]
95     });
96     await TestBed.compileComponents();
97     injector = getTestBed();
98     service = injector.get(SharedTreeService);
99     _objectToInstanceTreeService = injector.get(ObjectToInstanceTreeService);
100     store = injector.get(NgRedux);
101   })().then(done).catch(done.fail));
102
103   test('SharedTreeService should be defined', () => {
104     expect(service).toBeDefined();
105   });
106
107   test('shouldShowDeleteInstanceWithChildrenModal should open modal if child exist with action create', () => {
108     jest.spyOn(MessageBoxService.openModal, 'next');
109     let foo = () => {
110
111     };
112     let node = <any>{
113       children: [{action: "Create"}, {action: "None"}],
114       data: {
115         typeName: 'VNF'
116       }
117     };
118     service.shouldShowDeleteInstanceWithChildrenModal(node, "serviceModelId", foo);
119     expect(MessageBoxService.openModal.next).toHaveBeenCalled();
120   });
121
122   test('openAuditInfoModal should open modal for failed instance', () => {
123     jest.spyOn(AuditInfoModalComponent.openInstanceAuditInfoModal, 'next');
124
125     let modelInfoServiceMock: ILevelNodeInfo = new VnfModelInfo(null, null, null, null, null, null, null, null, null, null);
126     const modelMock = {"a": "a"};
127     const instanceMock = {"instance": "instance", "trackById": "123456789"};
128     const instanceTypeMock = "instanceTypeMock";
129     jest.spyOn(modelInfoServiceMock, 'getModel').mockReturnValue(modelMock);
130     let node = <any>{
131       data: {
132         modelId: '6b528779-44a3-4472-bdff-9cd15ec93450',
133         trackById: '1245df21',
134         isFailed: true
135       }
136     };
137     service.openAuditInfoModal(node, "serviceModelId", instanceMock, instanceTypeMock, <any>modelInfoServiceMock);
138     expect(AuditInfoModalComponent.openInstanceAuditInfoModal.next).toHaveBeenCalledWith(
139       {
140         "instance": instanceMock,
141         "instanceId": "serviceModelId",
142         "isInstanceFailed": node.data.isFailed,
143         "model": modelMock,
144         "trackById": instanceMock.trackById,
145         "type": instanceTypeMock
146       });
147   });
148
149   test('shouldShowDeleteInstanceWithChildrfenModal should not open modal if all childs with action None', () => {
150     let foo = () => {
151     };
152     spyOn(MessageBoxService.openModal, 'next');
153
154     let node = <any>{
155       children: [{action: "None"}, {action: "None"}],
156       data: {
157         typeName: 'VNF'
158       }
159     };
160     service.shouldShowDeleteInstanceWithChildrenModal(node, "serviceModelId", foo);
161     expect(MessageBoxService.openModal.next).not.toHaveBeenCalled();
162   });
163
164   test('statusProperties should be prop on node according to node properties', () => {
165     let node = service.addingStatusProperty({orchStatus: 'completed', provStatus: 'inProgress', inMaint: false});
166     expect(node.statusProperties).toBeDefined();
167     expect(node.statusProperties).toEqual([Object({
168       key: 'Prov Status:',
169       value: 'inProgress',
170       testId: 'provStatus'
171     }), Object({key: 'Orch Status:', value: 'completed', testId: 'orchStatus'})]);
172     node = service.addingStatusProperty({orchStatus: 'completed', provStatus: 'inProgress', inMaint: true});
173     expect(node.statusProperties).toEqual([Object({
174       key: 'Prov Status:',
175       value: 'inProgress',
176       testId: 'provStatus'
177     }), Object({key: 'Orch Status:', value: 'completed', testId: 'orchStatus'}), Object({
178       key: 'In-maintenance',
179       value: '',
180       testId: 'inMaint'
181     })]);
182   });
183   const enableRemoveAndEditItemsDataProvider = [
184     ['Create action CREATE mode', DrawingBoardModes.CREATE ,ServiceInstanceActions.Create, true],
185     ['Create action VIEW mode',DrawingBoardModes.VIEW , ServiceInstanceActions.Create,false],
186     ['Create action RETRY_EDIT mode',DrawingBoardModes.RETRY_EDIT,  ServiceInstanceActions.Create,  true],
187     ['Create action EDIT mode',DrawingBoardModes.EDIT, ServiceInstanceActions.Create,  true],
188     ['Create action RETRY mode',DrawingBoardModes.RETRY, ServiceInstanceActions.Create,  false],
189     ['None action EDIT mode',DrawingBoardModes.EDIT,  ServiceInstanceActions.None, false],
190     ['None action RETRY_EDIT mode', DrawingBoardModes.RETRY_EDIT, ServiceInstanceActions.None, false]];
191   each(enableRemoveAndEditItemsDataProvider).test('shouldShowEditAndDelete if child exist with %s', (description, mode, action, enabled) => {
192     jest.spyOn(store, 'getState').mockReturnValue({
193         global: {
194           drawingBoardStatus: mode
195         }
196       });
197       let node = <any>{
198         data:{
199           action: action
200         },
201       };
202       let res = service.shouldShowRemoveAndEdit(node);
203       expect(res).toBe(enabled);
204     });
205 });
206 function generateService() {
207   return {
208     "vnfs": {
209       "2017-488_ADIOD-vPE 0": {
210         "inMaint": false,
211         "rollbackOnFailure": "true",
212         "originalName": "2017-488_ADIOD-vPE 0",
213         "isMissingData": false,
214         "trackById": "stigekyxrqi",
215         "vfModules": {
216           "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
217             "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0gytfi": {
218               "isMissingData": false,
219               "sdncPreReload": null,
220               "modelInfo": {
221                 "modelType": "VFmodule",
222                 "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
223                 "modelVersionId": "f8360508-3f17-4414-a2ed-6bc71161e8db",
224                 "modelName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
225                 "modelVersion": "5",
226                 "modelCustomizationId": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
227                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0"
228               },
229               "instanceParams": [{}],
230               "trackById": "3oj23o7nupo"
231             }
232           }
233         },
234         "vnfStoreKey": "2017-488_ADIOD-vPE 0",
235         "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
236         "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
237         "lcpCloudRegionId": "JANET25",
238         "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
239         "lineOfBusiness": "ONAP",
240         "platformName": "xxx1",
241         "modelInfo": {
242           "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
243           "modelVersionId": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
244           "modelName": "2017-488_ADIOD-vPE",
245           "modelVersion": "5.0",
246           "modelCustomizationName": "2017-488_ADIOD-vPE 0",
247           "modelCustomizationId": "1da7b585-5e61-4993-b95e-8e6606c81e45",
248           "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09"
249         },
250         "legacyRegion": "11111111",
251         "instanceParams": [{}]
252       },
253       "2017-388_ADIOD-vPE 0": {
254         "inMaint": false,
255         "rollbackOnFailure": "true",
256         "originalName": "2017-388_ADIOD-vPE 0",
257         "isMissingData": false,
258         "trackById": "nib719t5vca",
259         "vfModules": {},
260         "vnfStoreKey": "2017-388_ADIOD-vPE 0",
261         "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
262         "lcpCloudRegionId": "JANET25",
263         "legacyRegion": "11111",
264         "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
265         "platformName": "platform",
266         "lineOfBusiness": "zzz1",
267         "instanceParams": [{}],
268         "modelInfo": {
269           "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
270           "modelVersionId": "afacccf6-397d-45d6-b5ae-94c39734b168",
271           "modelName": "2017-388_ADIOD-vPE",
272           "modelVersion": "4.0",
273           "modelCustomizationId": "b3c76f73-eeb5-4fb6-9d31-72a889f1811c",
274           "modelCustomizationName": "2017-388_ADIOD-vPE 0",
275           "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168"
276         },
277         "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168"
278       },
279       "2017-388_ADIOD-vPE 1": {
280         "inMaint": false,
281         "rollbackOnFailure": "true",
282         "originalName": "2017-388_ADIOD-vPE 1",
283         "isMissingData": false,
284         "trackById": "cv7l1ak8vpe",
285         "vfModules": {},
286         "vnfStoreKey": "2017-388_ADIOD-vPE 1",
287         "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
288         "lcpCloudRegionId": "JANET25",
289         "legacyRegion": "123",
290         "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
291         "platformName": "platform",
292         "lineOfBusiness": "ONAP",
293         "instanceParams": [{}],
294         "modelInfo": {
295           "modelInvariantId": "00beb8f9-6d39-452f-816d-c709b9cbb87d",
296           "modelVersionId": "0903e1c0-8e03-4936-b5c2-260653b96413",
297           "modelName": "2017-388_ADIOD-vPE",
298           "modelVersion": "1.0",
299           "modelCustomizationId": "280dec31-f16d-488b-9668-4aae55d6648a",
300           "modelCustomizationName": "2017-388_ADIOD-vPE 1",
301           "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413"
302         },
303         "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413"
304       }
305     },
306     "instanceParams": [{}],
307     "validationCounter": 0,
308     "existingNames": {"yoav": ""},
309     "existingVNFCounterMap": {
310       "69e09f68-8b63-4cc9-b9ff-860960b5db09": 1,
311       "afacccf6-397d-45d6-b5ae-94c39734b168": 1,
312       "0903e1c0-8e03-4936-b5c2-260653b96413": 1
313     },
314     "existingVnfGroupCounterMap": {
315       "daeb6568-cef8-417f-9075-ed259ce59f48": 0,
316       "c2b300e6-45de-4e5e-abda-3032bee2de56": -1
317     },
318     "existingNetworksCounterMap": {"ddc3f20c-08b5-40fd-af72-c6d14636b986": 1},
319     "networks": {
320       "ExtVL 0": {
321         "inMaint": false,
322         "rollbackOnFailure": "true",
323         "originalName": "ExtVL 0",
324         "isMissingData": false,
325         "trackById": "s6okajvv2n8",
326         "networkStoreKey": "ExtVL 0",
327         "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
328         "lcpCloudRegionId": "JANET25",
329         "legacyRegion": "12355555",
330         "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
331         "platformName": "platform",
332         "lineOfBusiness": null,
333         "instanceParams": [{}],
334         "modelInfo": {
335           "modelInvariantId": "379f816b-a7aa-422f-be30-17114ff50b7c",
336           "modelVersionId": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
337           "modelName": "ExtVL",
338           "modelVersion": "37.0",
339           "modelCustomizationId": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
340           "modelCustomizationName": "ExtVL 0",
341           "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986"
342         },
343         "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986"
344       }
345     },
346     "vnfGroups": {
347       "groupingservicefortest..ResourceInstanceGroup..0": {
348         "inMaint": false,
349         "rollbackOnFailure": "true",
350         "originalName": "groupingservicefortest..ResourceInstanceGroup..0",
351         "isMissingData": false,
352         "trackById": "se0obn93qq",
353         "vnfGroupStoreKey": "groupingservicefortest..ResourceInstanceGroup..0",
354         "instanceName": "groupingservicefortestResourceInstanceGroup0",
355         "instanceParams": [{}],
356         "modelInfo": {
357           "modelInvariantId": "4bb2e27e-ddab-4790-9c6d-1f731bc14a45",
358           "modelVersionId": "daeb6568-cef8-417f-9075-ed259ce59f48",
359           "modelName": "groupingservicefortest..ResourceInstanceGroup..0",
360           "modelVersion": "1",
361           "modelCustomizationName": "groupingservicefortest..ResourceInstanceGroup..0",
362           "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48"
363         },
364         "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48"
365       }
366     },
367     "instanceName": "yoav",
368     "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
369     "subscriptionServiceType": "TYLER SILVIA",
370     "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
371     "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
372     "lcpCloudRegionId": "JANET25",
373     "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
374     "aicZoneId": "ATL53",
375     "pause": null,
376     "projectName": "WATKINS",
377     "rollbackOnFailure": "true",
378     "bulkSize": 1,
379     "aicZoneName": "AAIATLTE-ATL53",
380     "owningEntityName": "WayneHolland",
381     "testApi": "VNF_API",
382     "isEcompGeneratedNaming": false,
383     "tenantName": "USP-SIP-IC-24335-T-01",
384     "modelInfo": {
385       "modelInvariantId": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632",
386       "modelVersionId": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
387       "modelName": "action-data",
388       "modelVersion": "1.0",
389       "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"
390     },
391     "isALaCarte": false,
392     "name": "action-data",
393     "version": "1.0",
394     "description": "ADIOD vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM",
395     "category": "Network L1-3",
396     "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
397     "invariantUuid": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632",
398     "serviceType": "pnf",
399     "serviceRole": "Testing",
400     "vidNotions": {"instantiationUI": "legacy", "modelCategory": "other", "viewEditUI": "legacy"},
401     "isMultiStepDesign": true
402   };
403 }
404
405 function getStore() {
406   return {
407     "global": {
408       "name": null,
409       "flags": {
410         "CREATE_INSTANCE_TEST": false,
411         "EMPTY_DRAWING_BOARD_TEST": false,
412         "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
413         "FLAG_ASYNC_INSTANTIATION": true,
414         "FLAG_ASYNC_JOBS": true,
415         "FLAG_ADD_MSO_TESTAPI_FIELD": true,
416         "FLAG_UNASSIGN_SERVICE": true,
417         "FLAG_SERVICE_MODEL_CACHE": true,
418         "FLAG_COLLECTION_RESOURCE_SUPPORT": true,
419         "FLAG_SHOW_ASSIGNMENTS": true,
420         "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
421         "FLAG_DUPLICATE_VNF": true,
422         "FLAG_DEFAULT_VNF": true,
423         "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": true,
424         "FLAG_A_LA_CARTE_AUDIT_INFO": true,
425         "FLAG_1810_CR_ADD_CLOUD_OWNER_TO_MSO_REQUEST": true,
426         "FLAG_PRESENT_PROVIDER_NETWORKS_ASSOCIATIONS": true,
427         "FLAG_1810_CR_SOFT_DELETE_ALACARTE_VF_MODULE": true,
428         "FLAG_1902_NEW_VIEW_EDIT": true,
429         "FLAG_1810_IDENTIFY_SERVICE_FOR_NEW_UI": false,
430         "FLAG_1902_VNF_GROUPING": true,
431         "FLAG_SHOW_VERIFY_SERVICE": true,
432         "FLAG_ASYNC_ALACARTE_VFMODULE": true,
433         "FLAG_ASYNC_ALACARTE_VNF": true,
434         "FLAG_SHIFT_VFMODULE_PARAMS_TO_VNF": true,
435         "FLAG_1810_AAI_LOCAL_CACHE": true,
436         "FLAG_EXP_USE_DEFAULT_HOST_NAME_VERIFIER": false,
437         "FLAG_EXP_ANY_ALACARTE_NEW_INSTANTIATION_UI": false,
438         "FLAG_SUPPLEMENTARY_FILE": true,
439         "FLAG_5G_IN_NEW_INSTANTIATION_UI": true,
440         "FLAG_RESTRICTED_SELECT": false,
441         "FLAG_1810_CR_LET_SELECTING_COLLECTOR_TYPE_UNCONDITIONALLY": true
442       },
443       "drawingBoardStatus": "VIEW",
444       "type": "UPDATE_DRAWING_BOARD_STATUS"
445     },
446     "service": {
447       "serviceHierarchy": {
448         "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd": {
449           "service": {
450             "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
451             "invariantUuid": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632",
452             "name": "action-data",
453             "version": "1.0",
454             "toscaModelURL": null,
455             "category": "Network L1-3",
456             "serviceType": "pnf",
457             "serviceRole": "Testing",
458             "description": "ADIOD vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM",
459             "serviceEcompNaming": "false",
460             "instantiationType": "Macro",
461             "inputs": {},
462             "vidNotions": {"instantiationUI": "legacy", "modelCategory": "other", "viewEditUI": "legacy"}
463           },
464           "vnfs": {
465             "2017-388_ADIOD-vPE 1": {
466               "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413",
467               "invariantUuid": "00beb8f9-6d39-452f-816d-c709b9cbb87d",
468               "description": "Name ADIOD vPE Description The provider edge function for the ADIOD 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",
469               "name": "2017-388_ADIOD-vPE",
470               "version": "1.0",
471               "customizationUuid": "280dec31-f16d-488b-9668-4aae55d6648a",
472               "inputs": {},
473               "commands": {},
474               "properties": {
475                 "vmxvre_retype": "RE-VMX",
476                 "vnf_config_template_version": "get_input:2017488_adiodvpe0_vnf_config_template_version",
477                 "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
478                 "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
479                 "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
480                 "int_ctl_net_name": "VMX-INTXI",
481                 "vmx_int_ctl_prefix": "10.0.0.10",
482                 "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
483                 "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
484                 "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
485                 "nf_type": "vPE",
486                 "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
487                 "is_AVPN_service": "false",
488                 "vmx_RSG_name": "vREXI-affinity",
489                 "vmx_int_ctl_forwarding": "l2",
490                 "vmxvre_oam_ip_0": "10.0.0.10",
491                 "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
492                 "vmxvpfe_sriov41_0_port_vlanstrip": "false",
493                 "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
494                 "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
495                 "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2",
496                 "vmxvre_instance": "0",
497                 "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
498                 "vmxvre_flavor_name": "ns.c1r16d32.v5",
499                 "vmxvpfe_volume_size_0": "40.0",
500                 "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
501                 "nf_naming": "{ecomp_generated_naming=true}",
502                 "multi_stage_design": "true",
503                 "nf_naming_code": "Navneet",
504                 "vmxvre_name_0": "vREXI",
505                 "vmxvpfe_sriov42_0_port_vlanstrip": "false",
506                 "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
507                 "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
508                 "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
509                 "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
510                 "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
511                 "vmxvre_console": "vidconsole",
512                 "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
513                 "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
514                 "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
515                 "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
516                 "vmxvpfe_sriov44_0_port_vlanstrip": "false",
517                 "vf_module_id": "123",
518                 "nf_function": "JAI",
519                 "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
520                 "vmxvre_int_ctl_ip_0": "10.0.0.10",
521                 "ecomp_generated_naming": "true",
522                 "AIC_CLLI": "get_input:2017488_adiodvpe0_AIC_CLLI",
523                 "vnf_name": "mtnj309me6vre",
524                 "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
525                 "vmxvre_volume_type_1": "HITACHI",
526                 "vmxvpfe_sriov44_0_port_broadcastallow": "true",
527                 "vmxvre_volume_type_0": "HITACHI",
528                 "vmxvpfe_volume_type_0": "HITACHI",
529                 "vmxvpfe_sriov43_0_port_broadcastallow": "true",
530                 "bandwidth_units": "get_input:2017488_adiodvpe0_bandwidth_units",
531                 "vnf_id": "123",
532                 "vmxvre_oam_prefix": "24",
533                 "availability_zone_0": "mtpocfo-kvm-az01",
534                 "ASN": "get_input:2017488_adiodvpe0_ASN",
535                 "vmxvre_chassis_i2cid": "161",
536                 "vmxvpfe_name_0": "vPFEXI",
537                 "bandwidth": "get_input:2017488_adiodvpe0_bandwidth",
538                 "availability_zone_max_count": "1",
539                 "vmxvre_volume_size_0": "45.0",
540                 "vmxvre_volume_size_1": "50.0",
541                 "vmxvpfe_sriov42_0_port_broadcastallow": "true",
542                 "vmxvre_oam_gateway": "10.0.0.10",
543                 "vmxvre_volume_name_1": "vREXI_FAVolume",
544                 "vmxvre_ore_present": "0",
545                 "vmxvre_volume_name_0": "vREXI_FBVolume",
546                 "vmxvre_type": "0",
547                 "vnf_instance_name": "get_input:2017488_adiodvpe0_vnf_instance_name",
548                 "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
549                 "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
550                 "vmx_int_ctl_len": "24",
551                 "vmxvpfe_sriov43_0_port_vlanstrip": "false",
552                 "vmxvpfe_sriov41_0_port_broadcastallow": "true",
553                 "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
554                 "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
555                 "nf_role": "Testing",
556                 "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
557                 "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
558                 "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
559               },
560               "type": "VF",
561               "modelCustomizationName": "2017-388_ADIOD-vPE 1",
562               "vfModules": {},
563               "volumeGroups": {},
564               "vfcInstanceGroups": {}
565             },
566             "2017-388_ADIOD-vPE 0": {
567               "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168",
568               "invariantUuid": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
569               "description": "Name ADIOD vPE Description The provider edge function for the ADIOD 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",
570               "name": "2017-388_ADIOD-vPE",
571               "version": "4.0",
572               "customizationUuid": "b3c76f73-eeb5-4fb6-9d31-72a889f1811c",
573               "inputs": {},
574               "commands": {},
575               "properties": {
576                 "vmxvre_retype": "RE-VMX",
577                 "vnf_config_template_version": "get_input:2017488_adiodvpe0_vnf_config_template_version",
578                 "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
579                 "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
580                 "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
581                 "int_ctl_net_name": "VMX-INTXI",
582                 "vmx_int_ctl_prefix": "10.0.0.10",
583                 "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
584                 "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
585                 "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
586                 "nf_type": "vPE",
587                 "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
588                 "is_AVPN_service": "false",
589                 "vmx_RSG_name": "vREXI-affinity",
590                 "vmx_int_ctl_forwarding": "l2",
591                 "vmxvre_oam_ip_0": "10.0.0.10",
592                 "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
593                 "vmxvpfe_sriov41_0_port_vlanstrip": "false",
594                 "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
595                 "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
596                 "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2",
597                 "vmxvre_instance": "0",
598                 "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
599                 "vmxvre_flavor_name": "ns.c1r16d32.v5",
600                 "vmxvpfe_volume_size_0": "40.0",
601                 "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
602                 "nf_naming": "{ecomp_generated_naming=true}",
603                 "multi_stage_design": "true",
604                 "nf_naming_code": "Navneet",
605                 "vmxvre_name_0": "vREXI",
606                 "vmxvpfe_sriov42_0_port_vlanstrip": "false",
607                 "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
608                 "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
609                 "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
610                 "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
611                 "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
612                 "vmxvre_console": "vidconsole",
613                 "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
614                 "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
615                 "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
616                 "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
617                 "vmxvpfe_sriov44_0_port_vlanstrip": "false",
618                 "vf_module_id": "123",
619                 "nf_function": "JAI",
620                 "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
621                 "vmxvre_int_ctl_ip_0": "10.0.0.10",
622                 "ecomp_generated_naming": "true",
623                 "AIC_CLLI": "get_input:2017488_adiodvpe0_AIC_CLLI",
624                 "vnf_name": "mtnj309me6vre",
625                 "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
626                 "vmxvre_volume_type_1": "HITACHI",
627                 "vmxvpfe_sriov44_0_port_broadcastallow": "true",
628                 "vmxvre_volume_type_0": "HITACHI",
629                 "vmxvpfe_volume_type_0": "HITACHI",
630                 "vmxvpfe_sriov43_0_port_broadcastallow": "true",
631                 "bandwidth_units": "get_input:2017488_adiodvpe0_bandwidth_units",
632                 "vnf_id": "123",
633                 "vmxvre_oam_prefix": "24",
634                 "availability_zone_0": "mtpocfo-kvm-az01",
635                 "ASN": "get_input:2017488_adiodvpe0_ASN",
636                 "vmxvre_chassis_i2cid": "161",
637                 "vmxvpfe_name_0": "vPFEXI",
638                 "bandwidth": "get_input:2017488_adiodvpe0_bandwidth",
639                 "availability_zone_max_count": "1",
640                 "vmxvre_volume_size_0": "45.0",
641                 "vmxvre_volume_size_1": "50.0",
642                 "vmxvpfe_sriov42_0_port_broadcastallow": "true",
643                 "vmxvre_oam_gateway": "10.0.0.10",
644                 "vmxvre_volume_name_1": "vREXI_FAVolume",
645                 "vmxvre_ore_present": "0",
646                 "vmxvre_volume_name_0": "vREXI_FBVolume",
647                 "vmxvre_type": "0",
648                 "vnf_instance_name": "get_input:2017488_adiodvpe0_vnf_instance_name",
649                 "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
650                 "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
651                 "vmx_int_ctl_len": "24",
652                 "vmxvpfe_sriov43_0_port_vlanstrip": "false",
653                 "vmxvpfe_sriov41_0_port_broadcastallow": "true",
654                 "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
655                 "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
656                 "nf_role": "Testing",
657                 "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
658                 "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
659                 "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
660               },
661               "type": "VF",
662               "modelCustomizationName": "2017-388_ADIOD-vPE 0",
663               "vfModules": {},
664               "volumeGroups": {},
665               "vfcInstanceGroups": {}
666             },
667             "2017-488_ADIOD-vPE 0": {
668               "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
669               "invariantUuid": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
670               "description": "Name ADIOD vPE Description The provider edge function for the ADIOD 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",
671               "name": "2017-488_ADIOD-vPE",
672               "version": "5.0",
673               "customizationUuid": "1da7b585-5e61-4993-b95e-8e6606c81e45",
674               "inputs": {},
675               "commands": {},
676               "properties": {
677                 "max_instances": 1,
678                 "vmxvre_retype": "RE-VMX",
679                 "vnf_config_template_version": "get_input:2017488_adiodvpe0_vnf_config_template_version",
680                 "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
681                 "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
682                 "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
683                 "int_ctl_net_name": "VMX-INTXI",
684                 "vmx_int_ctl_prefix": "10.0.0.10",
685                 "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
686                 "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
687                 "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
688                 "nf_type": "vPE",
689                 "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
690                 "is_AVPN_service": "false",
691                 "vmx_RSG_name": "vREXI-affinity",
692                 "vmx_int_ctl_forwarding": "l2",
693                 "vmxvre_oam_ip_0": "10.0.0.10",
694                 "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
695                 "vmxvpfe_sriov41_0_port_vlanstrip": "false",
696                 "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
697                 "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
698                 "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2",
699                 "vmxvre_instance": "0",
700                 "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
701                 "vmxvre_flavor_name": "ns.c1r16d32.v5",
702                 "vmxvpfe_volume_size_0": "40.0",
703                 "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
704                 "nf_naming": "{ecomp_generated_naming=true}",
705                 "multi_stage_design": "true",
706                 "nf_naming_code": "Navneet",
707                 "vmxvre_name_0": "vREXI",
708                 "vmxvpfe_sriov42_0_port_vlanstrip": "false",
709                 "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
710                 "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
711                 "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
712                 "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
713                 "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
714                 "vmxvre_console": "vidconsole",
715                 "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
716                 "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
717                 "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
718                 "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
719                 "vmxvpfe_sriov44_0_port_vlanstrip": "false",
720                 "vf_module_id": "123",
721                 "nf_function": "JAI",
722                 "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
723                 "vmxvre_int_ctl_ip_0": "10.0.0.10",
724                 "ecomp_generated_naming": "true",
725                 "AIC_CLLI": "get_input:2017488_adiodvpe0_AIC_CLLI",
726                 "vnf_name": "mtnj309me6vre",
727                 "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
728                 "vmxvre_volume_type_1": "HITACHI",
729                 "vmxvpfe_sriov44_0_port_broadcastallow": "true",
730                 "vmxvre_volume_type_0": "HITACHI",
731                 "vmxvpfe_volume_type_0": "HITACHI",
732                 "vmxvpfe_sriov43_0_port_broadcastallow": "true",
733                 "bandwidth_units": "get_input:2017488_adiodvpe0_bandwidth_units",
734                 "vnf_id": "123",
735                 "vmxvre_oam_prefix": "24",
736                 "availability_zone_0": "mtpocfo-kvm-az01",
737                 "ASN": "get_input:2017488_adiodvpe0_ASN",
738                 "vmxvre_chassis_i2cid": "161",
739                 "vmxvpfe_name_0": "vPFEXI",
740                 "bandwidth": "get_input:2017488_adiodvpe0_bandwidth",
741                 "availability_zone_max_count": "1",
742                 "vmxvre_volume_size_0": "45.0",
743                 "vmxvre_volume_size_1": "50.0",
744                 "vmxvpfe_sriov42_0_port_broadcastallow": "true",
745                 "vmxvre_oam_gateway": "10.0.0.10",
746                 "vmxvre_volume_name_1": "vREXI_FAVolume",
747                 "vmxvre_ore_present": "0",
748                 "vmxvre_volume_name_0": "vREXI_FBVolume",
749                 "vmxvre_type": "0",
750                 "vnf_instance_name": "get_input:2017488_adiodvpe0_vnf_instance_name",
751                 "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
752                 "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
753                 "vmx_int_ctl_len": "24",
754                 "vmxvpfe_sriov43_0_port_vlanstrip": "false",
755                 "vmxvpfe_sriov41_0_port_broadcastallow": "true",
756                 "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
757                 "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
758                 "nf_role": "Testing",
759                 "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
760                 "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
761                 "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
762               },
763               "type": "VF",
764               "modelCustomizationName": "2017-488_ADIOD-vPE 0",
765               "vfModules": {
766                 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
767                   "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
768                   "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
769                   "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
770                   "description": null,
771                   "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
772                   "version": "6",
773                   "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
774                   "properties": {
775                     "minCountInstances": 0,
776                     "maxCountInstances": null,
777                     "initialCount": 0,
778                     "vfModuleLabel": "ADIOD_vRE_BV",
779                     "baseModule": false
780                   },
781                   "inputs": {},
782                   "volumeGroupAllowed": true
783                 },
784                 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
785                   "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
786                   "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
787                   "customizationUuid": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
788                   "description": null,
789                   "name": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
790                   "version": "5",
791                   "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
792                   "properties": {
793                     "minCountInstances": 1,
794                     "maxCountInstances": 1,
795                     "initialCount": 1,
796                     "vfModuleLabel": "ADIOD_base_vPE_BV",
797                     "baseModule": true
798                   },
799                   "inputs": {},
800                   "volumeGroupAllowed": false
801                 },
802                 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
803                   "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
804                   "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
805                   "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
806                   "description": null,
807                   "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
808                   "version": "6",
809                   "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
810                   "properties": {
811                     "minCountInstances": 0,
812                     "maxCountInstances": null,
813                     "initialCount": 0,
814                     "vfModuleLabel": "ADIOD_vPFE_BV",
815                     "baseModule": false
816                   },
817                   "inputs": {},
818                   "volumeGroupAllowed": true
819                 }
820               },
821               "volumeGroups": {
822                 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
823                   "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
824                   "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
825                   "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
826                   "description": null,
827                   "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
828                   "version": "6",
829                   "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
830                   "properties": {
831                     "minCountInstances": 0,
832                     "maxCountInstances": null,
833                     "initialCount": 0,
834                     "vfModuleLabel": "ADIOD_vRE_BV",
835                     "baseModule": false
836                   },
837                   "inputs": {}
838                 },
839                 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
840                   "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
841                   "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
842                   "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
843                   "description": null,
844                   "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
845                   "version": "6",
846                   "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
847                   "properties": {
848                     "minCountInstances": 0,
849                     "maxCountInstances": null,
850                     "initialCount": 0,
851                     "vfModuleLabel": "ADIOD_vPFE_BV",
852                     "baseModule": false
853                   },
854                   "inputs": {}
855                 }
856               },
857               "vfcInstanceGroups": {}
858             }
859           },
860           "networks": {
861             "ExtVL 0": {
862               "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
863               "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
864               "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
865               "name": "ExtVL",
866               "version": "37.0",
867               "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
868               "inputs": {},
869               "commands": {},
870               "properties": {
871                 "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}}",
872                 "exVL_naming": "{ecomp_generated_naming=true}",
873                 "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
874                 "network_homing": "{ecomp_selected_instance_node_target=false}"
875               },
876               "type": "VL",
877               "modelCustomizationName": "ExtVL 0"
878             }
879           },
880           "collectionResource": {},
881           "configurations": {},
882           "fabricConfigurations": {},
883           "serviceProxies": {},
884           "vfModules": {
885             "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
886               "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
887               "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
888               "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
889               "description": null,
890               "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
891               "version": "6",
892               "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
893               "properties": {
894                 "minCountInstances": 0,
895                 "maxCountInstances": null,
896                 "initialCount": 0,
897                 "vfModuleLabel": "ADIOD_vRE_BV",
898                 "baseModule": false
899               },
900               "inputs": {},
901               "volumeGroupAllowed": true
902             },
903             "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
904               "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
905               "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
906               "customizationUuid": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
907               "description": null,
908               "name": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
909               "version": "5",
910               "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
911               "properties": {
912                 "minCountInstances": 1,
913                 "maxCountInstances": 1,
914                 "initialCount": 1,
915                 "vfModuleLabel": "ADIOD_base_vPE_BV",
916                 "baseModule": true
917               },
918               "inputs": {},
919               "volumeGroupAllowed": false
920             },
921             "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
922               "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
923               "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
924               "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
925               "description": null,
926               "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
927               "version": "6",
928               "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
929               "properties": {
930                 "minCountInstances": 0,
931                 "maxCountInstances": null,
932                 "initialCount": 0,
933                 "vfModuleLabel": "ADIOD_vPFE_BV",
934                 "baseModule": false
935               },
936               "inputs": {},
937               "volumeGroupAllowed": true
938             }
939           },
940           "volumeGroups": {
941             "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
942               "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
943               "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
944               "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
945               "description": null,
946               "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
947               "version": "6",
948               "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
949               "properties": {
950                 "minCountInstances": 0,
951                 "maxCountInstances": null,
952                 "initialCount": 0,
953                 "vfModuleLabel": "ADIOD_vRE_BV",
954                 "baseModule": false
955               },
956               "inputs": {}
957             },
958             "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
959               "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
960               "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
961               "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
962               "description": null,
963               "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
964               "version": "6",
965               "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
966               "properties": {
967                 "minCountInstances": 0,
968                 "maxCountInstances": null,
969                 "initialCount": 0,
970                 "vfModuleLabel": "ADIOD_vPFE_BV",
971                 "baseModule": false
972               },
973               "inputs": {}
974             }
975           },
976           "pnfs": {},
977           "vnfGroups": {
978             "groupingservicefortest..ResourceInstanceGroup..0": {
979               "type": "VnfGroup",
980               "invariantUuid": "4bb2e27e-ddab-4790-9c6d-1f731bc14a45",
981               "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48",
982               "version": "1",
983               "name": "groupingservicefortest..ResourceInstanceGroup..0",
984               "modelCustomizationName": "groupingservicefortest..ResourceInstanceGroup..0",
985               "properties": {
986                 "contained_resource_type": "VF",
987                 "role": "SERVICE-ACCESS",
988                 "function": "DATA",
989                 "description": "DDD0",
990                 "type": "LOAD-GROUP",
991                 "ecomp_generated_naming": "true"
992               },
993               "members": {
994                 "vdbe_svc_vprs_proxy 0": {
995                   "uuid": "65fadfa8-a0d9-443f-95ad-836cd044e26c",
996                   "invariantUuid": "f4baae0c-b3a5-4ca1-a777-afbffe7010bc",
997                   "description": "A Proxy for Service vDBE_Svc_vPRS",
998                   "name": "vDBE_Svc_vPRS Service Proxy",
999                   "version": "1.0",
1000                   "customizationUuid": "bdb63d23-e132-4ce7-af2c-a493b4cafac9",
1001                   "inputs": {},
1002                   "commands": {},
1003                   "properties": {},
1004                   "type": "Service Proxy",
1005                   "sourceModelUuid": "da7827a2-366d-4be6-8c68-a69153c61274",
1006                   "sourceModelInvariant": "24632e6b-584b-4f45-80d4-fefd75fd9f14",
1007                   "sourceModelName": "vDBE_Svc_vPRS"
1008                 }
1009               }
1010             },
1011             "groupingservicefortest..ResourceInstanceGroup..1": {
1012               "type": "VnfGroup",
1013               "invariantUuid": "a704112d-dbc6-4e56-8d4e-aec57e95ef9a",
1014               "uuid": "c2b300e6-45de-4e5e-abda-3032bee2de56",
1015               "version": "1",
1016               "name": "groupingservicefortest..ResourceInstanceGroup..1",
1017               "modelCustomizationName": "groupingservicefortest..ResourceInstanceGroup..1",
1018               "properties": {
1019                 "contained_resource_type": "VF",
1020                 "role": "SERVICE-ACCESS",
1021                 "function": "SIGNALING",
1022                 "description": "DDD1",
1023                 "type": "LOAD-GROUP",
1024                 "ecomp_generated_naming": "true"
1025               },
1026               "members": {
1027                 "tsbc0001vm001_svc_proxy 0": {
1028                   "uuid": "65fadfa8-a0d9-443f-95ad-836cd044e26c",
1029                   "invariantUuid": "f4baae0c-b3a5-4ca1-a777-afbffe7010bc",
1030                   "description": "A Proxy for Service tsbc0001vm001_Svc",
1031                   "name": "tsbc0001vm001_Svc Service Proxy",
1032                   "version": "1.0",
1033                   "customizationUuid": "3d814462-30fb-4c62-b997-9aa360d27ead",
1034                   "inputs": {},
1035                   "commands": {},
1036                   "properties": {},
1037                   "type": "Service Proxy",
1038                   "sourceModelUuid": "28aeb8f6-5620-4148-8bfb-a5fb406f0309",
1039                   "sourceModelInvariant": "c989ab9a-33c7-46ec-b521-1b2daef5f047",
1040                   "sourceModelName": "tsbc0001vm001_Svc"
1041                 }
1042               }
1043             }
1044           }
1045         },
1046         "b75e0d22-05ff-4448-9266-5f0d4e1dbbd6": {
1047           "service": {
1048             "uuid": "b75e0d22-05ff-4448-9266-5f0d4e1dbbd6",
1049             "invariantUuid": "5b9c0f33-eec1-484a-bf77-736a6644d7a8",
1050             "name": "Using VID for VoIP Network Instantiations Shani",
1051             "version": "1.0",
1052             "toscaModelURL": null,
1053             "category": "VoIP Call Control",
1054             "serviceType": "",
1055             "serviceRole": "",
1056             "description": "Using VID for VoIP Network Instantiations Shani",
1057             "serviceEcompNaming": "true",
1058             "instantiationType": "ClientConfig",
1059             "inputs": {},
1060             "vidNotions": {"instantiationUI": "legacy", "modelCategory": "other", "viewEditUI": "legacy"}
1061           },
1062           "vnfs": {},
1063           "networks": {
1064             "AIC30_CONTRAIL_BASIC 0": {
1065               "uuid": "ac815c68-35b7-4ea4-9d04-92d2f844b27c",
1066               "invariantUuid": "de01afb5-532b-451d-aac4-ff9ff0644060",
1067               "description": "Basic contrail 3.0.x L3 network for AIC 3.x sites. ",
1068               "name": "AIC30_CONTRAIL_BASIC",
1069               "version": "3.0",
1070               "customizationUuid": "e94d61f7-b4b2-489a-a4a7-30b1a1a80daf",
1071               "inputs": {},
1072               "commands": {},
1073               "properties": {
1074                 "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}}",
1075                 "exVL_naming": "{ecomp_generated_naming=true}",
1076                 "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
1077                 "network_scope": "Service",
1078                 "network_type": "AIC30_CONTRAIL_BASIC",
1079                 "network_technology": "Contrail",
1080                 "network_homing": "{ecomp_selected_instance_node_target=false}"
1081               },
1082               "type": "VL",
1083               "modelCustomizationName": "AIC30_CONTRAIL_BASIC 0"
1084             }
1085           },
1086           "collectionResource": {},
1087           "configurations": {},
1088           "fabricConfigurations": {},
1089           "serviceProxies": {},
1090           "vfModules": {},
1091           "volumeGroups": {},
1092           "pnfs": {},
1093           "vnfGroups": {}
1094         }
1095       },
1096       "serviceInstance": {
1097         "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd": {
1098           "vnfs": {
1099             "2017-488_ADIOD-vPE 0": {
1100               "action": "None",
1101               "inMaint": false,
1102               "rollbackOnFailure": "true",
1103               "originalName": "2017-488_ADIOD-vPE 0",
1104               "isMissingData": false,
1105               "trackById": "stigekyxrqi",
1106               "vfModules": {
1107                 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
1108                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0gytfi": {
1109                     "isMissingData": false,
1110                     "sdncPreReload": null,
1111                     "modelInfo": {
1112                       "modelType": "VFmodule",
1113                       "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
1114                       "modelVersionId": "f8360508-3f17-4414-a2ed-6bc71161e8db",
1115                       "modelName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
1116                       "modelVersion": "5",
1117                       "modelCustomizationId": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
1118                       "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0"
1119                     },
1120                     "instanceParams": [{}],
1121                     "trackById": "3oj23o7nupo"
1122                   }
1123                 }
1124               },
1125               "vnfStoreKey": "2017-488_ADIOD-vPE 0",
1126               "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
1127               "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
1128               "lcpCloudRegionId": "JANET25",
1129               "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
1130               "lineOfBusiness": "ONAP",
1131               "platformName": "xxx1",
1132               "modelInfo": {
1133                 "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
1134                 "modelVersionId": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
1135                 "modelName": "2017-488_ADIOD-vPE",
1136                 "modelVersion": "5.0",
1137                 "modelCustomizationName": "2017-488_ADIOD-vPE 0",
1138                 "modelCustomizationId": "1da7b585-5e61-4993-b95e-8e6606c81e45",
1139                 "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09"
1140               },
1141               "legacyRegion": "11111111",
1142               "instanceParams": [{}]
1143             },
1144             "2017-388_ADIOD-vPE 0": {
1145               "action": "Create",
1146               "inMaint": false,
1147               "rollbackOnFailure": "true",
1148               "originalName": "2017-388_ADIOD-vPE 0",
1149               "isMissingData": false,
1150               "trackById": "nib719t5vca",
1151               "vfModules": {},
1152               "vnfStoreKey": "2017-388_ADIOD-vPE 0",
1153               "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
1154               "lcpCloudRegionId": "JANET25",
1155               "legacyRegion": "11111",
1156               "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
1157               "platformName": "platform",
1158               "lineOfBusiness": "zzz1",
1159               "instanceParams": [{}],
1160               "modelInfo": {
1161                 "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
1162                 "modelVersionId": "afacccf6-397d-45d6-b5ae-94c39734b168",
1163                 "modelName": "2017-388_ADIOD-vPE",
1164                 "modelVersion": "4.0",
1165                 "modelCustomizationId": "b3c76f73-eeb5-4fb6-9d31-72a889f1811c",
1166                 "modelCustomizationName": "2017-388_ADIOD-vPE 0",
1167                 "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168"
1168               },
1169               "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168"
1170             },
1171             "2017-388_ADIOD-vPE 1": {
1172               "action": "None",
1173               "inMaint": false,
1174               "rollbackOnFailure": "true",
1175               "originalName": "2017-388_ADIOD-vPE 1",
1176               "isMissingData": false,
1177               "trackById": "cv7l1ak8vpe",
1178               "vfModules": {},
1179               "vnfStoreKey": "2017-388_ADIOD-vPE 1",
1180               "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
1181               "lcpCloudRegionId": "JANET25",
1182               "legacyRegion": "123",
1183               "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
1184               "platformName": "platform",
1185               "lineOfBusiness": "ONAP",
1186               "instanceParams": [{}],
1187               "modelInfo": {
1188                 "modelInvariantId": "00beb8f9-6d39-452f-816d-c709b9cbb87d",
1189                 "modelVersionId": "0903e1c0-8e03-4936-b5c2-260653b96413",
1190                 "modelName": "2017-388_ADIOD-vPE",
1191                 "modelVersion": "1.0",
1192                 "modelCustomizationId": "280dec31-f16d-488b-9668-4aae55d6648a",
1193                 "modelCustomizationName": "2017-388_ADIOD-vPE 1",
1194                 "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413"
1195               },
1196               "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413"
1197             }
1198           },
1199           "instanceParams": [{}],
1200           "validationCounter": 0,
1201           "existingNames": {"yoav": ""},
1202           "existingVNFCounterMap": {
1203             "69e09f68-8b63-4cc9-b9ff-860960b5db09": 1,
1204             "afacccf6-397d-45d6-b5ae-94c39734b168": 1,
1205             "0903e1c0-8e03-4936-b5c2-260653b96413": 1
1206           },
1207           "existingVnfGroupCounterMap": {
1208             "daeb6568-cef8-417f-9075-ed259ce59f48": 0,
1209             "c2b300e6-45de-4e5e-abda-3032bee2de56": -1
1210           },
1211           "existingNetworksCounterMap": {"ddc3f20c-08b5-40fd-af72-c6d14636b986": 1},
1212           "networks": {
1213             "ExtVL 0": {
1214               "inMaint": false,
1215               "rollbackOnFailure": "true",
1216               "originalName": "ExtVL 0",
1217               "isMissingData": false,
1218               "trackById": "s6okajvv2n8",
1219               "networkStoreKey": "ExtVL 0",
1220               "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
1221               "lcpCloudRegionId": "JANET25",
1222               "legacyRegion": "12355555",
1223               "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
1224               "platformName": "platform",
1225               "lineOfBusiness": null,
1226               "instanceParams": [{}],
1227               "modelInfo": {
1228                 "modelInvariantId": "379f816b-a7aa-422f-be30-17114ff50b7c",
1229                 "modelVersionId": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
1230                 "modelName": "ExtVL",
1231                 "modelVersion": "37.0",
1232                 "modelCustomizationId": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
1233                 "modelCustomizationName": "ExtVL 0",
1234                 "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986"
1235               },
1236               "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986"
1237             }
1238           },
1239           "vnfGroups": {
1240             "groupingservicefortest..ResourceInstanceGroup..0": {
1241               "inMaint": false,
1242               "rollbackOnFailure": "true",
1243               "originalName": "groupingservicefortest..ResourceInstanceGroup..0",
1244               "isMissingData": false,
1245               "trackById": "se0obn93qq",
1246               "vnfGroupStoreKey": "groupingservicefortest..ResourceInstanceGroup..0",
1247               "instanceName": "groupingservicefortestResourceInstanceGroup0",
1248               "instanceParams": [{}],
1249               "modelInfo": {
1250                 "modelInvariantId": "4bb2e27e-ddab-4790-9c6d-1f731bc14a45",
1251                 "modelVersionId": "daeb6568-cef8-417f-9075-ed259ce59f48",
1252                 "modelName": "groupingservicefortest..ResourceInstanceGroup..0",
1253                 "modelVersion": "1",
1254                 "modelCustomizationName": "groupingservicefortest..ResourceInstanceGroup..0",
1255                 "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48"
1256               },
1257               "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48"
1258             }
1259           },
1260           "instanceName": "yoav",
1261           "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
1262           "subscriptionServiceType": "TYLER SILVIA",
1263           "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
1264           "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
1265           "lcpCloudRegionId": "JANET25",
1266           "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
1267           "aicZoneId": "ATL53",
1268           "pause": null,
1269           "projectName": "WATKINS",
1270           "rollbackOnFailure": "true",
1271           "bulkSize": 1,
1272           "aicZoneName": "AAIATLTE-ATL53",
1273           "owningEntityName": "WayneHolland",
1274           "testApi": "VNF_API",
1275           "isEcompGeneratedNaming": false,
1276           "tenantName": "USP-SIP-IC-24335-T-01",
1277           "modelInfo": {
1278             "modelInvariantId": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632",
1279             "modelVersionId": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
1280             "modelName": "action-data",
1281             "modelVersion": "1.0",
1282             "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"
1283           },
1284           "isALaCarte": false,
1285           "name": "action-data",
1286           "version": "1.0",
1287           "description": "ADIOD vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM",
1288           "category": "Network L1-3",
1289           "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
1290           "invariantUuid": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632",
1291           "serviceType": "pnf",
1292           "serviceRole": "Testing",
1293           "vidNotions": {"instantiationUI": "legacy", "modelCategory": "other", "viewEditUI": "legacy"},
1294           "isMultiStepDesign": true
1295         }
1296       },
1297       "lcpRegionsAndTenants": {
1298         "lcpRegionList": [{
1299           "id": "JANET25",
1300           "name": "JANET25 (AIC)",
1301           "isPermitted": true,
1302           "cloudOwner": "irma-aic"
1303         }, {"id": "hvf6", "name": "hvf6 (AIC)", "isPermitted": true, "cloudOwner": "irma-aic"}],
1304         "lcpRegionsTenantsMap": {
1305           "JANET25": [{
1306             "id": "092eb9e8e4b7412e8787dd091bc58e86",
1307             "name": "USP-SIP-IC-24335-T-01",
1308             "isPermitted": true,
1309             "cloudOwner": "irma-aic"
1310           }],
1311           "hvf6": [{
1312             "id": "bae71557c5bb4d5aac6743a4e5f1d054",
1313             "name": "AIN Web Tool-15-D-testalexandria",
1314             "isPermitted": true,
1315             "cloudOwner": "irma-aic"
1316           }, {
1317             "id": "d0a3e3f2964542259d155a81c41aadc3",
1318             "name": "test-hvf6-09",
1319             "isPermitted": true,
1320             "cloudOwner": "irma-aic"
1321           }, {
1322             "id": "fa45ca53c80b492fa8be5477cd84fc2b",
1323             "name": "ro-T112",
1324             "isPermitted": true,
1325             "cloudOwner": "irma-aic"
1326           }, {
1327             "id": "cbb99fe4ada84631b7baf046b6fd2044",
1328             "name": "DN5242-Nov16-T3",
1329             "isPermitted": true,
1330             "cloudOwner": "irma-aic"
1331           }]
1332         }
1333       },
1334       "subscribers": [{
1335         "id": "ERICA5779-Subscriber-2",
1336         "name": "ERICA5779-Subscriber-2",
1337         "isPermitted": false
1338       }, {
1339         "id": "ERICA5779-Subscriber-3",
1340         "name": "ERICA5779-Subscriber-3",
1341         "isPermitted": false
1342       }, {
1343         "id": "ERICA5779-Subscriber-4",
1344         "name": "ERICA5779-Subscriber-5",
1345         "isPermitted": false
1346       }, {
1347         "id": "ERICA5779-TestSub-PWT-101",
1348         "name": "ERICA5779-TestSub-PWT-101",
1349         "isPermitted": false
1350       }, {
1351         "id": "ERICA5779-TestSub-PWT-102",
1352         "name": "ERICA5779-TestSub-PWT-102",
1353         "isPermitted": false
1354       }, {
1355         "id": "ERICA5779-TestSub-PWT-103",
1356         "name": "ERICA5779-TestSub-PWT-103",
1357         "isPermitted": false
1358       }, {
1359         "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
1360         "name": "CRAIG/ROBERTS",
1361         "isPermitted": false
1362       }, {"id": "DHV1707-TestSubscriber-2", "name": "DALE BRIDGES", "isPermitted": false}, {
1363         "id": "jimmy-example",
1364         "name": "JimmyExampleCust-20161102",
1365         "isPermitted": false
1366       }, {"id": "jimmy-example2", "name": "JimmyExampleCust-20161103", "isPermitted": false}, {
1367         "id": "CAR_2020_ER",
1368         "name": "CAR_2020_ER",
1369         "isPermitted": true
1370       }, {
1371         "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
1372         "name": "Emanuel",
1373         "isPermitted": false
1374       }, {
1375         "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
1376         "name": "JULIO ERICKSON",
1377         "isPermitted": false
1378       }, {
1379         "id": "DHV1707-TestSubscriber-1",
1380         "name": "LLOYD BRIDGES",
1381         "isPermitted": false
1382       }, {"id": "e433710f-9217-458d-a79d-1c7aff376d89", "name": "SILVIA ROBBINS", "isPermitted": true}],
1383       "productFamilies": null,
1384       "serviceTypes": {
1385         "e433710f-9217-458d-a79d-1c7aff376d89": [{
1386           "id": "17",
1387           "name": "JOHANNA_SANTOS",
1388           "isPermitted": false
1389         }, {"id": "16", "name": "LINDSEY", "isPermitted": false}, {
1390           "id": "2",
1391           "name": "Emanuel",
1392           "isPermitted": false
1393         }, {"id": "5", "name": "Kennedy", "isPermitted": false}, {
1394           "id": "14",
1395           "name": "SSD",
1396           "isPermitted": false
1397         }, {"id": "1", "name": "TYLER SILVIA", "isPermitted": true}, {
1398           "id": "12",
1399           "name": "VPMS",
1400           "isPermitted": false
1401         }, {"id": "3", "name": "vJamie", "isPermitted": false}, {
1402           "id": "0",
1403           "name": "vRichardson",
1404           "isPermitted": false
1405         }, {"id": "18", "name": "vCarroll", "isPermitted": false}, {
1406           "id": "9",
1407           "name": "vMME",
1408           "isPermitted": false
1409         }, {"id": "13", "name": "vMMSC", "isPermitted": false}, {
1410           "id": "10",
1411           "name": "vMNS",
1412           "isPermitted": false
1413         }, {"id": "15", "name": "vMOG", "isPermitted": false}, {
1414           "id": "8",
1415           "name": "vOTA",
1416           "isPermitted": false
1417         }, {"id": "11", "name": "vSCP", "isPermitted": false}, {
1418           "id": "6",
1419           "name": "vSEGW",
1420           "isPermitted": false
1421         }, {"id": "7", "name": "vVM", "isPermitted": false}, {"id": "4", "name": "vVoiceMail", "isPermitted": false}]
1422       },
1423       "aicZones": [
1424         {
1425           "id": "NFT1",
1426           "name": "NFTJSSSS-NFT1"
1427         },
1428         {
1429           "id": "JAG1",
1430           "name": "YUDFJULP-JAG1"
1431         },
1432         {
1433           "id": "YYY1",
1434           "name": "UUUAIAAI-YYY1"
1435         },
1436         {
1437           "id": "AVT1",
1438           "name": "AVTRFLHD-AVT1"
1439         },
1440         {
1441           "id": "ATL34",
1442           "name": "ATLSANAI-ATL34"
1443         }
1444       ],
1445       "categoryParameters": {
1446         "owningEntityList": [{
1447           "id": "aaa1",
1448           "name": "aaa1"
1449         }, {"id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc", "name": "WayneHolland"}, {
1450           "id": "Melissa",
1451           "name": "Melissa"
1452         }],
1453         "projectList": [{"id": "WATKINS", "name": "WATKINS"}, {"id": "x1", "name": "x1"}, {"id": "yyy1", "name": "yyy1"}],
1454         "lineOfBusinessList": [{"id": "ONAP", "name": "ONAP"}, {"id": "zzz1", "name": "zzz1"}],
1455         "platformList": [{"id": "platform", "name": "platform"}, {"id": "xxx1", "name": "xxx1"}]
1456       },
1457       "type": "UPDATE_LCP_REGIONS_AND_TENANTS"
1458     }
1459   }
1460 }