merge from ecomp a88f0072 - Modern UI
[vid.git] / vid-webpack-master / cypress / integration / iFrames / drawingBoard.e2e.ts
1
2 ///<reference path="../../../node_modules/cypress/types/index.d.ts"/>
3 describe('Drawing board', function () {
4   beforeEach(() => {
5     cy.window().then((win) => {
6       win.sessionStorage.clear();
7       cy.setReduxState();
8       cy.preventErrorsOnLoading();
9       cy.initAAIMock();
10       cy.initVidMock();
11       cy.login();
12     });
13   });
14
15   afterEach(() => {
16     cy.screenshot();
17   });
18
19   describe('duplicate', () => {
20
21     it('delete vf module reduce the number of vf modules ', function () {
22       cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
23         cy.setReduxState(<any>res);
24         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
25         cy.drawingBoardPressAddButtonByElementName('node-2017-488_ADIOD-vPE 0').get('i').should('have.class', 'fa-plus-circle');
26         cy.drawingBoardPressAddButtonByElementName('node-2017-488_ADIOD-vPE 0').click({force: true});
27         cy.fillVnfPopup().then(() => {
28           cy.drawingBoardPressAddButtonByElementName('node-2017-488_ADIOD-vPE 0').click({force: true});
29           cy.fillVnfPopup().then(() => {
30             cy.drawingBoardNumberOfExistingElementsShouldContains(2);
31             cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_ADIOD-vPE 0', 1)
32               .drawingBoardTreeClickOnContextMenuOptionByName('Remove');
33             cy.drawingBoardNumberOfExistingElementsShouldContains(1);
34           });
35         })
36       });
37     });
38
39     it('create new  vf module  update the number of vf modules ', () => {
40       cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
41         cy.setReduxState(<any>res);
42         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
43         cy.drawingBoardPressAddButtonByElementName('node-2017-488_ADIOD-vPE 0').get('i').should('have.class', 'fa-plus-circle');
44         cy.drawingBoardPressAddButtonByElementName('node-2017-488_ADIOD-vPE 0').click({force: true});
45         cy.fillVnfPopup().then(() => {
46           cy.drawingBoardPressAddButtonByElementName('node-2017-488_ADIOD-vPE 0').click({force: true});
47           cy.fillVnfPopup().then(() => {
48             cy.drawingBoardPressAddButtonByElementName('node-2017-488_ADIOD-vPE 0').click({force: true});
49             cy.fillVnfPopup().then(() => {
50               cy.drawingBoardNumberOfExistingElementsShouldContains(3);
51             });
52           });
53         });
54       });
55     });
56
57     it('duplicate vnf multi - should update number of vf modules on left side and disable duplicate when created max', () => {
58       cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
59         cy.setReduxState(<any>res);
60         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
61         cy.drawingBoardPressAddButtonByElementName('node-2017-488_ADIOD-vPE 0').get('i').should('have.class', 'fa-plus-circle')
62           .drawingBoardPressAddButtonByElementName('node-2017-488_ADIOD-vPE 0').click({force: true});
63         cy.fillVnfPopup().then(() => {
64           cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_ADIOD-vPE 0')
65             .drawingBoardTreeClickOnContextMenuOptionByName('Duplicate')
66             .get('.quantity-select option').should('have.length', 9)
67             .getElementByDataTestsId('duplicate-amount-vfmodules').select('4')
68             .getTagElementContainsText('button', 'Duplicate').click({force: true});
69           cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_ADIOD-vPE 0', 2)
70             .drawingBoardTreeClickOnContextMenuOptionByName('Duplicate')
71             .get('.quantity-select option').should('have.length', 5)
72             .getElementByDataTestsId('duplicate-amount-vfmodules').select('5')
73             .getTagElementContainsText('button', 'Duplicate').click({force: true});
74           cy.getElementByDataTestsId('node-2017-488_ADIOD-vPE 0').get("span").should('have.class', 'icon-v ng-star-inserted');
75           cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_ADIOD-vPE 0', 9)
76             .get('ul.dropdown-menu li:nth-child(2)').should('have.class', 'disabled');
77           // close menu
78           cy.get('body').click();
79           cy.drawingBoardNumberOfExistingElementsShouldContains(10);
80           cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_ADIOD-vPE 0', 1)
81             .drawingBoardTreeClickOnContextMenuOptionByName('Remove');
82           cy.drawingBoardNumberOfExistingElementsShouldContains(9);
83           cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_ADIOD-vPE 0', 3)
84             .get('ul.dropdown-menu li:nth-child(2)').should('not.have.class', 'disabled');
85         })
86       });
87     });
88
89     it('cancel duplicate multi vnf - shouldn\'t duplicate', () => {
90       let res = getReduxWithVNFS(true);
91       cy.setReduxState(<any>res);
92       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6e59c5de-f052-46fa-aa7e-2fca9d674c44');
93       const vnfNode = 'node-d6557200-ecf2-4641-8094-5393ae3aae60-VF_vMee 0';
94       cy.getElementByDataTestsId(vnfNode).should('have.length', 1)
95         .drawingBoardTreeOpenContextMenuByElementDataTestId(vnfNode)
96         .drawingBoardTreeClickOnContextMenuOptionByName('Duplicate')
97         .getElementByDataTestsId('duplicate-amount-vfmodules').select('5')
98         .getTagElementContainsText('button', 'Cancel').click({force: true})
99         .getElementByDataTestsId(vnfNode).should('have.length', 1);
100     });
101
102     it('service with 2 network - can add unlimited number of network instances', () => {
103       let res = getReduxWith2Networks();
104       cy.setReduxState(<any>res);
105       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2ab1da67-39cc-425f-ba52-59a64d0ea04a');
106       cy.get('drawing-board-tree tree-node-content').should('have.have.length', 1);
107
108       addNetworkFromModel('node-SR-IOV Provider 2-1').then(() => {
109       });
110     });
111
112     it('duplicate vnf macro', () => {
113       let res = getReduxWithVNFS(true);
114       cy.setReduxState(<any>res);
115       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6e59c5de-f052-46fa-aa7e-2fca9d674c44');
116       const vnfNode = 'node-d6557200-ecf2-4641-8094-5393ae3aae60-VF_vMee 0';
117       const vfModuleNode = 'node-522159d5-d6e0-4c2a-aa44-5a542a12a830-vf_vmee0..VfVmee..vmme_vlc..module-1';
118       cy.duplicateVnf(vnfNode, 1);
119       //edit the second vnf lineOfBusiness to be ECOMP
120       editSecondVnf(vnfNode);
121       assertEditvfModuleShowFile(vfModuleNode, "sample.json");
122       //assert that each vnf has it's own lineOfBusiness
123       cy.getReduxState().then((state) => {
124         const serviceInstance = state.service.serviceInstance['6e59c5de-f052-46fa-aa7e-2fca9d674c44'];
125         chai.expect(serviceInstance.vnfs['VF_vMee 0'].lineOfBusiness).equal("zzz1");
126         chai.expect(serviceInstance.vnfs['VF_vMee 0:0001'].lineOfBusiness).equal("ONAP");
127       });
128     });
129
130     it('delete duplicate vnf ', () => {
131       let res = getReduxWith2VNFS();
132       cy.setReduxState(<any>res);
133       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
134       cy.getElementByDataTestsId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_ADIOD-vPE 0').should('have.length', 2);
135
136       cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_ADIOD-vPE 0', 1)
137         .drawingBoardTreeClickOnContextMenuOptionByName('Duplicate')
138         .getTagElementContainsText('button', 'Duplicate').click({force: true})
139         .get('#drawing-board-tree .toggle-children').should('have.length', 1);
140
141       cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_ADIOD-vPE 0', 2)
142         .drawingBoardTreeClickOnContextMenuOptionByName('Duplicate')
143         .getElementByDataTestsId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_ADIOD-vPE 0').should('have.length', 3);
144     });
145
146     it('check the instanceParams set to instance ', () => {
147       let res = getReduxWith2VNFS();
148       let instanceName = "InstanceName";
149       cy.setReduxState(<any>res);
150       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
151       cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_ADIOD-vPE 0', 1)
152         .drawingBoardTreeClickOnContextMenuOptionByName('Edit')
153         .getElementByDataTestsId('instanceName').type(instanceName)
154         .genericFormSubmitForm();
155
156       checkDynamicInputs();
157
158       cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_ADIOD-vPE 0', 1)
159         .drawingBoardTreeClickOnContextMenuOptionByName('Edit');
160       cy.getElementByDataTestsId('instanceName').should('have.value', instanceName);
161       checkDynamicInputs();
162
163     });
164
165     it('delete duplicate vfModule ', () => {
166       let res = getReduxWith2VNFS();
167       cy.setReduxState(<any>res);
168       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
169       cy.getElementByDataTestsId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_ADIOD-vPE 0').should('have.length', 2)
170         .drawingBoardTreeOpenContextMenuByElementDataTestId('node-040e591e-5d30-4e0d-850f-7266e5a8e013-2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0')
171         .drawingBoardTreeClickOnContextMenuOptionByName('Remove')
172         .getElementByDataTestsId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_ADIOD-vPE 0').should('have.length', 2);
173     });
174
175     it('duplicate unique vnf ', () => {
176       let res = getReduxWith2VNFS();
177       cy.setReduxState(<any>res);
178       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
179       cy.getElementByDataTestsId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_ADIOD-vPE 0').should('have.length', 2)
180         .drawingBoardTreeOpenContextMenuByElementDataTestId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_ADIOD-vPE 0', 1)
181         .drawingBoardTreeClickOnContextMenuOptionByName('Duplicate')
182         .getTagElementContainsText('button', 'Duplicate').click({force: true})
183         .get('#drawing-board-tree .toggle-children').should('have.length', 1);
184     });
185
186     it('duplicate a-la-carte vnf + networks', () => {
187       let res = getReduxWithVNFS(false);
188       cy.setTestApiParamToGR();
189
190       res.service.serviceHierarchy['6e59c5de-f052-46fa-aa7e-2fca9d674c44'].service.instantiationType = "A-La-Carte";
191
192       //remove VfModules since they are not fit to a-la-carte scenario
193       delete res.service.serviceHierarchy['6e59c5de-f052-46fa-aa7e-2fca9d674c44'].vnfs['VF_vMee 0'].vfModules;
194       delete res.service.serviceInstance['6e59c5de-f052-46fa-aa7e-2fca9d674c44'].vnfs['VF_vMee 0'].vfModules;
195
196       res.service.serviceInstance['6e59c5de-f052-46fa-aa7e-2fca9d674c44'].vnfs['VF_vMee 0'].instanceName = "VFvMee00001";
197       cy.setReduxState(<any>res);
198       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6e59c5de-f052-46fa-aa7e-2fca9d674c44');
199       const vnfNode = 'node-d6557200-ecf2-4641-8094-5393ae3aae60-VF_vMee 0';
200       cy.duplicateVnf(vnfNode, 1);
201
202       //edit the second vnf lineOfBusiness to be ECOMP
203       editSecondVnf(vnfNode);
204       cy.drawingBoardPressAddButtonByElementName("node-ExtVL 0").click({force: true}).then(() => {
205         cy.fillNetworkPopup();
206       });
207
208       // compare state with the json file
209       cy.getReduxState().then((state) => {
210         let serviceInstance = state.service.serviceInstance['6e59c5de-f052-46fa-aa7e-2fca9d674c44'];
211         //assert that each vnf has it's own lineOfBusiness
212         chai.expect(serviceInstance.vnfs['VF_vMee 0'].lineOfBusiness).equal("zzz1");
213         chai.expect(serviceInstance.vnfs['VF_vMee 0:0001'].lineOfBusiness).equal("ONAP");
214         cy.readFile('../vid-automation/src/test/resources/a-la-carte/redux-multiple-vnf-network.json').then((file) => {
215           const vnfs = file.vnfs;
216           var vnfNames = Object.keys(vnfs);
217
218           for (var i: number = 0; i < vnfNames.length; i++) {
219             chai.expect(serviceInstance.vnfs).to.have.any.keys(vnfNames[i]);
220           }
221
222           chai.expect(serviceInstance.vnfs['VF_vMee 0'].lineOfBusiness).equal(vnfs['VF_vMee 0'].lineOfBusiness);
223           chai.expect(serviceInstance.vnfs['VF_vMee 0'].instanceName).equal(vnfs['VF_vMee 0'].instanceName);
224
225           vnfs['VF_vMee 0:0001'].trackById = serviceInstance.vnfs['VF_vMee 0:0001'].trackById;
226
227           cy.deepCompare(serviceInstance.vnfs['VF_vMee 0:0001'], vnfs['VF_vMee 0:0001']);
228           cy.deepCompare(serviceInstance.vnfs['VF_vMee 0'], vnfs['VF_vMee 0']);
229
230           const network = serviceInstance.networks['ExtVL 0'];
231
232           file.networks['ExtVL 0'].trackById = network.trackById;
233           cy.deepCompare(network, file.networks['ExtVL 0']);
234         });
235       });
236     });
237
238   });
239
240   describe('multiple tests', () => {
241     it('remove vfModule with missing data should update deploy button status', () => {
242       let res = getReduxWithVFModuleMissingData();
243       cy.setReduxState(<any>res);
244       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
245       cy.getElementByDataTestsId('node-040e591e-5d30-4e0d-850f-7266e5a8e013-2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0-alert-icon').should('have.class', 'icon-alert')
246         .drawingBoardTreeOpenContextMenuByElementDataTestId('node-040e591e-5d30-4e0d-850f-7266e5a8e013-2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0')
247         .drawingBoardTreeClickOnContextMenuOptionByName('Remove')
248         .getElementByDataTestsId('deployBtn').should('not.have.attr', 'disabled');
249
250       cy.updateServiceShouldNotOverrideChild();
251     });
252
253     it('remove VNF with missing data should update deploy button status ', () => {
254       let res = getReduxWithVNFMissingData();
255       cy.setReduxState(<any>res);
256       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
257
258       cy.getElementByDataTestsId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_ADIOD-vPE 0-alert-icon').should('have.class', 'icon-alert')
259         .drawingBoardTreeOpenContextMenuByElementDataTestId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_ADIOD-vPE 0', 1)
260         .drawingBoardTreeClickOnContextMenuOptionByName('Remove')
261         .getTagElementContainsText('button', 'Remove VNF').click({force: true})
262         .getElementByDataTestsId('deployBtn').should('not.have.attr', 'disabled');
263       cy.updateServiceShouldNotOverrideChild();
264     });
265
266     xit('should display service model name', () => {
267       cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
268         cy.setReduxState(<any>res);
269         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
270         cy.get('#service-model-name').contains('action-data');
271       });
272     });
273
274     it('should display icon and message if no vnf and vnfModules', () => {
275       cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
276         cy.setReduxState(<any>res);
277         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
278         cy.getElementByDataTestsId("text-title").contains("Please add objects (VNFs, network, modules etc.)");
279         cy.getElementByDataTestsId("text-title2").contains("from the left tree to design the service instance");
280         cy.getElementByDataTestsId("text-subtitle").contains("Once done, click Deploy to start instantiation");
281         cy.get('#not-node-img-id').and('be.visible');
282         cy.getElementByDataTestsId("no-content-icon").should('have.class', "no-content-icon");
283         cy.getElementByDataTestsId("no-content-icon").should('have.class', "upload-icon-service-planing");
284         cy.getElementByDataTestsId("no-content-icon").should('have.attr', "src", "./assets/img/UPLOAD.svg");
285       });
286     });
287
288     it('should show alert on remove vnf with modules', () => {
289       cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/serviceWithVnfAndVfModules.json').then((res) => {
290         cy.setReduxState(<any>res);
291         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
292         cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_ADIOD-vPE 0');
293         // assert vfModules are enabled
294         cy.get('.tree-node-disabled div[data-tests-id="node-2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1"]')
295           .should('not.be.visible');
296         cy.drawingBoardTreeClickOnContextMenuOptionByName('Remove');
297
298         cy.get('.title').contains('Remove VNF');
299         cy.get('.sdc-button').contains('Remove VNF').click();
300         // assert vfModules are disabled after remove parent vnf
301         cy.get('.tree-node-disabled div[data-tests-id="node-2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1"]')
302           .should('be.visible');
303         cy.updateServiceShouldNotOverrideChild();
304       });
305     });
306
307     it('should not show alert on remove vnf without modules', () => {
308       cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/serviceWithVnfAndVfModules.json').then((res) => {
309         cy.setReduxState(<any>res);
310         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
311         cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-0903e1c0-8e03-4936-b5c2-260653b96413-2017-388_ADIOD-vPE 1');
312         cy.drawingBoardTreeClickOnContextMenuOptionByName('Remove')
313       });
314     });
315
316     it('should show <Automatically Assigned> if ecomp is true', () => {
317       cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
318         cy.setReduxState(<any>res);
319         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
320         cy.drawingBoardPressAddButtonByElementName('node-2017-388_ADIOD-vPE 0').click({force: true});
321
322         cy.selectDropdownOptionByText('productFamily', 'DHV');
323         cy.selectDropdownOptionByText('lcpRegion', 'hvf6');
324         cy.selectDropdownOptionByText('tenant', 'AIN Web Tool-15-D-testalexandria');
325         cy.selectDropdownOptionByText('lineOfBusiness', 'ONAP');
326         cy.selectDropdownOptionByText('platform', 'platform');
327         cy.genericFormSubmitForm();
328
329         cy.getElementByDataTestsId('node-afacccf6-397d-45d6-b5ae-94c39734b168-2017-388_ADIOD-vPE 0').contains('<Automatically Assigned>');
330         cy.updateServiceShouldNotOverrideChild();
331       });
332     });
333
334     it('should show model name if ecomp is false', () => {
335       const vnfModelKey: string = '2017-488_ADIOD-vPE 0',
336         vnfModelName: string = '2017-488_ADIOD-vPE';
337       cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
338         res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs[vnfModelKey].properties.ecomp_generated_naming = 'false';
339         cy.setReduxState(<any>res);
340         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
341         cy.drawingBoardPressAddButtonByElementName('node-2017-488_ADIOD-vPE 0').click({force: true});
342
343         cy.selectDropdownOptionByText('productFamily', 'DHV');
344         cy.selectDropdownOptionByText('lcpRegion', 'hvf6');
345         cy.selectDropdownOptionByText('tenant', 'AIN Web Tool-15-D-testalexandria');
346         cy.selectDropdownOptionByText('lineOfBusiness', 'ONAP');
347         cy.selectDropdownOptionByText('platform', 'platform');
348         cy.genericFormSubmitForm();
349
350         cy.getElementByDataTestsId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_ADIOD-vPE 0').contains(vnfModelName);
351       });
352     });
353
354     describe('add instance open a popup', () => {
355
356       it('should add vfModule with popup with empty required instance name', () => {
357         cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/serviceWithVnfAndVfModules.json').then((res) => {
358           res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_ADIOD-vPE 0"].properties.ecomp_generated_naming = "false";
359           res.service.serviceInstance["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_ADIOD-vPE 0"].vfModules = [];
360           cy.setReduxState(<any>res);
361           cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
362           cy.get('available-models-tree tree-node-expander').eq(2).click();
363           cy.drawingBoardPressAddButtonByElementName('node-2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1').click({force: true});
364         });
365       });
366
367       it('should add vfModule with popup if empty required dynamic input', () => {
368         cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/serviceWithVnfAndVfModules.json').then((res) => {
369           res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_ADIOD-vPE 0"].vfModules["2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1"].inputs["adiodvpe0_bandwidth"].default = '';
370           res.service.serviceInstance["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_ADIOD-vPE 0"].vfModules = [];
371           cy.setReduxState(<any>res);
372           cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
373           cy.get('available-models-tree tree-node-expander').eq(2).click();
374           cy.drawingBoardPressAddButtonByElementName('node-2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1').click({force: true});
375           cy.get('#instance-popup').and('be.visible');
376         });
377       });
378
379     });
380
381
382     describe('show warning and disable deploy button on vnf missing data', () => {
383       it('show warning on vnf, and disable button, remove warning and enable button after edit', () => {
384         cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/serviceWithVnfAndVfModules.json').then((res) => {
385           res.service.serviceInstance['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].existingVNFCounterMap['0903e1c0-8e03-4936-b5c2-260653b96413'] = 1;
386           res.service.serviceInstance["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].validationCounter = 1;
387           res.service.serviceInstance["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-388_ADIOD-vPE 1"] = {
388             "rollbackOnFailure": "false",
389             "vfModules": {},
390             "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
391             "lcpCloudRegionId": "",
392             "tenantId": "",
393             "lineOfBusiness": "zzz1",
394             "platformName": "platform",
395             "isMissingData": true,
396             "modelInfo": {
397               "modelType": "service",
398               "modelInvariantId": "00beb8f9-6d39-452f-816d-c709b9cbb87d",
399               "modelVersionId": "0903e1c0-8e03-4936-b5c2-260653b96413",
400               "modelName": "2017-388_ADIOD-vPE",
401               "modelVersion": "1.0",
402               "modelCustomizationId": "280dec31-f16d-488b-9668-4aae55d6648a",
403               "modelCustomizationName": "2017-388_ADIOD-vPE 1"
404             }
405           };
406           cy.setReduxState(<any>res);
407           cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
408           cy.getElementByDataTestsId("node-0903e1c0-8e03-4936-b5c2-260653b96413-2017-388_ADIOD-vPE 1-alert-icon").and('be.visible');
409           cy.isElementContainsAttr('deployBtn', 'disabled');
410           cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-0903e1c0-8e03-4936-b5c2-260653b96413-2017-388_ADIOD-vPE 1')
411             .drawingBoardTreeClickOnContextMenuOptionByName('Edit')
412           cy.selectDropdownOptionByText('lcpRegion', 'hvf6');
413           cy.selectDropdownOptionByText('tenant', 'AIN Web Tool-15-D-testalexandria');
414           cy.genericFormSubmitForm();
415           cy.getElementByDataTestsId("node-0903e1c0-8e03-4936-b5c2-260653b96413-2017-388_ADIOD-vPE 1-alert-icon").should('not.be.visible');
416           cy.getElementByDataTestsId('deployBtn').should('not.have.attr', 'disabled');
417           cy.updateServiceShouldNotOverrideChild();
418         });
419       });
420     });
421
422     describe('vnf should automatically displayed or not according its min value and its vf-modules min value', () => {
423
424       it('vnf with min_instances value > 0 without required VF modules, should be created automatically without children', () => {
425         cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/basicRedux.json').then((res) => {
426           res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_ADIOD-vPE 0"].properties['min_instances'] = 1;
427           res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_ADIOD-vPE 0"].vfModules["2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0"].properties['initialCount'] = 0;
428           res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vfModules["2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0"].properties['initialCount'] = 0;
429           cy.setReduxState(<any>res);
430           cy.fillServicePopup().then(() => {
431             cy.visit("welcome.htm").then(() => {
432               cy.visit('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd').then(() => {
433                 cy.getElementByDataTestsId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_ADIOD-vPE 0').should('exist');
434                 cy.getElementByDataTestsId('node-25284168-24bb-4698-8cb4-3f509146eca5-2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1').should('not.exist');
435                 cy.getElementByDataTestsId('node-f8360508-3f17-4414-a2ed-6bc71161e8db-2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0').should('not.exist');
436               })
437             })
438           });
439         });
440
441       });
442
443       it('vnf with min_instances value > 1 with required VF modules, should be created automatically with children only once', () => {
444         cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/basicRedux.json').then((res) => {
445           res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_ADIOD-vPE 0"].properties['min_instances'] = 3;
446           cy.setReduxState(<any>res);
447           cy.fillServicePopup().then(() => {
448             cy.visit("welcome.htm").then(() => {
449               cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
450               cy.getElementByDataTestsId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_ADIOD-vPE 0').should('exist');
451               cy.getElementByDataTestsId('node-f8360508-3f17-4414-a2ed-6bc71161e8db-2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0').should('have.length', 1);
452
453             });
454           });
455         });
456       });
457
458
459       it('vnf with min_instances value = 0 with required VF modules should be created automatically with its children', () => {
460         cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/basicRedux.json').then((res) => {
461           res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_ADIOD-vPE 0"].properties['min_instances'] = 0;
462           cy.setReduxState(<any>res);
463           cy.fillServicePopup().then(() => {
464             cy.visit("welcome.htm").then(() => {
465               cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
466               cy.getElementByDataTestsId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_ADIOD-vPE 0').should('exist');
467               cy.getElementByDataTestsId('node-f8360508-3f17-4414-a2ed-6bc71161e8db-2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0').should('exist');
468               cy.updateServiceShouldNotOverrideChild();
469             });
470           });
471         });
472
473       });
474
475
476       it('vnf without min_instances and without required VF modules, should not exist automatically in right side', () => {
477         cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/basicRedux.json').then((res) => {
478           cy.setReduxState(<any>res);
479           cy.fillServicePopup().then(() => {
480             cy.visit("welcome.htm").then(() => {
481               cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
482               cy.getElementByDataTestsId('node-afacccf6-397d-45d6-b5ae-94c39734b168-2017-388_ADIOD-vPE 0').should('not.exist');
483             });
484           });
485         });
486       });
487     });
488   });
489
490   describe('supplementary file', () => {
491     it('delete file', () => {
492       let res = getReduxWithVNFS(true);
493       let instanceName = 'instanceName';
494       cy.setReduxState(<any>res);
495       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6e59c5de-f052-46fa-aa7e-2fca9d674c44');
496       const vfModuleNode = 'node-522159d5-d6e0-4c2a-aa44-5a542a12a830-vf_vmee0..VfVmee..vmme_vlc..module-1';
497       assertEditvfModuleShowFile(vfModuleNode, "sample.json");
498       cy.getElementByDataTestsId('remove-uploaded-file').click({force: true});
499       cy.getElementByDataTestsId('form-set').should('not.have.attr', 'disabled');
500       cy.typeToInput('instanceName', instanceName);
501       cy.genericFormSubmitForm();
502       cy.getReduxState().then((state) => {
503         const serviceInstance = state.service.serviceInstance['6e59c5de-f052-46fa-aa7e-2fca9d674c44'];
504         const vfModuleInstance = serviceInstance.vnfs['VF_vMee 0'].vfModules['vf_vmee0..VfVmee..vmme_vlc..module-1']['vf_vmee0..VfVmee..vmme_vlc..module-1dcudx'];
505         chai.expect(vfModuleInstance.supplementaryFile_hidden).to.be.null;
506         chai.expect(vfModuleInstance.supplementaryFile_hidden_content).to.be.null;
507         chai.expect(vfModuleInstance.supplementaryFileContent).to.be.undefined;
508         chai.expect(vfModuleInstance.supplementaryFileName).to.be.undefined;
509       });
510       cy.getElementByDataTestsId('node-d6557200-ecf2-4641-8094-5393ae3aae60-VF_vMee 0').click();
511       assertEditvfModuleShowFile(vfModuleNode, "Choose file");
512       cy.getElementByDataTestsId('instanceName').should('have.value', instanceName);
513     });
514   });
515
516   describe('component info', () => {
517
518     const longText = 'Im a very long text for verify wrapping so please dont make me shorter';
519
520     function testIfComponentInfoShown(flagState:boolean) {
521       let res = getReduxWith2VNFS();
522       res.global.flags.FLAG_1906_COMPONENT_INFO = flagState;
523       res.service.serviceHierarchy["f4d84bb4-a416-4b4e-997e-0059973630b9"].service.serviceRole = longText;
524       cy.setReduxState(<any>res);
525       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
526       let conditionStr = flagState ? "" : "not.";
527       cy.get('component-info').should(conditionStr+"be.visible");
528       const otherComponentWidth = flagState ? 5 : 6;
529       const otherComponentCss = 'col-md-'+otherComponentWidth ;
530       cy.get('available-models-tree').should("have.class", otherComponentCss);
531       cy.get('drawing-board-tree').should("have.class", otherComponentCss);
532       if (flagState) {
533         cy.get('component-info').should("have.class", 'col-md-2');
534       }
535
536
537     }
538
539     it('component info is shown and relevant fields are shown', () => {
540       testIfComponentInfoShown(true);
541
542       let labelsAndValues = [
543         ['Model Version', '1.0'],
544         ['Subscriber Name', 'SILVIA ROBBINS'],
545         ['Service Type', 'TYLER SILVIA'],
546         ['Service Role', longText]
547       ];
548       const expectedTitle = 'Service Instance INFO';
549       cy.assertComponentInfoTitleLabelsAndValues(expectedTitle, labelsAndValues);
550       cy.getElementByDataTestsId('model-item-value-Service Role').should('have.css', 'height', '32px'); //assert that long text is wrap
551     });
552
553     it('component info is not shown when feature flag is false', () => {
554       testIfComponentInfoShown(false);
555     });
556   });
557
558
559   function addNetworkFromModel(instanceName: string) {
560     return cy.get('drawing-board-tree').find('tree-node-content').then((elemets) => {
561       cy.get('drawing-board-tree tree-node-content').should('have.have.length', elemets.length);
562       cy.drawingBoardPressAddButtonByElementName(instanceName).click({force: true}).then(() => {
563         cy.fillNetworkPopup();
564         cy.get('drawing-board-tree tree-node-content').should('have.have.length', (elemets.length + 1));
565         cy.updateServiceShouldNotOverrideChild();
566       });
567     });
568   }
569
570   function getReduxWith2VNFS() {
571     return {
572       "global": {
573         "name": null,
574         "flags": {
575           "FLAG_SHOW_ASSIGNMENTS": true,
576           "FLAG_UNASSIGN_SERVICE": true,
577           "FLAG_SHOW_VERIFY_SERVICE": false,
578           "FLAG_COLLECTION_RESOURCE_SUPPORT": true,
579           "FLAG_ASYNC_INSTANTIATION": true,
580           "EMPTY_DRAWING_BOARD_TEST": false,
581           "FLAG_ADD_MSO_TESTAPI_FIELD": true,
582           "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
583           "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
584           "FLAG_DUPLICATE_VNF": true,
585           "FLAG_SERVICE_MODEL_CACHE": true,
586           "CREATE_INSTANCE_TEST": false,
587           "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": false,
588           "FLAG_ASYNC_JOBS": true,
589           "FLAG_1906_COMPONENT_INFO" : false
590         },
591         "type": "[FLAGS] Update"
592       },
593       "service": {
594         "serviceHierarchy": {
595           "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
596             "service": {
597               "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
598               "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
599               "name": "ComplexService",
600               "version": "1.0",
601               "toscaModelURL": null,
602               "category": "Emanuel",
603               "serviceType": "",
604               "serviceRole": "",
605               "description": "ComplexService",
606               "serviceEcompNaming": "true",
607               "instantiationType": "Macro",
608               "inputs": {}
609             },
610             "vnfs": {
611               "VF_vMee 0": {
612                 "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60",
613                 "invariantUuid": "4160458e-f648-4b30-a176-43881ffffe9e",
614                 "description": "VSP_vMee",
615                 "name": "VF_vMee",
616                 "version": "2.0",
617                 "customizationUuid": "91415b44-753d-494c-926a-456a9172bbb9",
618                 "inputs": {},
619                 "commands": {},
620                 "properties": {
621                   "gpb2_Internal2_mac": "00:11:22:EF:AC:DF",
622                   "sctp-a-ipv6-egress_rule_application": "any",
623                   "sctp-b-ipv6-egress_src_start_port": "0",
624                   "Internal2_allow_transit": "true",
625                   "sctp-b-IPv6_ethertype": "IPv6",
626                   "ncb2_Internal1_mac": "00:11:22:EF:AC:DF",
627                   "sctp-b-ingress_rule_protocol": "icmp",
628                   "sctp-b-ingress_action": "pass",
629                   "sctp-a-egress_rule_application": "any",
630                   "sctp-b-ipv6-ingress-src_start_port": "0.0",
631                   "ncb1_Internal2_mac": "00:11:22:EF:AC:DF",
632                   "sctp-b-egress_src_addresses": "local",
633                   "fsb_volume_size_0": "320.0",
634                   "sctp-a-ipv6-ingress-dst_start_port": "0",
635                   "sctp-a-ipv6-ingress_ethertype": "IPv4",
636                   "sctp-b-ipv6-ingress_rule_application": "any",
637                   "domain_name": "default-domain",
638                   "sctp-a-egress_src_addresses": "local",
639                   "sctp-b-egress-src_start_port": "0.0",
640                   "sctp-a-ingress_rule_protocol": "icmp",
641                   "sctp-b-display_name": "epc-sctp-b-ipv4v6-sec-group",
642                   "sctp-b-ipv6-ingress-dst_end_port": "65535",
643                   "sctp-a-ingress_ethertype": "IPv4",
644                   "sctp-a-egress-src_start_port": "0.0",
645                   "sctp-b-dst_subnet_prefix_v6": "::",
646                   "nf_naming": "{ecomp_generated_naming=false}",
647                   "sctp-a-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
648                   "sctp-b-egress-dst_start_port": "0.0",
649                   "ncb_flavor_name": "nv.c20r64d1",
650                   "sctp-b-egress_dst_subnet_prefix_len": "0.0",
651                   "gpb1_Internal1_mac": "00:11:22:EF:AC:DF",
652                   "Internal2_net_cidr": "10.0.0.10",
653                   "sctp-a-ingress-dst_start_port": "0.0",
654                   "fsb1_Internal2_mac": "00:11:22:EF:AC:DF",
655                   "sctp-a-egress-dst_start_port": "0.0",
656                   "sctp-a-egress_ethertype": "IPv4",
657                   "vlc_st_service_mode": "in-network-nat",
658                   "sctp-a-ipv6-egress_ethertype": "IPv4",
659                   "sctp-a-egress-src_end_port": "65535.0",
660                   "sctp-b-egress_action": "pass",
661                   "sctp-b-ipv6-egress_rule_application": "any",
662                   "sctp-a-ingress-src_subnet_prefix_len": "0.0",
663                   "sctp-b-ipv6-ingress-src_end_port": "65535.0",
664                   "sctp-a-ipv6-ingress-src_start_port": "0.0",
665                   "fsb2_Internal1_mac": "00:11:22:EF:AC:DF",
666                   "sctp-b-name": "epc-sctp-b-ipv4v6-sec-group",
667                   "sctp-b-ipv6-egress_ethertype": "IPv4",
668                   "Internal1_net_cidr": "10.0.0.10",
669                   "sctp-a-egress_dst_subnet_prefix": "0.0.0.0",
670                   "fsb_flavor_name": "nv.c20r64d1",
671                   "sctp_rule_protocol": "132",
672                   "sctp-a-ipv6-ingress_rule_application": "any",
673                   "sctp-b-ipv6-ingress_src_subnet_prefix_len": "0",
674                   "ecomp_generated_naming": "false",
675                   "sctp-a-IPv6_ethertype": "IPv6",
676                   "vlc_st_virtualization_type": "virtual-machine",
677                   "vlc2_Internal1_mac": "00:11:22:EF:AC:DF",
678                   "sctp-b-ingress-dst_end_port": "65535.0",
679                   "sctp-b-ingress-dst_start_port": "0.0",
680                   "sctp-a-ipv6-ingress-src_end_port": "65535.0",
681                   "sctp-a-display_name": "epc-sctp-a-ipv4v6-sec-group",
682                   "sctp-b-ingress_rule_application": "any",
683                   "vlc_flavor_name": "nd.c16r64d1",
684                   "int2_sec_group_name": "int2-sec-group",
685                   "sctp-b-ipv6-egress_src_addresses": "local",
686                   "vlc_st_interface_type_int1": "other1",
687                   "vlc_st_interface_type_int2": "other2",
688                   "sctp-a-ipv6-egress-dst_start_port": "0",
689                   "sctp-b-egress-src_end_port": "65535.0",
690                   "sctp-a-ipv6-egress_dst_subnet_prefix_len": "0",
691                   "Internal2_shared": "false",
692                   "sctp-a-ipv6-egress_rule_protocol": "any",
693                   "Internal2_rpf": "disable",
694                   "vlc1_Internal1_mac": "00:11:22:EF:AC:DF",
695                   "sctp-b-ipv6-egress_src_end_port": "65535",
696                   "sctp-a-ipv6-egress_src_addresses": "local",
697                   "sctp-a-ingress-dst_end_port": "65535.0",
698                   "sctp-a-ipv6-egress_src_end_port": "65535",
699                   "Internal1_forwarding_mode": "l2",
700                   "Internal2_dhcp": "false",
701                   "sctp-a-dst_subnet_prefix_v6": "::",
702                   "pxe_image_name": "MME_PXE-Boot_16ACP04_GA.qcow2",
703                   "vlc_st_interface_type_gtp": "other0",
704                   "ncb1_Internal1_mac": "00:11:22:EF:AC:DF",
705                   "sctp-b-src_subnet_prefix_v6": "::",
706                   "sctp-a-egress_dst_subnet_prefix_len": "0.0",
707                   "int1_sec_group_name": "int1-sec-group",
708                   "Internal1_dhcp": "false",
709                   "fsb2_Internal2_mac": "00:11:22:EF:AC:DF",
710                   "Internal2_forwarding_mode": "l2",
711                   "sctp-a-ipv6-egress_dst_end_port": "65535",
712                   "sctp-b-egress_dst_subnet_prefix": "0.0.0.0",
713                   "Internal1_net_cidr_len": "17",
714                   "gpb2_Internal1_mac": "00:11:22:EF:AC:DF",
715                   "sctp-a-ingress_dst_addresses": "local",
716                   "sctp-b-ingress-src_subnet_prefix_len": "0.0",
717                   "sctp-a-egress_action": "pass",
718                   "fsb_volume_type_0": "SF-Default-SSD",
719                   "ncb2_Internal2_mac": "00:11:22:EF:AC:DF",
720                   "vlc_st_interface_type_sctp_a": "left",
721                   "vlc_st_version": "2",
722                   "sctp-a-src_subnet_prefix_v6": "::",
723                   "vlc_st_interface_type_sctp_b": "right",
724                   "sctp-a-ingress_rule_application": "any",
725                   "sctp-b-egress_ethertype": "IPv4",
726                   "sctp-a-ipv6-egress_src_start_port": "0",
727                   "instance_ip_family_v6": "v6",
728                   "gpb1_Internal2_mac": "00:11:22:EF:AC:DF",
729                   "sctp-b-ingress-src_start_port": "0.0",
730                   "fsb1_Internal1_mac": "00:11:22:EF:AC:DF",
731                   "sctp-b-ingress_dst_addresses": "local",
732                   "vlc_st_interface_type_oam": "management",
733                   "multi_stage_design": "false",
734                   "oam_sec_group_name": "oam-sec-group",
735                   "Internal2_net_gateway": "10.0.0.10",
736                   "sctp-a-ipv6-ingress-dst_end_port": "65535",
737                   "Internal1_net_gateway": "10.0.0.10",
738                   "sctp-b-ipv6-egress-dst_start_port": "0",
739                   "sctp-b-ipv6-egress_rule_protocol": "any",
740                   "gtp_sec_group_name": "gtp-sec-group",
741                   "sctp-a-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
742                   "sctp-a-ipv6-ingress_dst_addresses": "local",
743                   "sctp-b-ipv6-egress_dst_subnet_prefix_len": "0",
744                   "sctp-b-ipv6-egress_action": "pass",
745                   "sctp-a-egress_rule_protocol": "icmp",
746                   "sctp-a-ipv6-egress_action": "pass",
747                   "Internal1_shared": "false",
748                   "sctp-b-ipv6-ingress_rule_protocol": "any",
749                   "Internal2_net_cidr_len": "17",
750                   "sctp-a-name": "epc-sctp-a-ipv4v6-sec-group",
751                   "sctp-a-ingress-src_end_port": "65535.0",
752                   "sctp-b-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
753                   "sctp-a-egress-dst_end_port": "65535.0",
754                   "sctp-b-egress_rule_protocol": "icmp",
755                   "sctp-a-ingress_action": "pass",
756                   "sctp-b-ipv6-ingress_action": "pass",
757                   "vlc_st_service_type": "firewall",
758                   "sctp-b-ipv6-egress_dst_end_port": "65535",
759                   "vlc2_Internal2_mac": "00:11:22:EF:AC:DF",
760                   "sctp-b-ipv6-ingress-dst_start_port": "0",
761                   "vlc_st_availability_zone": "true",
762                   "sctp-b-ingress-src_subnet_prefix": "0.0.0.0",
763                   "fsb_volume_image_name_1": "MME_FSB2_16ACP04_GA.qcow2",
764                   "sctp-a-ipv6-ingress_src_subnet_prefix_len": "0",
765                   "gpb_flavor_name": "nv.c20r64d1",
766                   "Internal1_allow_transit": "true",
767                   "availability_zone_max_count": "1",
768                   "fsb_volume_image_name_0": "MME_FSB1_16ACP04_GA.qcow2",
769                   "sctp-b-ipv6-ingress_dst_addresses": "local",
770                   "sctp-b-ipv6-ingress_ethertype": "IPv4",
771                   "sctp-b-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
772                   "sctp-a-ingress-src_subnet_prefix": "0.0.0.0",
773                   "vlc1_Internal2_mac": "00:11:22:EF:AC:DF",
774                   "sctp-a-ipv6-ingress_action": "pass",
775                   "Internal1_rpf": "disable",
776                   "sctp-b-ingress_ethertype": "IPv4",
777                   "sctp-b-ingress-src_end_port": "65535.0",
778                   "sctp-b-egress_rule_application": "any",
779                   "sctp-a-ipv6-ingress_rule_protocol": "any",
780                   "sctp-a-ingress-src_start_port": "0.0",
781                   "sctp-b-egress-dst_end_port": "65535.0"
782                 },
783                 "type": "VF",
784                 "modelCustomizationName": "VF_vMee 0",
785                 "vfModules": {
786                   "vf_vmee0..VfVmee..vmme_vlc..module-1": {
787                     "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
788                     "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
789                     "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
790                     "description": null,
791                     "name": "VfVmee..vmme_vlc..module-1",
792                     "version": "2",
793                     "modelCustomizationName": "VfVmee..vmme_vlc..module-1",
794                     "properties": {
795                       "minCountInstances": 0,
796                       "maxCountInstances": null,
797                       "initialCount": 0,
798                       "vfModuleLabel": "vmme_vlc"
799                     },
800                     "inputs": {},
801                     "volumeGroupAllowed": false
802                   },
803                   "vf_vmee0..VfVmee..vmme_gpb..module-2": {
804                     "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
805                     "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
806                     "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
807                     "description": null,
808                     "name": "VfVmee..vmme_gpb..module-2",
809                     "version": "2",
810                     "modelCustomizationName": "VfVmee..vmme_gpb..module-2",
811                     "properties": {
812                       "minCountInstances": 0,
813                       "maxCountInstances": null,
814                       "initialCount": 0,
815                       "vfModuleLabel": "vmme_gpb"
816                     },
817                     "inputs": {},
818                     "volumeGroupAllowed": false
819                   },
820                   "vf_vmee0..VfVmee..base_vmme..module-0": {
821                     "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
822                     "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
823                     "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
824                     "description": null,
825                     "name": "VfVmee..base_vmme..module-0",
826                     "version": "2",
827                     "modelCustomizationName": "VfVmee..base_vmme..module-0",
828                     "properties": {
829                       "minCountInstances": 1,
830                       "maxCountInstances": 1,
831                       "initialCount": 1,
832                       "vfModuleLabel": "base_vmme"
833                     },
834                     "inputs": {},
835                     "volumeGroupAllowed": true
836                   }
837                 },
838                 "volumeGroups": {
839                   "vf_vmee0..VfVmee..base_vmme..module-0": {
840                     "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
841                     "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
842                     "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
843                     "description": null,
844                     "name": "VfVmee..base_vmme..module-0",
845                     "version": "2",
846                     "modelCustomizationName": "VfVmee..base_vmme..module-0",
847                     "properties": {
848                       "minCountInstances": 1,
849                       "maxCountInstances": 1,
850                       "initialCount": 1,
851                       "vfModuleLabel": "base_vmme"
852                     },
853                     "inputs": {}
854                   }
855                 },
856                 "vfcInstanceGroups": {}
857               }
858             },
859             "networks": {
860               "ExtVL 0": {
861                 "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
862                 "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
863                 "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
864                 "name": "ExtVL",
865                 "version": "37.0",
866                 "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
867                 "inputs": {},
868                 "commands": {},
869                 "properties": {
870                   "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}}",
871                   "exVL_naming": "{ecomp_generated_naming=true}",
872                   "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
873                   "network_homing": "{ecomp_selected_instance_node_target=false}"
874                 },
875                 "type": "VL",
876                 "modelCustomizationName": "ExtVL 0"
877               }
878             },
879             "collectionResource": {},
880             "configurations": {
881               "Port Mirroring Configuration By Policy 0": {
882                 "uuid": "b4398538-e89d-4f13-b33d-ca323434ba50",
883                 "invariantUuid": "6ef0ca40-f366-4897-951f-abd65d25f6f7",
884                 "description": "A port mirroring configuration by policy object",
885                 "name": "Port Mirroring Configuration By Policy",
886                 "version": "27.0",
887                 "customizationUuid": "3c3b7b8d-8669-4b3b-8664-61970041fad2",
888                 "inputs": {},
889                 "commands": {},
890                 "properties": {},
891                 "type": "Configuration",
892                 "modelCustomizationName": "Port Mirroring Configuration By Policy 0",
893                 "sourceNodes": [],
894                 "collectorNodes": null,
895                 "configurationByPolicy": false
896               }
897             },
898             "serviceProxies": {},
899             "vfModules": {
900               "vf_vmee0..VfVmee..vmme_vlc..module-1": {
901                 "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
902                 "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
903                 "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
904                 "description": null,
905                 "name": "VfVmee..vmme_vlc..module-1",
906                 "version": "2",
907                 "modelCustomizationName": "VfVmee..vmme_vlc..module-1",
908                 "properties": {
909                   "minCountInstances": 0,
910                   "maxCountInstances": null,
911                   "initialCount": 0,
912                   "vfModuleLabel": "vmme_vlc"
913                 },
914                 "inputs": {},
915                 "volumeGroupAllowed": false
916               },
917               "vf_vmee0..VfVmee..vmme_gpb..module-2": {
918                 "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
919                 "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
920                 "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
921                 "description": null,
922                 "name": "VfVmee..vmme_gpb..module-2",
923                 "version": "2",
924                 "modelCustomizationName": "VfVmee..vmme_gpb..module-2",
925                 "properties": {
926                   "minCountInstances": 0,
927                   "maxCountInstances": null,
928                   "initialCount": 0,
929                   "vfModuleLabel": "vmme_gpb"
930                 },
931                 "inputs": {},
932                 "volumeGroupAllowed": false
933               },
934               "vf_vmee0..VfVmee..base_vmme..module-0": {
935                 "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
936                 "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
937                 "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
938                 "description": null,
939                 "name": "VfVmee..base_vmme..module-0",
940                 "version": "2",
941                 "modelCustomizationName": "VfVmee..base_vmme..module-0",
942                 "properties": {
943                   "minCountInstances": 1,
944                   "maxCountInstances": 1,
945                   "initialCount": 1,
946                   "vfModuleLabel": "base_vmme"
947                 },
948                 "inputs": {},
949                 "volumeGroupAllowed": true
950               }
951             },
952             "volumeGroups": {
953               "vf_vmee0..VfVmee..base_vmme..module-0": {
954                 "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
955                 "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
956                 "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
957                 "description": null,
958                 "name": "VfVmee..base_vmme..module-0",
959                 "version": "2",
960                 "modelCustomizationName": "VfVmee..base_vmme..module-0",
961                 "properties": {
962                   "minCountInstances": 1,
963                   "maxCountInstances": 1,
964                   "initialCount": 1,
965                   "vfModuleLabel": "base_vmme"
966                 },
967                 "inputs": {}
968               }
969             },
970             "pnfs": {}
971           },
972           "f4d84bb4-a416-4b4e-997e-0059973630b9": {
973             "service": {
974               "uuid": "f4d84bb4-a416-4b4e-997e-0059973630b9",
975               "invariantUuid": "598e3f9e-3244-4d8f-a8e0-0e5d7a29eda9",
976               "name": "ADIOD vMX vPE_BV Service 488",
977               "version": "1.0",
978               "toscaModelURL": null,
979               "category": "Network L1-3",
980               "serviceType": "",
981               "serviceRole": "",
982               "description": "ADIOD vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM",
983               "serviceEcompNaming": "true",
984               "instantiationType": "Macro",
985               "inputs": {
986                 "2017488_adiodvpe0_ASN": {
987                   "type": "string",
988                   "description": "AV/PE",
989                   "entry_schema": null,
990                   "inputProperties": null,
991                   "constraints": [],
992                   "required": true,
993                   "default": "AV_vPE"
994                 }
995               }
996             },
997             "vnfs": {
998               "2017-488_ADIOD-vPE 0": {
999                 "uuid": "ea81d6f7-0861-44a7-b7d5-d173b562c350",
1000                 "invariantUuid": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
1001                 "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",
1002                 "name": "2017-488_ADIOD-vPE",
1003                 "version": "9.0",
1004                 "customizationUuid": "41516cc6-5098-4b40-a619-f8d5f55fc4d8",
1005                 "inputs": {
1006                   "vnf_config_template_version": {
1007                     "type": "string",
1008                     "description": "VPE Software Version",
1009                     "entry_schema": null,
1010                     "inputProperties": null,
1011                     "constraints": [],
1012                     "required": true,
1013                     "default": "17.2"
1014                   },
1015                   "bandwidth_units": {
1016                     "type": "string",
1017                     "description": "Units of bandwidth",
1018                     "entry_schema": null,
1019                     "inputProperties": null,
1020                     "constraints": [],
1021                     "required": true,
1022                     "default": "Gbps"
1023                   },
1024                   "bandwidth": {
1025                     "type": "string",
1026                     "description": "Requested VPE bandwidth",
1027                     "entry_schema": null,
1028                     "inputProperties": null,
1029                     "constraints": [],
1030                     "required": true,
1031                     "default": "10"
1032                   },
1033                   "AIC_CLLI": {
1034                     "type": "string",
1035                     "description": "AIC Site CLLI",
1036                     "entry_schema": null,
1037                     "inputProperties": null,
1038                     "constraints": [],
1039                     "required": true,
1040                     "default": "ATLMY8GA"
1041                   },
1042                   "availability_zone_0": {
1043                     "type": "string",
1044                     "description": "The Availability Zone to launch the instance.",
1045                     "entry_schema": null,
1046                     "inputProperties": null,
1047                     "constraints": [],
1048                     "required": true,
1049                     "default": "mtpocfo-kvm-az01"
1050                   },
1051                   "ASN": {
1052                     "type": "string",
1053                     "description": "AV/PE",
1054                     "entry_schema": null,
1055                     "inputProperties": null,
1056                     "constraints": [],
1057                     "required": true,
1058                     "default": "AV_vPE"
1059                   },
1060                   "vnf_instance_name": {
1061                     "type": "string",
1062                     "description": "The hostname assigned to the vpe.",
1063                     "entry_schema": null,
1064                     "inputProperties": null,
1065                     "constraints": [],
1066                     "required": true,
1067                     "default": "mtnj309me6"
1068                   }
1069                 },
1070                 "commands": {
1071                   "vnf_config_template_version": {
1072                     "displayName": "vnf_config_template_version",
1073                     "command": "get_input",
1074                     "inputName": "2017488_adiodvpe0_vnf_config_template_version"
1075                   },
1076                   "bandwidth_units": {
1077                     "displayName": "bandwidth_units",
1078                     "command": "get_input",
1079                     "inputName": "2017488_adiodvpe0_bandwidth_units"
1080                   },
1081                   "bandwidth": {
1082                     "displayName": "bandwidth",
1083                     "command": "get_input",
1084                     "inputName": "2017488_adiodvpe0_bandwidth"
1085                   },
1086                   "AIC_CLLI": {
1087                     "displayName": "AIC_CLLI",
1088                     "command": "get_input",
1089                     "inputName": "2017488_adiodvpe0_AIC_CLLI"
1090                   },
1091                   "availability_zone_0": {
1092                     "displayName": "availability_zone_0",
1093                     "command": "get_input",
1094                     "inputName": "2017488_adiodvpe0_availability_zone_0"
1095                   },
1096                   "ASN": {
1097                     "displayName": "ASN",
1098                     "command": "get_input",
1099                     "inputName": "2017488_adiodvpe0_ASN"
1100                   },
1101                   "vnf_instance_name": {
1102                     "displayName": "vnf_instance_name",
1103                     "command": "get_input",
1104                     "inputName": "2017488_adiodvpe0_vnf_instance_name"
1105                   }
1106                 },
1107                 "properties": {
1108                   "max_instances": 10,
1109                   "min_instances": 1,
1110                   "vmxvre_retype": "RE-VMX",
1111                   "vnf_config_template_version": "get_input:2017488_adiodvpe0_vnf_config_template_version",
1112                   "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
1113                   "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
1114                   "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
1115                   "int_ctl_net_name": "VMX-INTXI",
1116                   "vmx_int_ctl_prefix": "10.0.0.10",
1117                   "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
1118                   "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
1119                   "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
1120                   "nf_type": "ROUTER",
1121                   "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
1122                   "is_AVPN_service": "false",
1123                   "vmx_RSG_name": "vREXI-affinity",
1124                   "vmx_int_ctl_forwarding": "l2",
1125                   "vmxvre_oam_ip_0": "10.0.0.10",
1126                   "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
1127                   "vmxvpfe_sriov41_0_port_vlanstrip": "false",
1128                   "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
1129                   "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
1130                   "vmxvre_image_name_0": "vre172_nova_img",
1131                   "vmxvre_instance": "0",
1132                   "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
1133                   "vmxvre_flavor_name": "ns.c1r16d32.v5",
1134                   "vmxvpfe_volume_size_0": "40.0",
1135                   "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
1136                   "nf_naming": "{ecomp_generated_naming=true}",
1137                   "multi_stage_design": "false",
1138                   "nf_naming_code": "me6",
1139                   "vmxvre_name_0": "vREXI",
1140                   "vmxvpfe_sriov42_0_port_vlanstrip": "false",
1141                   "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
1142                   "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
1143                   "vmxvpfe_image_name_0": "vpfe172_nova_img",
1144                   "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
1145                   "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
1146                   "vmxvre_console": "vidconsole",
1147                   "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
1148                   "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
1149                   "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
1150                   "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
1151                   "vmxvpfe_sriov44_0_port_vlanstrip": "false",
1152                   "vf_module_id": "123",
1153                   "nf_function": "ADIOD vPE",
1154                   "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
1155                   "vmxvre_int_ctl_ip_0": "10.0.0.10",
1156                   "ecomp_generated_naming": "true",
1157                   "AIC_CLLI": "get_input:2017488_adiodvpe0_AIC_CLLI",
1158                   "vnf_name": "mtnj309me6vre",
1159                   "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
1160                   "vmxvre_volume_type_1": "HITACHI",
1161                   "vmxvpfe_sriov44_0_port_broadcastallow": "true",
1162                   "vmxvre_volume_type_0": "HITACHI",
1163                   "vmxvpfe_volume_type_0": "HITACHI",
1164                   "vmxvpfe_sriov43_0_port_broadcastallow": "true",
1165                   "bandwidth_units": "get_input:2017488_adiodvpe0_bandwidth_units",
1166                   "vnf_id": "123",
1167                   "vmxvre_oam_prefix": "24",
1168                   "availability_zone_0": "get_input:2017488_adiodvpe0_availability_zone_0",
1169                   "ASN": "get_input:2017488_adiodvpe0_ASN",
1170                   "vmxvre_chassis_i2cid": "161",
1171                   "vmxvpfe_name_0": "vPFEXI",
1172                   "bandwidth": "get_input:2017488_adiodvpe0_bandwidth",
1173                   "availability_zone_max_count": "1",
1174                   "vmxvre_volume_size_0": "45.0",
1175                   "vmxvre_volume_size_1": "50.0",
1176                   "vmxvpfe_sriov42_0_port_broadcastallow": "true",
1177                   "vmxvre_oam_gateway": "10.0.0.10",
1178                   "vmxvre_volume_name_1": "vREXI_FAVolume",
1179                   "vmxvre_ore_present": "0",
1180                   "vmxvre_volume_name_0": "vREXI_FBVolume",
1181                   "vmxvre_type": "0",
1182                   "vnf_instance_name": "get_input:2017488_adiodvpe0_vnf_instance_name",
1183                   "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
1184                   "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
1185                   "vmx_int_ctl_len": "24",
1186                   "vmxvpfe_sriov43_0_port_vlanstrip": "false",
1187                   "vmxvpfe_sriov41_0_port_broadcastallow": "true",
1188                   "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
1189                   "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
1190                   "nf_role": "vPE",
1191                   "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
1192                   "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
1193                   "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
1194                 },
1195                 "type": "VF",
1196                 "modelCustomizationName": "2017-488_ADIOD-vPE 0",
1197                 "vfModules": {
1198                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
1199                     "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
1200                     "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
1201                     "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
1202                     "description": null,
1203                     "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1204                     "version": "8",
1205                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1206                     "properties": {
1207                       "minCountInstances": 0,
1208                       "maxCountInstances": null,
1209                       "initialCount": 0,
1210                       "vfModuleLabel": "ADIOD_vRE_BV"
1211                     },
1212                     "inputs": {
1213                       "2017488_adiodvpe0_bandwidth_units": {
1214                         "type": "string",
1215                         "description": "Units of bandwidth",
1216                         "entry_schema": null,
1217                         "inputProperties": {
1218                           "sourceType": "HEAT",
1219                           "vfModuleLabel": "ADIOD_vRE_BV",
1220                           "paramName": "bandwidth_units"
1221                         },
1222                         "constraints": null,
1223                         "required": true,
1224                         "default": "Gbps"
1225                       },
1226                       "2017488_adiodvpe0_bandwidth": {
1227                         "type": "string",
1228                         "description": "Requested VPE bandwidth",
1229                         "entry_schema": null,
1230                         "inputProperties": {
1231                           "sourceType": "HEAT",
1232                           "vfModuleLabel": "ADIOD_vRE_BV",
1233                           "paramName": "bandwidth"
1234                         },
1235                         "constraints": null,
1236                         "required": true,
1237                         "default": "10"
1238                       },
1239                       "2017488_adiodvpe0_vnf_instance_name": {
1240                         "type": "string",
1241                         "description": "The hostname assigned to the vpe.",
1242                         "entry_schema": null,
1243                         "inputProperties": {
1244                           "sourceType": "HEAT",
1245                           "vfModuleLabel": "ADIOD_vRE_BV",
1246                           "paramName": "vnf_instance_name"
1247                         },
1248                         "constraints": null,
1249                         "required": true,
1250                         "default": "mtnj309me6"
1251                       },
1252                       "2017488_adiodvpe0_vnf_config_template_version": {
1253                         "type": "string",
1254                         "description": "VPE Software Version",
1255                         "entry_schema": null,
1256                         "inputProperties": {
1257                           "sourceType": "HEAT",
1258                           "vfModuleLabel": "ADIOD_vRE_BV",
1259                           "paramName": "vnf_config_template_version"
1260                         },
1261                         "constraints": null,
1262                         "required": true,
1263                         "default": "17.2"
1264                       },
1265                       "2017488_adiodvpe0_AIC_CLLI": {
1266                         "type": "string",
1267                         "description": "AIC Site CLLI",
1268                         "entry_schema": null,
1269                         "inputProperties": {
1270                           "sourceType": "HEAT",
1271                           "vfModuleLabel": "ADIOD_vRE_BV",
1272                           "paramName": "AIC_CLLI"
1273                         },
1274                         "constraints": null,
1275                         "required": true,
1276                         "default": "ATLMY8GA"
1277                       }
1278                     },
1279                     "volumeGroupAllowed": true
1280                   },
1281                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
1282                     "uuid": "040e591e-5d30-4e0d-850f-7266e5a8e013",
1283                     "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
1284                     "customizationUuid": "5c5f91f9-5e31-4120-b892-5536587ec258",
1285                     "description": null,
1286                     "name": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
1287                     "version": "6",
1288                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
1289                     "properties": {
1290                       "minCountInstances": 1,
1291                       "maxCountInstances": 1,
1292                       "initialCount": 1,
1293                       "vfModuleLabel": "ADIOD_base_vPE_BV"
1294                     },
1295                     "inputs": {},
1296                     "volumeGroupAllowed": false
1297                   },
1298                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
1299                     "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
1300                     "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
1301                     "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
1302                     "description": null,
1303                     "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1304                     "version": "8",
1305                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1306                     "properties": {
1307                       "minCountInstances": 0,
1308                       "maxCountInstances": null,
1309                       "initialCount": 0,
1310                       "vfModuleLabel": "ADIOD_vPFE_BV"
1311                     },
1312                     "inputs": {
1313                       "2017488_adiodvpe0_availability_zone_0": {
1314                         "type": "string",
1315                         "description": "The Availability Zone to launch the instance.",
1316                         "entry_schema": null,
1317                         "inputProperties": {
1318                           "sourceType": "HEAT",
1319                           "vfModuleLabel": "ADIOD_vPFE_BV",
1320                           "paramName": "availability_zone_0"
1321                         },
1322                         "constraints": null,
1323                         "required": true,
1324                         "default": "mtpocfo-kvm-az01"
1325                       }
1326                     },
1327                     "volumeGroupAllowed": true
1328                   }
1329                 },
1330                 "volumeGroups": {
1331                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
1332                     "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
1333                     "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
1334                     "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
1335                     "description": null,
1336                     "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1337                     "version": "8",
1338                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1339                     "properties": {
1340                       "minCountInstances": 0,
1341                       "maxCountInstances": null,
1342                       "initialCount": 0,
1343                       "vfModuleLabel": "ADIOD_vRE_BV"
1344                     },
1345                     "inputs": {
1346                       "2017488_adiodvpe0_bandwidth_units": {
1347                         "type": "string",
1348                         "description": "Units of bandwidth",
1349                         "entry_schema": null,
1350                         "inputProperties": {
1351                           "sourceType": "HEAT",
1352                           "vfModuleLabel": "ADIOD_vRE_BV",
1353                           "paramName": "bandwidth_units"
1354                         },
1355                         "constraints": null,
1356                         "required": true,
1357                         "default": "Gbps"
1358                       },
1359                       "2017488_adiodvpe0_bandwidth": {
1360                         "type": "string",
1361                         "description": "Requested VPE bandwidth",
1362                         "entry_schema": null,
1363                         "inputProperties": {
1364                           "sourceType": "HEAT",
1365                           "vfModuleLabel": "ADIOD_vRE_BV",
1366                           "paramName": "bandwidth"
1367                         },
1368                         "constraints": null,
1369                         "required": true,
1370                         "default": "10"
1371                       },
1372                       "2017488_adiodvpe0_vnf_instance_name": {
1373                         "type": "string",
1374                         "description": "The hostname assigned to the vpe.",
1375                         "entry_schema": null,
1376                         "inputProperties": {
1377                           "sourceType": "HEAT",
1378                           "vfModuleLabel": "ADIOD_vRE_BV",
1379                           "paramName": "vnf_instance_name"
1380                         },
1381                         "constraints": null,
1382                         "required": true,
1383                         "default": "mtnj309me6"
1384                       },
1385                       "2017488_adiodvpe0_vnf_config_template_version": {
1386                         "type": "string",
1387                         "description": "VPE Software Version",
1388                         "entry_schema": null,
1389                         "inputProperties": {
1390                           "sourceType": "HEAT",
1391                           "vfModuleLabel": "ADIOD_vRE_BV",
1392                           "paramName": "vnf_config_template_version"
1393                         },
1394                         "constraints": null,
1395                         "required": true,
1396                         "default": "17.2"
1397                       },
1398                       "2017488_adiodvpe0_AIC_CLLI": {
1399                         "type": "string",
1400                         "description": "AIC Site CLLI",
1401                         "entry_schema": null,
1402                         "inputProperties": {
1403                           "sourceType": "HEAT",
1404                           "vfModuleLabel": "ADIOD_vRE_BV",
1405                           "paramName": "AIC_CLLI"
1406                         },
1407                         "constraints": null,
1408                         "required": true,
1409                         "default": "ATLMY8GA"
1410                       }
1411                     }
1412                   },
1413                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
1414                     "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
1415                     "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
1416                     "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
1417                     "description": null,
1418                     "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1419                     "version": "8",
1420                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1421                     "properties": {
1422                       "minCountInstances": 0,
1423                       "maxCountInstances": null,
1424                       "initialCount": 0,
1425                       "vfModuleLabel": "ADIOD_vPFE_BV"
1426                     },
1427                     "inputs": {
1428                       "2017488_adiodvpe0_availability_zone_0": {
1429                         "type": "string",
1430                         "description": "The Availability Zone to launch the instance.",
1431                         "entry_schema": null,
1432                         "inputProperties": {
1433                           "sourceType": "HEAT",
1434                           "vfModuleLabel": "ADIOD_vPFE_BV",
1435                           "paramName": "availability_zone_0"
1436                         },
1437                         "constraints": null,
1438                         "required": true,
1439                         "default": "mtpocfo-kvm-az01"
1440                       }
1441                     }
1442                   }
1443                 },
1444                 "vfcInstanceGroups": {}
1445               }
1446             },
1447             "networks": {},
1448             "collectionResource": {},
1449             "configurations": {},
1450             "serviceProxies": {},
1451             "vfModules": {
1452               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
1453                 "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
1454                 "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
1455                 "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
1456                 "description": null,
1457                 "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1458                 "version": "8",
1459                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1460                 "properties": {
1461                   "minCountInstances": 0,
1462                   "maxCountInstances": null,
1463                   "initialCount": 0,
1464                   "vfModuleLabel": "ADIOD_vRE_BV"
1465                 },
1466                 "inputs": {
1467                   "2017488_adiodvpe0_bandwidth_units": {
1468                     "type": "string",
1469                     "description": "Units of bandwidth",
1470                     "entry_schema": null,
1471                     "inputProperties": {
1472                       "sourceType": "HEAT",
1473                       "vfModuleLabel": "ADIOD_vRE_BV",
1474                       "paramName": "bandwidth_units"
1475                     },
1476                     "constraints": null,
1477                     "required": true,
1478                     "default": "Gbps"
1479                   },
1480                   "2017488_adiodvpe0_bandwidth": {
1481                     "type": "string",
1482                     "description": "Requested VPE bandwidth",
1483                     "entry_schema": null,
1484                     "inputProperties": {
1485                       "sourceType": "HEAT",
1486                       "vfModuleLabel": "ADIOD_vRE_BV",
1487                       "paramName": "bandwidth"
1488                     },
1489                     "constraints": null,
1490                     "required": true,
1491                     "default": "10"
1492                   },
1493                   "2017488_adiodvpe0_vnf_instance_name": {
1494                     "type": "string",
1495                     "description": "The hostname assigned to the vpe.",
1496                     "entry_schema": null,
1497                     "inputProperties": {
1498                       "sourceType": "HEAT",
1499                       "vfModuleLabel": "ADIOD_vRE_BV",
1500                       "paramName": "vnf_instance_name"
1501                     },
1502                     "constraints": null,
1503                     "required": true,
1504                     "default": "mtnj309me6"
1505                   },
1506                   "2017488_adiodvpe0_vnf_config_template_version": {
1507                     "type": "string",
1508                     "description": "VPE Software Version",
1509                     "entry_schema": null,
1510                     "inputProperties": {
1511                       "sourceType": "HEAT",
1512                       "vfModuleLabel": "ADIOD_vRE_BV",
1513                       "paramName": "vnf_config_template_version"
1514                     },
1515                     "constraints": null,
1516                     "required": true,
1517                     "default": "17.2"
1518                   },
1519                   "2017488_adiodvpe0_AIC_CLLI": {
1520                     "type": "string",
1521                     "description": "AIC Site CLLI",
1522                     "entry_schema": null,
1523                     "inputProperties": {
1524                       "sourceType": "HEAT",
1525                       "vfModuleLabel": "ADIOD_vRE_BV",
1526                       "paramName": "AIC_CLLI"
1527                     },
1528                     "constraints": null,
1529                     "required": true,
1530                     "default": "ATLMY8GA"
1531                   }
1532                 },
1533                 "volumeGroupAllowed": true
1534               },
1535               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
1536                 "uuid": "040e591e-5d30-4e0d-850f-7266e5a8e013",
1537                 "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
1538                 "customizationUuid": "5c5f91f9-5e31-4120-b892-5536587ec258",
1539                 "description": null,
1540                 "name": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
1541                 "version": "6",
1542                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
1543                 "properties": {
1544                   "minCountInstances": 1,
1545                   "maxCountInstances": 1,
1546                   "initialCount": 1,
1547                   "vfModuleLabel": "ADIOD_base_vPE_BV"
1548                 },
1549                 "inputs": {},
1550                 "volumeGroupAllowed": false
1551               },
1552               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
1553                 "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
1554                 "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
1555                 "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
1556                 "description": null,
1557                 "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1558                 "version": "8",
1559                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1560                 "properties": {
1561                   "minCountInstances": 0,
1562                   "maxCountInstances": null,
1563                   "initialCount": 0,
1564                   "vfModuleLabel": "ADIOD_vPFE_BV"
1565                 },
1566                 "inputs": {
1567                   "2017488_adiodvpe0_availability_zone_0": {
1568                     "type": "string",
1569                     "description": "The Availability Zone to launch the instance.",
1570                     "entry_schema": null,
1571                     "inputProperties": {
1572                       "sourceType": "HEAT",
1573                       "vfModuleLabel": "ADIOD_vPFE_BV",
1574                       "paramName": "availability_zone_0"
1575                     },
1576                     "constraints": null,
1577                     "required": true,
1578                     "default": "mtpocfo-kvm-az01"
1579                   }
1580                 },
1581                 "volumeGroupAllowed": true
1582               }
1583             },
1584             "volumeGroups": {
1585               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
1586                 "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
1587                 "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
1588                 "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
1589                 "description": null,
1590                 "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1591                 "version": "8",
1592                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1593                 "properties": {
1594                   "minCountInstances": 0,
1595                   "maxCountInstances": null,
1596                   "initialCount": 0,
1597                   "vfModuleLabel": "ADIOD_vRE_BV"
1598                 },
1599                 "inputs": {
1600                   "2017488_adiodvpe0_bandwidth_units": {
1601                     "type": "string",
1602                     "description": "Units of bandwidth",
1603                     "entry_schema": null,
1604                     "inputProperties": {
1605                       "sourceType": "HEAT",
1606                       "vfModuleLabel": "ADIOD_vRE_BV",
1607                       "paramName": "bandwidth_units"
1608                     },
1609                     "constraints": null,
1610                     "required": true,
1611                     "default": "Gbps"
1612                   },
1613                   "2017488_adiodvpe0_bandwidth": {
1614                     "type": "string",
1615                     "description": "Requested VPE bandwidth",
1616                     "entry_schema": null,
1617                     "inputProperties": {
1618                       "sourceType": "HEAT",
1619                       "vfModuleLabel": "ADIOD_vRE_BV",
1620                       "paramName": "bandwidth"
1621                     },
1622                     "constraints": null,
1623                     "required": true,
1624                     "default": "10"
1625                   },
1626                   "2017488_adiodvpe0_vnf_instance_name": {
1627                     "type": "string",
1628                     "description": "The hostname assigned to the vpe.",
1629                     "entry_schema": null,
1630                     "inputProperties": {
1631                       "sourceType": "HEAT",
1632                       "vfModuleLabel": "ADIOD_vRE_BV",
1633                       "paramName": "vnf_instance_name"
1634                     },
1635                     "constraints": null,
1636                     "required": true,
1637                     "default": "mtnj309me6"
1638                   },
1639                   "2017488_adiodvpe0_vnf_config_template_version": {
1640                     "type": "string",
1641                     "description": "VPE Software Version",
1642                     "entry_schema": null,
1643                     "inputProperties": {
1644                       "sourceType": "HEAT",
1645                       "vfModuleLabel": "ADIOD_vRE_BV",
1646                       "paramName": "vnf_config_template_version"
1647                     },
1648                     "constraints": null,
1649                     "required": true,
1650                     "default": "17.2"
1651                   },
1652                   "2017488_adiodvpe0_AIC_CLLI": {
1653                     "type": "string",
1654                     "description": "AIC Site CLLI",
1655                     "entry_schema": null,
1656                     "inputProperties": {
1657                       "sourceType": "HEAT",
1658                       "vfModuleLabel": "ADIOD_vRE_BV",
1659                       "paramName": "AIC_CLLI"
1660                     },
1661                     "constraints": null,
1662                     "required": true,
1663                     "default": "ATLMY8GA"
1664                   }
1665                 }
1666               },
1667               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
1668                 "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
1669                 "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
1670                 "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
1671                 "description": null,
1672                 "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1673                 "version": "8",
1674                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1675                 "properties": {
1676                   "minCountInstances": 0,
1677                   "maxCountInstances": null,
1678                   "initialCount": 0,
1679                   "vfModuleLabel": "ADIOD_vPFE_BV"
1680                 },
1681                 "inputs": {
1682                   "2017488_adiodvpe0_availability_zone_0": {
1683                     "type": "string",
1684                     "description": "The Availability Zone to launch the instance.",
1685                     "entry_schema": null,
1686                     "inputProperties": {
1687                       "sourceType": "HEAT",
1688                       "vfModuleLabel": "ADIOD_vPFE_BV",
1689                       "paramName": "availability_zone_0"
1690                     },
1691                     "constraints": null,
1692                     "required": true,
1693                     "default": "mtpocfo-kvm-az01"
1694                   }
1695                 }
1696               }
1697             },
1698             "pnfs": {}
1699           }
1700         },
1701         "serviceInstance": {
1702           "f4d84bb4-a416-4b4e-997e-0059973630b9": {
1703             "vnfs": {
1704               "2017-488_ADIOD-vPE 0": {
1705                 "rollbackOnFailure": "true",
1706                 "vfModules": {
1707                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
1708                     "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0eknhp": {
1709                       "modelInfo": {
1710                         "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
1711                         "modelVersionId": "040e591e-5d30-4e0d-850f-7266e5a8e013",
1712                         "modelName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
1713                         "modelVersion": "6",
1714                         "modelCustomizationId": "5c5f91f9-5e31-4120-b892-5536587ec258",
1715                         "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0"
1716                       },
1717                       "isMissingData": false,
1718                       "instanceParams": [
1719                         {}
1720                       ]
1721                     }
1722                   }
1723                 },
1724                 "isMissingData": false,
1725                 "originalName": null,
1726                 "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
1727                 "lcpCloudRegionId": "hvf6",
1728                 "tenantId": "bae71557c5bb4d5aac6743a4e5f1d054",
1729                 "lineOfBusiness": "ONAP",
1730                 "platformName": "platform",
1731                 "modelInfo": {
1732                   "modelInvariantId": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
1733                   "modelVersionId": "ea81d6f7-0861-44a7-b7d5-d173b562c350",
1734                   "modelName": "2017-488_ADIOD-vPE",
1735                   "modelVersion": "9.0",
1736                   "modelCustomizationId": "41516cc6-5098-4b40-a619-f8d5f55fc4d8",
1737                   "modelCustomizationName": "2017-488_ADIOD-vPE 0"
1738                 }
1739               },
1740               "2017-488_ADIOD-vPE 0:0001": {
1741                 "rollbackOnFailure": "true",
1742                 "vfModules": {},
1743                 "isMissingData": false,
1744                 "originalName": "2017-488_ADIOD-vPE 0",
1745                 "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
1746                 "lcpCloudRegionId": "hvf6",
1747                 "tenantId": "bae71557c5bb4d5aac6743a4e5f1d054",
1748                 "lineOfBusiness": "ONAP",
1749                 "platformName": "platform",
1750                 "modelInfo": {
1751                   "modelInvariantId": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
1752                   "modelVersionId": "ea81d6f7-0861-44a7-b7d5-d173b562c350",
1753                   "modelName": "2017-488_ADIOD-vPE",
1754                   "modelVersion": "9.0",
1755                   "modelCustomizationId": "41516cc6-5098-4b40-a619-f8d5f55fc4d8",
1756                   "modelCustomizationName": "2017-488_ADIOD-vPE 0"
1757                 }
1758               }
1759             },
1760             "instanceParams": [
1761               {
1762                 "2017488_adiodvpe0_ASN": "AV_vPE"
1763               }
1764             ],
1765             "validationCounter": 0,
1766             "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
1767             "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
1768             "subscriptionServiceType": "TYLER SILVIA",
1769             "lcpCloudRegionId": "JANET25",
1770             "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
1771             "aicZoneId": "JAG1",
1772             "projectName": "x1",
1773             "owningEntityId": "aaa1",
1774             "rollbackOnFailure": "false",
1775             "bulkSize": 1,
1776             "modelInfo": {
1777               "modelInvariantId": "598e3f9e-3244-4d8f-a8e0-0e5d7a29eda9",
1778               "modelVersionId": "f4d84bb4-a416-4b4e-997e-0059973630b9",
1779               "modelName": "ADIOD vMX vPE_BV Service 488",
1780               "modelVersion": "1.0"
1781             },
1782             "tenantName": "USP-SIP-IC-24335-T-01",
1783             "existingVNFCounterMap": {
1784               "41516cc6-5098-4b40-a619-f8d5f55fc4d8": 1
1785             },
1786             "existingNames": {},
1787             "aicZoneName": "YUDFJULP-JAG1"
1788           }
1789         },
1790         "lcpRegionsAndTenants": {
1791           "lcpRegionList": [
1792             {
1793               "id": "JANET25",
1794               "name": "JANET25",
1795               "isPermitted": true
1796             },
1797             {
1798               "id": "hvf6",
1799               "name": "hvf6",
1800               "isPermitted": true
1801             }
1802           ],
1803           "lcpRegionsTenantsMap": {
1804             "JANET25": [
1805               {
1806                 "id": "092eb9e8e4b7412e8787dd091bc58e86",
1807                 "name": "USP-SIP-IC-24335-T-01",
1808                 "isPermitted": true
1809               }
1810             ],
1811             "hvf6": [
1812               {
1813                 "id": "bae71557c5bb4d5aac6743a4e5f1d054",
1814                 "name": "AIN Web Tool-15-D-testalexandria",
1815                 "isPermitted": true
1816               },
1817               {
1818                 "id": "229bcdc6eaeb4ca59d55221141d01f8e",
1819                 "name": "AIN Web Tool-15-D-STTest2",
1820                 "isPermitted": true
1821               },
1822               {
1823                 "id": "1178612d2b394be4834ad77f567c0af2",
1824                 "name": "AIN Web Tool-15-D-SSPtestcustome",
1825                 "isPermitted": true
1826               },
1827               {
1828                 "id": "19c5ade915eb461e8af52fb2fd8cd1f2",
1829                 "name": "AIN Web Tool-15-D-UncheckedEcopm",
1830                 "isPermitted": true
1831               },
1832               {
1833                 "id": "de007636e25249238447264a988a927b",
1834                 "name": "AIN Web Tool-15-D-dfsdf",
1835                 "isPermitted": true
1836               },
1837               {
1838                 "id": "62f29b3613634ca6a3065cbe0e020c44",
1839                 "name": "AIN/SMS-16-D-Multiservices1",
1840                 "isPermitted": true
1841               },
1842               {
1843                 "id": "649289e30d3244e0b48098114d63c2aa",
1844                 "name": "AIN Web Tool-15-D-SSPST66",
1845                 "isPermitted": true
1846               },
1847               {
1848                 "id": "3f21eeea6c2c486bba31dab816c05a32",
1849                 "name": "AIN Web Tool-15-D-ASSPST47",
1850                 "isPermitted": true
1851               },
1852               {
1853                 "id": "f60ce21d3ee6427586cff0d22b03b773",
1854                 "name": "CESAR-100-D-sspjg67246",
1855                 "isPermitted": true
1856               },
1857               {
1858                 "id": "8774659e425f479895ae091bb5d46560",
1859                 "name": "CESAR-100-D-sspjg68359",
1860                 "isPermitted": true
1861               },
1862               {
1863                 "id": "624eb554b0d147c19ff8885341760481",
1864                 "name": "AINWebTool-15-D-iftach",
1865                 "isPermitted": true
1866               },
1867               {
1868                 "id": "214f55f5fc414c678059c383b03e4962",
1869                 "name": "CESAR-100-D-sspjg612401",
1870                 "isPermitted": true
1871               },
1872               {
1873                 "id": "c90666c291664841bb98e4d981ff1db5",
1874                 "name": "CESAR-100-D-sspjg621340",
1875                 "isPermitted": true
1876               },
1877               {
1878                 "id": "ce5b6bc5c7b348e1bf4b91ac9a174278",
1879                 "name": "sspjg621351cloned",
1880                 "isPermitted": true
1881               },
1882               {
1883                 "id": "b386b768a3f24c8e953abbe0b3488c02",
1884                 "name": "AINWebTool-15-D-eteancomp",
1885                 "isPermitted": true
1886               },
1887               {
1888                 "id": "dc6c4dbfd225474e9deaadd34968646c",
1889                 "name": "AINWebTool-15-T-SPFET",
1890                 "isPermitted": true
1891               },
1892               {
1893                 "id": "02cb5030e9914aa4be120bd9ed1e19eb",
1894                 "name": "AINWebTool-15-X-eeweww",
1895                 "isPermitted": true
1896               },
1897               {
1898                 "id": "f2f3830e4c984d45bcd00e1a04158a79",
1899                 "name": "CESAR-100-D-spjg61909",
1900                 "isPermitted": true
1901               },
1902               {
1903                 "id": "05b91bd5137f4929878edd965755c06d",
1904                 "name": "CESAR-100-D-sspjg621512cloned",
1905                 "isPermitted": true
1906               },
1907               {
1908                 "id": "7002fbe8482d4a989ddf445b1ce336e0",
1909                 "name": "AINWebTool-15-X-vdr",
1910                 "isPermitted": true
1911               },
1912               {
1913                 "id": "4008522be43741dcb1f5422022a2aa0b",
1914                 "name": "AINWebTool-15-D-ssasa",
1915                 "isPermitted": true
1916               },
1917               {
1918                 "id": "f44e2e96a1b6476abfda2fa407b00169",
1919                 "name": "AINWebTool-15-D-PFNPT",
1920                 "isPermitted": true
1921               },
1922               {
1923                 "id": "b69a52bec8a84669a37a1e8b72708be7",
1924                 "name": "AINWebTool-15-X-vdre",
1925                 "isPermitted": true
1926               },
1927               {
1928                 "id": "fac7d9fd56154caeb9332202dcf2969f",
1929                 "name": "AINWebTool-15-X-NONPODECOMP",
1930                 "isPermitted": true
1931               },
1932               {
1933                 "id": "2d34d8396e194eb49969fd61ffbff961",
1934                 "name": "DN5242-Nov16-T5",
1935                 "isPermitted": true
1936               },
1937               {
1938                 "id": "cb42a77ff45b48a8b8deb83bb64acc74",
1939                 "name": "ro-T11",
1940                 "isPermitted": true
1941               },
1942               {
1943                 "id": "fa45ca53c80b492fa8be5477cd84fc2b",
1944                 "name": "ro-T112",
1945                 "isPermitted": true
1946               },
1947               {
1948                 "id": "4914ab0ab3a743e58f0eefdacc1dde77",
1949                 "name": "DN5242-Nov21-T1",
1950                 "isPermitted": true
1951               },
1952               {
1953                 "id": "d0a3e3f2964542259d155a81c41aadc3",
1954                 "name": "test-hvf6-09",
1955                 "isPermitted": true
1956               },
1957               {
1958                 "id": "cbb99fe4ada84631b7baf046b6fd2044",
1959                 "name": "DN5242-Nov16-T3",
1960                 "isPermitted": true
1961               }
1962             ]
1963           }
1964         },
1965         "subscribers": [
1966           {
1967             "id": "CAR_2020_ER",
1968             "name": "CAR_2020_ER",
1969             "isPermitted": true
1970           },
1971           {
1972             "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
1973             "name": "JULIO ERICKSON",
1974             "isPermitted": false
1975           },
1976           {
1977             "id": "DHV1707-TestSubscriber-2",
1978             "name": "DALE BRIDGES",
1979             "isPermitted": false
1980           },
1981           {
1982             "id": "DHV1707-TestSubscriber-1",
1983             "name": "LLOYD BRIDGES",
1984             "isPermitted": false
1985           },
1986           {
1987             "id": "jimmy-example",
1988             "name": "JimmyExampleCust-20161102",
1989             "isPermitted": false
1990           },
1991           {
1992             "id": "jimmy-example2",
1993             "name": "JimmyExampleCust-20161103",
1994             "isPermitted": false
1995           },
1996           {
1997             "id": "ERICA5779-TestSub-PWT-102",
1998             "name": "ERICA5779-TestSub-PWT-102",
1999             "isPermitted": false
2000           },
2001           {
2002             "id": "ERICA5779-TestSub-PWT-101",
2003             "name": "ERICA5779-TestSub-PWT-101",
2004             "isPermitted": false
2005           },
2006           {
2007             "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
2008             "name": "Emanuel",
2009             "isPermitted": false
2010           },
2011           {
2012             "id": "ERICA5779-Subscriber-4",
2013             "name": "ERICA5779-Subscriber-5",
2014             "isPermitted": false
2015           },
2016           {
2017             "id": "ERICA5779-TestSub-PWT-103",
2018             "name": "ERICA5779-TestSub-PWT-103",
2019             "isPermitted": false
2020           },
2021           {
2022             "id": "ERICA5779-Subscriber-2",
2023             "name": "ERICA5779-Subscriber-2",
2024             "isPermitted": false
2025           },
2026           {
2027             "id": "e433710f-9217-458d-a79d-1c7aff376d89",
2028             "name": "SILVIA ROBBINS",
2029             "isPermitted": true
2030           },
2031           {
2032             "id": "ERICA5779-Subscriber-3",
2033             "name": "ERICA5779-Subscriber-3",
2034             "isPermitted": false
2035           },
2036           {
2037             "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
2038             "name": "CRAIG/ROBERTS",
2039             "isPermitted": false
2040           }
2041         ],
2042         "productFamilies": [
2043           {
2044             "id": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
2045             "name": "SCOTTIE",
2046             "isPermitted": true
2047           },
2048           {
2049             "id": "17cc1042-527b-11e6-beb8-9e71128cae77",
2050             "name": "IGNACIO",
2051             "isPermitted": true
2052           },
2053           {
2054             "id": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
2055             "name": "Christie",
2056             "isPermitted": true
2057           },
2058           {
2059             "id": "a4f6f2ae-9bf5-4ed7-b904-06b2099c4bd7",
2060             "name": "Enhanced Services",
2061             "isPermitted": true
2062           },
2063           {
2064             "id": "vTerrance",
2065             "name": "vTerrance",
2066             "isPermitted": true
2067           },
2068           {
2069             "id": "323d69d9-2efe-4r45-ay0a-89ea7ard4e6f",
2070             "name": "vSCP",
2071             "isPermitted": true
2072           },
2073           {
2074             "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
2075             "name": "Emanuel",
2076             "isPermitted": true
2077           },
2078           {
2079             "id": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
2080             "name": "BVOIP",
2081             "isPermitted": true
2082           },
2083           {
2084             "id": "db171b8f-115c-4992-a2e3-ee04cae357e0",
2085             "name": "LINDSEY",
2086             "isPermitted": true
2087           },
2088           {
2089             "id": "LRSI-OSPF",
2090             "name": "LRSI-OSPF",
2091             "isPermitted": true
2092           },
2093           {
2094             "id": "vRosemarie",
2095             "name": "HNGATEWAY",
2096             "isPermitted": true
2097           },
2098           {
2099             "id": "vHNPaas",
2100             "name": "WILKINS",
2101             "isPermitted": true
2102           },
2103           {
2104             "id": "e433710f-9217-458d-a79d-1c7aff376d89",
2105             "name": "TYLER SILVIA",
2106             "isPermitted": true
2107           },
2108           {
2109             "id": "b6a3f28c-eebf-494c-a900-055cc7c874ce",
2110             "name": "VROUTER",
2111             "isPermitted": true
2112           },
2113           {
2114             "id": "Cisneros",
2115             "name": "vMuriel",
2116             "isPermitted": true
2117           },
2118           {
2119             "id": "0ee8c1bc-7cbd-4b0a-a1ac-e9999255abc1",
2120             "name": "CARA Griffin",
2121             "isPermitted": true
2122           },
2123           {
2124             "id": "c7611ebe-c324-48f1-8085-94aef0c6ef3d",
2125             "name": "DARREN MCGEE",
2126             "isPermitted": true
2127           },
2128           {
2129             "id": "e30755dc-5673-4b6b-9dcf-9abdd96b93d1",
2130             "name": "Transport",
2131             "isPermitted": true
2132           },
2133           {
2134             "id": "vSalvatore",
2135             "name": "vSalvatore",
2136             "isPermitted": true
2137           },
2138           {
2139             "id": "d7bb0a21-66f2-4e6d-87d9-9ef3ced63ae4",
2140             "name": "Josefina",
2141             "isPermitted": true
2142           },
2143           {
2144             "id": "vHubbard",
2145             "name": "vHubbard",
2146             "isPermitted": true
2147           },
2148           {
2149             "id": "12a96a9d-4b4c-4349-a950-fe1159602621",
2150             "name": "DARREN MCGEE",
2151             "isPermitted": true
2152           }
2153         ],
2154         "serviceTypes": {
2155           "e433710f-9217-458d-a79d-1c7aff376d89": [
2156             {
2157               "id": "0",
2158               "name": "vRichardson",
2159               "isPermitted": false
2160             },
2161             {
2162               "id": "1",
2163               "name": "TYLER SILVIA",
2164               "isPermitted": true
2165             },
2166             {
2167               "id": "2",
2168               "name": "Emanuel",
2169               "isPermitted": false
2170             },
2171             {
2172               "id": "3",
2173               "name": "vJamie",
2174               "isPermitted": false
2175             },
2176             {
2177               "id": "4",
2178               "name": "vVoiceMail",
2179               "isPermitted": false
2180             },
2181             {
2182               "id": "5",
2183               "name": "Kennedy",
2184               "isPermitted": false
2185             },
2186             {
2187               "id": "6",
2188               "name": "vSEGW",
2189               "isPermitted": false
2190             },
2191             {
2192               "id": "7",
2193               "name": "vVM",
2194               "isPermitted": false
2195             },
2196             {
2197               "id": "8",
2198               "name": "vOTA",
2199               "isPermitted": false
2200             },
2201             {
2202               "id": "9",
2203               "name": "vMME",
2204               "isPermitted": false
2205             },
2206             {
2207               "id": "10",
2208               "name": "vMNS",
2209               "isPermitted": false
2210             },
2211             {
2212               "id": "11",
2213               "name": "vSCP",
2214               "isPermitted": false
2215             },
2216             {
2217               "id": "12",
2218               "name": "VPMS",
2219               "isPermitted": false
2220             },
2221             {
2222               "id": "13",
2223               "name": "vMMSC",
2224               "isPermitted": false
2225             },
2226             {
2227               "id": "14",
2228               "name": "SSD",
2229               "isPermitted": false
2230             },
2231             {
2232               "id": "15",
2233               "name": "vMOG",
2234               "isPermitted": false
2235             },
2236             {
2237               "id": "16",
2238               "name": "LINDSEY",
2239               "isPermitted": false
2240             },
2241             {
2242               "id": "17",
2243               "name": "JOHANNA_SANTOS",
2244               "isPermitted": false
2245             },
2246             {
2247               "id": "18",
2248               "name": "vCarroll",
2249               "isPermitted": false
2250             }
2251           ]
2252         },
2253         "aicZones": [
2254           {
2255             "id": "NFT1",
2256             "name": "NFTJSSSS-NFT1"
2257           },
2258           {
2259             "id": "JAG1",
2260             "name": "YUDFJULP-JAG1"
2261           },
2262           {
2263             "id": "YYY1",
2264             "name": "UUUAIAAI-YYY1"
2265           },
2266           {
2267             "id": "BAN1",
2268             "name": "VSDKYUTP-BAN1"
2269           },
2270           {
2271             "id": "DKJ1",
2272             "name": "DKJSJDKA-DKJ1"
2273           },
2274           {
2275             "id": "MCS1",
2276             "name": "ASACMAMS-MCS1"
2277           },
2278           {
2279             "id": "UIO1",
2280             "name": "uioclli1-UIO1"
2281           },
2282           {
2283             "id": "RAJ1",
2284             "name": "YGBIJNLQ-RAJ1"
2285           },
2286           {
2287             "id": "OPA1",
2288             "name": "opaclli1-OPA1"
2289           },
2290           {
2291             "id": "SDE1",
2292             "name": "ZXCVBNMA-SDE1"
2293           },
2294           {
2295             "id": "VEN2",
2296             "name": "FGHJUHIL-VEN2"
2297           },
2298           {
2299             "id": "ORL1",
2300             "name": "ORLDFLMA-ORL1"
2301           },
2302           {
2303             "id": "JAD1",
2304             "name": "JADECLLI-JAD1"
2305           },
2306           {
2307             "id": "ZXL1",
2308             "name": "LWLWCANN-ZXL1"
2309           },
2310           {
2311             "id": "CKL1",
2312             "name": "CLKSKCKK-CKL1"
2313           },
2314           {
2315             "id": "SDF1",
2316             "name": "sdfclli1-SDF1"
2317           },
2318           {
2319             "id": "RAD1",
2320             "name": "RADICAL1-RAD1"
2321           },
2322           {
2323             "id": "KIT1",
2324             "name": "BHYJFGLN-KIT1"
2325           },
2326           {
2327             "id": "REL1",
2328             "name": "INGERFGT-REL1"
2329           },
2330           {
2331             "id": "JNL1",
2332             "name": "CJALSDAC-JNL1"
2333           },
2334           {
2335             "id": "OLK1",
2336             "name": "OLKOLKLS-OLK1"
2337           },
2338           {
2339             "id": "CHI1",
2340             "name": "CHILLIWE-CHI1"
2341           },
2342           {
2343             "id": "UUU4",
2344             "name": "UUUAAAUU-UUU4"
2345           },
2346           {
2347             "id": "TUF1",
2348             "name": "TUFCLLI1-TUF1"
2349           },
2350           {
2351             "id": "KJN1",
2352             "name": "CKALDKSA-KJN1"
2353           },
2354           {
2355             "id": "SAM1",
2356             "name": "SNDGCA64-SAN1"
2357           },
2358           {
2359             "id": "SCK1",
2360             "name": "SCKSCKSK-SCK1"
2361           },
2362           {
2363             "id": "HJH1",
2364             "name": "AOEEQQQD-HJH1"
2365           },
2366           {
2367             "id": "HGD1",
2368             "name": "SDFQWHGD-HGD1"
2369           },
2370           {
2371             "id": "KOR1",
2372             "name": "HYFLNBVT-KOR1"
2373           },
2374           {
2375             "id": "ATL43",
2376             "name": "AICLOCID-ATL43"
2377           },
2378           {
2379             "id": "ATL54",
2380             "name": "AICFTAAI-ATL54"
2381           },
2382           {
2383             "id": "ATL66",
2384             "name": "CLLIAAII-ATL66"
2385           },
2386           {
2387             "id": "VEL1",
2388             "name": "BNMLKUIK-VEL1"
2389           },
2390           {
2391             "id": "ICC1",
2392             "name": "SANJITAT-ICC1"
2393           },
2394           {
2395             "id": "MNT11",
2396             "name": "WSXEFBTH-MNT11"
2397           },
2398           {
2399             "id": "DEF2",
2400             "name": "WSBHGTYL-DEF2"
2401           },
2402           {
2403             "id": "MAD11",
2404             "name": "SDFQWGKL-MAD11"
2405           },
2406           {
2407             "id": "OLG1",
2408             "name": "OLHOLHOL-OLG1"
2409           },
2410           {
2411             "id": "GAR1",
2412             "name": "NGFVSJKO-GAR1"
2413           },
2414           {
2415             "id": "SAN22",
2416             "name": "GNVLSCTL-SAN22"
2417           },
2418           {
2419             "id": "HRG1",
2420             "name": "HRGHRGGS-HRG1"
2421           },
2422           {
2423             "id": "JCS1",
2424             "name": "JCSJSCJS-JCS1"
2425           },
2426           {
2427             "id": "DHA12",
2428             "name": "WSXEDECF-DHA12"
2429           },
2430           {
2431             "id": "HJE1",
2432             "name": "AOEEWWWD-HJE1"
2433           },
2434           {
2435             "id": "NCA1",
2436             "name": "NCANCANN-NCA1"
2437           },
2438           {
2439             "id": "IOP1",
2440             "name": "iopclli1-IOP1"
2441           },
2442           {
2443             "id": "RTY1",
2444             "name": "rtyclli1-RTY1"
2445           },
2446           {
2447             "id": "KAP1",
2448             "name": "HIOUYTRQ-KAP1"
2449           },
2450           {
2451             "id": "ZEN1",
2452             "name": "ZENCLLI1-ZEN1"
2453           },
2454           {
2455             "id": "HKA1",
2456             "name": "JAKHLASS-HKA1"
2457           },
2458           {
2459             "id": "CQK1",
2460             "name": "CQKSCAKK-CQK1"
2461           },
2462           {
2463             "id": "SAI1",
2464             "name": "UBEKQLPD-SAI1"
2465           },
2466           {
2467             "id": "ERT1",
2468             "name": "ertclli1-ERT1"
2469           },
2470           {
2471             "id": "IBB1",
2472             "name": "PLMKOIJU-IBB1"
2473           },
2474           {
2475             "id": "TIR2",
2476             "name": "PLKINHYI-TIR2"
2477           },
2478           {
2479             "id": "HSD1",
2480             "name": "CHASKCDS-HSD1"
2481           },
2482           {
2483             "id": "SLF78",
2484             "name": "SDCTLFN1-SLF78"
2485           },
2486           {
2487             "id": "SEE78",
2488             "name": "SDCTEEE4-SEE78"
2489           },
2490           {
2491             "id": "SAN13",
2492             "name": "TOKYJPFA-SAN13"
2493           },
2494           {
2495             "id": "SAA78",
2496             "name": "SDCTAAA1-SAA78"
2497           },
2498           {
2499             "id": "LUC1",
2500             "name": "ATLDFGYC-LUC1"
2501           },
2502           {
2503             "id": "AMD13",
2504             "name": "MEMATLAN-AMD13"
2505           },
2506           {
2507             "id": "TOR1",
2508             "name": "TOROONXN-TOR1"
2509           },
2510           {
2511             "id": "QWE1",
2512             "name": "QWECLLI1-QWE1"
2513           },
2514           {
2515             "id": "ZOG1",
2516             "name": "ZOGASTRO-ZOG1"
2517           },
2518           {
2519             "id": "CAL33",
2520             "name": "CALIFORN-CAL33"
2521           },
2522           {
2523             "id": "SHH78",
2524             "name": "SDIT1HHH-SHH78"
2525           },
2526           {
2527             "id": "DSA1",
2528             "name": "LKJHGFDS-DSA1"
2529           },
2530           {
2531             "id": "CLG1",
2532             "name": "CLGRABAD-CLG1"
2533           },
2534           {
2535             "id": "BNA1",
2536             "name": "BNARAGBK-BNA1"
2537           },
2538           {
2539             "id": "ATL84",
2540             "name": "CANTTCOC-ATL84"
2541           },
2542           {
2543             "id": "APP1",
2544             "name": "WBHGTYUI-APP1"
2545           },
2546           {
2547             "id": "RJN1",
2548             "name": "RJNRBZAW-RJN1"
2549           },
2550           {
2551             "id": "EHH78",
2552             "name": "SDCSHHH5-EHH78"
2553           },
2554           {
2555             "id": "mac10",
2556             "name": "PKGTESTF-mac10"
2557           },
2558           {
2559             "id": "SXB78",
2560             "name": "SDCTGXB1-SXB78"
2561           },
2562           {
2563             "id": "SAX78",
2564             "name": "SDCTAXG1-SAX78"
2565           },
2566           {
2567             "id": "SYD1",
2568             "name": "SYDNAUBV-SYD1"
2569           },
2570           {
2571             "id": "TOK1",
2572             "name": "TOKYJPFA-TOK1"
2573           },
2574           {
2575             "id": "KGM2",
2576             "name": "KGMTNC20-KGM2"
2577           },
2578           {
2579             "id": "DCC1b",
2580             "name": "POIUYTGH-DCC1b"
2581           },
2582           {
2583             "id": "SKK78",
2584             "name": "SDCTKKK1-SKK78"
2585           },
2586           {
2587             "id": "SGG78",
2588             "name": "SDCTGGG1-SGG78"
2589           },
2590           {
2591             "id": "SJJ78",
2592             "name": "SDCTJJJ1-SJJ78"
2593           },
2594           {
2595             "id": "SBX78",
2596             "name": "SDCTBXG1-SBX78"
2597           },
2598           {
2599             "id": "LAG1",
2600             "name": "LARGIZON-LAG1"
2601           },
2602           {
2603             "id": "IAA1",
2604             "name": "QAZXSWED-IAA1"
2605           },
2606           {
2607             "id": "POI1",
2608             "name": "PLMNJKIU-POI1"
2609           },
2610           {
2611             "id": "LAG1a",
2612             "name": "LARGIZON-LAG1a"
2613           },
2614           {
2615             "id": "PBL1",
2616             "name": "PBLAPBAI-PBL1"
2617           },
2618           {
2619             "id": "LAG45",
2620             "name": "LARGIZON-LAG1a"
2621           },
2622           {
2623             "id": "MAR1",
2624             "name": "MNBVCXZM-MAR1"
2625           },
2626           {
2627             "id": "HST70",
2628             "name": "HSTNTX70-HST70"
2629           },
2630           {
2631             "id": "DCC1a",
2632             "name": "POIUYTGH-DCC1a"
2633           },
2634           {
2635             "id": "TOL1",
2636             "name": "TOLDOH21-TOL1"
2637           },
2638           {
2639             "id": "LON1",
2640             "name": "LONEENCO-LON1"
2641           },
2642           {
2643             "id": "SJU78",
2644             "name": "SDIT1JUB-SJU78"
2645           },
2646           {
2647             "id": "STN27",
2648             "name": "HSTNTX01-STN27"
2649           },
2650           {
2651             "id": "SSW56",
2652             "name": "ss8126GT-SSW56"
2653           },
2654           {
2655             "id": "SBB78",
2656             "name": "SDIT1BBB-SBB78"
2657           },
2658           {
2659             "id": "DCC3",
2660             "name": "POIUYTGH-DCC3"
2661           },
2662           {
2663             "id": "GNV1",
2664             "name": "GNVLSCTL-GNV1"
2665           },
2666           {
2667             "id": "WAS1",
2668             "name": "WASHDCSW-WAS1"
2669           },
2670           {
2671             "id": "TOY1",
2672             "name": "TORYONNZ-TOY1"
2673           },
2674           {
2675             "id": "STT1",
2676             "name": "STTLWA02-STT1"
2677           },
2678           {
2679             "id": "STG1",
2680             "name": "STTGGE62-STG1"
2681           },
2682           {
2683             "id": "SLL78",
2684             "name": "SDCTLLL1-SLL78"
2685           },
2686           {
2687             "id": "SBU78",
2688             "name": "SDIT1BUB-SBU78"
2689           },
2690           {
2691             "id": "ATL2",
2692             "name": "ATLNGANW-ATL2"
2693           },
2694           {
2695             "id": "BOT1",
2696             "name": "BOTHWAKY-BOT1"
2697           },
2698           {
2699             "id": "SNG1",
2700             "name": "SNGPSIAU-SNG1"
2701           },
2702           {
2703             "id": "NYC1",
2704             "name": "NYCMNY54-NYC1"
2705           },
2706           {
2707             "id": "LAG1b",
2708             "name": "LARGIZON-LAG1b"
2709           },
2710           {
2711             "id": "AMD15",
2712             "name": "AMDFAA01-AMD15"
2713           },
2714           {
2715             "id": "SNA1",
2716             "name": "SNANTXCA-SNA1"
2717           },
2718           {
2719             "id": "PLT1",
2720             "name": "PLTNCA60-PLT1"
2721           },
2722           {
2723             "id": "TLP1",
2724             "name": "TLPNXM18-TLP1"
2725           },
2726           {
2727             "id": "SDD81",
2728             "name": "SAIT1DD6-SDD81"
2729           },
2730           {
2731             "id": "DCC1",
2732             "name": "POIUYTGH-DCC1"
2733           },
2734           {
2735             "id": "DCC2",
2736             "name": "POIUYTGH-DCC2"
2737           },
2738           {
2739             "id": "OKC1",
2740             "name": "OKCBOK55-OKC1"
2741           },
2742           {
2743             "id": "PAR1",
2744             "name": "PARSFRCG-PAR1"
2745           },
2746           {
2747             "id": "TES36",
2748             "name": "ABCEETES-TES36"
2749           },
2750           {
2751             "id": "COM1",
2752             "name": "PLMKOPIU-COM1"
2753           },
2754           {
2755             "id": "ANI1",
2756             "name": "ATLNGTRE-ANI1"
2757           },
2758           {
2759             "id": "SDG78",
2760             "name": "SDIT1BDG-SDG78"
2761           },
2762           {
2763             "id": "mac20",
2764             "name": "PKGTESTF-mac20"
2765           },
2766           {
2767             "id": "DSF45",
2768             "name": "DSFBG123-DSF45"
2769           },
2770           {
2771             "id": "HST25",
2772             "name": "HSTNTX01-HST25"
2773           },
2774           {
2775             "id": "AMD18",
2776             "name": "AUDIMA01-AMD18"
2777           },
2778           {
2779             "id": "SAA80",
2780             "name": "SAIT9AA3-SAA80"
2781           },
2782           {
2783             "id": "SSA56",
2784             "name": "SSIT2AA7-SSA56"
2785           },
2786           {
2787             "id": "SDD82",
2788             "name": "SAIT1DD9-SDD82"
2789           },
2790           {
2791             "id": "JCV1",
2792             "name": "JCVLFLBW-JCV1"
2793           },
2794           {
2795             "id": "SUL2",
2796             "name": "WERTYUJK-SUL2"
2797           },
2798           {
2799             "id": "PUR1",
2800             "name": "purelyde-PUR1"
2801           },
2802           {
2803             "id": "FDE55",
2804             "name": "FDERT555-FDE55"
2805           },
2806           {
2807             "id": "SITE",
2808             "name": "LONEENCO-SITE"
2809           },
2810           {
2811             "id": "ATL1",
2812             "name": "ATLNGAMA-ATL1"
2813           },
2814           {
2815             "id": "JUL1",
2816             "name": "ZXCVBNMM-JUL1"
2817           },
2818           {
2819             "id": "TAT34",
2820             "name": "TESAAISB-TAT34"
2821           },
2822           {
2823             "id": "XCP12",
2824             "name": "CHKGH123-XCP12"
2825           },
2826           {
2827             "id": "RAI1",
2828             "name": "poiuytre-RAI1"
2829           },
2830           {
2831             "id": "HPO1",
2832             "name": "ATLNGAUP-HPO1"
2833           },
2834           {
2835             "id": "KJF12",
2836             "name": "KJFDH123-KJF12"
2837           },
2838           {
2839             "id": "SCC80",
2840             "name": "SAIT9CC3-SCC80"
2841           },
2842           {
2843             "id": "SAA12",
2844             "name": "SAIT9AF8-SAA12"
2845           },
2846           {
2847             "id": "SAA14",
2848             "name": "SAIT1AA9-SAA14"
2849           },
2850           {
2851             "id": "ATL35",
2852             "name": "TTESSAAI-ATL35"
2853           },
2854           {
2855             "id": "CWY1",
2856             "name": "CWYMOWBS-CWY1"
2857           },
2858           {
2859             "id": "ATL76",
2860             "name": "TELEPAAI-ATL76"
2861           },
2862           {
2863             "id": "DSL12",
2864             "name": "DSLFK242-DSL12"
2865           },
2866           {
2867             "id": "ATL53",
2868             "name": "AAIATLTE-ATL53"
2869           },
2870           {
2871             "id": "SAA11",
2872             "name": "SAIT9AA2-SAA11"
2873           },
2874           {
2875             "id": "ATL62",
2876             "name": "TESSASCH-ATL62"
2877           },
2878           {
2879             "id": "AUG1",
2880             "name": "ASDFGHJK-AUG1"
2881           },
2882           {
2883             "id": "POI22",
2884             "name": "POIUY123-POI22"
2885           },
2886           {
2887             "id": "SAA13",
2888             "name": "SAIT1AA9-SAA13"
2889           },
2890           {
2891             "id": "BHY17",
2892             "name": "BHYTFRF3-BHY17"
2893           },
2894           {
2895             "id": "LIS1",
2896             "name": "HOSTPROF-LIS1"
2897           },
2898           {
2899             "id": "SIP1",
2900             "name": "ZXCVBNMK-SIP1"
2901           },
2902           {
2903             "id": "ATL99",
2904             "name": "TEESTAAI-ATL43"
2905           },
2906           {
2907             "id": "ATL64",
2908             "name": "FORLOAAJ-ATL64"
2909           },
2910           {
2911             "id": "TAT33",
2912             "name": "TESAAISA-TAT33"
2913           },
2914           {
2915             "id": "RAD10",
2916             "name": "INDIPUNE-RAD10"
2917           },
2918           {
2919             "id": "RTW5",
2920             "name": "BHYTFRY4-RTW5"
2921           },
2922           {
2923             "id": "JGS1",
2924             "name": "KSJKKKKK-JGS1"
2925           },
2926           {
2927             "id": "ATL98",
2928             "name": "TEESTAAI-ATL43"
2929           },
2930           {
2931             "id": "WAN1",
2932             "name": "LEIWANGW-WAN1"
2933           },
2934           {
2935             "id": "ATL44",
2936             "name": "ATLSANAB-ATL44"
2937           },
2938           {
2939             "id": "RTD2",
2940             "name": "BHYTFRk4-RTD2"
2941           },
2942           {
2943             "id": "NIR1",
2944             "name": "ORFLMANA-NIR1"
2945           },
2946           {
2947             "id": "ATL75",
2948             "name": "SANAAIRE-ATL75"
2949           },
2950           {
2951             "id": "NUM1",
2952             "name": "QWERTYUI-NUM1"
2953           },
2954           {
2955             "id": "MTN32",
2956             "name": "MDTWNJ21-MTN32"
2957           },
2958           {
2959             "id": "RTZ4",
2960             "name": "BHYTFRZ6-RTZ4"
2961           },
2962           {
2963             "id": "ATL56",
2964             "name": "ATLSANAC-ATL56"
2965           },
2966           {
2967             "id": "AMS1",
2968             "name": "AMSTNLBW-AMS1"
2969           },
2970           {
2971             "id": "RCT1",
2972             "name": "AMSTERNL-RCT1"
2973           },
2974           {
2975             "id": "JAN1",
2976             "name": "ORFLMATT-JAN1"
2977           },
2978           {
2979             "id": "ABC14",
2980             "name": "TESAAISA-ABC14"
2981           },
2982           {
2983             "id": "TAT37",
2984             "name": "TESAAISD-TAT37"
2985           },
2986           {
2987             "id": "MIC54",
2988             "name": "MICHIGAN-MIC54"
2989           },
2990           {
2991             "id": "ABC11",
2992             "name": "ATLSANAI-ABC11"
2993           },
2994           {
2995             "id": "AMF11",
2996             "name": "AMDOCS01-AMF11"
2997           },
2998           {
2999             "id": "ATL63",
3000             "name": "ATLSANEW-ATL63"
3001           },
3002           {
3003             "id": "ABC12",
3004             "name": "ATLSECIA-ABC12"
3005           },
3006           {
3007             "id": "MTN20",
3008             "name": "MDTWNJ21-MTN20"
3009           },
3010           {
3011             "id": "ABC15",
3012             "name": "AAITESAN-ABC15"
3013           },
3014           {
3015             "id": "AVT1",
3016             "name": "AVTRFLHD-AVT1"
3017           },
3018           {
3019             "id": "ATL34",
3020             "name": "ATLSANAI-ATL34"
3021           }
3022         ],
3023         "categoryParameters": {
3024           "owningEntityList": [
3025             {
3026               "id": "aaa1",
3027               "name": "aaa1"
3028             },
3029             {
3030               "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
3031               "name": "WayneHolland"
3032             },
3033             {
3034               "id": "Melissa",
3035               "name": "Melissa"
3036             }
3037           ],
3038           "projectList": [
3039             {
3040               "id": "WATKINS",
3041               "name": "WATKINS"
3042             },
3043             {
3044               "id": "x1",
3045               "name": "x1"
3046             },
3047             {
3048               "id": "yyy1",
3049               "name": "yyy1"
3050             }
3051           ],
3052           "lineOfBusinessList": [
3053             {
3054               "id": "ONAP",
3055               "name": "ONAP"
3056             },
3057             {
3058               "id": "zzz1",
3059               "name": "zzz1"
3060             }
3061           ],
3062           "platformList": [
3063             {
3064               "id": "platform",
3065               "name": "platform"
3066             },
3067             {
3068               "id": "xxx1",
3069               "name": "xxx1"
3070             }
3071           ]
3072         },
3073         "type": "[CATEGORY_PARAMETERS] Update"
3074       }
3075     }
3076   }
3077
3078   function getReduxWithVNFMissingData() {
3079     return {
3080       "global": {
3081         "name": null,
3082         "flags": {
3083           "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
3084           "FLAG_SHOW_ASSIGNMENTS": true,
3085           "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
3086           "FLAG_UNASSIGN_SERVICE": true,
3087           "FLAG_SHOW_VERIFY_SERVICE": false,
3088           "FLAG_COLLECTION_RESOURCE_SUPPORT": true,
3089           "FLAG_DUPLICATE_VNF": true,
3090           "FLAG_SERVICE_MODEL_CACHE": true,
3091           "CREATE_INSTANCE_TEST": false,
3092           "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": true,
3093           "FLAG_ASYNC_INSTANTIATION": true,
3094           "FLAG_ASYNC_JOBS": true,
3095           "EMPTY_DRAWING_BOARD_TEST": false,
3096           "FLAG_ADD_MSO_TESTAPI_FIELD": true
3097         },
3098         "type": "[FLAGS] Update"
3099       },
3100       "service": {
3101         "serviceHierarchy": {
3102           "f4d84bb4-a416-4b4e-997e-0059973630b9": {
3103             "service": {
3104               "uuid": "f4d84bb4-a416-4b4e-997e-0059973630b9",
3105               "invariantUuid": "598e3f9e-3244-4d8f-a8e0-0e5d7a29eda9",
3106               "name": "ADIOD vMX vPE_BV Service 488",
3107               "version": "1.0",
3108               "toscaModelURL": null,
3109               "category": "Network L1-3",
3110               "serviceType": "",
3111               "serviceRole": "",
3112               "description": "ADIOD vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM",
3113               "serviceEcompNaming": "true",
3114               "instantiationType": "Macro",
3115               "inputs": {
3116                 "2017488_adiodvpe0_ASN": {
3117                   "type": "string",
3118                   "description": "AV/PE",
3119                   "entry_schema": null,
3120                   "inputProperties": null,
3121                   "constraints": [],
3122                   "required": true,
3123                   "default": "AV_vPE"
3124                 }
3125               }
3126             },
3127             "vnfs": {
3128               "2017-488_ADIOD-vPE 0": {
3129                 "uuid": "ea81d6f7-0861-44a7-b7d5-d173b562c350",
3130                 "invariantUuid": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
3131                 "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",
3132                 "name": "2017-488_ADIOD-vPE",
3133                 "version": "9.0",
3134                 "customizationUuid": "41516cc6-5098-4b40-a619-f8d5f55fc4d8",
3135                 "inputs": {
3136                   "vnf_config_template_version": {
3137                     "type": "string",
3138                     "description": "VPE Software Version",
3139                     "entry_schema": null,
3140                     "inputProperties": null,
3141                     "constraints": [],
3142                     "required": true,
3143                     "default": "17.2"
3144                   },
3145                   "bandwidth_units": {
3146                     "type": "string",
3147                     "description": "Units of bandwidth",
3148                     "entry_schema": null,
3149                     "inputProperties": null,
3150                     "constraints": [],
3151                     "required": true,
3152                     "default": "Gbps"
3153                   },
3154                   "bandwidth": {
3155                     "type": "string",
3156                     "description": "Requested VPE bandwidth",
3157                     "entry_schema": null,
3158                     "inputProperties": null,
3159                     "constraints": [],
3160                     "required": true,
3161                     "default": "10"
3162                   },
3163                   "AIC_CLLI": {
3164                     "type": "string",
3165                     "description": "AIC Site CLLI",
3166                     "entry_schema": null,
3167                     "inputProperties": null,
3168                     "constraints": [],
3169                     "required": true,
3170                     "default": "ATLMY8GA"
3171                   },
3172                   "availability_zone_0": {
3173                     "type": "string",
3174                     "description": "The Availability Zone to launch the instance.",
3175                     "entry_schema": null,
3176                     "inputProperties": null,
3177                     "constraints": [],
3178                     "required": true,
3179                     "default": "mtpocfo-kvm-az01"
3180                   },
3181                   "ASN": {
3182                     "type": "string",
3183                     "description": "AV/PE",
3184                     "entry_schema": null,
3185                     "inputProperties": null,
3186                     "constraints": [],
3187                     "required": true,
3188                     "default": "AV_vPE"
3189                   },
3190                   "vnf_instance_name": {
3191                     "type": "string",
3192                     "description": "The hostname assigned to the vpe.",
3193                     "entry_schema": null,
3194                     "inputProperties": null,
3195                     "constraints": [],
3196                     "required": true,
3197                     "default": "mtnj309me6"
3198                   }
3199                 },
3200                 "commands": {
3201                   "vnf_config_template_version": {
3202                     "displayName": "vnf_config_template_version",
3203                     "command": "get_input",
3204                     "inputName": "2017488_adiodvpe0_vnf_config_template_version"
3205                   },
3206                   "bandwidth_units": {
3207                     "displayName": "bandwidth_units",
3208                     "command": "get_input",
3209                     "inputName": "2017488_adiodvpe0_bandwidth_units"
3210                   },
3211                   "bandwidth": {
3212                     "displayName": "bandwidth",
3213                     "command": "get_input",
3214                     "inputName": "2017488_adiodvpe0_bandwidth"
3215                   },
3216                   "AIC_CLLI": {
3217                     "displayName": "AIC_CLLI",
3218                     "command": "get_input",
3219                     "inputName": "2017488_adiodvpe0_AIC_CLLI"
3220                   },
3221                   "availability_zone_0": {
3222                     "displayName": "availability_zone_0",
3223                     "command": "get_input",
3224                     "inputName": "2017488_adiodvpe0_availability_zone_0"
3225                   },
3226                   "ASN": {
3227                     "displayName": "ASN",
3228                     "command": "get_input",
3229                     "inputName": "2017488_adiodvpe0_ASN"
3230                   },
3231                   "vnf_instance_name": {
3232                     "displayName": "vnf_instance_name",
3233                     "command": "get_input",
3234                     "inputName": "2017488_adiodvpe0_vnf_instance_name"
3235                   }
3236                 },
3237                 "properties": {
3238                   "vmxvre_retype": "RE-VMX",
3239                   "vnf_config_template_version": "get_input:2017488_adiodvpe0_vnf_config_template_version",
3240                   "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
3241                   "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
3242                   "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
3243                   "int_ctl_net_name": "VMX-INTXI",
3244                   "vmx_int_ctl_prefix": "10.0.0.10",
3245                   "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
3246                   "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
3247                   "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
3248                   "nf_type": "ROUTER",
3249                   "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
3250                   "is_AVPN_service": "false",
3251                   "vmx_RSG_name": "vREXI-affinity",
3252                   "vmx_int_ctl_forwarding": "l2",
3253                   "vmxvre_oam_ip_0": "10.0.0.10",
3254                   "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
3255                   "vmxvpfe_sriov41_0_port_vlanstrip": "false",
3256                   "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
3257                   "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
3258                   "vmxvre_image_name_0": "vre172_nova_img",
3259                   "vmxvre_instance": "0",
3260                   "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
3261                   "vmxvre_flavor_name": "ns.c1r16d32.v5",
3262                   "vmxvpfe_volume_size_0": "40.0",
3263                   "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
3264                   "nf_naming": "{ecomp_generated_naming=true}",
3265                   "multi_stage_design": "false",
3266                   "nf_naming_code": "me6",
3267                   "vmxvre_name_0": "vREXI",
3268                   "vmxvpfe_sriov42_0_port_vlanstrip": "false",
3269                   "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
3270                   "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
3271                   "vmxvpfe_image_name_0": "vpfe172_nova_img",
3272                   "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
3273                   "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
3274                   "vmxvre_console": "vidconsole",
3275                   "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
3276                   "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
3277                   "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
3278                   "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
3279                   "vmxvpfe_sriov44_0_port_vlanstrip": "false",
3280                   "vf_module_id": "123",
3281                   "nf_function": "ADIOD vPE",
3282                   "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
3283                   "vmxvre_int_ctl_ip_0": "10.0.0.10",
3284                   "ecomp_generated_naming": "true",
3285                   "AIC_CLLI": "get_input:2017488_adiodvpe0_AIC_CLLI",
3286                   "vnf_name": "mtnj309me6vre",
3287                   "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
3288                   "vmxvre_volume_type_1": "HITACHI",
3289                   "vmxvpfe_sriov44_0_port_broadcastallow": "true",
3290                   "vmxvre_volume_type_0": "HITACHI",
3291                   "vmxvpfe_volume_type_0": "HITACHI",
3292                   "vmxvpfe_sriov43_0_port_broadcastallow": "true",
3293                   "bandwidth_units": "get_input:2017488_adiodvpe0_bandwidth_units",
3294                   "vnf_id": "123",
3295                   "vmxvre_oam_prefix": "24",
3296                   "availability_zone_0": "get_input:2017488_adiodvpe0_availability_zone_0",
3297                   "ASN": "get_input:2017488_adiodvpe0_ASN",
3298                   "vmxvre_chassis_i2cid": "161",
3299                   "vmxvpfe_name_0": "vPFEXI",
3300                   "bandwidth": "get_input:2017488_adiodvpe0_bandwidth",
3301                   "availability_zone_max_count": "1",
3302                   "vmxvre_volume_size_0": "45.0",
3303                   "vmxvre_volume_size_1": "50.0",
3304                   "vmxvpfe_sriov42_0_port_broadcastallow": "true",
3305                   "vmxvre_oam_gateway": "10.0.0.10",
3306                   "vmxvre_volume_name_1": "vREXI_FAVolume",
3307                   "vmxvre_ore_present": "0",
3308                   "vmxvre_volume_name_0": "vREXI_FBVolume",
3309                   "vmxvre_type": "0",
3310                   "vnf_instance_name": "get_input:2017488_adiodvpe0_vnf_instance_name",
3311                   "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
3312                   "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
3313                   "vmx_int_ctl_len": "24",
3314                   "vmxvpfe_sriov43_0_port_vlanstrip": "false",
3315                   "vmxvpfe_sriov41_0_port_broadcastallow": "true",
3316                   "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
3317                   "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
3318                   "nf_role": "vPE",
3319                   "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
3320                   "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
3321                   "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
3322                 },
3323                 "type": "VF",
3324                 "modelCustomizationName": "2017-488_ADIOD-vPE 0",
3325                 "vfModules": {
3326                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
3327                     "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
3328                     "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
3329                     "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
3330                     "description": null,
3331                     "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
3332                     "version": "8",
3333                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
3334                     "properties": {
3335                       "minCountInstances": 2,
3336                       "maxCountInstances": null,
3337                       "initialCount": 0,
3338                       "vfModuleLabel": "ADIOD_vRE_BV"
3339                     },
3340                     "inputs": {
3341                       "2017488_adiodvpe0_bandwidth_units": {
3342                         "type": "string",
3343                         "description": "Units of bandwidth",
3344                         "entry_schema": null,
3345                         "inputProperties": {
3346                           "sourceType": "HEAT",
3347                           "vfModuleLabel": "ADIOD_vRE_BV",
3348                           "paramName": "bandwidth_units"
3349                         },
3350                         "constraints": null,
3351                         "required": true,
3352                         "default": "Gbps"
3353                       },
3354                       "2017488_adiodvpe0_bandwidth": {
3355                         "type": "string",
3356                         "description": "Requested VPE bandwidth",
3357                         "entry_schema": null,
3358                         "inputProperties": {
3359                           "sourceType": "HEAT",
3360                           "vfModuleLabel": "ADIOD_vRE_BV",
3361                           "paramName": "bandwidth"
3362                         },
3363                         "constraints": null,
3364                         "required": true,
3365                         "default": "10"
3366                       },
3367                       "2017488_adiodvpe0_vnf_instance_name": {
3368                         "type": "string",
3369                         "description": "The hostname assigned to the vpe.",
3370                         "entry_schema": null,
3371                         "inputProperties": {
3372                           "sourceType": "HEAT",
3373                           "vfModuleLabel": "ADIOD_vRE_BV",
3374                           "paramName": "vnf_instance_name"
3375                         },
3376                         "constraints": null,
3377                         "required": true,
3378                         "default": "mtnj309me6"
3379                       },
3380                       "2017488_adiodvpe0_vnf_config_template_version": {
3381                         "type": "string",
3382                         "description": "VPE Software Version",
3383                         "entry_schema": null,
3384                         "inputProperties": {
3385                           "sourceType": "HEAT",
3386                           "vfModuleLabel": "ADIOD_vRE_BV",
3387                           "paramName": "vnf_config_template_version"
3388                         },
3389                         "constraints": null,
3390                         "required": true,
3391                         "default": "17.2"
3392                       },
3393                       "2017488_adiodvpe0_AIC_CLLI": {
3394                         "type": "string",
3395                         "description": "AIC Site CLLI",
3396                         "entry_schema": null,
3397                         "inputProperties": {
3398                           "sourceType": "HEAT",
3399                           "vfModuleLabel": "ADIOD_vRE_BV",
3400                           "paramName": "AIC_CLLI"
3401                         },
3402                         "constraints": null,
3403                         "required": true,
3404                         "default": "ATLMY8GA"
3405                       }
3406                     },
3407                     "volumeGroupAllowed": true
3408                   },
3409                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
3410                     "uuid": "040e591e-5d30-4e0d-850f-7266e5a8e013",
3411                     "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
3412                     "customizationUuid": "5c5f91f9-5e31-4120-b892-5536587ec258",
3413                     "description": null,
3414                     "name": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
3415                     "version": "6",
3416                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
3417                     "properties": {
3418                       "minCountInstances": 1,
3419                       "maxCountInstances": 1,
3420                       "initialCount": 1,
3421                       "vfModuleLabel": "ADIOD_base_vPE_BV"
3422                     },
3423                     "inputs": {},
3424                     "volumeGroupAllowed": false
3425                   },
3426                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
3427                     "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
3428                     "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
3429                     "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
3430                     "description": null,
3431                     "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
3432                     "version": "8",
3433                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
3434                     "properties": {
3435                       "minCountInstances": 0,
3436                       "maxCountInstances": null,
3437                       "initialCount": 0,
3438                       "vfModuleLabel": "ADIOD_vPFE_BV"
3439                     },
3440                     "inputs": {
3441                       "2017488_adiodvpe0_availability_zone_0": {
3442                         "type": "string",
3443                         "description": "The Availability Zone to launch the instance.",
3444                         "entry_schema": null,
3445                         "inputProperties": {
3446                           "sourceType": "HEAT",
3447                           "vfModuleLabel": "ADIOD_vPFE_BV",
3448                           "paramName": "availability_zone_0"
3449                         },
3450                         "constraints": null,
3451                         "required": true,
3452                         "default": "mtpocfo-kvm-az01"
3453                       }
3454                     },
3455                     "volumeGroupAllowed": true
3456                   }
3457                 },
3458                 "volumeGroups": {
3459                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
3460                     "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
3461                     "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
3462                     "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
3463                     "description": null,
3464                     "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
3465                     "version": "8",
3466                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
3467                     "properties": {
3468                       "minCountInstances": 0,
3469                       "maxCountInstances": null,
3470                       "initialCount": 0,
3471                       "vfModuleLabel": "ADIOD_vRE_BV"
3472                     },
3473                     "inputs": {
3474                       "2017488_adiodvpe0_bandwidth_units": {
3475                         "type": "string",
3476                         "description": "Units of bandwidth",
3477                         "entry_schema": null,
3478                         "inputProperties": {
3479                           "sourceType": "HEAT",
3480                           "vfModuleLabel": "ADIOD_vRE_BV",
3481                           "paramName": "bandwidth_units"
3482                         },
3483                         "constraints": null,
3484                         "required": true,
3485                         "default": "Gbps"
3486                       },
3487                       "2017488_adiodvpe0_bandwidth": {
3488                         "type": "string",
3489                         "description": "Requested VPE bandwidth",
3490                         "entry_schema": null,
3491                         "inputProperties": {
3492                           "sourceType": "HEAT",
3493                           "vfModuleLabel": "ADIOD_vRE_BV",
3494                           "paramName": "bandwidth"
3495                         },
3496                         "constraints": null,
3497                         "required": true,
3498                         "default": "10"
3499                       },
3500                       "2017488_adiodvpe0_vnf_instance_name": {
3501                         "type": "string",
3502                         "description": "The hostname assigned to the vpe.",
3503                         "entry_schema": null,
3504                         "inputProperties": {
3505                           "sourceType": "HEAT",
3506                           "vfModuleLabel": "ADIOD_vRE_BV",
3507                           "paramName": "vnf_instance_name"
3508                         },
3509                         "constraints": null,
3510                         "required": true,
3511                         "default": "mtnj309me6"
3512                       },
3513                       "2017488_adiodvpe0_vnf_config_template_version": {
3514                         "type": "string",
3515                         "description": "VPE Software Version",
3516                         "entry_schema": null,
3517                         "inputProperties": {
3518                           "sourceType": "HEAT",
3519                           "vfModuleLabel": "ADIOD_vRE_BV",
3520                           "paramName": "vnf_config_template_version"
3521                         },
3522                         "constraints": null,
3523                         "required": true,
3524                         "default": "17.2"
3525                       },
3526                       "2017488_adiodvpe0_AIC_CLLI": {
3527                         "type": "string",
3528                         "description": "AIC Site CLLI",
3529                         "entry_schema": null,
3530                         "inputProperties": {
3531                           "sourceType": "HEAT",
3532                           "vfModuleLabel": "ADIOD_vRE_BV",
3533                           "paramName": "AIC_CLLI"
3534                         },
3535                         "constraints": null,
3536                         "required": true,
3537                         "default": "ATLMY8GA"
3538                       }
3539                     }
3540                   },
3541                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
3542                     "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
3543                     "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
3544                     "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
3545                     "description": null,
3546                     "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
3547                     "version": "8",
3548                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
3549                     "properties": {
3550                       "minCountInstances": 0,
3551                       "maxCountInstances": null,
3552                       "initialCount": 0,
3553                       "vfModuleLabel": "ADIOD_vPFE_BV"
3554                     },
3555                     "inputs": {
3556                       "2017488_adiodvpe0_availability_zone_0": {
3557                         "type": "string",
3558                         "description": "The Availability Zone to launch the instance.",
3559                         "entry_schema": null,
3560                         "inputProperties": {
3561                           "sourceType": "HEAT",
3562                           "vfModuleLabel": "ADIOD_vPFE_BV",
3563                           "paramName": "availability_zone_0"
3564                         },
3565                         "constraints": null,
3566                         "required": true,
3567                         "default": "mtpocfo-kvm-az01"
3568                       }
3569                     }
3570                   }
3571                 },
3572                 "vfcInstanceGroups": {}
3573               }
3574             },
3575             "networks": {},
3576             "collectionResource": {},
3577             "configurations": {},
3578             "serviceProxies": {},
3579             "vfModules": {
3580               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
3581                 "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
3582                 "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
3583                 "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
3584                 "description": null,
3585                 "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
3586                 "version": "8",
3587                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
3588                 "properties": {
3589                   "minCountInstances": 0,
3590                   "maxCountInstances": null,
3591                   "initialCount": 0,
3592                   "vfModuleLabel": "ADIOD_vRE_BV"
3593                 },
3594                 "inputs": {
3595                   "2017488_adiodvpe0_bandwidth_units": {
3596                     "type": "string",
3597                     "description": "Units of bandwidth",
3598                     "entry_schema": null,
3599                     "inputProperties": {
3600                       "sourceType": "HEAT",
3601                       "vfModuleLabel": "ADIOD_vRE_BV",
3602                       "paramName": "bandwidth_units"
3603                     },
3604                     "constraints": null,
3605                     "required": true,
3606                     "default": "Gbps"
3607                   },
3608                   "2017488_adiodvpe0_bandwidth": {
3609                     "type": "string",
3610                     "description": "Requested VPE bandwidth",
3611                     "entry_schema": null,
3612                     "inputProperties": {
3613                       "sourceType": "HEAT",
3614                       "vfModuleLabel": "ADIOD_vRE_BV",
3615                       "paramName": "bandwidth"
3616                     },
3617                     "constraints": null,
3618                     "required": true,
3619                     "default": "10"
3620                   },
3621                   "2017488_adiodvpe0_vnf_instance_name": {
3622                     "type": "string",
3623                     "description": "The hostname assigned to the vpe.",
3624                     "entry_schema": null,
3625                     "inputProperties": {
3626                       "sourceType": "HEAT",
3627                       "vfModuleLabel": "ADIOD_vRE_BV",
3628                       "paramName": "vnf_instance_name"
3629                     },
3630                     "constraints": null,
3631                     "required": true,
3632                     "default": "mtnj309me6"
3633                   },
3634                   "2017488_adiodvpe0_vnf_config_template_version": {
3635                     "type": "string",
3636                     "description": "VPE Software Version",
3637                     "entry_schema": null,
3638                     "inputProperties": {
3639                       "sourceType": "HEAT",
3640                       "vfModuleLabel": "ADIOD_vRE_BV",
3641                       "paramName": "vnf_config_template_version"
3642                     },
3643                     "constraints": null,
3644                     "required": true,
3645                     "default": "17.2"
3646                   },
3647                   "2017488_adiodvpe0_AIC_CLLI": {
3648                     "type": "string",
3649                     "description": "AIC Site CLLI",
3650                     "entry_schema": null,
3651                     "inputProperties": {
3652                       "sourceType": "HEAT",
3653                       "vfModuleLabel": "ADIOD_vRE_BV",
3654                       "paramName": "AIC_CLLI"
3655                     },
3656                     "constraints": null,
3657                     "required": true,
3658                     "default": "ATLMY8GA"
3659                   }
3660                 },
3661                 "volumeGroupAllowed": true
3662               },
3663               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
3664                 "uuid": "040e591e-5d30-4e0d-850f-7266e5a8e013",
3665                 "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
3666                 "customizationUuid": "5c5f91f9-5e31-4120-b892-5536587ec258",
3667                 "description": null,
3668                 "name": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
3669                 "version": "6",
3670                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
3671                 "properties": {
3672                   "minCountInstances": 1,
3673                   "maxCountInstances": 1,
3674                   "initialCount": 1,
3675                   "vfModuleLabel": "ADIOD_base_vPE_BV"
3676                 },
3677                 "inputs": {},
3678                 "volumeGroupAllowed": false
3679               },
3680               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
3681                 "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
3682                 "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
3683                 "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
3684                 "description": null,
3685                 "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
3686                 "version": "8",
3687                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
3688                 "properties": {
3689                   "minCountInstances": 0,
3690                   "maxCountInstances": null,
3691                   "initialCount": 0,
3692                   "vfModuleLabel": "ADIOD_vPFE_BV"
3693                 },
3694                 "inputs": {
3695                   "2017488_adiodvpe0_availability_zone_0": {
3696                     "type": "string",
3697                     "description": "The Availability Zone to launch the instance.",
3698                     "entry_schema": null,
3699                     "inputProperties": {
3700                       "sourceType": "HEAT",
3701                       "vfModuleLabel": "ADIOD_vPFE_BV",
3702                       "paramName": "availability_zone_0"
3703                     },
3704                     "constraints": null,
3705                     "required": true,
3706                     "default": "mtpocfo-kvm-az01"
3707                   }
3708                 },
3709                 "volumeGroupAllowed": true
3710               }
3711             },
3712             "volumeGroups": {
3713               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
3714                 "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
3715                 "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
3716                 "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
3717                 "description": null,
3718                 "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
3719                 "version": "8",
3720                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
3721                 "properties": {
3722                   "minCountInstances": 0,
3723                   "maxCountInstances": null,
3724                   "initialCount": 0,
3725                   "vfModuleLabel": "ADIOD_vRE_BV"
3726                 },
3727                 "inputs": {
3728                   "2017488_adiodvpe0_bandwidth_units": {
3729                     "type": "string",
3730                     "description": "Units of bandwidth",
3731                     "entry_schema": null,
3732                     "inputProperties": {
3733                       "sourceType": "HEAT",
3734                       "vfModuleLabel": "ADIOD_vRE_BV",
3735                       "paramName": "bandwidth_units"
3736                     },
3737                     "constraints": null,
3738                     "required": true,
3739                     "default": "Gbps"
3740                   },
3741                   "2017488_adiodvpe0_bandwidth": {
3742                     "type": "string",
3743                     "description": "Requested VPE bandwidth",
3744                     "entry_schema": null,
3745                     "inputProperties": {
3746                       "sourceType": "HEAT",
3747                       "vfModuleLabel": "ADIOD_vRE_BV",
3748                       "paramName": "bandwidth"
3749                     },
3750                     "constraints": null,
3751                     "required": true,
3752                     "default": "10"
3753                   },
3754                   "2017488_adiodvpe0_vnf_instance_name": {
3755                     "type": "string",
3756                     "description": "The hostname assigned to the vpe.",
3757                     "entry_schema": null,
3758                     "inputProperties": {
3759                       "sourceType": "HEAT",
3760                       "vfModuleLabel": "ADIOD_vRE_BV",
3761                       "paramName": "vnf_instance_name"
3762                     },
3763                     "constraints": null,
3764                     "required": true,
3765                     "default": "mtnj309me6"
3766                   },
3767                   "2017488_adiodvpe0_vnf_config_template_version": {
3768                     "type": "string",
3769                     "description": "VPE Software Version",
3770                     "entry_schema": null,
3771                     "inputProperties": {
3772                       "sourceType": "HEAT",
3773                       "vfModuleLabel": "ADIOD_vRE_BV",
3774                       "paramName": "vnf_config_template_version"
3775                     },
3776                     "constraints": null,
3777                     "required": true,
3778                     "default": "17.2"
3779                   },
3780                   "2017488_adiodvpe0_AIC_CLLI": {
3781                     "type": "string",
3782                     "description": "AIC Site CLLI",
3783                     "entry_schema": null,
3784                     "inputProperties": {
3785                       "sourceType": "HEAT",
3786                       "vfModuleLabel": "ADIOD_vRE_BV",
3787                       "paramName": "AIC_CLLI"
3788                     },
3789                     "constraints": null,
3790                     "required": true,
3791                     "default": "ATLMY8GA"
3792                   }
3793                 }
3794               },
3795               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
3796                 "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
3797                 "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
3798                 "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
3799                 "description": null,
3800                 "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
3801                 "version": "8",
3802                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
3803                 "properties": {
3804                   "minCountInstances": 0,
3805                   "maxCountInstances": null,
3806                   "initialCount": 0,
3807                   "vfModuleLabel": "ADIOD_vPFE_BV"
3808                 },
3809                 "inputs": {
3810                   "2017488_adiodvpe0_availability_zone_0": {
3811                     "type": "string",
3812                     "description": "The Availability Zone to launch the instance.",
3813                     "entry_schema": null,
3814                     "inputProperties": {
3815                       "sourceType": "HEAT",
3816                       "vfModuleLabel": "ADIOD_vPFE_BV",
3817                       "paramName": "availability_zone_0"
3818                     },
3819                     "constraints": null,
3820                     "required": true,
3821                     "default": "mtpocfo-kvm-az01"
3822                   }
3823                 }
3824               }
3825             },
3826             "pnfs": {}
3827           },
3828           "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
3829             "service": {
3830               "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
3831               "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
3832               "name": "ComplexService",
3833               "version": "1.0",
3834               "toscaModelURL": null,
3835               "category": "Emanuel",
3836               "serviceType": "",
3837               "serviceRole": "",
3838               "description": "ComplexService",
3839               "serviceEcompNaming": "true",
3840               "instantiationType": "Macro",
3841               "inputs": {}
3842             },
3843             "vnfs": {
3844               "VF_vMee 0": {
3845                 "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60",
3846                 "invariantUuid": "4160458e-f648-4b30-a176-43881ffffe9e",
3847                 "description": "VSP_vMee",
3848                 "name": "VF_vMee",
3849                 "version": "2.0",
3850                 "customizationUuid": "91415b44-753d-494c-926a-456a9172bbb9",
3851                 "inputs": {},
3852                 "commands": {},
3853                 "properties": {
3854                   "gpb2_Internal2_mac": "00:11:22:EF:AC:DF",
3855                   "sctp-b-ipv6-egress_src_start_port": "0",
3856                   "sctp-a-ipv6-egress_rule_application": "any",
3857                   "Internal2_allow_transit": "true",
3858                   "sctp-b-IPv6_ethertype": "IPv6",
3859                   "sctp-a-egress_rule_application": "any",
3860                   "sctp-b-ingress_action": "pass",
3861                   "sctp-b-ingress_rule_protocol": "icmp",
3862                   "ncb2_Internal1_mac": "00:11:22:EF:AC:DF",
3863                   "sctp-b-ipv6-ingress-src_start_port": "0.0",
3864                   "ncb1_Internal2_mac": "00:11:22:EF:AC:DF",
3865                   "fsb_volume_size_0": "320.0",
3866                   "sctp-b-egress_src_addresses": "local",
3867                   "sctp-a-ipv6-ingress_ethertype": "IPv4",
3868                   "sctp-a-ipv6-ingress-dst_start_port": "0",
3869                   "sctp-b-ipv6-ingress_rule_application": "any",
3870                   "domain_name": "default-domain",
3871                   "sctp-a-ingress_rule_protocol": "icmp",
3872                   "sctp-b-egress-src_start_port": "0.0",
3873                   "sctp-a-egress_src_addresses": "local",
3874                   "sctp-b-display_name": "epc-sctp-b-ipv4v6-sec-group",
3875                   "sctp-a-egress-src_start_port": "0.0",
3876                   "sctp-a-ingress_ethertype": "IPv4",
3877                   "sctp-b-ipv6-ingress-dst_end_port": "65535",
3878                   "sctp-b-dst_subnet_prefix_v6": "::",
3879                   "nf_naming": "{ecomp_generated_naming=true}",
3880                   "sctp-a-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
3881                   "sctp-b-egress-dst_start_port": "0.0",
3882                   "ncb_flavor_name": "nv.c20r64d1",
3883                   "gpb1_Internal1_mac": "00:11:22:EF:AC:DF",
3884                   "sctp-b-egress_dst_subnet_prefix_len": "0.0",
3885                   "Internal2_net_cidr": "10.0.0.10",
3886                   "sctp-a-ingress-dst_start_port": "0.0",
3887                   "sctp-a-egress-dst_start_port": "0.0",
3888                   "fsb1_Internal2_mac": "00:11:22:EF:AC:DF",
3889                   "sctp-a-egress_ethertype": "IPv4",
3890                   "vlc_st_service_mode": "in-network-nat",
3891                   "sctp-a-ipv6-egress_ethertype": "IPv4",
3892                   "sctp-a-egress-src_end_port": "65535.0",
3893                   "sctp-b-ipv6-egress_rule_application": "any",
3894                   "sctp-b-egress_action": "pass",
3895                   "sctp-a-ingress-src_subnet_prefix_len": "0.0",
3896                   "sctp-b-ipv6-ingress-src_end_port": "65535.0",
3897                   "sctp-b-name": "epc-sctp-b-ipv4v6-sec-group",
3898                   "fsb2_Internal1_mac": "00:11:22:EF:AC:DF",
3899                   "sctp-a-ipv6-ingress-src_start_port": "0.0",
3900                   "sctp-b-ipv6-egress_ethertype": "IPv4",
3901                   "Internal1_net_cidr": "10.0.0.10",
3902                   "sctp-a-egress_dst_subnet_prefix": "0.0.0.0",
3903                   "fsb_flavor_name": "nv.c20r64d1",
3904                   "sctp_rule_protocol": "132",
3905                   "sctp-b-ipv6-ingress_src_subnet_prefix_len": "0",
3906                   "sctp-a-ipv6-ingress_rule_application": "any",
3907                   "ecomp_generated_naming": "true",
3908                   "sctp-a-IPv6_ethertype": "IPv6",
3909                   "vlc2_Internal1_mac": "00:11:22:EF:AC:DF",
3910                   "vlc_st_virtualization_type": "virtual-machine",
3911                   "sctp-b-ingress-dst_start_port": "0.0",
3912                   "sctp-b-ingress-dst_end_port": "65535.0",
3913                   "sctp-a-ipv6-ingress-src_end_port": "65535.0",
3914                   "sctp-a-display_name": "epc-sctp-a-ipv4v6-sec-group",
3915                   "sctp-b-ingress_rule_application": "any",
3916                   "int2_sec_group_name": "int2-sec-group",
3917                   "vlc_flavor_name": "nd.c16r64d1",
3918                   "sctp-b-ipv6-egress_src_addresses": "local",
3919                   "vlc_st_interface_type_int1": "other1",
3920                   "sctp-b-egress-src_end_port": "65535.0",
3921                   "sctp-a-ipv6-egress-dst_start_port": "0",
3922                   "vlc_st_interface_type_int2": "other2",
3923                   "sctp-a-ipv6-egress_rule_protocol": "any",
3924                   "Internal2_shared": "false",
3925                   "sctp-a-ipv6-egress_dst_subnet_prefix_len": "0",
3926                   "Internal2_rpf": "disable",
3927                   "vlc1_Internal1_mac": "00:11:22:EF:AC:DF",
3928                   "sctp-b-ipv6-egress_src_end_port": "65535",
3929                   "sctp-a-ipv6-egress_src_addresses": "local",
3930                   "sctp-a-ingress-dst_end_port": "65535.0",
3931                   "sctp-a-ipv6-egress_src_end_port": "65535",
3932                   "Internal1_forwarding_mode": "l2",
3933                   "Internal2_dhcp": "false",
3934                   "sctp-a-dst_subnet_prefix_v6": "::",
3935                   "pxe_image_name": "MME_PXE-Boot_16ACP04_GA.qcow2",
3936                   "vlc_st_interface_type_gtp": "other0",
3937                   "ncb1_Internal1_mac": "00:11:22:EF:AC:DF",
3938                   "sctp-b-src_subnet_prefix_v6": "::",
3939                   "sctp-a-egress_dst_subnet_prefix_len": "0.0",
3940                   "int1_sec_group_name": "int1-sec-group",
3941                   "Internal1_dhcp": "false",
3942                   "sctp-a-ipv6-egress_dst_end_port": "65535",
3943                   "Internal2_forwarding_mode": "l2",
3944                   "fsb2_Internal2_mac": "00:11:22:EF:AC:DF",
3945                   "sctp-b-egress_dst_subnet_prefix": "0.0.0.0",
3946                   "Internal1_net_cidr_len": "17",
3947                   "gpb2_Internal1_mac": "00:11:22:EF:AC:DF",
3948                   "sctp-b-ingress-src_subnet_prefix_len": "0.0",
3949                   "sctp-a-ingress_dst_addresses": "local",
3950                   "sctp-a-egress_action": "pass",
3951                   "fsb_volume_type_0": "SF-Default-SSD",
3952                   "ncb2_Internal2_mac": "00:11:22:EF:AC:DF",
3953                   "vlc_st_interface_type_sctp_a": "left",
3954                   "vlc_st_interface_type_sctp_b": "right",
3955                   "sctp-a-src_subnet_prefix_v6": "::",
3956                   "vlc_st_version": "2",
3957                   "sctp-b-egress_ethertype": "IPv4",
3958                   "sctp-a-ingress_rule_application": "any",
3959                   "gpb1_Internal2_mac": "00:11:22:EF:AC:DF",
3960                   "instance_ip_family_v6": "v6",
3961                   "sctp-a-ipv6-egress_src_start_port": "0",
3962                   "sctp-b-ingress-src_start_port": "0.0",
3963                   "sctp-b-ingress_dst_addresses": "local",
3964                   "fsb1_Internal1_mac": "00:11:22:EF:AC:DF",
3965                   "vlc_st_interface_type_oam": "management",
3966                   "multi_stage_design": "false",
3967                   "oam_sec_group_name": "oam-sec-group",
3968                   "Internal2_net_gateway": "10.0.0.10",
3969                   "sctp-a-ipv6-ingress-dst_end_port": "65535",
3970                   "sctp-b-ipv6-egress-dst_start_port": "0",
3971                   "Internal1_net_gateway": "10.0.0.10",
3972                   "sctp-b-ipv6-egress_rule_protocol": "any",
3973                   "gtp_sec_group_name": "gtp-sec-group",
3974                   "sctp-a-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
3975                   "sctp-b-ipv6-egress_dst_subnet_prefix_len": "0",
3976                   "sctp-a-ipv6-ingress_dst_addresses": "local",
3977                   "sctp-a-egress_rule_protocol": "icmp",
3978                   "sctp-b-ipv6-egress_action": "pass",
3979                   "sctp-a-ipv6-egress_action": "pass",
3980                   "Internal1_shared": "false",
3981                   "sctp-b-ipv6-ingress_rule_protocol": "any",
3982                   "Internal2_net_cidr_len": "17",
3983                   "sctp-a-name": "epc-sctp-a-ipv4v6-sec-group",
3984                   "sctp-a-ingress-src_end_port": "65535.0",
3985                   "sctp-b-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
3986                   "sctp-a-egress-dst_end_port": "65535.0",
3987                   "sctp-a-ingress_action": "pass",
3988                   "sctp-b-egress_rule_protocol": "icmp",
3989                   "sctp-b-ipv6-ingress_action": "pass",
3990                   "vlc_st_service_type": "firewall",
3991                   "sctp-b-ipv6-egress_dst_end_port": "65535",
3992                   "sctp-b-ipv6-ingress-dst_start_port": "0",
3993                   "vlc2_Internal2_mac": "00:11:22:EF:AC:DF",
3994                   "vlc_st_availability_zone": "true",
3995                   "fsb_volume_image_name_1": "MME_FSB2_16ACP04_GA.qcow2",
3996                   "sctp-b-ingress-src_subnet_prefix": "0.0.0.0",
3997                   "sctp-a-ipv6-ingress_src_subnet_prefix_len": "0",
3998                   "Internal1_allow_transit": "true",
3999                   "gpb_flavor_name": "nv.c20r64d1",
4000                   "availability_zone_max_count": "1",
4001                   "fsb_volume_image_name_0": "MME_FSB1_16ACP04_GA.qcow2",
4002                   "sctp-b-ipv6-ingress_dst_addresses": "local",
4003                   "sctp-b-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
4004                   "sctp-b-ipv6-ingress_ethertype": "IPv4",
4005                   "vlc1_Internal2_mac": "00:11:22:EF:AC:DF",
4006                   "sctp-a-ingress-src_subnet_prefix": "0.0.0.0",
4007                   "sctp-a-ipv6-ingress_action": "pass",
4008                   "Internal1_rpf": "disable",
4009                   "sctp-b-ingress_ethertype": "IPv4",
4010                   "sctp-b-egress_rule_application": "any",
4011                   "sctp-b-ingress-src_end_port": "65535.0",
4012                   "sctp-a-ipv6-ingress_rule_protocol": "any",
4013                   "sctp-a-ingress-src_start_port": "0.0",
4014                   "sctp-b-egress-dst_end_port": "65535.0"
4015                 },
4016                 "type": "VF",
4017                 "modelCustomizationName": "VF_vMee 0",
4018                 "vfModules": {
4019                   "vf_vmee0..VfVmee..vmme_vlc..module-1": {
4020                     "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
4021                     "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
4022                     "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
4023                     "description": null,
4024                     "name": "VfVmee..vmme_vlc..module-1",
4025                     "version": "2",
4026                     "modelCustomizationName": "VfVmee..vmme_vlc..module-1",
4027                     "properties": {
4028                       "minCountInstances": 0,
4029                       "maxCountInstances": null,
4030                       "initialCount": 0,
4031                       "vfModuleLabel": "vmme_vlc"
4032                     },
4033                     "inputs": {},
4034                     "volumeGroupAllowed": false
4035                   },
4036                   "vf_vmee0..VfVmee..vmme_gpb..module-2": {
4037                     "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
4038                     "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
4039                     "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
4040                     "description": null,
4041                     "name": "VfVmee..vmme_gpb..module-2",
4042                     "version": "2",
4043                     "modelCustomizationName": "VfVmee..vmme_gpb..module-2",
4044                     "properties": {
4045                       "minCountInstances": 0,
4046                       "maxCountInstances": null,
4047                       "initialCount": 0,
4048                       "vfModuleLabel": "vmme_gpb"
4049                     },
4050                     "inputs": {},
4051                     "volumeGroupAllowed": false
4052                   },
4053                   "vf_vmee0..VfVmee..base_vmme..module-0": {
4054                     "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
4055                     "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
4056                     "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
4057                     "description": null,
4058                     "name": "VfVmee..base_vmme..module-0",
4059                     "version": "2",
4060                     "modelCustomizationName": "VfVmee..base_vmme..module-0",
4061                     "properties": {
4062                       "minCountInstances": 1,
4063                       "maxCountInstances": 1,
4064                       "initialCount": 1,
4065                       "vfModuleLabel": "base_vmme"
4066                     },
4067                     "inputs": {},
4068                     "volumeGroupAllowed": true
4069                   }
4070                 },
4071                 "volumeGroups": {
4072                   "vf_vmee0..VfVmee..base_vmme..module-0": {
4073                     "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
4074                     "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
4075                     "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
4076                     "description": null,
4077                     "name": "VfVmee..base_vmme..module-0",
4078                     "version": "2",
4079                     "modelCustomizationName": "VfVmee..base_vmme..module-0",
4080                     "properties": {
4081                       "minCountInstances": 1,
4082                       "maxCountInstances": 1,
4083                       "initialCount": 1,
4084                       "vfModuleLabel": "base_vmme"
4085                     },
4086                     "inputs": {}
4087                   }
4088                 },
4089                 "vfcInstanceGroups": {}
4090               }
4091             },
4092             "networks": {
4093               "ExtVL 0": {
4094                 "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
4095                 "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
4096                 "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
4097                 "name": "ExtVL",
4098                 "version": "37.0",
4099                 "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
4100                 "inputs": {},
4101                 "commands": {},
4102                 "properties": {
4103                   "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}}",
4104                   "exVL_naming": "{ecomp_generated_naming=true}",
4105                   "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
4106                   "network_homing": "{ecomp_selected_instance_node_target=false}"
4107                 },
4108                 "type": "VL",
4109                 "modelCustomizationName": "ExtVL 0"
4110               }
4111             },
4112             "collectionResource": {},
4113             "configurations": {
4114               "Port Mirroring Configuration By Policy 0": {
4115                 "uuid": "b4398538-e89d-4f13-b33d-ca323434ba50",
4116                 "invariantUuid": "6ef0ca40-f366-4897-951f-abd65d25f6f7",
4117                 "description": "A port mirroring configuration by policy object",
4118                 "name": "Port Mirroring Configuration By Policy",
4119                 "version": "27.0",
4120                 "customizationUuid": "3c3b7b8d-8669-4b3b-8664-61970041fad2",
4121                 "inputs": {},
4122                 "commands": {},
4123                 "properties": {},
4124                 "type": "Configuration",
4125                 "modelCustomizationName": "Port Mirroring Configuration By Policy 0",
4126                 "sourceNodes": [],
4127                 "collectorNodes": null,
4128                 "configurationByPolicy": false
4129               }
4130             },
4131             "serviceProxies": {},
4132             "vfModules": {
4133               "vf_vmee0..VfVmee..vmme_vlc..module-1": {
4134                 "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
4135                 "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
4136                 "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
4137                 "description": null,
4138                 "name": "VfVmee..vmme_vlc..module-1",
4139                 "version": "2",
4140                 "modelCustomizationName": "VfVmee..vmme_vlc..module-1",
4141                 "properties": {
4142                   "minCountInstances": 0,
4143                   "maxCountInstances": null,
4144                   "initialCount": 0,
4145                   "vfModuleLabel": "vmme_vlc"
4146                 },
4147                 "inputs": {},
4148                 "volumeGroupAllowed": false
4149               },
4150               "vf_vmee0..VfVmee..vmme_gpb..module-2": {
4151                 "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
4152                 "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
4153                 "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
4154                 "description": null,
4155                 "name": "VfVmee..vmme_gpb..module-2",
4156                 "version": "2",
4157                 "modelCustomizationName": "VfVmee..vmme_gpb..module-2",
4158                 "properties": {
4159                   "minCountInstances": 0,
4160                   "maxCountInstances": null,
4161                   "initialCount": 0,
4162                   "vfModuleLabel": "vmme_gpb"
4163                 },
4164                 "inputs": {},
4165                 "volumeGroupAllowed": false
4166               },
4167               "vf_vmee0..VfVmee..base_vmme..module-0": {
4168                 "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
4169                 "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
4170                 "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
4171                 "description": null,
4172                 "name": "VfVmee..base_vmme..module-0",
4173                 "version": "2",
4174                 "modelCustomizationName": "VfVmee..base_vmme..module-0",
4175                 "properties": {
4176                   "minCountInstances": 1,
4177                   "maxCountInstances": 1,
4178                   "initialCount": 1,
4179                   "vfModuleLabel": "base_vmme"
4180                 },
4181                 "inputs": {},
4182                 "volumeGroupAllowed": true
4183               }
4184             },
4185             "volumeGroups": {
4186               "vf_vmee0..VfVmee..base_vmme..module-0": {
4187                 "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
4188                 "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
4189                 "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
4190                 "description": null,
4191                 "name": "VfVmee..base_vmme..module-0",
4192                 "version": "2",
4193                 "modelCustomizationName": "VfVmee..base_vmme..module-0",
4194                 "properties": {
4195                   "minCountInstances": 1,
4196                   "maxCountInstances": 1,
4197                   "initialCount": 1,
4198                   "vfModuleLabel": "base_vmme"
4199                 },
4200                 "inputs": {}
4201               }
4202             },
4203             "pnfs": {}
4204           }
4205         },
4206         "serviceInstance": {
4207           "f4d84bb4-a416-4b4e-997e-0059973630b9": {
4208             "vnfs": {
4209               "2017-488_ADIOD-vPE 0": {
4210                 "rollbackOnFailure": "true",
4211                 "vfModules": {
4212                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
4213                     "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0jkyqv": {
4214                       "isMissingData": false,
4215                       "sdncPreReload": null,
4216                       "modelInfo": {
4217                         "modelType": "VFmodule",
4218                         "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
4219                         "modelVersionId": "040e591e-5d30-4e0d-850f-7266e5a8e013",
4220                         "modelName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
4221                         "modelVersion": "6",
4222                         "modelCustomizationId": "5c5f91f9-5e31-4120-b892-5536587ec258",
4223                         "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0"
4224                       },
4225                       "instanceParams": [
4226                         {}
4227                       ],
4228                       "trackById": "n2ydptuy9lj"
4229                     }
4230                   }
4231                 },
4232                 "isMissingData": false,
4233                 "originalName": null,
4234                 "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
4235                 "lcpCloudRegionId": null,
4236                 "tenantId": null,
4237                 "lineOfBusiness": null,
4238                 "platformName": null,
4239                 "modelInfo": {
4240                   "modelType": "VF",
4241                   "modelInvariantId": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
4242                   "modelVersionId": "f4d84bb4-a416-4b4e-997e-0059973630b9",
4243                   "modelName": "2017-488_ADIOD-vPE",
4244                   "modelVersion": "9.0",
4245                   "modelCustomizationName": "2017-488_ADIOD-vPE 0"
4246                 },
4247                 "trackById": "iapflwk8bip"
4248               },
4249               "2017-488_ADIOD-vPE 0:0001": {
4250                 "rollbackOnFailure": "true",
4251                 "vfModules": {
4252                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
4253                     "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0jkyqv": {
4254                       "isMissingData": false,
4255                       "sdncPreReload": null,
4256                       "modelInfo": {
4257                         "modelType": "VFmodule",
4258                         "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
4259                         "modelVersionId": "040e591e-5d30-4e0d-850f-7266e5a8e013",
4260                         "modelName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
4261                         "modelVersion": "6",
4262                         "modelCustomizationId": "5c5f91f9-5e31-4120-b892-5536587ec258",
4263                         "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0"
4264                       },
4265                       "instanceParams": [
4266                         {}
4267                       ],
4268                       "trackById": "wh18xgy0dc"
4269                     }
4270                   }
4271                 },
4272                 "isMissingData": true,
4273                 "originalName": "2017-488_ADIOD-vPE 0",
4274                 "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
4275                 "lcpCloudRegionId": null,
4276                 "tenantId": null,
4277                 "lineOfBusiness": null,
4278                 "platformName": null,
4279                 "modelInfo": {
4280                   "modelType": "VF",
4281                   "modelInvariantId": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
4282                   "modelVersionId": "f4d84bb4-a416-4b4e-997e-0059973630b9",
4283                   "modelName": "2017-488_ADIOD-vPE",
4284                   "modelVersion": "9.0",
4285                   "modelCustomizationName": "2017-488_ADIOD-vPE 0"
4286                 },
4287                 "trackById": "iapflwk8bip"
4288               }
4289             },
4290             "instanceParams": [
4291               {
4292                 "2017488_adiodvpe0_ASN": "AV_vPE"
4293               }
4294             ],
4295             "validationCounter": 1,
4296             "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
4297             "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
4298             "subscriptionServiceType": "TYLER SILVIA",
4299             "lcpCloudRegionId": "JANET25",
4300             "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
4301             "aicZoneId": "JAG1",
4302             "projectName": "x1",
4303             "owningEntityId": "aaa1",
4304             "rollbackOnFailure": "true",
4305             "bulkSize": 1,
4306             "modelInfo": {
4307               "modelInvariantId": "598e3f9e-3244-4d8f-a8e0-0e5d7a29eda9",
4308               "modelVersionId": "f4d84bb4-a416-4b4e-997e-0059973630b9",
4309               "modelName": "ADIOD vMX vPE_BV Service 488",
4310               "modelVersion": "1.0"
4311             },
4312             "existingVNFCounterMap": {
4313               "91415b44-753d-494c-926a-456a9172bbb9": 1
4314             },
4315             "existingNetworksCounterMap": {},
4316             "tenantName": "USP-SIP-IC-24335-T-01",
4317             "aicZoneName": "YUDFJULP-JAG1"
4318           }
4319         },
4320         "lcpRegionsAndTenants": {
4321           "lcpRegionList": [
4322             {
4323               "id": "JANET25",
4324               "name": "JANET25",
4325               "isPermitted": true
4326             },
4327             {
4328               "id": "hvf6",
4329               "name": "hvf6",
4330               "isPermitted": true
4331             }
4332           ],
4333           "lcpRegionsTenantsMap": {
4334             "JANET25": [
4335               {
4336                 "id": "092eb9e8e4b7412e8787dd091bc58e86",
4337                 "name": "USP-SIP-IC-24335-T-01",
4338                 "isPermitted": true
4339               }
4340             ],
4341             "hvf6": [
4342               {
4343                 "id": "bae71557c5bb4d5aac6743a4e5f1d054",
4344                 "name": "AIN Web Tool-15-D-testalexandria",
4345                 "isPermitted": true
4346               },
4347               {
4348                 "id": "229bcdc6eaeb4ca59d55221141d01f8e",
4349                 "name": "AIN Web Tool-15-D-STTest2",
4350                 "isPermitted": true
4351               },
4352               {
4353                 "id": "1178612d2b394be4834ad77f567c0af2",
4354                 "name": "AIN Web Tool-15-D-SSPtestcustome",
4355                 "isPermitted": true
4356               },
4357               {
4358                 "id": "19c5ade915eb461e8af52fb2fd8cd1f2",
4359                 "name": "AIN Web Tool-15-D-UncheckedEcopm",
4360                 "isPermitted": true
4361               },
4362               {
4363                 "id": "de007636e25249238447264a988a927b",
4364                 "name": "AIN Web Tool-15-D-dfsdf",
4365                 "isPermitted": true
4366               },
4367               {
4368                 "id": "62f29b3613634ca6a3065cbe0e020c44",
4369                 "name": "AIN/SMS-16-D-Multiservices1",
4370                 "isPermitted": true
4371               },
4372               {
4373                 "id": "649289e30d3244e0b48098114d63c2aa",
4374                 "name": "AIN Web Tool-15-D-SSPST66",
4375                 "isPermitted": true
4376               },
4377               {
4378                 "id": "3f21eeea6c2c486bba31dab816c05a32",
4379                 "name": "AIN Web Tool-15-D-ASSPST47",
4380                 "isPermitted": true
4381               },
4382               {
4383                 "id": "f60ce21d3ee6427586cff0d22b03b773",
4384                 "name": "CESAR-100-D-sspjg67246",
4385                 "isPermitted": true
4386               },
4387               {
4388                 "id": "8774659e425f479895ae091bb5d46560",
4389                 "name": "CESAR-100-D-sspjg68359",
4390                 "isPermitted": true
4391               },
4392               {
4393                 "id": "624eb554b0d147c19ff8885341760481",
4394                 "name": "AINWebTool-15-D-iftach",
4395                 "isPermitted": true
4396               },
4397               {
4398                 "id": "214f55f5fc414c678059c383b03e4962",
4399                 "name": "CESAR-100-D-sspjg612401",
4400                 "isPermitted": true
4401               },
4402               {
4403                 "id": "c90666c291664841bb98e4d981ff1db5",
4404                 "name": "CESAR-100-D-sspjg621340",
4405                 "isPermitted": true
4406               },
4407               {
4408                 "id": "ce5b6bc5c7b348e1bf4b91ac9a174278",
4409                 "name": "sspjg621351cloned",
4410                 "isPermitted": true
4411               },
4412               {
4413                 "id": "b386b768a3f24c8e953abbe0b3488c02",
4414                 "name": "AINWebTool-15-D-eteancomp",
4415                 "isPermitted": true
4416               },
4417               {
4418                 "id": "dc6c4dbfd225474e9deaadd34968646c",
4419                 "name": "AINWebTool-15-T-SPFET",
4420                 "isPermitted": true
4421               },
4422               {
4423                 "id": "02cb5030e9914aa4be120bd9ed1e19eb",
4424                 "name": "AINWebTool-15-X-eeweww",
4425                 "isPermitted": true
4426               },
4427               {
4428                 "id": "f2f3830e4c984d45bcd00e1a04158a79",
4429                 "name": "CESAR-100-D-spjg61909",
4430                 "isPermitted": true
4431               },
4432               {
4433                 "id": "05b91bd5137f4929878edd965755c06d",
4434                 "name": "CESAR-100-D-sspjg621512cloned",
4435                 "isPermitted": true
4436               },
4437               {
4438                 "id": "7002fbe8482d4a989ddf445b1ce336e0",
4439                 "name": "AINWebTool-15-X-vdr",
4440                 "isPermitted": true
4441               },
4442               {
4443                 "id": "4008522be43741dcb1f5422022a2aa0b",
4444                 "name": "AINWebTool-15-D-ssasa",
4445                 "isPermitted": true
4446               },
4447               {
4448                 "id": "f44e2e96a1b6476abfda2fa407b00169",
4449                 "name": "AINWebTool-15-D-PFNPT",
4450                 "isPermitted": true
4451               },
4452               {
4453                 "id": "b69a52bec8a84669a37a1e8b72708be7",
4454                 "name": "AINWebTool-15-X-vdre",
4455                 "isPermitted": true
4456               },
4457               {
4458                 "id": "fac7d9fd56154caeb9332202dcf2969f",
4459                 "name": "AINWebTool-15-X-NONPODECOMP",
4460                 "isPermitted": true
4461               },
4462               {
4463                 "id": "2d34d8396e194eb49969fd61ffbff961",
4464                 "name": "DN5242-Nov16-T5",
4465                 "isPermitted": true
4466               },
4467               {
4468                 "id": "cb42a77ff45b48a8b8deb83bb64acc74",
4469                 "name": "ro-T11",
4470                 "isPermitted": true
4471               },
4472               {
4473                 "id": "fa45ca53c80b492fa8be5477cd84fc2b",
4474                 "name": "ro-T112",
4475                 "isPermitted": true
4476               },
4477               {
4478                 "id": "4914ab0ab3a743e58f0eefdacc1dde77",
4479                 "name": "DN5242-Nov21-T1",
4480                 "isPermitted": true
4481               },
4482               {
4483                 "id": "d0a3e3f2964542259d155a81c41aadc3",
4484                 "name": "test-hvf6-09",
4485                 "isPermitted": true
4486               },
4487               {
4488                 "id": "cbb99fe4ada84631b7baf046b6fd2044",
4489                 "name": "DN5242-Nov16-T3",
4490                 "isPermitted": true
4491               }
4492             ]
4493           }
4494         },
4495         "subscribers": [
4496           {
4497             "id": "CAR_2020_ER",
4498             "name": "CAR_2020_ER",
4499             "isPermitted": true
4500           },
4501           {
4502             "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
4503             "name": "JULIO ERICKSON",
4504             "isPermitted": false
4505           },
4506           {
4507             "id": "DHV1707-TestSubscriber-2",
4508             "name": "DALE BRIDGES",
4509             "isPermitted": false
4510           },
4511           {
4512             "id": "DHV1707-TestSubscriber-1",
4513             "name": "LLOYD BRIDGES",
4514             "isPermitted": false
4515           },
4516           {
4517             "id": "jimmy-example",
4518             "name": "JimmyExampleCust-20161102",
4519             "isPermitted": false
4520           },
4521           {
4522             "id": "jimmy-example2",
4523             "name": "JimmyExampleCust-20161103",
4524             "isPermitted": false
4525           },
4526           {
4527             "id": "ERICA5779-TestSub-PWT-102",
4528             "name": "ERICA5779-TestSub-PWT-102",
4529             "isPermitted": false
4530           },
4531           {
4532             "id": "ERICA5779-TestSub-PWT-101",
4533             "name": "ERICA5779-TestSub-PWT-101",
4534             "isPermitted": false
4535           },
4536           {
4537             "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
4538             "name": "Emanuel",
4539             "isPermitted": false
4540           },
4541           {
4542             "id": "ERICA5779-Subscriber-4",
4543             "name": "ERICA5779-Subscriber-5",
4544             "isPermitted": false
4545           },
4546           {
4547             "id": "ERICA5779-TestSub-PWT-103",
4548             "name": "ERICA5779-TestSub-PWT-103",
4549             "isPermitted": false
4550           },
4551           {
4552             "id": "ERICA5779-Subscriber-2",
4553             "name": "ERICA5779-Subscriber-2",
4554             "isPermitted": false
4555           },
4556           {
4557             "id": "e433710f-9217-458d-a79d-1c7aff376d89",
4558             "name": "SILVIA ROBBINS",
4559             "isPermitted": true
4560           },
4561           {
4562             "id": "ERICA5779-Subscriber-3",
4563             "name": "ERICA5779-Subscriber-3",
4564             "isPermitted": false
4565           },
4566           {
4567             "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
4568             "name": "CRAIG/ROBERTS",
4569             "isPermitted": false
4570           }
4571         ],
4572         "productFamilies": [
4573           {
4574             "id": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
4575             "name": "SCOTTIE",
4576             "isPermitted": true
4577           },
4578           {
4579             "id": "17cc1042-527b-11e6-beb8-9e71128cae77",
4580             "name": "IGNACIO",
4581             "isPermitted": true
4582           },
4583           {
4584             "id": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
4585             "name": "Christie",
4586             "isPermitted": true
4587           },
4588           {
4589             "id": "a4f6f2ae-9bf5-4ed7-b904-06b2099c4bd7",
4590             "name": "Enhanced Services",
4591             "isPermitted": true
4592           },
4593           {
4594             "id": "vTerrance",
4595             "name": "vTerrance",
4596             "isPermitted": true
4597           },
4598           {
4599             "id": "323d69d9-2efe-4r45-ay0a-89ea7ard4e6f",
4600             "name": "vSCP",
4601             "isPermitted": true
4602           },
4603           {
4604             "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
4605             "name": "Emanuel",
4606             "isPermitted": true
4607           },
4608           {
4609             "id": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
4610             "name": "BVOIP",
4611             "isPermitted": true
4612           },
4613           {
4614             "id": "db171b8f-115c-4992-a2e3-ee04cae357e0",
4615             "name": "LINDSEY",
4616             "isPermitted": true
4617           },
4618           {
4619             "id": "LRSI-OSPF",
4620             "name": "LRSI-OSPF",
4621             "isPermitted": true
4622           },
4623           {
4624             "id": "vRosemarie",
4625             "name": "HNGATEWAY",
4626             "isPermitted": true
4627           },
4628           {
4629             "id": "vHNPaas",
4630             "name": "WILKINS",
4631             "isPermitted": true
4632           },
4633           {
4634             "id": "e433710f-9217-458d-a79d-1c7aff376d89",
4635             "name": "TYLER SILVIA",
4636             "isPermitted": true
4637           },
4638           {
4639             "id": "b6a3f28c-eebf-494c-a900-055cc7c874ce",
4640             "name": "VROUTER",
4641             "isPermitted": true
4642           },
4643           {
4644             "id": "Cisneros",
4645             "name": "vMuriel",
4646             "isPermitted": true
4647           },
4648           {
4649             "id": "0ee8c1bc-7cbd-4b0a-a1ac-e9999255abc1",
4650             "name": "CARA Griffin",
4651             "isPermitted": true
4652           },
4653           {
4654             "id": "c7611ebe-c324-48f1-8085-94aef0c6ef3d",
4655             "name": "DARREN MCGEE",
4656             "isPermitted": true
4657           },
4658           {
4659             "id": "e30755dc-5673-4b6b-9dcf-9abdd96b93d1",
4660             "name": "Transport",
4661             "isPermitted": true
4662           },
4663           {
4664             "id": "vSalvatore",
4665             "name": "vSalvatore",
4666             "isPermitted": true
4667           },
4668           {
4669             "id": "d7bb0a21-66f2-4e6d-87d9-9ef3ced63ae4",
4670             "name": "Josefina",
4671             "isPermitted": true
4672           },
4673           {
4674             "id": "vHubbard",
4675             "name": "vHubbard",
4676             "isPermitted": true
4677           },
4678           {
4679             "id": "12a96a9d-4b4c-4349-a950-fe1159602621",
4680             "name": "DARREN MCGEE",
4681             "isPermitted": true
4682           }
4683         ],
4684         "serviceTypes": {
4685           "e433710f-9217-458d-a79d-1c7aff376d89": [
4686             {
4687               "id": "0",
4688               "name": "vRichardson",
4689               "isPermitted": false
4690             },
4691             {
4692               "id": "1",
4693               "name": "TYLER SILVIA",
4694               "isPermitted": true
4695             },
4696             {
4697               "id": "2",
4698               "name": "Emanuel",
4699               "isPermitted": false
4700             },
4701             {
4702               "id": "3",
4703               "name": "vJamie",
4704               "isPermitted": false
4705             },
4706             {
4707               "id": "4",
4708               "name": "vVoiceMail",
4709               "isPermitted": false
4710             },
4711             {
4712               "id": "5",
4713               "name": "Kennedy",
4714               "isPermitted": false
4715             },
4716             {
4717               "id": "6",
4718               "name": "vSEGW",
4719               "isPermitted": false
4720             },
4721             {
4722               "id": "7",
4723               "name": "vVM",
4724               "isPermitted": false
4725             },
4726             {
4727               "id": "8",
4728               "name": "vOTA",
4729               "isPermitted": false
4730             },
4731             {
4732               "id": "9",
4733               "name": "vMME",
4734               "isPermitted": false
4735             },
4736             {
4737               "id": "10",
4738               "name": "vMNS",
4739               "isPermitted": false
4740             },
4741             {
4742               "id": "11",
4743               "name": "vSCP",
4744               "isPermitted": false
4745             },
4746             {
4747               "id": "12",
4748               "name": "VPMS",
4749               "isPermitted": false
4750             },
4751             {
4752               "id": "13",
4753               "name": "vMMSC",
4754               "isPermitted": false
4755             },
4756             {
4757               "id": "14",
4758               "name": "SSD",
4759               "isPermitted": false
4760             },
4761             {
4762               "id": "15",
4763               "name": "vMOG",
4764               "isPermitted": false
4765             },
4766             {
4767               "id": "16",
4768               "name": "LINDSEY",
4769               "isPermitted": false
4770             },
4771             {
4772               "id": "17",
4773               "name": "JOHANNA_SANTOS",
4774               "isPermitted": false
4775             },
4776             {
4777               "id": "18",
4778               "name": "vCarroll",
4779               "isPermitted": false
4780             }
4781           ]
4782         },
4783         "aicZones": [
4784           {
4785             "id": "NFT1",
4786             "name": "NFTJSSSS-NFT1"
4787           },
4788           {
4789             "id": "JAG1",
4790             "name": "YUDFJULP-JAG1"
4791           },
4792           {
4793             "id": "YYY1",
4794             "name": "UUUAIAAI-YYY1"
4795           },
4796           {
4797             "id": "BAN1",
4798             "name": "VSDKYUTP-BAN1"
4799           },
4800           {
4801             "id": "DKJ1",
4802             "name": "DKJSJDKA-DKJ1"
4803           },
4804           {
4805             "id": "MCS1",
4806             "name": "ASACMAMS-MCS1"
4807           },
4808           {
4809             "id": "UIO1",
4810             "name": "uioclli1-UIO1"
4811           },
4812           {
4813             "id": "RAJ1",
4814             "name": "YGBIJNLQ-RAJ1"
4815           },
4816           {
4817             "id": "OPA1",
4818             "name": "opaclli1-OPA1"
4819           },
4820           {
4821             "id": "SDE1",
4822             "name": "ZXCVBNMA-SDE1"
4823           },
4824           {
4825             "id": "VEN2",
4826             "name": "FGHJUHIL-VEN2"
4827           },
4828           {
4829             "id": "ORL1",
4830             "name": "ORLDFLMA-ORL1"
4831           },
4832           {
4833             "id": "JAD1",
4834             "name": "JADECLLI-JAD1"
4835           },
4836           {
4837             "id": "ZXL1",
4838             "name": "LWLWCANN-ZXL1"
4839           },
4840           {
4841             "id": "CKL1",
4842             "name": "CLKSKCKK-CKL1"
4843           },
4844           {
4845             "id": "SDF1",
4846             "name": "sdfclli1-SDF1"
4847           },
4848           {
4849             "id": "RAD1",
4850             "name": "RADICAL1-RAD1"
4851           },
4852           {
4853             "id": "KIT1",
4854             "name": "BHYJFGLN-KIT1"
4855           },
4856           {
4857             "id": "REL1",
4858             "name": "INGERFGT-REL1"
4859           },
4860           {
4861             "id": "JNL1",
4862             "name": "CJALSDAC-JNL1"
4863           },
4864           {
4865             "id": "OLK1",
4866             "name": "OLKOLKLS-OLK1"
4867           },
4868           {
4869             "id": "CHI1",
4870             "name": "CHILLIWE-CHI1"
4871           },
4872           {
4873             "id": "UUU4",
4874             "name": "UUUAAAUU-UUU4"
4875           },
4876           {
4877             "id": "TUF1",
4878             "name": "TUFCLLI1-TUF1"
4879           },
4880           {
4881             "id": "KJN1",
4882             "name": "CKALDKSA-KJN1"
4883           },
4884           {
4885             "id": "SAM1",
4886             "name": "SNDGCA64-SAN1"
4887           },
4888           {
4889             "id": "SCK1",
4890             "name": "SCKSCKSK-SCK1"
4891           },
4892           {
4893             "id": "HJH1",
4894             "name": "AOEEQQQD-HJH1"
4895           },
4896           {
4897             "id": "HGD1",
4898             "name": "SDFQWHGD-HGD1"
4899           },
4900           {
4901             "id": "KOR1",
4902             "name": "HYFLNBVT-KOR1"
4903           },
4904           {
4905             "id": "ATL43",
4906             "name": "AICLOCID-ATL43"
4907           },
4908           {
4909             "id": "ATL54",
4910             "name": "AICFTAAI-ATL54"
4911           },
4912           {
4913             "id": "ATL66",
4914             "name": "CLLIAAII-ATL66"
4915           },
4916           {
4917             "id": "VEL1",
4918             "name": "BNMLKUIK-VEL1"
4919           },
4920           {
4921             "id": "ICC1",
4922             "name": "SANJITAT-ICC1"
4923           },
4924           {
4925             "id": "MNT11",
4926             "name": "WSXEFBTH-MNT11"
4927           },
4928           {
4929             "id": "DEF2",
4930             "name": "WSBHGTYL-DEF2"
4931           },
4932           {
4933             "id": "MAD11",
4934             "name": "SDFQWGKL-MAD11"
4935           },
4936           {
4937             "id": "OLG1",
4938             "name": "OLHOLHOL-OLG1"
4939           },
4940           {
4941             "id": "GAR1",
4942             "name": "NGFVSJKO-GAR1"
4943           },
4944           {
4945             "id": "SAN22",
4946             "name": "GNVLSCTL-SAN22"
4947           },
4948           {
4949             "id": "HRG1",
4950             "name": "HRGHRGGS-HRG1"
4951           },
4952           {
4953             "id": "JCS1",
4954             "name": "JCSJSCJS-JCS1"
4955           },
4956           {
4957             "id": "DHA12",
4958             "name": "WSXEDECF-DHA12"
4959           },
4960           {
4961             "id": "HJE1",
4962             "name": "AOEEWWWD-HJE1"
4963           },
4964           {
4965             "id": "NCA1",
4966             "name": "NCANCANN-NCA1"
4967           },
4968           {
4969             "id": "IOP1",
4970             "name": "iopclli1-IOP1"
4971           },
4972           {
4973             "id": "RTY1",
4974             "name": "rtyclli1-RTY1"
4975           },
4976           {
4977             "id": "KAP1",
4978             "name": "HIOUYTRQ-KAP1"
4979           },
4980           {
4981             "id": "ZEN1",
4982             "name": "ZENCLLI1-ZEN1"
4983           },
4984           {
4985             "id": "HKA1",
4986             "name": "JAKHLASS-HKA1"
4987           },
4988           {
4989             "id": "CQK1",
4990             "name": "CQKSCAKK-CQK1"
4991           },
4992           {
4993             "id": "SAI1",
4994             "name": "UBEKQLPD-SAI1"
4995           },
4996           {
4997             "id": "ERT1",
4998             "name": "ertclli1-ERT1"
4999           },
5000           {
5001             "id": "IBB1",
5002             "name": "PLMKOIJU-IBB1"
5003           },
5004           {
5005             "id": "TIR2",
5006             "name": "PLKINHYI-TIR2"
5007           },
5008           {
5009             "id": "HSD1",
5010             "name": "CHASKCDS-HSD1"
5011           },
5012           {
5013             "id": "SLF78",
5014             "name": "SDCTLFN1-SLF78"
5015           },
5016           {
5017             "id": "SEE78",
5018             "name": "SDCTEEE4-SEE78"
5019           },
5020           {
5021             "id": "SAN13",
5022             "name": "TOKYJPFA-SAN13"
5023           },
5024           {
5025             "id": "SAA78",
5026             "name": "SDCTAAA1-SAA78"
5027           },
5028           {
5029             "id": "LUC1",
5030             "name": "ATLDFGYC-LUC1"
5031           },
5032           {
5033             "id": "AMD13",
5034             "name": "MEMATLAN-AMD13"
5035           },
5036           {
5037             "id": "TOR1",
5038             "name": "TOROONXN-TOR1"
5039           },
5040           {
5041             "id": "QWE1",
5042             "name": "QWECLLI1-QWE1"
5043           },
5044           {
5045             "id": "ZOG1",
5046             "name": "ZOGASTRO-ZOG1"
5047           },
5048           {
5049             "id": "CAL33",
5050             "name": "CALIFORN-CAL33"
5051           },
5052           {
5053             "id": "SHH78",
5054             "name": "SDIT1HHH-SHH78"
5055           },
5056           {
5057             "id": "DSA1",
5058             "name": "LKJHGFDS-DSA1"
5059           },
5060           {
5061             "id": "CLG1",
5062             "name": "CLGRABAD-CLG1"
5063           },
5064           {
5065             "id": "BNA1",
5066             "name": "BNARAGBK-BNA1"
5067           },
5068           {
5069             "id": "ATL84",
5070             "name": "CANTTCOC-ATL84"
5071           },
5072           {
5073             "id": "APP1",
5074             "name": "WBHGTYUI-APP1"
5075           },
5076           {
5077             "id": "RJN1",
5078             "name": "RJNRBZAW-RJN1"
5079           },
5080           {
5081             "id": "EHH78",
5082             "name": "SDCSHHH5-EHH78"
5083           },
5084           {
5085             "id": "mac10",
5086             "name": "PKGTESTF-mac10"
5087           },
5088           {
5089             "id": "SXB78",
5090             "name": "SDCTGXB1-SXB78"
5091           },
5092           {
5093             "id": "SAX78",
5094             "name": "SDCTAXG1-SAX78"
5095           },
5096           {
5097             "id": "SYD1",
5098             "name": "SYDNAUBV-SYD1"
5099           },
5100           {
5101             "id": "TOK1",
5102             "name": "TOKYJPFA-TOK1"
5103           },
5104           {
5105             "id": "KGM2",
5106             "name": "KGMTNC20-KGM2"
5107           },
5108           {
5109             "id": "DCC1b",
5110             "name": "POIUYTGH-DCC1b"
5111           },
5112           {
5113             "id": "SKK78",
5114             "name": "SDCTKKK1-SKK78"
5115           },
5116           {
5117             "id": "SGG78",
5118             "name": "SDCTGGG1-SGG78"
5119           },
5120           {
5121             "id": "SJJ78",
5122             "name": "SDCTJJJ1-SJJ78"
5123           },
5124           {
5125             "id": "SBX78",
5126             "name": "SDCTBXG1-SBX78"
5127           },
5128           {
5129             "id": "LAG1",
5130             "name": "LARGIZON-LAG1"
5131           },
5132           {
5133             "id": "IAA1",
5134             "name": "QAZXSWED-IAA1"
5135           },
5136           {
5137             "id": "POI1",
5138             "name": "PLMNJKIU-POI1"
5139           },
5140           {
5141             "id": "LAG1a",
5142             "name": "LARGIZON-LAG1a"
5143           },
5144           {
5145             "id": "PBL1",
5146             "name": "PBLAPBAI-PBL1"
5147           },
5148           {
5149             "id": "LAG45",
5150             "name": "LARGIZON-LAG1a"
5151           },
5152           {
5153             "id": "MAR1",
5154             "name": "MNBVCXZM-MAR1"
5155           },
5156           {
5157             "id": "HST70",
5158             "name": "HSTNTX70-HST70"
5159           },
5160           {
5161             "id": "DCC1a",
5162             "name": "POIUYTGH-DCC1a"
5163           },
5164           {
5165             "id": "TOL1",
5166             "name": "TOLDOH21-TOL1"
5167           },
5168           {
5169             "id": "LON1",
5170             "name": "LONEENCO-LON1"
5171           },
5172           {
5173             "id": "SJU78",
5174             "name": "SDIT1JUB-SJU78"
5175           },
5176           {
5177             "id": "STN27",
5178             "name": "HSTNTX01-STN27"
5179           },
5180           {
5181             "id": "SSW56",
5182             "name": "ss8126GT-SSW56"
5183           },
5184           {
5185             "id": "SBB78",
5186             "name": "SDIT1BBB-SBB78"
5187           },
5188           {
5189             "id": "DCC3",
5190             "name": "POIUYTGH-DCC3"
5191           },
5192           {
5193             "id": "GNV1",
5194             "name": "GNVLSCTL-GNV1"
5195           },
5196           {
5197             "id": "WAS1",
5198             "name": "WASHDCSW-WAS1"
5199           },
5200           {
5201             "id": "TOY1",
5202             "name": "TORYONNZ-TOY1"
5203           },
5204           {
5205             "id": "STT1",
5206             "name": "STTLWA02-STT1"
5207           },
5208           {
5209             "id": "STG1",
5210             "name": "STTGGE62-STG1"
5211           },
5212           {
5213             "id": "SLL78",
5214             "name": "SDCTLLL1-SLL78"
5215           },
5216           {
5217             "id": "SBU78",
5218             "name": "SDIT1BUB-SBU78"
5219           },
5220           {
5221             "id": "ATL2",
5222             "name": "ATLNGANW-ATL2"
5223           },
5224           {
5225             "id": "BOT1",
5226             "name": "BOTHWAKY-BOT1"
5227           },
5228           {
5229             "id": "SNG1",
5230             "name": "SNGPSIAU-SNG1"
5231           },
5232           {
5233             "id": "NYC1",
5234             "name": "NYCMNY54-NYC1"
5235           },
5236           {
5237             "id": "LAG1b",
5238             "name": "LARGIZON-LAG1b"
5239           },
5240           {
5241             "id": "AMD15",
5242             "name": "AMDFAA01-AMD15"
5243           },
5244           {
5245             "id": "SNA1",
5246             "name": "SNANTXCA-SNA1"
5247           },
5248           {
5249             "id": "PLT1",
5250             "name": "PLTNCA60-PLT1"
5251           },
5252           {
5253             "id": "TLP1",
5254             "name": "TLPNXM18-TLP1"
5255           },
5256           {
5257             "id": "SDD81",
5258             "name": "SAIT1DD6-SDD81"
5259           },
5260           {
5261             "id": "DCC1",
5262             "name": "POIUYTGH-DCC1"
5263           },
5264           {
5265             "id": "DCC2",
5266             "name": "POIUYTGH-DCC2"
5267           },
5268           {
5269             "id": "OKC1",
5270             "name": "OKCBOK55-OKC1"
5271           },
5272           {
5273             "id": "PAR1",
5274             "name": "PARSFRCG-PAR1"
5275           },
5276           {
5277             "id": "TES36",
5278             "name": "ABCEETES-TES36"
5279           },
5280           {
5281             "id": "COM1",
5282             "name": "PLMKOPIU-COM1"
5283           },
5284           {
5285             "id": "ANI1",
5286             "name": "ATLNGTRE-ANI1"
5287           },
5288           {
5289             "id": "SDG78",
5290             "name": "SDIT1BDG-SDG78"
5291           },
5292           {
5293             "id": "mac20",
5294             "name": "PKGTESTF-mac20"
5295           },
5296           {
5297             "id": "DSF45",
5298             "name": "DSFBG123-DSF45"
5299           },
5300           {
5301             "id": "HST25",
5302             "name": "HSTNTX01-HST25"
5303           },
5304           {
5305             "id": "AMD18",
5306             "name": "AUDIMA01-AMD18"
5307           },
5308           {
5309             "id": "SAA80",
5310             "name": "SAIT9AA3-SAA80"
5311           },
5312           {
5313             "id": "SSA56",
5314             "name": "SSIT2AA7-SSA56"
5315           },
5316           {
5317             "id": "SDD82",
5318             "name": "SAIT1DD9-SDD82"
5319           },
5320           {
5321             "id": "JCV1",
5322             "name": "JCVLFLBW-JCV1"
5323           },
5324           {
5325             "id": "SUL2",
5326             "name": "WERTYUJK-SUL2"
5327           },
5328           {
5329             "id": "PUR1",
5330             "name": "purelyde-PUR1"
5331           },
5332           {
5333             "id": "FDE55",
5334             "name": "FDERT555-FDE55"
5335           },
5336           {
5337             "id": "SITE",
5338             "name": "LONEENCO-SITE"
5339           },
5340           {
5341             "id": "ATL1",
5342             "name": "ATLNGAMA-ATL1"
5343           },
5344           {
5345             "id": "JUL1",
5346             "name": "ZXCVBNMM-JUL1"
5347           },
5348           {
5349             "id": "TAT34",
5350             "name": "TESAAISB-TAT34"
5351           },
5352           {
5353             "id": "XCP12",
5354             "name": "CHKGH123-XCP12"
5355           },
5356           {
5357             "id": "RAI1",
5358             "name": "poiuytre-RAI1"
5359           },
5360           {
5361             "id": "HPO1",
5362             "name": "ATLNGAUP-HPO1"
5363           },
5364           {
5365             "id": "KJF12",
5366             "name": "KJFDH123-KJF12"
5367           },
5368           {
5369             "id": "SCC80",
5370             "name": "SAIT9CC3-SCC80"
5371           },
5372           {
5373             "id": "SAA12",
5374             "name": "SAIT9AF8-SAA12"
5375           },
5376           {
5377             "id": "SAA14",
5378             "name": "SAIT1AA9-SAA14"
5379           },
5380           {
5381             "id": "ATL35",
5382             "name": "TTESSAAI-ATL35"
5383           },
5384           {
5385             "id": "CWY1",
5386             "name": "CWYMOWBS-CWY1"
5387           },
5388           {
5389             "id": "ATL76",
5390             "name": "TELEPAAI-ATL76"
5391           },
5392           {
5393             "id": "DSL12",
5394             "name": "DSLFK242-DSL12"
5395           },
5396           {
5397             "id": "ATL53",
5398             "name": "AAIATLTE-ATL53"
5399           },
5400           {
5401             "id": "SAA11",
5402             "name": "SAIT9AA2-SAA11"
5403           },
5404           {
5405             "id": "ATL62",
5406             "name": "TESSASCH-ATL62"
5407           },
5408           {
5409             "id": "AUG1",
5410             "name": "ASDFGHJK-AUG1"
5411           },
5412           {
5413             "id": "POI22",
5414             "name": "POIUY123-POI22"
5415           },
5416           {
5417             "id": "SAA13",
5418             "name": "SAIT1AA9-SAA13"
5419           },
5420           {
5421             "id": "BHY17",
5422             "name": "BHYTFRF3-BHY17"
5423           },
5424           {
5425             "id": "LIS1",
5426             "name": "HOSTPROF-LIS1"
5427           },
5428           {
5429             "id": "SIP1",
5430             "name": "ZXCVBNMK-SIP1"
5431           },
5432           {
5433             "id": "ATL99",
5434             "name": "TEESTAAI-ATL43"
5435           },
5436           {
5437             "id": "ATL64",
5438             "name": "FORLOAAJ-ATL64"
5439           },
5440           {
5441             "id": "TAT33",
5442             "name": "TESAAISA-TAT33"
5443           },
5444           {
5445             "id": "RAD10",
5446             "name": "INDIPUNE-RAD10"
5447           },
5448           {
5449             "id": "RTW5",
5450             "name": "BHYTFRY4-RTW5"
5451           },
5452           {
5453             "id": "JGS1",
5454             "name": "KSJKKKKK-JGS1"
5455           },
5456           {
5457             "id": "ATL98",
5458             "name": "TEESTAAI-ATL43"
5459           },
5460           {
5461             "id": "WAN1",
5462             "name": "LEIWANGW-WAN1"
5463           },
5464           {
5465             "id": "ATL44",
5466             "name": "ATLSANAB-ATL44"
5467           },
5468           {
5469             "id": "RTD2",
5470             "name": "BHYTFRk4-RTD2"
5471           },
5472           {
5473             "id": "NIR1",
5474             "name": "ORFLMANA-NIR1"
5475           },
5476           {
5477             "id": "ATL75",
5478             "name": "SANAAIRE-ATL75"
5479           },
5480           {
5481             "id": "NUM1",
5482             "name": "QWERTYUI-NUM1"
5483           },
5484           {
5485             "id": "MTN32",
5486             "name": "MDTWNJ21-MTN32"
5487           },
5488           {
5489             "id": "RTZ4",
5490             "name": "BHYTFRZ6-RTZ4"
5491           },
5492           {
5493             "id": "ATL56",
5494             "name": "ATLSANAC-ATL56"
5495           },
5496           {
5497             "id": "AMS1",
5498             "name": "AMSTNLBW-AMS1"
5499           },
5500           {
5501             "id": "RCT1",
5502             "name": "AMSTERNL-RCT1"
5503           },
5504           {
5505             "id": "JAN1",
5506             "name": "ORFLMATT-JAN1"
5507           },
5508           {
5509             "id": "ABC14",
5510             "name": "TESAAISA-ABC14"
5511           },
5512           {
5513             "id": "TAT37",
5514             "name": "TESAAISD-TAT37"
5515           },
5516           {
5517             "id": "MIC54",
5518             "name": "MICHIGAN-MIC54"
5519           },
5520           {
5521             "id": "ABC11",
5522             "name": "ATLSANAI-ABC11"
5523           },
5524           {
5525             "id": "AMF11",
5526             "name": "AMDOCS01-AMF11"
5527           },
5528           {
5529             "id": "ATL63",
5530             "name": "ATLSANEW-ATL63"
5531           },
5532           {
5533             "id": "ABC12",
5534             "name": "ATLSECIA-ABC12"
5535           },
5536           {
5537             "id": "MTN20",
5538             "name": "MDTWNJ21-MTN20"
5539           },
5540           {
5541             "id": "ABC15",
5542             "name": "AAITESAN-ABC15"
5543           },
5544           {
5545             "id": "AVT1",
5546             "name": "AVTRFLHD-AVT1"
5547           },
5548           {
5549             "id": "ATL34",
5550             "name": "ATLSANAI-ATL34"
5551           }
5552         ],
5553         "categoryParameters": {
5554           "owningEntityList": [
5555             {
5556               "id": "aaa1",
5557               "name": "aaa1"
5558             },
5559             {
5560               "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
5561               "name": "WayneHolland"
5562             },
5563             {
5564               "id": "Melissa",
5565               "name": "Melissa"
5566             }
5567           ],
5568           "projectList": [
5569             {
5570               "id": "WATKINS",
5571               "name": "WATKINS"
5572             },
5573             {
5574               "id": "x1",
5575               "name": "x1"
5576             },
5577             {
5578               "id": "yyy1",
5579               "name": "yyy1"
5580             }
5581           ],
5582           "lineOfBusinessList": [
5583             {
5584               "id": "ONAP",
5585               "name": "ONAP"
5586             },
5587             {
5588               "id": "zzz1",
5589               "name": "zzz1"
5590             }
5591           ],
5592           "platformList": [
5593             {
5594               "id": "platform",
5595               "name": "platform"
5596             },
5597             {
5598               "id": "xxx1",
5599               "name": "xxx1"
5600             }
5601           ]
5602         },
5603         "type": "[LCP_REGIONS_AND_TENANTS] Update"
5604       }
5605     }
5606   }
5607
5608   function getReduxWithVFModuleMissingData() {
5609     return {
5610       "global": {
5611         "name": null,
5612         "flags": {
5613           "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
5614           "FLAG_SHOW_ASSIGNMENTS": true,
5615           "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
5616           "FLAG_UNASSIGN_SERVICE": true,
5617           "FLAG_SHOW_VERIFY_SERVICE": false,
5618           "FLAG_COLLECTION_RESOURCE_SUPPORT": true,
5619           "FLAG_DUPLICATE_VNF": true,
5620           "FLAG_SERVICE_MODEL_CACHE": true,
5621           "CREATE_INSTANCE_TEST": false,
5622           "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": true,
5623           "FLAG_ASYNC_INSTANTIATION": true,
5624           "FLAG_ASYNC_JOBS": true,
5625           "EMPTY_DRAWING_BOARD_TEST": false,
5626           "FLAG_ADD_MSO_TESTAPI_FIELD": true
5627         },
5628         "type": "[FLAGS] Update"
5629       },
5630       "service": {
5631         "serviceHierarchy": {
5632           "f4d84bb4-a416-4b4e-997e-0059973630b9": {
5633             "service": {
5634               "uuid": "f4d84bb4-a416-4b4e-997e-0059973630b9",
5635               "invariantUuid": "598e3f9e-3244-4d8f-a8e0-0e5d7a29eda9",
5636               "name": "ADIOD vMX vPE_BV Service 488",
5637               "version": "1.0",
5638               "toscaModelURL": null,
5639               "category": "Network L1-3",
5640               "serviceType": "",
5641               "serviceRole": "",
5642               "description": "ADIOD vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM",
5643               "serviceEcompNaming": "true",
5644               "instantiationType": "Macro",
5645               "inputs": {
5646                 "2017488_adiodvpe0_ASN": {
5647                   "type": "string",
5648                   "description": "AV/PE",
5649                   "entry_schema": null,
5650                   "inputProperties": null,
5651                   "constraints": [],
5652                   "required": true,
5653                   "default": "AV_vPE"
5654                 }
5655               }
5656             },
5657             "vnfs": {
5658               "2017-488_ADIOD-vPE 0": {
5659                 "uuid": "ea81d6f7-0861-44a7-b7d5-d173b562c350",
5660                 "invariantUuid": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
5661                 "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",
5662                 "name": "2017-488_ADIOD-vPE",
5663                 "version": "9.0",
5664                 "customizationUuid": "41516cc6-5098-4b40-a619-f8d5f55fc4d8",
5665                 "inputs": {
5666                   "vnf_config_template_version": {
5667                     "type": "string",
5668                     "description": "VPE Software Version",
5669                     "entry_schema": null,
5670                     "inputProperties": null,
5671                     "constraints": [],
5672                     "required": true,
5673                     "default": "17.2"
5674                   },
5675                   "bandwidth_units": {
5676                     "type": "string",
5677                     "description": "Units of bandwidth",
5678                     "entry_schema": null,
5679                     "inputProperties": null,
5680                     "constraints": [],
5681                     "required": true,
5682                     "default": "Gbps"
5683                   },
5684                   "bandwidth": {
5685                     "type": "string",
5686                     "description": "Requested VPE bandwidth",
5687                     "entry_schema": null,
5688                     "inputProperties": null,
5689                     "constraints": [],
5690                     "required": true,
5691                     "default": "10"
5692                   },
5693                   "AIC_CLLI": {
5694                     "type": "string",
5695                     "description": "AIC Site CLLI",
5696                     "entry_schema": null,
5697                     "inputProperties": null,
5698                     "constraints": [],
5699                     "required": true,
5700                     "default": "ATLMY8GA"
5701                   },
5702                   "availability_zone_0": {
5703                     "type": "string",
5704                     "description": "The Availability Zone to launch the instance.",
5705                     "entry_schema": null,
5706                     "inputProperties": null,
5707                     "constraints": [],
5708                     "required": true,
5709                     "default": "mtpocfo-kvm-az01"
5710                   },
5711                   "ASN": {
5712                     "type": "string",
5713                     "description": "AV/PE",
5714                     "entry_schema": null,
5715                     "inputProperties": null,
5716                     "constraints": [],
5717                     "required": true,
5718                     "default": "AV_vPE"
5719                   },
5720                   "vnf_instance_name": {
5721                     "type": "string",
5722                     "description": "The hostname assigned to the vpe.",
5723                     "entry_schema": null,
5724                     "inputProperties": null,
5725                     "constraints": [],
5726                     "required": true,
5727                     "default": "mtnj309me6"
5728                   }
5729                 },
5730                 "commands": {
5731                   "vnf_config_template_version": {
5732                     "displayName": "vnf_config_template_version",
5733                     "command": "get_input",
5734                     "inputName": "2017488_adiodvpe0_vnf_config_template_version"
5735                   },
5736                   "bandwidth_units": {
5737                     "displayName": "bandwidth_units",
5738                     "command": "get_input",
5739                     "inputName": "2017488_adiodvpe0_bandwidth_units"
5740                   },
5741                   "bandwidth": {
5742                     "displayName": "bandwidth",
5743                     "command": "get_input",
5744                     "inputName": "2017488_adiodvpe0_bandwidth"
5745                   },
5746                   "AIC_CLLI": {
5747                     "displayName": "AIC_CLLI",
5748                     "command": "get_input",
5749                     "inputName": "2017488_adiodvpe0_AIC_CLLI"
5750                   },
5751                   "availability_zone_0": {
5752                     "displayName": "availability_zone_0",
5753                     "command": "get_input",
5754                     "inputName": "2017488_adiodvpe0_availability_zone_0"
5755                   },
5756                   "ASN": {
5757                     "displayName": "ASN",
5758                     "command": "get_input",
5759                     "inputName": "2017488_adiodvpe0_ASN"
5760                   },
5761                   "vnf_instance_name": {
5762                     "displayName": "vnf_instance_name",
5763                     "command": "get_input",
5764                     "inputName": "2017488_adiodvpe0_vnf_instance_name"
5765                   }
5766                 },
5767                 "properties": {
5768                   "vmxvre_retype": "RE-VMX",
5769                   "vnf_config_template_version": "get_input:2017488_adiodvpe0_vnf_config_template_version",
5770                   "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
5771                   "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
5772                   "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
5773                   "int_ctl_net_name": "VMX-INTXI",
5774                   "vmx_int_ctl_prefix": "10.0.0.10",
5775                   "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
5776                   "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
5777                   "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
5778                   "nf_type": "ROUTER",
5779                   "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
5780                   "is_AVPN_service": "false",
5781                   "vmx_RSG_name": "vREXI-affinity",
5782                   "vmx_int_ctl_forwarding": "l2",
5783                   "vmxvre_oam_ip_0": "10.0.0.10",
5784                   "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
5785                   "vmxvpfe_sriov41_0_port_vlanstrip": "false",
5786                   "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
5787                   "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
5788                   "vmxvre_image_name_0": "vre172_nova_img",
5789                   "vmxvre_instance": "0",
5790                   "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
5791                   "vmxvre_flavor_name": "ns.c1r16d32.v5",
5792                   "vmxvpfe_volume_size_0": "40.0",
5793                   "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
5794                   "nf_naming": "{ecomp_generated_naming=true}",
5795                   "multi_stage_design": "false",
5796                   "nf_naming_code": "me6",
5797                   "vmxvre_name_0": "vREXI",
5798                   "vmxvpfe_sriov42_0_port_vlanstrip": "false",
5799                   "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
5800                   "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
5801                   "vmxvpfe_image_name_0": "vpfe172_nova_img",
5802                   "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
5803                   "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
5804                   "vmxvre_console": "vidconsole",
5805                   "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
5806                   "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
5807                   "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
5808                   "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
5809                   "vmxvpfe_sriov44_0_port_vlanstrip": "false",
5810                   "vf_module_id": "123",
5811                   "nf_function": "ADIOD vPE",
5812                   "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
5813                   "vmxvre_int_ctl_ip_0": "10.0.0.10",
5814                   "ecomp_generated_naming": "true",
5815                   "AIC_CLLI": "get_input:2017488_adiodvpe0_AIC_CLLI",
5816                   "vnf_name": "mtnj309me6vre",
5817                   "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
5818                   "vmxvre_volume_type_1": "HITACHI",
5819                   "vmxvpfe_sriov44_0_port_broadcastallow": "true",
5820                   "vmxvre_volume_type_0": "HITACHI",
5821                   "vmxvpfe_volume_type_0": "HITACHI",
5822                   "vmxvpfe_sriov43_0_port_broadcastallow": "true",
5823                   "bandwidth_units": "get_input:2017488_adiodvpe0_bandwidth_units",
5824                   "vnf_id": "123",
5825                   "vmxvre_oam_prefix": "24",
5826                   "availability_zone_0": "get_input:2017488_adiodvpe0_availability_zone_0",
5827                   "ASN": "get_input:2017488_adiodvpe0_ASN",
5828                   "vmxvre_chassis_i2cid": "161",
5829                   "vmxvpfe_name_0": "vPFEXI",
5830                   "bandwidth": "get_input:2017488_adiodvpe0_bandwidth",
5831                   "availability_zone_max_count": "1",
5832                   "vmxvre_volume_size_0": "45.0",
5833                   "vmxvre_volume_size_1": "50.0",
5834                   "vmxvpfe_sriov42_0_port_broadcastallow": "true",
5835                   "vmxvre_oam_gateway": "10.0.0.10",
5836                   "vmxvre_volume_name_1": "vREXI_FAVolume",
5837                   "vmxvre_ore_present": "0",
5838                   "vmxvre_volume_name_0": "vREXI_FBVolume",
5839                   "vmxvre_type": "0",
5840                   "vnf_instance_name": "get_input:2017488_adiodvpe0_vnf_instance_name",
5841                   "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
5842                   "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
5843                   "vmx_int_ctl_len": "24",
5844                   "vmxvpfe_sriov43_0_port_vlanstrip": "false",
5845                   "vmxvpfe_sriov41_0_port_broadcastallow": "true",
5846                   "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
5847                   "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
5848                   "nf_role": "vPE",
5849                   "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
5850                   "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
5851                   "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
5852                 },
5853                 "type": "VF",
5854                 "modelCustomizationName": "2017-488_ADIOD-vPE 0",
5855                 "vfModules": {
5856                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
5857                     "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
5858                     "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
5859                     "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
5860                     "description": null,
5861                     "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
5862                     "version": "8",
5863                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
5864                     "properties": {
5865                       "minCountInstances": 2,
5866                       "maxCountInstances": null,
5867                       "initialCount": 0,
5868                       "vfModuleLabel": "ADIOD_vRE_BV"
5869                     },
5870                     "inputs": {
5871                       "2017488_adiodvpe0_bandwidth_units": {
5872                         "type": "string",
5873                         "description": "Units of bandwidth",
5874                         "entry_schema": null,
5875                         "inputProperties": {
5876                           "sourceType": "HEAT",
5877                           "vfModuleLabel": "ADIOD_vRE_BV",
5878                           "paramName": "bandwidth_units"
5879                         },
5880                         "constraints": null,
5881                         "required": true,
5882                         "default": "Gbps"
5883                       },
5884                       "2017488_adiodvpe0_bandwidth": {
5885                         "type": "string",
5886                         "description": "Requested VPE bandwidth",
5887                         "entry_schema": null,
5888                         "inputProperties": {
5889                           "sourceType": "HEAT",
5890                           "vfModuleLabel": "ADIOD_vRE_BV",
5891                           "paramName": "bandwidth"
5892                         },
5893                         "constraints": null,
5894                         "required": true,
5895                         "default": "10"
5896                       },
5897                       "2017488_adiodvpe0_vnf_instance_name": {
5898                         "type": "string",
5899                         "description": "The hostname assigned to the vpe.",
5900                         "entry_schema": null,
5901                         "inputProperties": {
5902                           "sourceType": "HEAT",
5903                           "vfModuleLabel": "ADIOD_vRE_BV",
5904                           "paramName": "vnf_instance_name"
5905                         },
5906                         "constraints": null,
5907                         "required": true,
5908                         "default": "mtnj309me6"
5909                       },
5910                       "2017488_adiodvpe0_vnf_config_template_version": {
5911                         "type": "string",
5912                         "description": "VPE Software Version",
5913                         "entry_schema": null,
5914                         "inputProperties": {
5915                           "sourceType": "HEAT",
5916                           "vfModuleLabel": "ADIOD_vRE_BV",
5917                           "paramName": "vnf_config_template_version"
5918                         },
5919                         "constraints": null,
5920                         "required": true,
5921                         "default": "17.2"
5922                       },
5923                       "2017488_adiodvpe0_AIC_CLLI": {
5924                         "type": "string",
5925                         "description": "AIC Site CLLI",
5926                         "entry_schema": null,
5927                         "inputProperties": {
5928                           "sourceType": "HEAT",
5929                           "vfModuleLabel": "ADIOD_vRE_BV",
5930                           "paramName": "AIC_CLLI"
5931                         },
5932                         "constraints": null,
5933                         "required": true,
5934                         "default": "ATLMY8GA"
5935                       }
5936                     },
5937                     "volumeGroupAllowed": true
5938                   },
5939                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
5940                     "uuid": "040e591e-5d30-4e0d-850f-7266e5a8e013",
5941                     "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
5942                     "customizationUuid": "5c5f91f9-5e31-4120-b892-5536587ec258",
5943                     "description": null,
5944                     "name": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
5945                     "version": "6",
5946                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
5947                     "properties": {
5948                       "minCountInstances": 1,
5949                       "maxCountInstances": 1,
5950                       "initialCount": 1,
5951                       "vfModuleLabel": "ADIOD_base_vPE_BV"
5952                     },
5953                     "inputs": {},
5954                     "volumeGroupAllowed": false
5955                   },
5956                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
5957                     "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
5958                     "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
5959                     "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
5960                     "description": null,
5961                     "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
5962                     "version": "8",
5963                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
5964                     "properties": {
5965                       "minCountInstances": 0,
5966                       "maxCountInstances": null,
5967                       "initialCount": 0,
5968                       "vfModuleLabel": "ADIOD_vPFE_BV"
5969                     },
5970                     "inputs": {
5971                       "2017488_adiodvpe0_availability_zone_0": {
5972                         "type": "string",
5973                         "description": "The Availability Zone to launch the instance.",
5974                         "entry_schema": null,
5975                         "inputProperties": {
5976                           "sourceType": "HEAT",
5977                           "vfModuleLabel": "ADIOD_vPFE_BV",
5978                           "paramName": "availability_zone_0"
5979                         },
5980                         "constraints": null,
5981                         "required": true,
5982                         "default": "mtpocfo-kvm-az01"
5983                       }
5984                     },
5985                     "volumeGroupAllowed": true
5986                   }
5987                 },
5988                 "volumeGroups": {
5989                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
5990                     "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
5991                     "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
5992                     "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
5993                     "description": null,
5994                     "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
5995                     "version": "8",
5996                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
5997                     "properties": {
5998                       "minCountInstances": 0,
5999                       "maxCountInstances": null,
6000                       "initialCount": 0,
6001                       "vfModuleLabel": "ADIOD_vRE_BV"
6002                     },
6003                     "inputs": {
6004                       "2017488_adiodvpe0_bandwidth_units": {
6005                         "type": "string",
6006                         "description": "Units of bandwidth",
6007                         "entry_schema": null,
6008                         "inputProperties": {
6009                           "sourceType": "HEAT",
6010                           "vfModuleLabel": "ADIOD_vRE_BV",
6011                           "paramName": "bandwidth_units"
6012                         },
6013                         "constraints": null,
6014                         "required": true,
6015                         "default": "Gbps"
6016                       },
6017                       "2017488_adiodvpe0_bandwidth": {
6018                         "type": "string",
6019                         "description": "Requested VPE bandwidth",
6020                         "entry_schema": null,
6021                         "inputProperties": {
6022                           "sourceType": "HEAT",
6023                           "vfModuleLabel": "ADIOD_vRE_BV",
6024                           "paramName": "bandwidth"
6025                         },
6026                         "constraints": null,
6027                         "required": true,
6028                         "default": "10"
6029                       },
6030                       "2017488_adiodvpe0_vnf_instance_name": {
6031                         "type": "string",
6032                         "description": "The hostname assigned to the vpe.",
6033                         "entry_schema": null,
6034                         "inputProperties": {
6035                           "sourceType": "HEAT",
6036                           "vfModuleLabel": "ADIOD_vRE_BV",
6037                           "paramName": "vnf_instance_name"
6038                         },
6039                         "constraints": null,
6040                         "required": true,
6041                         "default": "mtnj309me6"
6042                       },
6043                       "2017488_adiodvpe0_vnf_config_template_version": {
6044                         "type": "string",
6045                         "description": "VPE Software Version",
6046                         "entry_schema": null,
6047                         "inputProperties": {
6048                           "sourceType": "HEAT",
6049                           "vfModuleLabel": "ADIOD_vRE_BV",
6050                           "paramName": "vnf_config_template_version"
6051                         },
6052                         "constraints": null,
6053                         "required": true,
6054                         "default": "17.2"
6055                       },
6056                       "2017488_adiodvpe0_AIC_CLLI": {
6057                         "type": "string",
6058                         "description": "AIC Site CLLI",
6059                         "entry_schema": null,
6060                         "inputProperties": {
6061                           "sourceType": "HEAT",
6062                           "vfModuleLabel": "ADIOD_vRE_BV",
6063                           "paramName": "AIC_CLLI"
6064                         },
6065                         "constraints": null,
6066                         "required": true,
6067                         "default": "ATLMY8GA"
6068                       }
6069                     }
6070                   },
6071                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
6072                     "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
6073                     "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
6074                     "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
6075                     "description": null,
6076                     "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
6077                     "version": "8",
6078                     "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
6079                     "properties": {
6080                       "minCountInstances": 0,
6081                       "maxCountInstances": null,
6082                       "initialCount": 0,
6083                       "vfModuleLabel": "ADIOD_vPFE_BV"
6084                     },
6085                     "inputs": {
6086                       "2017488_adiodvpe0_availability_zone_0": {
6087                         "type": "string",
6088                         "description": "The Availability Zone to launch the instance.",
6089                         "entry_schema": null,
6090                         "inputProperties": {
6091                           "sourceType": "HEAT",
6092                           "vfModuleLabel": "ADIOD_vPFE_BV",
6093                           "paramName": "availability_zone_0"
6094                         },
6095                         "constraints": null,
6096                         "required": true,
6097                         "default": "mtpocfo-kvm-az01"
6098                       }
6099                     }
6100                   }
6101                 },
6102                 "vfcInstanceGroups": {}
6103               }
6104             },
6105             "networks": {},
6106             "collectionResource": {},
6107             "configurations": {},
6108             "serviceProxies": {},
6109             "vfModules": {
6110               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
6111                 "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
6112                 "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
6113                 "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
6114                 "description": null,
6115                 "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
6116                 "version": "8",
6117                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
6118                 "properties": {
6119                   "minCountInstances": 0,
6120                   "maxCountInstances": null,
6121                   "initialCount": 0,
6122                   "vfModuleLabel": "ADIOD_vRE_BV"
6123                 },
6124                 "inputs": {
6125                   "2017488_adiodvpe0_bandwidth_units": {
6126                     "type": "string",
6127                     "description": "Units of bandwidth",
6128                     "entry_schema": null,
6129                     "inputProperties": {
6130                       "sourceType": "HEAT",
6131                       "vfModuleLabel": "ADIOD_vRE_BV",
6132                       "paramName": "bandwidth_units"
6133                     },
6134                     "constraints": null,
6135                     "required": true,
6136                     "default": "Gbps"
6137                   },
6138                   "2017488_adiodvpe0_bandwidth": {
6139                     "type": "string",
6140                     "description": "Requested VPE bandwidth",
6141                     "entry_schema": null,
6142                     "inputProperties": {
6143                       "sourceType": "HEAT",
6144                       "vfModuleLabel": "ADIOD_vRE_BV",
6145                       "paramName": "bandwidth"
6146                     },
6147                     "constraints": null,
6148                     "required": true,
6149                     "default": "10"
6150                   },
6151                   "2017488_adiodvpe0_vnf_instance_name": {
6152                     "type": "string",
6153                     "description": "The hostname assigned to the vpe.",
6154                     "entry_schema": null,
6155                     "inputProperties": {
6156                       "sourceType": "HEAT",
6157                       "vfModuleLabel": "ADIOD_vRE_BV",
6158                       "paramName": "vnf_instance_name"
6159                     },
6160                     "constraints": null,
6161                     "required": true,
6162                     "default": "mtnj309me6"
6163                   },
6164                   "2017488_adiodvpe0_vnf_config_template_version": {
6165                     "type": "string",
6166                     "description": "VPE Software Version",
6167                     "entry_schema": null,
6168                     "inputProperties": {
6169                       "sourceType": "HEAT",
6170                       "vfModuleLabel": "ADIOD_vRE_BV",
6171                       "paramName": "vnf_config_template_version"
6172                     },
6173                     "constraints": null,
6174                     "required": true,
6175                     "default": "17.2"
6176                   },
6177                   "2017488_adiodvpe0_AIC_CLLI": {
6178                     "type": "string",
6179                     "description": "AIC Site CLLI",
6180                     "entry_schema": null,
6181                     "inputProperties": {
6182                       "sourceType": "HEAT",
6183                       "vfModuleLabel": "ADIOD_vRE_BV",
6184                       "paramName": "AIC_CLLI"
6185                     },
6186                     "constraints": null,
6187                     "required": true,
6188                     "default": "ATLMY8GA"
6189                   }
6190                 },
6191                 "volumeGroupAllowed": true
6192               },
6193               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
6194                 "uuid": "040e591e-5d30-4e0d-850f-7266e5a8e013",
6195                 "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
6196                 "customizationUuid": "5c5f91f9-5e31-4120-b892-5536587ec258",
6197                 "description": null,
6198                 "name": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
6199                 "version": "6",
6200                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
6201                 "properties": {
6202                   "minCountInstances": 1,
6203                   "maxCountInstances": 1,
6204                   "initialCount": 1,
6205                   "vfModuleLabel": "ADIOD_base_vPE_BV"
6206                 },
6207                 "inputs": {},
6208                 "volumeGroupAllowed": false
6209               },
6210               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
6211                 "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
6212                 "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
6213                 "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
6214                 "description": null,
6215                 "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
6216                 "version": "8",
6217                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
6218                 "properties": {
6219                   "minCountInstances": 0,
6220                   "maxCountInstances": null,
6221                   "initialCount": 0,
6222                   "vfModuleLabel": "ADIOD_vPFE_BV"
6223                 },
6224                 "inputs": {
6225                   "2017488_adiodvpe0_availability_zone_0": {
6226                     "type": "string",
6227                     "description": "The Availability Zone to launch the instance.",
6228                     "entry_schema": null,
6229                     "inputProperties": {
6230                       "sourceType": "HEAT",
6231                       "vfModuleLabel": "ADIOD_vPFE_BV",
6232                       "paramName": "availability_zone_0"
6233                     },
6234                     "constraints": null,
6235                     "required": true,
6236                     "default": "mtpocfo-kvm-az01"
6237                   }
6238                 },
6239                 "volumeGroupAllowed": true
6240               }
6241             },
6242             "volumeGroups": {
6243               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
6244                 "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
6245                 "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
6246                 "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
6247                 "description": null,
6248                 "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
6249                 "version": "8",
6250                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
6251                 "properties": {
6252                   "minCountInstances": 0,
6253                   "maxCountInstances": null,
6254                   "initialCount": 0,
6255                   "vfModuleLabel": "ADIOD_vRE_BV"
6256                 },
6257                 "inputs": {
6258                   "2017488_adiodvpe0_bandwidth_units": {
6259                     "type": "string",
6260                     "description": "Units of bandwidth",
6261                     "entry_schema": null,
6262                     "inputProperties": {
6263                       "sourceType": "HEAT",
6264                       "vfModuleLabel": "ADIOD_vRE_BV",
6265                       "paramName": "bandwidth_units"
6266                     },
6267                     "constraints": null,
6268                     "required": true,
6269                     "default": "Gbps"
6270                   },
6271                   "2017488_adiodvpe0_bandwidth": {
6272                     "type": "string",
6273                     "description": "Requested VPE bandwidth",
6274                     "entry_schema": null,
6275                     "inputProperties": {
6276                       "sourceType": "HEAT",
6277                       "vfModuleLabel": "ADIOD_vRE_BV",
6278                       "paramName": "bandwidth"
6279                     },
6280                     "constraints": null,
6281                     "required": true,
6282                     "default": "10"
6283                   },
6284                   "2017488_adiodvpe0_vnf_instance_name": {
6285                     "type": "string",
6286                     "description": "The hostname assigned to the vpe.",
6287                     "entry_schema": null,
6288                     "inputProperties": {
6289                       "sourceType": "HEAT",
6290                       "vfModuleLabel": "ADIOD_vRE_BV",
6291                       "paramName": "vnf_instance_name"
6292                     },
6293                     "constraints": null,
6294                     "required": true,
6295                     "default": "mtnj309me6"
6296                   },
6297                   "2017488_adiodvpe0_vnf_config_template_version": {
6298                     "type": "string",
6299                     "description": "VPE Software Version",
6300                     "entry_schema": null,
6301                     "inputProperties": {
6302                       "sourceType": "HEAT",
6303                       "vfModuleLabel": "ADIOD_vRE_BV",
6304                       "paramName": "vnf_config_template_version"
6305                     },
6306                     "constraints": null,
6307                     "required": true,
6308                     "default": "17.2"
6309                   },
6310                   "2017488_adiodvpe0_AIC_CLLI": {
6311                     "type": "string",
6312                     "description": "AIC Site CLLI",
6313                     "entry_schema": null,
6314                     "inputProperties": {
6315                       "sourceType": "HEAT",
6316                       "vfModuleLabel": "ADIOD_vRE_BV",
6317                       "paramName": "AIC_CLLI"
6318                     },
6319                     "constraints": null,
6320                     "required": true,
6321                     "default": "ATLMY8GA"
6322                   }
6323                 }
6324               },
6325               "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
6326                 "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
6327                 "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
6328                 "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
6329                 "description": null,
6330                 "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
6331                 "version": "8",
6332                 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
6333                 "properties": {
6334                   "minCountInstances": 0,
6335                   "maxCountInstances": null,
6336                   "initialCount": 0,
6337                   "vfModuleLabel": "ADIOD_vPFE_BV"
6338                 },
6339                 "inputs": {
6340                   "2017488_adiodvpe0_availability_zone_0": {
6341                     "type": "string",
6342                     "description": "The Availability Zone to launch the instance.",
6343                     "entry_schema": null,
6344                     "inputProperties": {
6345                       "sourceType": "HEAT",
6346                       "vfModuleLabel": "ADIOD_vPFE_BV",
6347                       "paramName": "availability_zone_0"
6348                     },
6349                     "constraints": null,
6350                     "required": true,
6351                     "default": "mtpocfo-kvm-az01"
6352                   }
6353                 }
6354               }
6355             },
6356             "pnfs": {}
6357           },
6358           "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
6359             "service": {
6360               "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
6361               "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
6362               "name": "ComplexService",
6363               "version": "1.0",
6364               "toscaModelURL": null,
6365               "category": "Emanuel",
6366               "serviceType": "",
6367               "serviceRole": "",
6368               "description": "ComplexService",
6369               "serviceEcompNaming": "true",
6370               "instantiationType": "Macro",
6371               "inputs": {}
6372             },
6373             "vnfs": {
6374               "VF_vMee 0": {
6375                 "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60",
6376                 "invariantUuid": "4160458e-f648-4b30-a176-43881ffffe9e",
6377                 "description": "VSP_vMee",
6378                 "name": "VF_vMee",
6379                 "version": "2.0",
6380                 "customizationUuid": "91415b44-753d-494c-926a-456a9172bbb9",
6381                 "inputs": {},
6382                 "commands": {},
6383                 "properties": {
6384                   "gpb2_Internal2_mac": "00:11:22:EF:AC:DF",
6385                   "sctp-b-ipv6-egress_src_start_port": "0",
6386                   "sctp-a-ipv6-egress_rule_application": "any",
6387                   "Internal2_allow_transit": "true",
6388                   "sctp-b-IPv6_ethertype": "IPv6",
6389                   "sctp-a-egress_rule_application": "any",
6390                   "sctp-b-ingress_action": "pass",
6391                   "sctp-b-ingress_rule_protocol": "icmp",
6392                   "ncb2_Internal1_mac": "00:11:22:EF:AC:DF",
6393                   "sctp-b-ipv6-ingress-src_start_port": "0.0",
6394                   "ncb1_Internal2_mac": "00:11:22:EF:AC:DF",
6395                   "fsb_volume_size_0": "320.0",
6396                   "sctp-b-egress_src_addresses": "local",
6397                   "sctp-a-ipv6-ingress_ethertype": "IPv4",
6398                   "sctp-a-ipv6-ingress-dst_start_port": "0",
6399                   "sctp-b-ipv6-ingress_rule_application": "any",
6400                   "domain_name": "default-domain",
6401                   "sctp-a-ingress_rule_protocol": "icmp",
6402                   "sctp-b-egress-src_start_port": "0.0",
6403                   "sctp-a-egress_src_addresses": "local",
6404                   "sctp-b-display_name": "epc-sctp-b-ipv4v6-sec-group",
6405                   "sctp-a-egress-src_start_port": "0.0",
6406                   "sctp-a-ingress_ethertype": "IPv4",
6407                   "sctp-b-ipv6-ingress-dst_end_port": "65535",
6408                   "sctp-b-dst_subnet_prefix_v6": "::",
6409                   "nf_naming": "{ecomp_generated_naming=true}",
6410                   "sctp-a-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
6411                   "sctp-b-egress-dst_start_port": "0.0",
6412                   "ncb_flavor_name": "nv.c20r64d1",
6413                   "gpb1_Internal1_mac": "00:11:22:EF:AC:DF",
6414                   "sctp-b-egress_dst_subnet_prefix_len": "0.0",
6415                   "Internal2_net_cidr": "10.0.0.10",
6416                   "sctp-a-ingress-dst_start_port": "0.0",
6417                   "sctp-a-egress-dst_start_port": "0.0",
6418                   "fsb1_Internal2_mac": "00:11:22:EF:AC:DF",
6419                   "sctp-a-egress_ethertype": "IPv4",
6420                   "vlc_st_service_mode": "in-network-nat",
6421                   "sctp-a-ipv6-egress_ethertype": "IPv4",
6422                   "sctp-a-egress-src_end_port": "65535.0",
6423                   "sctp-b-ipv6-egress_rule_application": "any",
6424                   "sctp-b-egress_action": "pass",
6425                   "sctp-a-ingress-src_subnet_prefix_len": "0.0",
6426                   "sctp-b-ipv6-ingress-src_end_port": "65535.0",
6427                   "sctp-b-name": "epc-sctp-b-ipv4v6-sec-group",
6428                   "fsb2_Internal1_mac": "00:11:22:EF:AC:DF",
6429                   "sctp-a-ipv6-ingress-src_start_port": "0.0",
6430                   "sctp-b-ipv6-egress_ethertype": "IPv4",
6431                   "Internal1_net_cidr": "10.0.0.10",
6432                   "sctp-a-egress_dst_subnet_prefix": "0.0.0.0",
6433                   "fsb_flavor_name": "nv.c20r64d1",
6434                   "sctp_rule_protocol": "132",
6435                   "sctp-b-ipv6-ingress_src_subnet_prefix_len": "0",
6436                   "sctp-a-ipv6-ingress_rule_application": "any",
6437                   "ecomp_generated_naming": "true",
6438                   "sctp-a-IPv6_ethertype": "IPv6",
6439                   "vlc2_Internal1_mac": "00:11:22:EF:AC:DF",
6440                   "vlc_st_virtualization_type": "virtual-machine",
6441                   "sctp-b-ingress-dst_start_port": "0.0",
6442                   "sctp-b-ingress-dst_end_port": "65535.0",
6443                   "sctp-a-ipv6-ingress-src_end_port": "65535.0",
6444                   "sctp-a-display_name": "epc-sctp-a-ipv4v6-sec-group",
6445                   "sctp-b-ingress_rule_application": "any",
6446                   "int2_sec_group_name": "int2-sec-group",
6447                   "vlc_flavor_name": "nd.c16r64d1",
6448                   "sctp-b-ipv6-egress_src_addresses": "local",
6449                   "vlc_st_interface_type_int1": "other1",
6450                   "sctp-b-egress-src_end_port": "65535.0",
6451                   "sctp-a-ipv6-egress-dst_start_port": "0",
6452                   "vlc_st_interface_type_int2": "other2",
6453                   "sctp-a-ipv6-egress_rule_protocol": "any",
6454                   "Internal2_shared": "false",
6455                   "sctp-a-ipv6-egress_dst_subnet_prefix_len": "0",
6456                   "Internal2_rpf": "disable",
6457                   "vlc1_Internal1_mac": "00:11:22:EF:AC:DF",
6458                   "sctp-b-ipv6-egress_src_end_port": "65535",
6459                   "sctp-a-ipv6-egress_src_addresses": "local",
6460                   "sctp-a-ingress-dst_end_port": "65535.0",
6461                   "sctp-a-ipv6-egress_src_end_port": "65535",
6462                   "Internal1_forwarding_mode": "l2",
6463                   "Internal2_dhcp": "false",
6464                   "sctp-a-dst_subnet_prefix_v6": "::",
6465                   "pxe_image_name": "MME_PXE-Boot_16ACP04_GA.qcow2",
6466                   "vlc_st_interface_type_gtp": "other0",
6467                   "ncb1_Internal1_mac": "00:11:22:EF:AC:DF",
6468                   "sctp-b-src_subnet_prefix_v6": "::",
6469                   "sctp-a-egress_dst_subnet_prefix_len": "0.0",
6470                   "int1_sec_group_name": "int1-sec-group",
6471                   "Internal1_dhcp": "false",
6472                   "sctp-a-ipv6-egress_dst_end_port": "65535",
6473                   "Internal2_forwarding_mode": "l2",
6474                   "fsb2_Internal2_mac": "00:11:22:EF:AC:DF",
6475                   "sctp-b-egress_dst_subnet_prefix": "0.0.0.0",
6476                   "Internal1_net_cidr_len": "17",
6477                   "gpb2_Internal1_mac": "00:11:22:EF:AC:DF",
6478                   "sctp-b-ingress-src_subnet_prefix_len": "0.0",
6479                   "sctp-a-ingress_dst_addresses": "local",
6480                   "sctp-a-egress_action": "pass",
6481                   "fsb_volume_type_0": "SF-Default-SSD",
6482                   "ncb2_Internal2_mac": "00:11:22:EF:AC:DF",
6483                   "vlc_st_interface_type_sctp_a": "left",
6484                   "vlc_st_interface_type_sctp_b": "right",
6485                   "sctp-a-src_subnet_prefix_v6": "::",
6486                   "vlc_st_version": "2",
6487                   "sctp-b-egress_ethertype": "IPv4",
6488                   "sctp-a-ingress_rule_application": "any",
6489                   "gpb1_Internal2_mac": "00:11:22:EF:AC:DF",
6490                   "instance_ip_family_v6": "v6",
6491                   "sctp-a-ipv6-egress_src_start_port": "0",
6492                   "sctp-b-ingress-src_start_port": "0.0",
6493                   "sctp-b-ingress_dst_addresses": "local",
6494                   "fsb1_Internal1_mac": "00:11:22:EF:AC:DF",
6495                   "vlc_st_interface_type_oam": "management",
6496                   "multi_stage_design": "false",
6497                   "oam_sec_group_name": "oam-sec-group",
6498                   "Internal2_net_gateway": "10.0.0.10",
6499                   "sctp-a-ipv6-ingress-dst_end_port": "65535",
6500                   "sctp-b-ipv6-egress-dst_start_port": "0",
6501                   "Internal1_net_gateway": "10.0.0.10",
6502                   "sctp-b-ipv6-egress_rule_protocol": "any",
6503                   "gtp_sec_group_name": "gtp-sec-group",
6504                   "sctp-a-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
6505                   "sctp-b-ipv6-egress_dst_subnet_prefix_len": "0",
6506                   "sctp-a-ipv6-ingress_dst_addresses": "local",
6507                   "sctp-a-egress_rule_protocol": "icmp",
6508                   "sctp-b-ipv6-egress_action": "pass",
6509                   "sctp-a-ipv6-egress_action": "pass",
6510                   "Internal1_shared": "false",
6511                   "sctp-b-ipv6-ingress_rule_protocol": "any",
6512                   "Internal2_net_cidr_len": "17",
6513                   "sctp-a-name": "epc-sctp-a-ipv4v6-sec-group",
6514                   "sctp-a-ingress-src_end_port": "65535.0",
6515                   "sctp-b-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
6516                   "sctp-a-egress-dst_end_port": "65535.0",
6517                   "sctp-a-ingress_action": "pass",
6518                   "sctp-b-egress_rule_protocol": "icmp",
6519                   "sctp-b-ipv6-ingress_action": "pass",
6520                   "vlc_st_service_type": "firewall",
6521                   "sctp-b-ipv6-egress_dst_end_port": "65535",
6522                   "sctp-b-ipv6-ingress-dst_start_port": "0",
6523                   "vlc2_Internal2_mac": "00:11:22:EF:AC:DF",
6524                   "vlc_st_availability_zone": "true",
6525                   "fsb_volume_image_name_1": "MME_FSB2_16ACP04_GA.qcow2",
6526                   "sctp-b-ingress-src_subnet_prefix": "0.0.0.0",
6527                   "sctp-a-ipv6-ingress_src_subnet_prefix_len": "0",
6528                   "Internal1_allow_transit": "true",
6529                   "gpb_flavor_name": "nv.c20r64d1",
6530                   "availability_zone_max_count": "1",
6531                   "fsb_volume_image_name_0": "MME_FSB1_16ACP04_GA.qcow2",
6532                   "sctp-b-ipv6-ingress_dst_addresses": "local",
6533                   "sctp-b-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
6534                   "sctp-b-ipv6-ingress_ethertype": "IPv4",
6535                   "vlc1_Internal2_mac": "00:11:22:EF:AC:DF",
6536                   "sctp-a-ingress-src_subnet_prefix": "0.0.0.0",
6537                   "sctp-a-ipv6-ingress_action": "pass",
6538                   "Internal1_rpf": "disable",
6539                   "sctp-b-ingress_ethertype": "IPv4",
6540                   "sctp-b-egress_rule_application": "any",
6541                   "sctp-b-ingress-src_end_port": "65535.0",
6542                   "sctp-a-ipv6-ingress_rule_protocol": "any",
6543                   "sctp-a-ingress-src_start_port": "0.0",
6544                   "sctp-b-egress-dst_end_port": "65535.0"
6545                 },
6546                 "type": "VF",
6547                 "modelCustomizationName": "VF_vMee 0",
6548                 "vfModules": {
6549                   "vf_vmee0..VfVmee..vmme_vlc..module-1": {
6550                     "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
6551                     "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
6552                     "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
6553                     "description": null,
6554                     "name": "VfVmee..vmme_vlc..module-1",
6555                     "version": "2",
6556                     "modelCustomizationName": "VfVmee..vmme_vlc..module-1",
6557                     "properties": {
6558                       "minCountInstances": 0,
6559                       "maxCountInstances": null,
6560                       "initialCount": 0,
6561                       "vfModuleLabel": "vmme_vlc"
6562                     },
6563                     "inputs": {},
6564                     "volumeGroupAllowed": false
6565                   },
6566                   "vf_vmee0..VfVmee..vmme_gpb..module-2": {
6567                     "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
6568                     "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
6569                     "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
6570                     "description": null,
6571                     "name": "VfVmee..vmme_gpb..module-2",
6572                     "version": "2",
6573                     "modelCustomizationName": "VfVmee..vmme_gpb..module-2",
6574                     "properties": {
6575                       "minCountInstances": 0,
6576                       "maxCountInstances": null,
6577                       "initialCount": 0,
6578                       "vfModuleLabel": "vmme_gpb"
6579                     },
6580                     "inputs": {},
6581                     "volumeGroupAllowed": false
6582                   },
6583                   "vf_vmee0..VfVmee..base_vmme..module-0": {
6584                     "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
6585                     "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
6586                     "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
6587                     "description": null,
6588                     "name": "VfVmee..base_vmme..module-0",
6589                     "version": "2",
6590                     "modelCustomizationName": "VfVmee..base_vmme..module-0",
6591                     "properties": {
6592                       "minCountInstances": 1,
6593                       "maxCountInstances": 1,
6594                       "initialCount": 1,
6595                       "vfModuleLabel": "base_vmme"
6596                     },
6597                     "inputs": {},
6598                     "volumeGroupAllowed": true
6599                   }
6600                 },
6601                 "volumeGroups": {
6602                   "vf_vmee0..VfVmee..base_vmme..module-0": {
6603                     "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
6604                     "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
6605                     "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
6606                     "description": null,
6607                     "name": "VfVmee..base_vmme..module-0",
6608                     "version": "2",
6609                     "modelCustomizationName": "VfVmee..base_vmme..module-0",
6610                     "properties": {
6611                       "minCountInstances": 1,
6612                       "maxCountInstances": 1,
6613                       "initialCount": 1,
6614                       "vfModuleLabel": "base_vmme"
6615                     },
6616                     "inputs": {}
6617                   }
6618                 },
6619                 "vfcInstanceGroups": {}
6620               }
6621             },
6622             "networks": {
6623               "ExtVL 0": {
6624                 "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
6625                 "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
6626                 "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
6627                 "name": "ExtVL",
6628                 "version": "37.0",
6629                 "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
6630                 "inputs": {},
6631                 "commands": {},
6632                 "properties": {
6633                   "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}}",
6634                   "exVL_naming": "{ecomp_generated_naming=true}",
6635                   "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
6636                   "network_homing": "{ecomp_selected_instance_node_target=false}"
6637                 },
6638                 "type": "VL",
6639                 "modelCustomizationName": "ExtVL 0"
6640               }
6641             },
6642             "collectionResource": {},
6643             "configurations": {
6644               "Port Mirroring Configuration By Policy 0": {
6645                 "uuid": "b4398538-e89d-4f13-b33d-ca323434ba50",
6646                 "invariantUuid": "6ef0ca40-f366-4897-951f-abd65d25f6f7",
6647                 "description": "A port mirroring configuration by policy object",
6648                 "name": "Port Mirroring Configuration By Policy",
6649                 "version": "27.0",
6650                 "customizationUuid": "3c3b7b8d-8669-4b3b-8664-61970041fad2",
6651                 "inputs": {},
6652                 "commands": {},
6653                 "properties": {},
6654                 "type": "Configuration",
6655                 "modelCustomizationName": "Port Mirroring Configuration By Policy 0",
6656                 "sourceNodes": [],
6657                 "collectorNodes": null,
6658                 "configurationByPolicy": false
6659               }
6660             },
6661             "serviceProxies": {},
6662             "vfModules": {
6663               "vf_vmee0..VfVmee..vmme_vlc..module-1": {
6664                 "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
6665                 "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
6666                 "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
6667                 "description": null,
6668                 "name": "VfVmee..vmme_vlc..module-1",
6669                 "version": "2",
6670                 "modelCustomizationName": "VfVmee..vmme_vlc..module-1",
6671                 "properties": {
6672                   "minCountInstances": 0,
6673                   "maxCountInstances": null,
6674                   "initialCount": 0,
6675                   "vfModuleLabel": "vmme_vlc"
6676                 },
6677                 "inputs": {},
6678                 "volumeGroupAllowed": false
6679               },
6680               "vf_vmee0..VfVmee..vmme_gpb..module-2": {
6681                 "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
6682                 "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
6683                 "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
6684                 "description": null,
6685                 "name": "VfVmee..vmme_gpb..module-2",
6686                 "version": "2",
6687                 "modelCustomizationName": "VfVmee..vmme_gpb..module-2",
6688                 "properties": {
6689                   "minCountInstances": 0,
6690                   "maxCountInstances": null,
6691                   "initialCount": 0,
6692                   "vfModuleLabel": "vmme_gpb"
6693                 },
6694                 "inputs": {},
6695                 "volumeGroupAllowed": false
6696               },
6697               "vf_vmee0..VfVmee..base_vmme..module-0": {
6698                 "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
6699                 "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
6700                 "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
6701                 "description": null,
6702                 "name": "VfVmee..base_vmme..module-0",
6703                 "version": "2",
6704                 "modelCustomizationName": "VfVmee..base_vmme..module-0",
6705                 "properties": {
6706                   "minCountInstances": 1,
6707                   "maxCountInstances": 1,
6708                   "initialCount": 1,
6709                   "vfModuleLabel": "base_vmme"
6710                 },
6711                 "inputs": {},
6712                 "volumeGroupAllowed": true
6713               }
6714             },
6715             "volumeGroups": {
6716               "vf_vmee0..VfVmee..base_vmme..module-0": {
6717                 "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
6718                 "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
6719                 "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
6720                 "description": null,
6721                 "name": "VfVmee..base_vmme..module-0",
6722                 "version": "2",
6723                 "modelCustomizationName": "VfVmee..base_vmme..module-0",
6724                 "properties": {
6725                   "minCountInstances": 1,
6726                   "maxCountInstances": 1,
6727                   "initialCount": 1,
6728                   "vfModuleLabel": "base_vmme"
6729                 },
6730                 "inputs": {}
6731               }
6732             },
6733             "pnfs": {}
6734           }
6735         },
6736         "serviceInstance": {
6737           "f4d84bb4-a416-4b4e-997e-0059973630b9": {
6738             "vnfs": {
6739               "2017-488_ADIOD-vPE 0": {
6740                 "rollbackOnFailure": "true",
6741                 "vfModules": {
6742                   "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
6743                     "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0jkyqv": {
6744                       "isMissingData": true,
6745                       "sdncPreReload": null,
6746                       "modelInfo": {
6747                         "modelType": "VFmodule",
6748                         "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
6749                         "modelVersionId": "040e591e-5d30-4e0d-850f-7266e5a8e013",
6750                         "modelName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
6751                         "modelVersion": "6",
6752                         "modelCustomizationId": "5c5f91f9-5e31-4120-b892-5536587ec258",
6753                         "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0"
6754                       },
6755                       "instanceParams": [
6756                         {}
6757                       ],
6758                       "trackById": "n2ydptuy9lj"
6759                     }
6760                   }
6761                 },
6762                 "isMissingData": false,
6763                 "originalName": "2017-488_ADIOD-vPE 0",
6764                 "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
6765                 "lcpCloudRegionId": null,
6766                 "tenantId": null,
6767                 "lineOfBusiness": null,
6768                 "platformName": null,
6769                 "modelInfo": {
6770                   "modelType": "VF",
6771                   "modelInvariantId": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
6772                   "modelVersionId": "f4d84bb4-a416-4b4e-997e-0059973630b9",
6773                   "modelName": "2017-488_ADIOD-vPE",
6774                   "modelVersion": "9.0",
6775                   "modelCustomizationName": "2017-488_ADIOD-vPE 0"
6776                 },
6777                 "trackById": "iapflwk8bip"
6778               }
6779             },
6780             "instanceParams": [
6781               {
6782                 "2017488_adiodvpe0_ASN": "AV_vPE"
6783               }
6784             ],
6785             "validationCounter": 1,
6786             "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
6787             "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
6788             "subscriptionServiceType": "TYLER SILVIA",
6789             "lcpCloudRegionId": "JANET25",
6790             "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
6791             "aicZoneId": "JAG1",
6792             "projectName": "x1",
6793             "owningEntityId": "aaa1",
6794             "rollbackOnFailure": "true",
6795             "bulkSize": 1,
6796             "modelInfo": {
6797               "modelInvariantId": "598e3f9e-3244-4d8f-a8e0-0e5d7a29eda9",
6798               "modelVersionId": "f4d84bb4-a416-4b4e-997e-0059973630b9",
6799               "modelName": "ADIOD vMX vPE_BV Service 488",
6800               "modelVersion": "1.0"
6801             },
6802             "existingVNFCounterMap": {
6803               "41516cc6-5098-4b40-a619-f8d5f55fc4d8": 1
6804             },
6805             "existingNetworksCounterMap": {},
6806             "tenantName": "USP-SIP-IC-24335-T-01",
6807             "aicZoneName": "YUDFJULP-JAG1"
6808           }
6809         },
6810         "lcpRegionsAndTenants": {
6811           "lcpRegionList": [
6812             {
6813               "id": "JANET25",
6814               "name": "JANET25",
6815               "isPermitted": true
6816             },
6817             {
6818               "id": "hvf6",
6819               "name": "hvf6",
6820               "isPermitted": true
6821             }
6822           ],
6823           "lcpRegionsTenantsMap": {
6824             "JANET25": [
6825               {
6826                 "id": "092eb9e8e4b7412e8787dd091bc58e86",
6827                 "name": "USP-SIP-IC-24335-T-01",
6828                 "isPermitted": true
6829               }
6830             ],
6831             "hvf6": [
6832               {
6833                 "id": "bae71557c5bb4d5aac6743a4e5f1d054",
6834                 "name": "AIN Web Tool-15-D-testalexandria",
6835                 "isPermitted": true
6836               },
6837               {
6838                 "id": "229bcdc6eaeb4ca59d55221141d01f8e",
6839                 "name": "AIN Web Tool-15-D-STTest2",
6840                 "isPermitted": true
6841               },
6842               {
6843                 "id": "1178612d2b394be4834ad77f567c0af2",
6844                 "name": "AIN Web Tool-15-D-SSPtestcustome",
6845                 "isPermitted": true
6846               },
6847               {
6848                 "id": "19c5ade915eb461e8af52fb2fd8cd1f2",
6849                 "name": "AIN Web Tool-15-D-UncheckedEcopm",
6850                 "isPermitted": true
6851               },
6852               {
6853                 "id": "de007636e25249238447264a988a927b",
6854                 "name": "AIN Web Tool-15-D-dfsdf",
6855                 "isPermitted": true
6856               },
6857               {
6858                 "id": "62f29b3613634ca6a3065cbe0e020c44",
6859                 "name": "AIN/SMS-16-D-Multiservices1",
6860                 "isPermitted": true
6861               },
6862               {
6863                 "id": "649289e30d3244e0b48098114d63c2aa",
6864                 "name": "AIN Web Tool-15-D-SSPST66",
6865                 "isPermitted": true
6866               },
6867               {
6868                 "id": "3f21eeea6c2c486bba31dab816c05a32",
6869                 "name": "AIN Web Tool-15-D-ASSPST47",
6870                 "isPermitted": true
6871               },
6872               {
6873                 "id": "f60ce21d3ee6427586cff0d22b03b773",
6874                 "name": "CESAR-100-D-sspjg67246",
6875                 "isPermitted": true
6876               },
6877               {
6878                 "id": "8774659e425f479895ae091bb5d46560",
6879                 "name": "CESAR-100-D-sspjg68359",
6880                 "isPermitted": true
6881               },
6882               {
6883                 "id": "624eb554b0d147c19ff8885341760481",
6884                 "name": "AINWebTool-15-D-iftach",
6885                 "isPermitted": true
6886               },
6887               {
6888                 "id": "214f55f5fc414c678059c383b03e4962",
6889                 "name": "CESAR-100-D-sspjg612401",
6890                 "isPermitted": true
6891               },
6892               {
6893                 "id": "c90666c291664841bb98e4d981ff1db5",
6894                 "name": "CESAR-100-D-sspjg621340",
6895                 "isPermitted": true
6896               },
6897               {
6898                 "id": "ce5b6bc5c7b348e1bf4b91ac9a174278",
6899                 "name": "sspjg621351cloned",
6900                 "isPermitted": true
6901               },
6902               {
6903                 "id": "b386b768a3f24c8e953abbe0b3488c02",
6904                 "name": "AINWebTool-15-D-eteancomp",
6905                 "isPermitted": true
6906               },
6907               {
6908                 "id": "dc6c4dbfd225474e9deaadd34968646c",
6909                 "name": "AINWebTool-15-T-SPFET",
6910                 "isPermitted": true
6911               },
6912               {
6913                 "id": "02cb5030e9914aa4be120bd9ed1e19eb",
6914                 "name": "AINWebTool-15-X-eeweww",
6915                 "isPermitted": true
6916               },
6917               {
6918                 "id": "f2f3830e4c984d45bcd00e1a04158a79",
6919                 "name": "CESAR-100-D-spjg61909",
6920                 "isPermitted": true
6921               },
6922               {
6923                 "id": "05b91bd5137f4929878edd965755c06d",
6924                 "name": "CESAR-100-D-sspjg621512cloned",
6925                 "isPermitted": true
6926               },
6927               {
6928                 "id": "7002fbe8482d4a989ddf445b1ce336e0",
6929                 "name": "AINWebTool-15-X-vdr",
6930                 "isPermitted": true
6931               },
6932               {
6933                 "id": "4008522be43741dcb1f5422022a2aa0b",
6934                 "name": "AINWebTool-15-D-ssasa",
6935                 "isPermitted": true
6936               },
6937               {
6938                 "id": "f44e2e96a1b6476abfda2fa407b00169",
6939                 "name": "AINWebTool-15-D-PFNPT",
6940                 "isPermitted": true
6941               },
6942               {
6943                 "id": "b69a52bec8a84669a37a1e8b72708be7",
6944                 "name": "AINWebTool-15-X-vdre",
6945                 "isPermitted": true
6946               },
6947               {
6948                 "id": "fac7d9fd56154caeb9332202dcf2969f",
6949                 "name": "AINWebTool-15-X-NONPODECOMP",
6950                 "isPermitted": true
6951               },
6952               {
6953                 "id": "2d34d8396e194eb49969fd61ffbff961",
6954                 "name": "DN5242-Nov16-T5",
6955                 "isPermitted": true
6956               },
6957               {
6958                 "id": "cb42a77ff45b48a8b8deb83bb64acc74",
6959                 "name": "ro-T11",
6960                 "isPermitted": true
6961               },
6962               {
6963                 "id": "fa45ca53c80b492fa8be5477cd84fc2b",
6964                 "name": "ro-T112",
6965                 "isPermitted": true
6966               },
6967               {
6968                 "id": "4914ab0ab3a743e58f0eefdacc1dde77",
6969                 "name": "DN5242-Nov21-T1",
6970                 "isPermitted": true
6971               },
6972               {
6973                 "id": "d0a3e3f2964542259d155a81c41aadc3",
6974                 "name": "test-hvf6-09",
6975                 "isPermitted": true
6976               },
6977               {
6978                 "id": "cbb99fe4ada84631b7baf046b6fd2044",
6979                 "name": "DN5242-Nov16-T3",
6980                 "isPermitted": true
6981               }
6982             ]
6983           }
6984         },
6985         "subscribers": [
6986           {
6987             "id": "CAR_2020_ER",
6988             "name": "CAR_2020_ER",
6989             "isPermitted": true
6990           },
6991           {
6992             "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
6993             "name": "JULIO ERICKSON",
6994             "isPermitted": false
6995           },
6996           {
6997             "id": "DHV1707-TestSubscriber-2",
6998             "name": "DALE BRIDGES",
6999             "isPermitted": false
7000           },
7001           {
7002             "id": "DHV1707-TestSubscriber-1",
7003             "name": "LLOYD BRIDGES",
7004             "isPermitted": false
7005           },
7006           {
7007             "id": "jimmy-example",
7008             "name": "JimmyExampleCust-20161102",
7009             "isPermitted": false
7010           },
7011           {
7012             "id": "jimmy-example2",
7013             "name": "JimmyExampleCust-20161103",
7014             "isPermitted": false
7015           },
7016           {
7017             "id": "ERICA5779-TestSub-PWT-102",
7018             "name": "ERICA5779-TestSub-PWT-102",
7019             "isPermitted": false
7020           },
7021           {
7022             "id": "ERICA5779-TestSub-PWT-101",
7023             "name": "ERICA5779-TestSub-PWT-101",
7024             "isPermitted": false
7025           },
7026           {
7027             "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
7028             "name": "Emanuel",
7029             "isPermitted": false
7030           },
7031           {
7032             "id": "ERICA5779-Subscriber-4",
7033             "name": "ERICA5779-Subscriber-5",
7034             "isPermitted": false
7035           },
7036           {
7037             "id": "ERICA5779-TestSub-PWT-103",
7038             "name": "ERICA5779-TestSub-PWT-103",
7039             "isPermitted": false
7040           },
7041           {
7042             "id": "ERICA5779-Subscriber-2",
7043             "name": "ERICA5779-Subscriber-2",
7044             "isPermitted": false
7045           },
7046           {
7047             "id": "e433710f-9217-458d-a79d-1c7aff376d89",
7048             "name": "SILVIA ROBBINS",
7049             "isPermitted": true
7050           },
7051           {
7052             "id": "ERICA5779-Subscriber-3",
7053             "name": "ERICA5779-Subscriber-3",
7054             "isPermitted": false
7055           },
7056           {
7057             "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
7058             "name": "CRAIG/ROBERTS",
7059             "isPermitted": false
7060           }
7061         ],
7062         "productFamilies": [
7063           {
7064             "id": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
7065             "name": "SCOTTIE",
7066             "isPermitted": true
7067           },
7068           {
7069             "id": "17cc1042-527b-11e6-beb8-9e71128cae77",
7070             "name": "IGNACIO",
7071             "isPermitted": true
7072           },
7073           {
7074             "id": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
7075             "name": "Christie",
7076             "isPermitted": true
7077           },
7078           {
7079             "id": "a4f6f2ae-9bf5-4ed7-b904-06b2099c4bd7",
7080             "name": "Enhanced Services",
7081             "isPermitted": true
7082           },
7083           {
7084             "id": "vTerrance",
7085             "name": "vTerrance",
7086             "isPermitted": true
7087           },
7088           {
7089             "id": "323d69d9-2efe-4r45-ay0a-89ea7ard4e6f",
7090             "name": "vSCP",
7091             "isPermitted": true
7092           },
7093           {
7094             "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
7095             "name": "Emanuel",
7096             "isPermitted": true
7097           },
7098           {
7099             "id": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
7100             "name": "BVOIP",
7101             "isPermitted": true
7102           },
7103           {
7104             "id": "db171b8f-115c-4992-a2e3-ee04cae357e0",
7105             "name": "LINDSEY",
7106             "isPermitted": true
7107           },
7108           {
7109             "id": "LRSI-OSPF",
7110             "name": "LRSI-OSPF",
7111             "isPermitted": true
7112           },
7113           {
7114             "id": "vRosemarie",
7115             "name": "HNGATEWAY",
7116             "isPermitted": true
7117           },
7118           {
7119             "id": "vHNPaas",
7120             "name": "WILKINS",
7121             "isPermitted": true
7122           },
7123           {
7124             "id": "e433710f-9217-458d-a79d-1c7aff376d89",
7125             "name": "TYLER SILVIA",
7126             "isPermitted": true
7127           },
7128           {
7129             "id": "b6a3f28c-eebf-494c-a900-055cc7c874ce",
7130             "name": "VROUTER",
7131             "isPermitted": true
7132           },
7133           {
7134             "id": "Cisneros",
7135             "name": "vMuriel",
7136             "isPermitted": true
7137           },
7138           {
7139             "id": "0ee8c1bc-7cbd-4b0a-a1ac-e9999255abc1",
7140             "name": "CARA Griffin",
7141             "isPermitted": true
7142           },
7143           {
7144             "id": "c7611ebe-c324-48f1-8085-94aef0c6ef3d",
7145             "name": "DARREN MCGEE",
7146             "isPermitted": true
7147           },
7148           {
7149             "id": "e30755dc-5673-4b6b-9dcf-9abdd96b93d1",
7150             "name": "Transport",
7151             "isPermitted": true
7152           },
7153           {
7154             "id": "vSalvatore",
7155             "name": "vSalvatore",
7156             "isPermitted": true
7157           },
7158           {
7159             "id": "d7bb0a21-66f2-4e6d-87d9-9ef3ced63ae4",
7160             "name": "Josefina",
7161             "isPermitted": true
7162           },
7163           {
7164             "id": "vHubbard",
7165             "name": "vHubbard",
7166             "isPermitted": true
7167           },
7168           {
7169             "id": "12a96a9d-4b4c-4349-a950-fe1159602621",
7170             "name": "DARREN MCGEE",
7171             "isPermitted": true
7172           }
7173         ],
7174         "serviceTypes": {
7175           "e433710f-9217-458d-a79d-1c7aff376d89": [
7176             {
7177               "id": "0",
7178               "name": "vRichardson",
7179               "isPermitted": false
7180             },
7181             {
7182               "id": "1",
7183               "name": "TYLER SILVIA",
7184               "isPermitted": true
7185             },
7186             {
7187               "id": "2",
7188               "name": "Emanuel",
7189               "isPermitted": false
7190             },
7191             {
7192               "id": "3",
7193               "name": "vJamie",
7194               "isPermitted": false
7195             },
7196             {
7197               "id": "4",
7198               "name": "vVoiceMail",
7199               "isPermitted": false
7200             },
7201             {
7202               "id": "5",
7203               "name": "Kennedy",
7204               "isPermitted": false
7205             },
7206             {
7207               "id": "6",
7208               "name": "vSEGW",
7209               "isPermitted": false
7210             },
7211             {
7212               "id": "7",
7213               "name": "vVM",
7214               "isPermitted": false
7215             },
7216             {
7217               "id": "8",
7218               "name": "vOTA",
7219               "isPermitted": false
7220             },
7221             {
7222               "id": "9",
7223               "name": "vMME",
7224               "isPermitted": false
7225             },
7226             {
7227               "id": "10",
7228               "name": "vMNS",
7229               "isPermitted": false
7230             },
7231             {
7232               "id": "11",
7233               "name": "vSCP",
7234               "isPermitted": false
7235             },
7236             {
7237               "id": "12",
7238               "name": "VPMS",
7239               "isPermitted": false
7240             },
7241             {
7242               "id": "13",
7243               "name": "vMMSC",
7244               "isPermitted": false
7245             },
7246             {
7247               "id": "14",
7248               "name": "SSD",
7249               "isPermitted": false
7250             },
7251             {
7252               "id": "15",
7253               "name": "vMOG",
7254               "isPermitted": false
7255             },
7256             {
7257               "id": "16",
7258               "name": "LINDSEY",
7259               "isPermitted": false
7260             },
7261             {
7262               "id": "17",
7263               "name": "JOHANNA_SANTOS",
7264               "isPermitted": false
7265             },
7266             {
7267               "id": "18",
7268               "name": "vCarroll",
7269               "isPermitted": false
7270             }
7271           ]
7272         },
7273         "aicZones": [
7274           {
7275             "id": "NFT1",
7276             "name": "NFTJSSSS-NFT1"
7277           },
7278           {
7279             "id": "JAG1",
7280             "name": "YUDFJULP-JAG1"
7281           },
7282           {
7283             "id": "YYY1",
7284             "name": "UUUAIAAI-YYY1"
7285           },
7286           {
7287             "id": "BAN1",
7288             "name": "VSDKYUTP-BAN1"
7289           },
7290           {
7291             "id": "DKJ1",
7292             "name": "DKJSJDKA-DKJ1"
7293           },
7294           {
7295             "id": "MCS1",
7296             "name": "ASACMAMS-MCS1"
7297           },
7298           {
7299             "id": "UIO1",
7300             "name": "uioclli1-UIO1"
7301           },
7302           {
7303             "id": "RAJ1",
7304             "name": "YGBIJNLQ-RAJ1"
7305           },
7306           {
7307             "id": "OPA1",
7308             "name": "opaclli1-OPA1"
7309           },
7310           {
7311             "id": "SDE1",
7312             "name": "ZXCVBNMA-SDE1"
7313           },
7314           {
7315             "id": "VEN2",
7316             "name": "FGHJUHIL-VEN2"
7317           },
7318           {
7319             "id": "ORL1",
7320             "name": "ORLDFLMA-ORL1"
7321           },
7322           {
7323             "id": "JAD1",
7324             "name": "JADECLLI-JAD1"
7325           },
7326           {
7327             "id": "ZXL1",
7328             "name": "LWLWCANN-ZXL1"
7329           },
7330           {
7331             "id": "CKL1",
7332             "name": "CLKSKCKK-CKL1"
7333           },
7334           {
7335             "id": "SDF1",
7336             "name": "sdfclli1-SDF1"
7337           },
7338           {
7339             "id": "RAD1",
7340             "name": "RADICAL1-RAD1"
7341           },
7342           {
7343             "id": "KIT1",
7344             "name": "BHYJFGLN-KIT1"
7345           },
7346           {
7347             "id": "REL1",
7348             "name": "INGERFGT-REL1"
7349           },
7350           {
7351             "id": "JNL1",
7352             "name": "CJALSDAC-JNL1"
7353           },
7354           {
7355             "id": "OLK1",
7356             "name": "OLKOLKLS-OLK1"
7357           },
7358           {
7359             "id": "CHI1",
7360             "name": "CHILLIWE-CHI1"
7361           },
7362           {
7363             "id": "UUU4",
7364             "name": "UUUAAAUU-UUU4"
7365           },
7366           {
7367             "id": "TUF1",
7368             "name": "TUFCLLI1-TUF1"
7369           },
7370           {
7371             "id": "KJN1",
7372             "name": "CKALDKSA-KJN1"
7373           },
7374           {
7375             "id": "SAM1",
7376             "name": "SNDGCA64-SAN1"
7377           },
7378           {
7379             "id": "SCK1",
7380             "name": "SCKSCKSK-SCK1"
7381           },
7382           {
7383             "id": "HJH1",
7384             "name": "AOEEQQQD-HJH1"
7385           },
7386           {
7387             "id": "HGD1",
7388             "name": "SDFQWHGD-HGD1"
7389           },
7390           {
7391             "id": "KOR1",
7392             "name": "HYFLNBVT-KOR1"
7393           },
7394           {
7395             "id": "ATL43",
7396             "name": "AICLOCID-ATL43"
7397           },
7398           {
7399             "id": "ATL54",
7400             "name": "AICFTAAI-ATL54"
7401           },
7402           {
7403             "id": "ATL66",
7404             "name": "CLLIAAII-ATL66"
7405           },
7406           {
7407             "id": "VEL1",
7408             "name": "BNMLKUIK-VEL1"
7409           },
7410           {
7411             "id": "ICC1",
7412             "name": "SANJITAT-ICC1"
7413           },
7414           {
7415             "id": "MNT11",
7416             "name": "WSXEFBTH-MNT11"
7417           },
7418           {
7419             "id": "DEF2",
7420             "name": "WSBHGTYL-DEF2"
7421           },
7422           {
7423             "id": "MAD11",
7424             "name": "SDFQWGKL-MAD11"
7425           },
7426           {
7427             "id": "OLG1",
7428             "name": "OLHOLHOL-OLG1"
7429           },
7430           {
7431             "id": "GAR1",
7432             "name": "NGFVSJKO-GAR1"
7433           },
7434           {
7435             "id": "SAN22",
7436             "name": "GNVLSCTL-SAN22"
7437           },
7438           {
7439             "id": "HRG1",
7440             "name": "HRGHRGGS-HRG1"
7441           },
7442           {
7443             "id": "JCS1",
7444             "name": "JCSJSCJS-JCS1"
7445           },
7446           {
7447             "id": "DHA12",
7448             "name": "WSXEDECF-DHA12"
7449           },
7450           {
7451             "id": "HJE1",
7452             "name": "AOEEWWWD-HJE1"
7453           },
7454           {
7455             "id": "NCA1",
7456             "name": "NCANCANN-NCA1"
7457           },
7458           {
7459             "id": "IOP1",
7460             "name": "iopclli1-IOP1"
7461           },
7462           {
7463             "id": "RTY1",
7464             "name": "rtyclli1-RTY1"
7465           },
7466           {
7467             "id": "KAP1",
7468             "name": "HIOUYTRQ-KAP1"
7469           },
7470           {
7471             "id": "ZEN1",
7472             "name": "ZENCLLI1-ZEN1"
7473           },
7474           {
7475             "id": "HKA1",
7476             "name": "JAKHLASS-HKA1"
7477           },
7478           {
7479             "id": "CQK1",
7480             "name": "CQKSCAKK-CQK1"
7481           },
7482           {
7483             "id": "SAI1",
7484             "name": "UBEKQLPD-SAI1"
7485           },
7486           {
7487             "id": "ERT1",
7488             "name": "ertclli1-ERT1"
7489           },
7490           {
7491             "id": "IBB1",
7492             "name": "PLMKOIJU-IBB1"
7493           },
7494           {
7495             "id": "TIR2",
7496             "name": "PLKINHYI-TIR2"
7497           },
7498           {
7499             "id": "HSD1",
7500             "name": "CHASKCDS-HSD1"
7501           },
7502           {
7503             "id": "SLF78",
7504             "name": "SDCTLFN1-SLF78"
7505           },
7506           {
7507             "id": "SEE78",
7508             "name": "SDCTEEE4-SEE78"
7509           },
7510           {
7511             "id": "SAN13",
7512             "name": "TOKYJPFA-SAN13"
7513           },
7514           {
7515             "id": "SAA78",
7516             "name": "SDCTAAA1-SAA78"
7517           },
7518           {
7519             "id": "LUC1",
7520             "name": "ATLDFGYC-LUC1"
7521           },
7522           {
7523             "id": "AMD13",
7524             "name": "MEMATLAN-AMD13"
7525           },
7526           {
7527             "id": "TOR1",
7528             "name": "TOROONXN-TOR1"
7529           },
7530           {
7531             "id": "QWE1",
7532             "name": "QWECLLI1-QWE1"
7533           },
7534           {
7535             "id": "ZOG1",
7536             "name": "ZOGASTRO-ZOG1"
7537           },
7538           {
7539             "id": "CAL33",
7540             "name": "CALIFORN-CAL33"
7541           },
7542           {
7543             "id": "SHH78",
7544             "name": "SDIT1HHH-SHH78"
7545           },
7546           {
7547             "id": "DSA1",
7548             "name": "LKJHGFDS-DSA1"
7549           },
7550           {
7551             "id": "CLG1",
7552             "name": "CLGRABAD-CLG1"
7553           },
7554           {
7555             "id": "BNA1",
7556             "name": "BNARAGBK-BNA1"
7557           },
7558           {
7559             "id": "ATL84",
7560             "name": "CANTTCOC-ATL84"
7561           },
7562           {
7563             "id": "APP1",
7564             "name": "WBHGTYUI-APP1"
7565           },
7566           {
7567             "id": "RJN1",
7568             "name": "RJNRBZAW-RJN1"
7569           },
7570           {
7571             "id": "EHH78",
7572             "name": "SDCSHHH5-EHH78"
7573           },
7574           {
7575             "id": "mac10",
7576             "name": "PKGTESTF-mac10"
7577           },
7578           {
7579             "id": "SXB78",
7580             "name": "SDCTGXB1-SXB78"
7581           },
7582           {
7583             "id": "SAX78",
7584             "name": "SDCTAXG1-SAX78"
7585           },
7586           {
7587             "id": "SYD1",
7588             "name": "SYDNAUBV-SYD1"
7589           },
7590           {
7591             "id": "TOK1",
7592             "name": "TOKYJPFA-TOK1"
7593           },
7594           {
7595             "id": "KGM2",
7596             "name": "KGMTNC20-KGM2"
7597           },
7598           {
7599             "id": "DCC1b",
7600             "name": "POIUYTGH-DCC1b"
7601           },
7602           {
7603             "id": "SKK78",
7604             "name": "SDCTKKK1-SKK78"
7605           },
7606           {
7607             "id": "SGG78",
7608             "name": "SDCTGGG1-SGG78"
7609           },
7610           {
7611             "id": "SJJ78",
7612             "name": "SDCTJJJ1-SJJ78"
7613           },
7614           {
7615             "id": "SBX78",
7616             "name": "SDCTBXG1-SBX78"
7617           },
7618           {
7619             "id": "LAG1",
7620             "name": "LARGIZON-LAG1"
7621           },
7622           {
7623             "id": "IAA1",
7624             "name": "QAZXSWED-IAA1"
7625           },
7626           {
7627             "id": "POI1",
7628             "name": "PLMNJKIU-POI1"
7629           },
7630           {
7631             "id": "LAG1a",
7632             "name": "LARGIZON-LAG1a"
7633           },
7634           {
7635             "id": "PBL1",
7636             "name": "PBLAPBAI-PBL1"
7637           },
7638           {
7639             "id": "LAG45",
7640             "name": "LARGIZON-LAG1a"
7641           },
7642           {
7643             "id": "MAR1",
7644             "name": "MNBVCXZM-MAR1"
7645           },
7646           {
7647             "id": "HST70",
7648             "name": "HSTNTX70-HST70"
7649           },
7650           {
7651             "id": "DCC1a",
7652             "name": "POIUYTGH-DCC1a"
7653           },
7654           {
7655             "id": "TOL1",
7656             "name": "TOLDOH21-TOL1"
7657           },
7658           {
7659             "id": "LON1",
7660             "name": "LONEENCO-LON1"
7661           },
7662           {
7663             "id": "SJU78",
7664             "name": "SDIT1JUB-SJU78"
7665           },
7666           {
7667             "id": "STN27",
7668             "name": "HSTNTX01-STN27"
7669           },
7670           {
7671             "id": "SSW56",
7672             "name": "ss8126GT-SSW56"
7673           },
7674           {
7675             "id": "SBB78",
7676             "name": "SDIT1BBB-SBB78"
7677           },
7678           {
7679             "id": "DCC3",
7680             "name": "POIUYTGH-DCC3"
7681           },
7682           {
7683             "id": "GNV1",
7684             "name": "GNVLSCTL-GNV1"
7685           },
7686           {
7687             "id": "WAS1",
7688             "name": "WASHDCSW-WAS1"
7689           },
7690           {
7691             "id": "TOY1",
7692             "name": "TORYONNZ-TOY1"
7693           },
7694           {
7695             "id": "STT1",
7696             "name": "STTLWA02-STT1"
7697           },
7698           {
7699             "id": "STG1",
7700             "name": "STTGGE62-STG1"
7701           },
7702           {
7703             "id": "SLL78",
7704             "name": "SDCTLLL1-SLL78"
7705           },
7706           {
7707             "id": "SBU78",
7708             "name": "SDIT1BUB-SBU78"
7709           },
7710           {
7711             "id": "ATL2",
7712             "name": "ATLNGANW-ATL2"
7713           },
7714           {
7715             "id": "BOT1",
7716             "name": "BOTHWAKY-BOT1"
7717           },
7718           {
7719             "id": "SNG1",
7720             "name": "SNGPSIAU-SNG1"
7721           },
7722           {
7723             "id": "NYC1",
7724             "name": "NYCMNY54-NYC1"
7725           },
7726           {
7727             "id": "LAG1b",
7728             "name": "LARGIZON-LAG1b"
7729           },
7730           {
7731             "id": "AMD15",
7732             "name": "AMDFAA01-AMD15"
7733           },
7734           {
7735             "id": "SNA1",
7736             "name": "SNANTXCA-SNA1"
7737           },
7738           {
7739             "id": "PLT1",
7740             "name": "PLTNCA60-PLT1"
7741           },
7742           {
7743             "id": "TLP1",
7744             "name": "TLPNXM18-TLP1"
7745           },
7746           {
7747             "id": "SDD81",
7748             "name": "SAIT1DD6-SDD81"
7749           },
7750           {
7751             "id": "DCC1",
7752             "name": "POIUYTGH-DCC1"
7753           },
7754           {
7755             "id": "DCC2",
7756             "name": "POIUYTGH-DCC2"
7757           },
7758           {
7759             "id": "OKC1",
7760             "name": "OKCBOK55-OKC1"
7761           },
7762           {
7763             "id": "PAR1",
7764             "name": "PARSFRCG-PAR1"
7765           },
7766           {
7767             "id": "TES36",
7768             "name": "ABCEETES-TES36"
7769           },
7770           {
7771             "id": "COM1",
7772             "name": "PLMKOPIU-COM1"
7773           },
7774           {
7775             "id": "ANI1",
7776             "name": "ATLNGTRE-ANI1"
7777           },
7778           {
7779             "id": "SDG78",
7780             "name": "SDIT1BDG-SDG78"
7781           },
7782           {
7783             "id": "mac20",
7784             "name": "PKGTESTF-mac20"
7785           },
7786           {
7787             "id": "DSF45",
7788             "name": "DSFBG123-DSF45"
7789           },
7790           {
7791             "id": "HST25",
7792             "name": "HSTNTX01-HST25"
7793           },
7794           {
7795             "id": "AMD18",
7796             "name": "AUDIMA01-AMD18"
7797           },
7798           {
7799             "id": "SAA80",
7800             "name": "SAIT9AA3-SAA80"
7801           },
7802           {
7803             "id": "SSA56",
7804             "name": "SSIT2AA7-SSA56"
7805           },
7806           {
7807             "id": "SDD82",
7808             "name": "SAIT1DD9-SDD82"
7809           },
7810           {
7811             "id": "JCV1",
7812             "name": "JCVLFLBW-JCV1"
7813           },
7814           {
7815             "id": "SUL2",
7816             "name": "WERTYUJK-SUL2"
7817           },
7818           {
7819             "id": "PUR1",
7820             "name": "purelyde-PUR1"
7821           },
7822           {
7823             "id": "FDE55",
7824             "name": "FDERT555-FDE55"
7825           },
7826           {
7827             "id": "SITE",
7828             "name": "LONEENCO-SITE"
7829           },
7830           {
7831             "id": "ATL1",
7832             "name": "ATLNGAMA-ATL1"
7833           },
7834           {
7835             "id": "JUL1",
7836             "name": "ZXCVBNMM-JUL1"
7837           },
7838           {
7839             "id": "TAT34",
7840             "name": "TESAAISB-TAT34"
7841           },
7842           {
7843             "id": "XCP12",
7844             "name": "CHKGH123-XCP12"
7845           },
7846           {
7847             "id": "RAI1",
7848             "name": "poiuytre-RAI1"
7849           },
7850           {
7851             "id": "HPO1",
7852             "name": "ATLNGAUP-HPO1"
7853           },
7854           {
7855             "id": "KJF12",
7856             "name": "KJFDH123-KJF12"
7857           },
7858           {
7859             "id": "SCC80",
7860             "name": "SAIT9CC3-SCC80"
7861           },
7862           {
7863             "id": "SAA12",
7864             "name": "SAIT9AF8-SAA12"
7865           },
7866           {
7867             "id": "SAA14",
7868             "name": "SAIT1AA9-SAA14"
7869           },
7870           {
7871             "id": "ATL35",
7872             "name": "TTESSAAI-ATL35"
7873           },
7874           {
7875             "id": "CWY1",
7876             "name": "CWYMOWBS-CWY1"
7877           },
7878           {
7879             "id": "ATL76",
7880             "name": "TELEPAAI-ATL76"
7881           },
7882           {
7883             "id": "DSL12",
7884             "name": "DSLFK242-DSL12"
7885           },
7886           {
7887             "id": "ATL53",
7888             "name": "AAIATLTE-ATL53"
7889           },
7890           {
7891             "id": "SAA11",
7892             "name": "SAIT9AA2-SAA11"
7893           },
7894           {
7895             "id": "ATL62",
7896             "name": "TESSASCH-ATL62"
7897           },
7898           {
7899             "id": "AUG1",
7900             "name": "ASDFGHJK-AUG1"
7901           },
7902           {
7903             "id": "POI22",
7904             "name": "POIUY123-POI22"
7905           },
7906           {
7907             "id": "SAA13",
7908             "name": "SAIT1AA9-SAA13"
7909           },
7910           {
7911             "id": "BHY17",
7912             "name": "BHYTFRF3-BHY17"
7913           },
7914           {
7915             "id": "LIS1",
7916             "name": "HOSTPROF-LIS1"
7917           },
7918           {
7919             "id": "SIP1",
7920             "name": "ZXCVBNMK-SIP1"
7921           },
7922           {
7923             "id": "ATL99",
7924             "name": "TEESTAAI-ATL43"
7925           },
7926           {
7927             "id": "ATL64",
7928             "name": "FORLOAAJ-ATL64"
7929           },
7930           {
7931             "id": "TAT33",
7932             "name": "TESAAISA-TAT33"
7933           },
7934           {
7935             "id": "RAD10",
7936             "name": "INDIPUNE-RAD10"
7937           },
7938           {
7939             "id": "RTW5",
7940             "name": "BHYTFRY4-RTW5"
7941           },
7942           {
7943             "id": "JGS1",
7944             "name": "KSJKKKKK-JGS1"
7945           },
7946           {
7947             "id": "ATL98",
7948             "name": "TEESTAAI-ATL43"
7949           },
7950           {
7951             "id": "WAN1",
7952             "name": "LEIWANGW-WAN1"
7953           },
7954           {
7955             "id": "ATL44",
7956             "name": "ATLSANAB-ATL44"
7957           },
7958           {
7959             "id": "RTD2",
7960             "name": "BHYTFRk4-RTD2"
7961           },
7962           {
7963             "id": "NIR1",
7964             "name": "ORFLMANA-NIR1"
7965           },
7966           {
7967             "id": "ATL75",
7968             "name": "SANAAIRE-ATL75"
7969           },
7970           {
7971             "id": "NUM1",
7972             "name": "QWERTYUI-NUM1"
7973           },
7974           {
7975             "id": "MTN32",
7976             "name": "MDTWNJ21-MTN32"
7977           },
7978           {
7979             "id": "RTZ4",
7980             "name": "BHYTFRZ6-RTZ4"
7981           },
7982           {
7983             "id": "ATL56",
7984             "name": "ATLSANAC-ATL56"
7985           },
7986           {
7987             "id": "AMS1",
7988             "name": "AMSTNLBW-AMS1"
7989           },
7990           {
7991             "id": "RCT1",
7992             "name": "AMSTERNL-RCT1"
7993           },
7994           {
7995             "id": "JAN1",
7996             "name": "ORFLMATT-JAN1"
7997           },
7998           {
7999             "id": "ABC14",
8000             "name": "TESAAISA-ABC14"
8001           },
8002           {
8003             "id": "TAT37",
8004             "name": "TESAAISD-TAT37"
8005           },
8006           {
8007             "id": "MIC54",
8008             "name": "MICHIGAN-MIC54"
8009           },
8010           {
8011             "id": "ABC11",
8012             "name": "ATLSANAI-ABC11"
8013           },
8014           {
8015             "id": "AMF11",
8016             "name": "AMDOCS01-AMF11"
8017           },
8018           {
8019             "id": "ATL63",
8020             "name": "ATLSANEW-ATL63"
8021           },
8022           {
8023             "id": "ABC12",
8024             "name": "ATLSECIA-ABC12"
8025           },
8026           {
8027             "id": "MTN20",
8028             "name": "MDTWNJ21-MTN20"
8029           },
8030           {
8031             "id": "ABC15",
8032             "name": "AAITESAN-ABC15"
8033           },
8034           {
8035             "id": "AVT1",
8036             "name": "AVTRFLHD-AVT1"
8037           },
8038           {
8039             "id": "ATL34",
8040             "name": "ATLSANAI-ATL34"
8041           }
8042         ],
8043         "categoryParameters": {
8044           "owningEntityList": [
8045             {
8046               "id": "aaa1",
8047               "name": "aaa1"
8048             },
8049             {
8050               "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
8051               "name": "WayneHolland"
8052             },
8053             {
8054               "id": "Melissa",
8055               "name": "Melissa"
8056             }
8057           ],
8058           "projectList": [
8059             {
8060               "id": "WATKINS",
8061               "name": "WATKINS"
8062             },
8063             {
8064               "id": "x1",
8065               "name": "x1"
8066             },
8067             {
8068               "id": "yyy1",
8069               "name": "yyy1"
8070             }
8071           ],
8072           "lineOfBusinessList": [
8073             {
8074               "id": "ONAP",
8075               "name": "ONAP"
8076             },
8077             {
8078               "id": "zzz1",
8079               "name": "zzz1"
8080             }
8081           ],
8082           "platformList": [
8083             {
8084               "id": "platform",
8085               "name": "platform"
8086             },
8087             {
8088               "id": "xxx1",
8089               "name": "xxx1"
8090             }
8091           ]
8092         },
8093         "type": "[LCP_REGIONS_AND_TENANTS] Update"
8094       }
8095     }
8096   }
8097
8098   function getReduxWith2Networks() {
8099     return {
8100       "global": {
8101         "name": null,
8102         "type": "UPDATE_DRAWING_BOARD_STATUS",
8103         "flags": {
8104           "CREATE_INSTANCE_TEST": false,
8105           "EMPTY_DRAWING_BOARD_TEST": false,
8106           "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
8107           "FLAG_ASYNC_INSTANTIATION": true,
8108           "FLAG_ASYNC_JOBS": true,
8109           "FLAG_ADD_MSO_TESTAPI_FIELD": true,
8110           "FLAG_UNASSIGN_SERVICE": true,
8111           "FLAG_SERVICE_MODEL_CACHE": true,
8112           "FLAG_COLLECTION_RESOURCE_SUPPORT": false,
8113           "FLAG_SHOW_ASSIGNMENTS": true,
8114           "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
8115           "FLAG_DUPLICATE_VNF": true,
8116           "FLAG_DEFAULT_VNF": true,
8117           "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": true,
8118           "FLAG_A_LA_CARTE_AUDIT_INFO": true,
8119           "FLAG_1810_CR_ADD_CLOUD_OWNER_TO_MSO_REQUEST": true,
8120           "FLAG_PRESENT_PROVIDER_NETWORKS_ASSOCIATIONS": true,
8121           "FLAG_1810_CR_SOFT_DELETE_ALACARTE_VF_MODULE": false,
8122           "FLAG_1902_NEW_VIEW_EDIT": false,
8123           "FLAG_1810_IDENTIFY_SERVICE_FOR_NEW_UI": false,
8124           "FLAG_1902_VNF_GROUPING": false,
8125           "FLAG_SHOW_VERIFY_SERVICE": false,
8126           "FLAG_ASYNC_ALACARTE_VFMODULE": true,
8127           "FLAG_ASYNC_ALACARTE_VNF": true,
8128           "FLAG_SHIFT_VFMODULE_PARAMS_TO_VNF": true,
8129           "FLAG_1810_AAI_LOCAL_CACHE": true,
8130           "FLAG_EXP_USE_DEFAULT_HOST_NAME_VERIFIER": false,
8131           "FLAG_EXP_ANY_ALACARTE_NEW_INSTANTIATION_UI": false,
8132           "FLAG_SUPPLEMENTARY_FILE": true,
8133           "FLAG_5G_IN_NEW_INSTANTIATION_UI": true,
8134           "FLAG_RESTRICTED_SELECT": false,
8135           "FLAG_1810_CR_LET_SELECTING_COLLECTOR_TYPE_UNCONDITIONALLY": true
8136         },
8137         "drawingBoardStatus": "CREATE"
8138       },
8139       "service": {
8140         "serviceHierarchy": {
8141           "2ab1da67-39cc-425f-ba52-59a64d0ea04a": {
8142             "service": {
8143               "uuid": "2ab1da67-39cc-425f-ba52-59a64d0ea04a",
8144               "invariantUuid": "712b3447-f096-42f6-ae4c-4bdc8988feb6",
8145               "name": "sgi_direct_net NC SRIOV network",
8146               "version": "1.0",
8147               "toscaModelURL": null,
8148               "category": "Network Service",
8149               "serviceType": "INFRASTRUCTURE",
8150               "serviceRole": "PROVIDER-NETWORK",
8151               "description": "SRIOV network model for NC 1.0, VLAN ID 103",
8152               "serviceEcompNaming": "false",
8153               "instantiationType": "A-La-Carte",
8154               "inputs": {},
8155               "vidNotions": {
8156                 "instantiationUI": "networkWithPropertyNetworkTechnologyEqualsStandardSriovOrOvs",
8157                 "modelCategory": "5G Provider Network",
8158                 "viewEditUI": "legacy"
8159               }
8160             },
8161             "vnfs": {},
8162             "networks": {
8163               "SR-IOV Provider 2-1": {
8164                 "uuid": "01f4c475-3f89-4f00-a2f4-39a873dba0ae",
8165                 "invariantUuid": "ffb9e45c-e674-4289-aad3-00040ad746e4",
8166                 "description": "NETWORK_CLOUD_PROVIDER_NETWORK",
8167                 "name": "NETWORK_CLOUD_PROVIDER_NETWORK",
8168                 "version": "1.0",
8169                 "customizationUuid": "42551d11-b8d1-460d-8795-3e1363ad7736",
8170                 "inputs": {},
8171                 "commands": {},
8172                 "properties": {
8173                   "network_role": "sgi_direct_net_1",
8174                   "network_assignments": "{is_external_network=false, is_shared_network=true, is_trunked=false, ipv4_subnet_default_assignment={dhcp_enabled=false, ip_version=4, min_subnets_count=1, use_ipv4=true}, ecomp_generated_network_assignment=false, ipv6_subnet_default_assignment={dhcp_enabled=false, use_ipv6=true, ip_version=6, min_subnets_count=1}, related_networks=[{related_network_role=sgi_direct_net_1_tenant}]}",
8175                   "exVL_naming": "{ecomp_generated_naming=false}",
8176                   "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
8177                   "network_scope": "GLOBAL",
8178                   "ecomp_generated_naming": "false",
8179                   "network_type": "SR-IOV-PROVIDER2-1",
8180                   "provider_network": "{physical_network_name=sriovnet1, is_provider_network=true}",
8181                   "network_technology": "STANDARD-SR-IOV",
8182                   "network_homing": "{ecomp_selected_instance_node_target=false}"
8183                 },
8184                 "type": "VL",
8185                 "modelCustomizationName": "SR-IOV Provider 2-1"
8186               },
8187               "SR-IOV Provider 2-2": {
8188                 "uuid": "01f4c475-3f89-4f00-a2f4-39a873dba0ae",
8189                 "invariantUuid": "ffb9e45c-e674-4289-aad3-00040ad746e4",
8190                 "description": "NETWORK_CLOUD_PROVIDER_NETWORK",
8191                 "name": "NETWORK_CLOUD_PROVIDER_NETWORK",
8192                 "version": "1.0",
8193                 "customizationUuid": "14d2dc2b-4e85-4ef5-b4da-fe996e2a5d33",
8194                 "inputs": {},
8195                 "commands": {},
8196                 "properties": {
8197                   "network_role": "sgi_direct_net_2",
8198                   "network_assignments": "{is_external_network=false, is_shared_network=true, is_trunked=false, ipv4_subnet_default_assignment={dhcp_enabled=false, ip_version=4, min_subnets_count=1, use_ipv4=true}, ecomp_generated_network_assignment=false, ipv6_subnet_default_assignment={dhcp_enabled=false, use_ipv6=true, ip_version=6, min_subnets_count=1}, related_networks=[{related_network_role=sgi_direct_net_2_tenant}]}",
8199                   "exVL_naming": "{ecomp_generated_naming=false}",
8200                   "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
8201                   "network_scope": "GLOBAL",
8202                   "ecomp_generated_naming": "false",
8203                   "network_type": "SR-IOV-PROVIDER2-2",
8204                   "provider_network": "{physical_network_name=sriovnet2, is_provider_network=true}",
8205                   "network_technology": "STANDARD-SR-IOV",
8206                   "network_homing": "{ecomp_selected_instance_node_target=false}"
8207                 },
8208                 "type": "VL",
8209                 "modelCustomizationName": "SR-IOV Provider 2-2"
8210               }
8211             },
8212             "collectionResource": {},
8213             "configurations": {},
8214             "fabricConfigurations": {},
8215             "serviceProxies": {},
8216             "vfModules": {},
8217             "volumeGroups": {},
8218             "pnfs": {},
8219             "vnfGroups": {}
8220           }
8221         },
8222         "serviceInstance": {
8223           "2ab1da67-39cc-425f-ba52-59a64d0ea04a": {
8224             "action": "Create",
8225             "isDirty": false,
8226             "vnfs": {},
8227             "instanceParams": [
8228               {}
8229             ],
8230             "validationCounter": 0,
8231             "existingNames": {
8232               "myname": ""
8233             },
8234             "existingVNFCounterMap": {},
8235             "existingVnfGroupCounterMap": {},
8236             "existingNetworksCounterMap": {
8237               "01f4c475-3f89-4f00-a2f4-39a873dba0ae": 1
8238             },
8239             "optionalGroupMembersMap": {},
8240             "networks": {
8241               "SR-IOV Provider 2-2": {
8242                 "action": "Create",
8243                 "inMaint": false,
8244                 "rollbackOnFailure": "true",
8245                 "originalName": "SR-IOV Provider 2-2",
8246                 "isMissingData": false,
8247                 "trackById": "83ad9rv48px",
8248                 "networkStoreKey": "SR-IOV Provider 2-2",
8249                 "instanceName": "NETWORK_CLOUD_PROVIDER_NETWORK",
8250                 "productFamilyId": null,
8251                 "lcpCloudRegionId": "olson5b",
8252                 "tenantId": "db1818f7f2e34862b378bfb2cc520f91",
8253                 "platformName": "APPLICATIONS-SERVICES",
8254                 "lineOfBusiness": null,
8255                 "instanceParams": [
8256                   {}
8257                 ],
8258                 "modelInfo": {
8259                   "modelInvariantId": "ffb9e45c-e674-4289-aad3-00040ad746e4",
8260                   "modelVersionId": "01f4c475-3f89-4f00-a2f4-39a873dba0ae",
8261                   "modelName": "NETWORK_CLOUD_PROVIDER_NETWORK",
8262                   "modelVersion": "1.0",
8263                   "modelCustomizationId": "14d2dc2b-4e85-4ef5-b4da-fe996e2a5d33",
8264                   "modelCustomizationName": "SR-IOV Provider 2-2",
8265                   "uuid": "01f4c475-3f89-4f00-a2f4-39a873dba0ae"
8266                 },
8267                 "uuid": "01f4c475-3f89-4f00-a2f4-39a873dba0ae"
8268               }
8269             },
8270             "vnfGroups": {},
8271             "bulkSize": 1,
8272             "instanceName": "myname",
8273             "globalSubscriberId": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
8274             "subscriptionServiceType": "LINDSEY",
8275             "owningEntityId": "2d097967-10d4-4c7f-b23c-89978249ae17",
8276             "projectName": null,
8277             "rollbackOnFailure": "true",
8278             "aicZoneName": null,
8279             "owningEntityName": "FIREWALL-MISCELLANEOUS",
8280             "testApi": "VNF_API",
8281             "tenantName": null,
8282             "modelInfo": {
8283               "modelInvariantId": "712b3447-f096-42f6-ae4c-4bdc8988feb6",
8284               "modelVersionId": "2ab1da67-39cc-425f-ba52-59a64d0ea04a",
8285               "modelName": "sgi_direct_net NC SRIOV network",
8286               "modelVersion": "1.0",
8287               "uuid": "2ab1da67-39cc-425f-ba52-59a64d0ea04a"
8288             },
8289             "isALaCarte": true,
8290             "name": "sgi_direct_net NC SRIOV network",
8291             "version": "1.0",
8292             "description": "SRIOV network model for NC 1.0, VLAN ID 103",
8293             "category": "Network Service",
8294             "uuid": "2ab1da67-39cc-425f-ba52-59a64d0ea04a",
8295             "invariantUuid": "712b3447-f096-42f6-ae4c-4bdc8988feb6",
8296             "serviceType": "INFRASTRUCTURE",
8297             "serviceRole": "PROVIDER-NETWORK",
8298             "vidNotions": {
8299               "instantiationUI": "networkWithPropertyNetworkTechnologyEqualsStandardSriovOrOvs",
8300               "modelCategory": "5G Provider Network",
8301               "viewEditUI": "legacy"
8302             },
8303             "isEcompGeneratedNaming": false,
8304             "isMultiStepDesign": false
8305           }
8306         },
8307         "lcpRegionsAndTenants": {
8308           "lcpRegionList": [
8309             {
8310               "id": "olson5a",
8311               "name": "olson5a (AIC)",
8312               "isPermitted": true,
8313               "cloudOwner": "irma-aic"
8314             },
8315             {
8316               "id": "olson5b",
8317               "name": "olson5b (AIC)",
8318               "isPermitted": true,
8319               "cloudOwner": "irma-aic"
8320             },
8321             {
8322               "id": "olson6a",
8323               "name": "olson6a (AIC)",
8324               "isPermitted": true,
8325               "cloudOwner": "irma-aic"
8326             }
8327           ],
8328           "lcpRegionsTenantsMap": {
8329             "olson5a": [
8330               {
8331                 "id": "51e7dc5db9bb4c7b94766aacb8a3e72f",
8332                 "name": "Mobitools-FN-27099-T-01",
8333                 "isPermitted": true,
8334                 "cloudOwner": "irma-aic"
8335               },
8336               {
8337                 "id": "d5b3c05cffa645dd9951bf2dd9ef5416",
8338                 "name": "Mobisupport-FN-27099-T-01",
8339                 "isPermitted": true,
8340                 "cloudOwner": "irma-aic"
8341               }
8342             ],
8343             "olson5b": [
8344               {
8345                 "id": "db1818f7f2e34862b378bfb2cc520f91",
8346                 "name": "Mobisupport-FN-27099-T-02",
8347                 "isPermitted": true,
8348                 "cloudOwner": "irma-aic"
8349               }
8350             ],
8351             "olson6a": [
8352               {
8353                 "id": "1dcd712850414fbd91f8a9fc9cca7fd4",
8354                 "name": "FNvEPC-27099-T-MS-RDM6A",
8355                 "isPermitted": true,
8356                 "cloudOwner": "irma-aic"
8357               },
8358               {
8359                 "id": "26af9ed85a004932822a607d5e9973d5",
8360                 "name": "ssf-28239-T-RDM6A",
8361                 "isPermitted": true,
8362                 "cloudOwner": "irma-aic"
8363               }
8364             ]
8365           }
8366         },
8367         "subscribers": [
8368           {
8369             "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
8370             "name": "CRAIG/ROBERTS",
8371             "isPermitted": false
8372           },
8373           {
8374             "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
8375             "name": "Emanuel",
8376             "isPermitted": true
8377           },
8378           {
8379             "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
8380             "name": "JULIO ERICKSON",
8381             "isPermitted": false
8382           },
8383           {
8384             "id": "e433710f-9217-458d-a79d-1c7aff376d89",
8385             "name": "SILVIA ROBBINS",
8386             "isPermitted": false
8387           },
8388           {
8389             "id": "VidE2ETest",
8390             "name": "VidTest20161020",
8391             "isPermitted": false
8392           }
8393         ],
8394         "productFamilies": null,
8395         "serviceTypes": {
8396           "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb": [
8397             {
8398               "id": "22",
8399               "name": "JOHANNA_SANTOS",
8400               "isPermitted": true
8401             },
8402             {
8403               "id": "11",
8404               "name": "RAMSEY",
8405               "isPermitted": false
8406             },
8407             {
8408               "id": "3",
8409               "name": "LINDSEY",
8410               "isPermitted": true
8411             },
8412             {
8413               "id": "6",
8414               "name": "INFRASTRUCTURE",
8415               "isPermitted": false
8416             },
8417             {
8418               "id": "4",
8419               "name": "BROOKE-RODRIQUEZ",
8420               "isPermitted": false
8421             },
8422             {
8423               "id": "0",
8424               "name": "Emanuel",
8425               "isPermitted": true
8426             },
8427             {
8428               "id": "15",
8429               "name": "Kennedy",
8430               "isPermitted": true
8431             },
8432             {
8433               "id": "21",
8434               "name": "SSD",
8435               "isPermitted": true
8436             },
8437             {
8438               "id": "18",
8439               "name": "VPMS",
8440               "isPermitted": true
8441             },
8442             {
8443               "id": "1",
8444               "name": "vJamie",
8445               "isPermitted": true
8446             },
8447             {
8448               "id": "27",
8449               "name": "vEPDG",
8450               "isPermitted": false
8451             },
8452             {
8453               "id": "23",
8454               "name": "vRichardson",
8455               "isPermitted": true
8456             },
8457             {
8458               "id": "7",
8459               "name": "vGDF",
8460               "isPermitted": false
8461             },
8462             {
8463               "id": "2",
8464               "name": "vCarroll",
8465               "isPermitted": true
8466             },
8467             {
8468               "id": "17",
8469               "name": "vMGCF",
8470               "isPermitted": false
8471             },
8472             {
8473               "id": "9",
8474               "name": "vMME",
8475               "isPermitted": true
8476             },
8477             {
8478               "id": "25",
8479               "name": "vMMSC",
8480               "isPermitted": true
8481             },
8482             {
8483               "id": "8",
8484               "name": "vMNS",
8485               "isPermitted": true
8486             },
8487             {
8488               "id": "14",
8489               "name": "vMOG",
8490               "isPermitted": true
8491             },
8492             {
8493               "id": "10",
8494               "name": "vOTA",
8495               "isPermitted": true
8496             },
8497             {
8498               "id": "16",
8499               "name": "vSCP",
8500               "isPermitted": true
8501             },
8502             {
8503               "id": "24",
8504               "name": "vSEGW",
8505               "isPermitted": true
8506             },
8507             {
8508               "id": "12",
8509               "name": "vSILB",
8510               "isPermitted": false
8511             },
8512             {
8513               "id": "19",
8514               "name": "vSON",
8515               "isPermitted": false
8516             },
8517             {
8518               "id": "13",
8519               "name": "vSSF",
8520               "isPermitted": false
8521             },
8522             {
8523               "id": "26",
8524               "name": "vUDR",
8525               "isPermitted": false
8526             },
8527             {
8528               "id": "20",
8529               "name": "vVM",
8530               "isPermitted": true
8531             },
8532             {
8533               "id": "5",
8534               "name": "vVoiceMail",
8535               "isPermitted": true
8536             }
8537           ]
8538         },
8539         "aicZones": null,
8540         "categoryParameters": {
8541           "owningEntityList": [
8542             {
8543               "id": "1ae27f5e-c0b3-4daf-8561-b25fc1c716e4",
8544               "name": "AIC-ECOMP"
8545             },
8546             {
8547               "id": "2e51ed6c-1fac-43d4-8f84-9ec405eb7f35",
8548               "name": "ENTERTAINMENT-VIDEO"
8549             },
8550             {
8551               "id": "2d097967-10d4-4c7f-b23c-89978249ae17",
8552               "name": "FIREWALL-MISCELLANEOUS"
8553             },
8554             {
8555               "id": "aedf37e2-acda-4976-b89b-fd6d4ddffbc6",
8556               "name": "IP-COMMUNICATIONS"
8557             },
8558             {
8559               "id": "9463675f-6a75-4cc8-8054-c6cb2e67ad51",
8560               "name": "METRO-PACKET-CORE"
8561             },
8562             {
8563               "id": "92ddf9af-acae-484c-a786-ad7e9c0da26f",
8564               "name": "MOBILITY-ACCESS"
8565             },
8566             {
8567               "id": "10c645f5-9924-4b89-bec0-b17cf49d3cad",
8568               "name": "MOBILITY-CORE"
8569             },
8570             {
8571               "id": "048eb6e7-fa94-4f3b-ae03-3175a750dc57",
8572               "name": "OPTICAL-TRANSPORT"
8573             },
8574             {
8575               "id": "0efc70be-d674-4777-a0fa-329eae187ca0",
8576               "name": "PACKET-CORE"
8577             },
8578             {
8579               "id": "0463287b-b133-46ef-a0f5-9ce62be3a053",
8580               "name": "PREMISES"
8581             },
8582             {
8583               "id": "ae4505ad-2961-4395-8659-df2253af4fa8",
8584               "name": "WIRELINE-ACCESS"
8585             }
8586           ],
8587           "projectList": [
8588             {
8589               "id": "G.FAST",
8590               "name": "G.FAST"
8591             },
8592             {
8593               "id": "GigaPower",
8594               "name": "GigaPower"
8595             },
8596             {
8597               "id": "Kennedy",
8598               "name": "Kennedy"
8599             },
8600             {
8601               "id": "Trinity",
8602               "name": "Trinity"
8603             },
8604             {
8605               "id": "USP",
8606               "name": "USP"
8607             }
8608           ],
8609           "lineOfBusinessList": [
8610             {
8611               "id": "",
8612               "name": ""
8613             },
8614             {
8615               "id": "ADI",
8616               "name": "ADI"
8617             },
8618             {
8619               "id": "ADIG",
8620               "name": "ADIG"
8621             },
8622             {
8623               "id": "ADIOD",
8624               "name": "ADIOD"
8625             },
8626             {
8627               "id": "AT&TLEGACYDATASERVICES",
8628               "name": "AT&TLEGACYDATASERVICES"
8629             },
8630             {
8631               "id": "AT&TSWITCHEDETHERNET",
8632               "name": "AT&TSWITCHEDETHERNET"
8633             },
8634             {
8635               "id": "AVPN",
8636               "name": "AVPN"
8637             },
8638             {
8639               "id": "AVPN-MOW",
8640               "name": "AVPN-MOW"
8641             },
8642             {
8643               "id": "CALEA",
8644               "name": "CALEA"
8645             },
8646             {
8647               "id": "COLLABORATE",
8648               "name": "COLLABORATE"
8649             },
8650             {
8651               "id": "DIRECT-TV",
8652               "name": "DIRECT-TV"
8653             },
8654             {
8655               "id": "LINDSEY",
8656               "name": "LINDSEY"
8657             },
8658             {
8659               "id": "FLEXWARE",
8660               "name": "FLEXWARE"
8661             },
8662             {
8663               "id": "INFRASTRUCTURE",
8664               "name": "INFRASTRUCTURE"
8665             },
8666             {
8667               "id": "IOT",
8668               "name": "IOT"
8669             },
8670             {
8671               "id": "IP-FLEXIBLE-REACH",
8672               "name": "IP-FLEXIBLE-REACH"
8673             },
8674             {
8675               "id": "IP-TOLL-FREE",
8676               "name": "IP-TOLL-FREE"
8677             },
8678             {
8679               "id": "MOBILITY-ABS",
8680               "name": "MOBILITY-ABS"
8681             },
8682             {
8683               "id": "MOBILITY-CONSUMER",
8684               "name": "MOBILITY-CONSUMER"
8685             },
8686             {
8687               "id": "MOBILITY-RESELLER",
8688               "name": "MOBILITY-RESELLER"
8689             },
8690             {
8691               "id": "NETBOND",
8692               "name": "NETBOND"
8693             },
8694             {
8695               "id": "SD-WAN",
8696               "name": "SD-WAN"
8697             },
8698             {
8699               "id": "UVERSE",
8700               "name": "UVERSE"
8701             },
8702             {
8703               "id": "UVERSE-VOICE",
8704               "name": "UVERSE-VOICE"
8705             },
8706             {
8707               "id": "VIRTUAL-EDGE",
8708               "name": "VIRTUAL-EDGE"
8709             },
8710             {
8711               "id": "VOLTE",
8712               "name": "VOLTE"
8713             }
8714           ],
8715           "platformList": [
8716             {
8717               "id": "3rdPartyCloud",
8718               "name": "3rdPartyCloud"
8719             },
8720             {
8721               "id": "ACCESS",
8722               "name": "ACCESS"
8723             },
8724             {
8725               "id": "AIC",
8726               "name": "AIC"
8727             },
8728             {
8729               "id": "APPLICATIONS-SERVICES",
8730               "name": "APPLICATIONS-SERVICES"
8731             },
8732             {
8733               "id": "BVOIP",
8734               "name": "BVOIP"
8735             },
8736             {
8737               "id": "CALEA-DEDICATED",
8738               "name": "CALEA-DEDICATED"
8739             },
8740             {
8741               "id": "CBB-MPLS-CORE",
8742               "name": "CBB-MPLS-CORE"
8743             },
8744             {
8745               "id": "D1",
8746               "name": "D1"
8747             },
8748             {
8749               "id": "D1.5",
8750               "name": "D1.5"
8751             },
8752             {
8753               "id": "EPC",
8754               "name": "EPC"
8755             },
8756             {
8757               "id": "FIRSTNET-DEDICATED",
8758               "name": "FIRSTNET-DEDICATED"
8759             },
8760             {
8761               "id": "IMS-USP",
8762               "name": "IMS-USP"
8763             },
8764             {
8765               "id": "IPAG",
8766               "name": "IPAG"
8767             },
8768             {
8769               "id": "MNS",
8770               "name": "MNS"
8771             },
8772             {
8773               "id": "NETWORK-CLOUD",
8774               "name": "NETWORK-CLOUD"
8775             },
8776             {
8777               "id": "RADIO-WIRELESSENGINEERING",
8778               "name": "RADIO-WIRELESSENGINEERING"
8779             },
8780             {
8781               "id": "RAN",
8782               "name": "RAN"
8783             },
8784             {
8785               "id": "UCPE",
8786               "name": "UCPE"
8787             },
8788             {
8789               "id": "VNI",
8790               "name": "VNI"
8791             }
8792           ]
8793         },
8794         "type": "UPDATE_LCP_REGIONS_AND_TENANTS"
8795       }
8796     }
8797   }
8798
8799   function getReduxWithVNFS(isEcompGeneratedNaming: boolean) {
8800     return {
8801       "global": {
8802         "name": null,
8803         "flags": {
8804           "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
8805           "FLAG_SHOW_ASSIGNMENTS": true,
8806           "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
8807           "FLAG_UNASSIGN_SERVICE": true,
8808           "FLAG_SHOW_VERIFY_SERVICE": false,
8809           "FLAG_COLLECTION_RESOURCE_SUPPORT": true,
8810           "FLAG_DUPLICATE_VNF": true,
8811           "FLAG_SERVICE_MODEL_CACHE": true,
8812           "CREATE_INSTANCE_TEST": false,
8813           "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": false,
8814           "FLAG_ASYNC_INSTANTIATION": true,
8815           "FLAG_ASYNC_JOBS": true,
8816           "EMPTY_DRAWING_BOARD_TEST": false,
8817           "FLAG_ADD_MSO_TESTAPI_FIELD": true,
8818           "FLAG_SUPPLEMENTARY_FILE": true
8819         },
8820         "type": "[FLAGS] Update"
8821       },
8822       "service": {
8823         "serviceHierarchy": {
8824           "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
8825             "service": {
8826               "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
8827               "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
8828               "name": "ComplexService",
8829               "version": "1.0",
8830               "toscaModelURL": null,
8831               "category": "Emanuel",
8832               "serviceType": "",
8833               "serviceRole": "",
8834               "description": "ComplexService",
8835               "serviceEcompNaming": "true",
8836               "instantiationType": "Macro",
8837               "inputs": {}
8838             },
8839             "vnfs": {
8840               "VF_vMee 0": {
8841                 "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60",
8842                 "invariantUuid": "4160458e-f648-4b30-a176-43881ffffe9e",
8843                 "description": "VSP_vMee",
8844                 "name": "VF_vMee",
8845                 "version": "2.0",
8846                 "customizationUuid": "91415b44-753d-494c-926a-456a9172bbb9",
8847                 "inputs": {},
8848                 "commands": {},
8849                 "properties": {
8850                   "max_instances": 10,
8851                   "min_instances": 1,
8852                   "gpb2_Internal2_mac": "00:11:22:EF:AC:DF",
8853                   "sctp-b-ipv6-egress_src_start_port": "0",
8854                   "sctp-a-ipv6-egress_rule_application": "any",
8855                   "Internal2_allow_transit": "true",
8856                   "sctp-b-IPv6_ethertype": "IPv6",
8857                   "sctp-a-egress_rule_application": "any",
8858                   "sctp-b-ingress_action": "pass",
8859                   "sctp-b-ingress_rule_protocol": "icmp",
8860                   "ncb2_Internal1_mac": "00:11:22:EF:AC:DF",
8861                   "sctp-b-ipv6-ingress-src_start_port": "0.0",
8862                   "ncb1_Internal2_mac": "00:11:22:EF:AC:DF",
8863                   "fsb_volume_size_0": "320.0",
8864                   "sctp-b-egress_src_addresses": "local",
8865                   "sctp-a-ipv6-ingress_ethertype": "IPv4",
8866                   "sctp-a-ipv6-ingress-dst_start_port": "0",
8867                   "sctp-b-ipv6-ingress_rule_application": "any",
8868                   "domain_name": "default-domain",
8869                   "sctp-a-ingress_rule_protocol": "icmp",
8870                   "sctp-b-egress-src_start_port": "0.0",
8871                   "sctp-a-egress_src_addresses": "local",
8872                   "sctp-b-display_name": "epc-sctp-b-ipv4v6-sec-group",
8873                   "sctp-a-egress-src_start_port": "0.0",
8874                   "sctp-a-ingress_ethertype": "IPv4",
8875                   "sctp-b-ipv6-ingress-dst_end_port": "65535",
8876                   "sctp-b-dst_subnet_prefix_v6": "::",
8877                   "nf_naming": "{ecomp_generated_naming=true}",
8878                   "sctp-a-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
8879                   "sctp-b-egress-dst_start_port": "0.0",
8880                   "ncb_flavor_name": "nv.c20r64d1",
8881                   "gpb1_Internal1_mac": "00:11:22:EF:AC:DF",
8882                   "sctp-b-egress_dst_subnet_prefix_len": "0.0",
8883                   "Internal2_net_cidr": "10.0.0.10",
8884                   "sctp-a-ingress-dst_start_port": "0.0",
8885                   "sctp-a-egress-dst_start_port": "0.0",
8886                   "fsb1_Internal2_mac": "00:11:22:EF:AC:DF",
8887                   "sctp-a-egress_ethertype": "IPv4",
8888                   "vlc_st_service_mode": "in-network-nat",
8889                   "sctp-a-ipv6-egress_ethertype": "IPv4",
8890                   "sctp-a-egress-src_end_port": "65535.0",
8891                   "sctp-b-ipv6-egress_rule_application": "any",
8892                   "sctp-b-egress_action": "pass",
8893                   "sctp-a-ingress-src_subnet_prefix_len": "0.0",
8894                   "sctp-b-ipv6-ingress-src_end_port": "65535.0",
8895                   "sctp-b-name": "epc-sctp-b-ipv4v6-sec-group",
8896                   "fsb2_Internal1_mac": "00:11:22:EF:AC:DF",
8897                   "sctp-a-ipv6-ingress-src_start_port": "0.0",
8898                   "sctp-b-ipv6-egress_ethertype": "IPv4",
8899                   "Internal1_net_cidr": "10.0.0.10",
8900                   "sctp-a-egress_dst_subnet_prefix": "0.0.0.0",
8901                   "fsb_flavor_name": "nv.c20r64d1",
8902                   "sctp_rule_protocol": "132",
8903                   "sctp-b-ipv6-ingress_src_subnet_prefix_len": "0",
8904                   "sctp-a-ipv6-ingress_rule_application": "any",
8905                   "ecomp_generated_naming": isEcompGeneratedNaming.toString(),
8906                   "sctp-a-IPv6_ethertype": "IPv6",
8907                   "vlc2_Internal1_mac": "00:11:22:EF:AC:DF",
8908                   "vlc_st_virtualization_type": "virtual-machine",
8909                   "sctp-b-ingress-dst_start_port": "0.0",
8910                   "sctp-b-ingress-dst_end_port": "65535.0",
8911                   "sctp-a-ipv6-ingress-src_end_port": "65535.0",
8912                   "sctp-a-display_name": "epc-sctp-a-ipv4v6-sec-group",
8913                   "sctp-b-ingress_rule_application": "any",
8914                   "int2_sec_group_name": "int2-sec-group",
8915                   "vlc_flavor_name": "nd.c16r64d1",
8916                   "sctp-b-ipv6-egress_src_addresses": "local",
8917                   "vlc_st_interface_type_int1": "other1",
8918                   "sctp-b-egress-src_end_port": "65535.0",
8919                   "sctp-a-ipv6-egress-dst_start_port": "0",
8920                   "vlc_st_interface_type_int2": "other2",
8921                   "sctp-a-ipv6-egress_rule_protocol": "any",
8922                   "Internal2_shared": "false",
8923                   "sctp-a-ipv6-egress_dst_subnet_prefix_len": "0",
8924                   "Internal2_rpf": "disable",
8925                   "vlc1_Internal1_mac": "00:11:22:EF:AC:DF",
8926                   "sctp-b-ipv6-egress_src_end_port": "65535",
8927                   "sctp-a-ipv6-egress_src_addresses": "local",
8928                   "sctp-a-ingress-dst_end_port": "65535.0",
8929                   "sctp-a-ipv6-egress_src_end_port": "65535",
8930                   "Internal1_forwarding_mode": "l2",
8931                   "Internal2_dhcp": "false",
8932                   "sctp-a-dst_subnet_prefix_v6": "::",
8933                   "pxe_image_name": "MME_PXE-Boot_16ACP04_GA.qcow2",
8934                   "vlc_st_interface_type_gtp": "other0",
8935                   "ncb1_Internal1_mac": "00:11:22:EF:AC:DF",
8936                   "sctp-b-src_subnet_prefix_v6": "::",
8937                   "sctp-a-egress_dst_subnet_prefix_len": "0.0",
8938                   "int1_sec_group_name": "int1-sec-group",
8939                   "Internal1_dhcp": "false",
8940                   "sctp-a-ipv6-egress_dst_end_port": "65535",
8941                   "Internal2_forwarding_mode": "l2",
8942                   "fsb2_Internal2_mac": "00:11:22:EF:AC:DF",
8943                   "sctp-b-egress_dst_subnet_prefix": "0.0.0.0",
8944                   "Internal1_net_cidr_len": "17",
8945                   "gpb2_Internal1_mac": "00:11:22:EF:AC:DF",
8946                   "sctp-b-ingress-src_subnet_prefix_len": "0.0",
8947                   "sctp-a-ingress_dst_addresses": "local",
8948                   "sctp-a-egress_action": "pass",
8949                   "fsb_volume_type_0": "SF-Default-SSD",
8950                   "ncb2_Internal2_mac": "00:11:22:EF:AC:DF",
8951                   "vlc_st_interface_type_sctp_a": "left",
8952                   "vlc_st_interface_type_sctp_b": "right",
8953                   "sctp-a-src_subnet_prefix_v6": "::",
8954                   "vlc_st_version": "2",
8955                   "sctp-b-egress_ethertype": "IPv4",
8956                   "sctp-a-ingress_rule_application": "any",
8957                   "gpb1_Internal2_mac": "00:11:22:EF:AC:DF",
8958                   "instance_ip_family_v6": "v6",
8959                   "sctp-a-ipv6-egress_src_start_port": "0",
8960                   "sctp-b-ingress-src_start_port": "0.0",
8961                   "sctp-b-ingress_dst_addresses": "local",
8962                   "fsb1_Internal1_mac": "00:11:22:EF:AC:DF",
8963                   "vlc_st_interface_type_oam": "management",
8964                   "multi_stage_design": "false",
8965                   "oam_sec_group_name": "oam-sec-group",
8966                   "Internal2_net_gateway": "10.0.0.10",
8967                   "sctp-a-ipv6-ingress-dst_end_port": "65535",
8968                   "sctp-b-ipv6-egress-dst_start_port": "0",
8969                   "Internal1_net_gateway": "10.0.0.10",
8970                   "sctp-b-ipv6-egress_rule_protocol": "any",
8971                   "gtp_sec_group_name": "gtp-sec-group",
8972                   "sctp-a-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
8973                   "sctp-b-ipv6-egress_dst_subnet_prefix_len": "0",
8974                   "sctp-a-ipv6-ingress_dst_addresses": "local",
8975                   "sctp-a-egress_rule_protocol": "icmp",
8976                   "sctp-b-ipv6-egress_action": "pass",
8977                   "sctp-a-ipv6-egress_action": "pass",
8978                   "Internal1_shared": "false",
8979                   "sctp-b-ipv6-ingress_rule_protocol": "any",
8980                   "Internal2_net_cidr_len": "17",
8981                   "sctp-a-name": "epc-sctp-a-ipv4v6-sec-group",
8982                   "sctp-a-ingress-src_end_port": "65535.0",
8983                   "sctp-b-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
8984                   "sctp-a-egress-dst_end_port": "65535.0",
8985                   "sctp-a-ingress_action": "pass",
8986                   "sctp-b-egress_rule_protocol": "icmp",
8987                   "sctp-b-ipv6-ingress_action": "pass",
8988                   "vlc_st_service_type": "firewall",
8989                   "sctp-b-ipv6-egress_dst_end_port": "65535",
8990                   "sctp-b-ipv6-ingress-dst_start_port": "0",
8991                   "vlc2_Internal2_mac": "00:11:22:EF:AC:DF",
8992                   "vlc_st_availability_zone": "true",
8993                   "fsb_volume_image_name_1": "MME_FSB2_16ACP04_GA.qcow2",
8994                   "sctp-b-ingress-src_subnet_prefix": "0.0.0.0",
8995                   "sctp-a-ipv6-ingress_src_subnet_prefix_len": "0",
8996                   "Internal1_allow_transit": "true",
8997                   "gpb_flavor_name": "nv.c20r64d1",
8998                   "availability_zone_max_count": "1",
8999                   "fsb_volume_image_name_0": "MME_FSB1_16ACP04_GA.qcow2",
9000                   "sctp-b-ipv6-ingress_dst_addresses": "local",
9001                   "sctp-b-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
9002                   "sctp-b-ipv6-ingress_ethertype": "IPv4",
9003                   "vlc1_Internal2_mac": "00:11:22:EF:AC:DF",
9004                   "sctp-a-ingress-src_subnet_prefix": "0.0.0.0",
9005                   "sctp-a-ipv6-ingress_action": "pass",
9006                   "Internal1_rpf": "disable",
9007                   "sctp-b-ingress_ethertype": "IPv4",
9008                   "sctp-b-egress_rule_application": "any",
9009                   "sctp-b-ingress-src_end_port": "65535.0",
9010                   "sctp-a-ipv6-ingress_rule_protocol": "any",
9011                   "sctp-a-ingress-src_start_port": "0.0",
9012                   "sctp-b-egress-dst_end_port": "65535.0"
9013                 },
9014                 "type": "VF",
9015                 "modelCustomizationName": "VF_vMee 0",
9016                 "vfModules": {
9017                   "vf_vmee0..VfVmee..vmme_vlc..module-1": {
9018                     "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
9019                     "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
9020                     "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
9021                     "description": null,
9022                     "name": "VfVmee..vmme_vlc..module-1",
9023                     "version": "2",
9024                     "modelCustomizationName": "VfVmee..vmme_vlc..module-1",
9025                     "properties": {
9026                       "minCountInstances": 0,
9027                       "maxCountInstances": null,
9028                       "initialCount": 0,
9029                       "vfModuleLabel": "vmme_vlc"
9030                     },
9031                     "inputs": {},
9032                     "volumeGroupAllowed": false
9033                   },
9034                   "vf_vmee0..VfVmee..vmme_gpb..module-2": {
9035                     "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
9036                     "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
9037                     "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
9038                     "description": null,
9039                     "name": "VfVmee..vmme_gpb..module-2",
9040                     "version": "2",
9041                     "modelCustomizationName": "VfVmee..vmme_gpb..module-2",
9042                     "properties": {
9043                       "minCountInstances": 0,
9044                       "maxCountInstances": null,
9045                       "initialCount": 0,
9046                       "vfModuleLabel": "vmme_gpb"
9047                     },
9048                     "inputs": {},
9049                     "volumeGroupAllowed": false
9050                   },
9051                   "vf_vmee0..VfVmee..base_vmme..module-0": {
9052                     "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
9053                     "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
9054                     "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
9055                     "description": null,
9056                     "name": "VfVmee..base_vmme..module-0",
9057                     "version": "2",
9058                     "modelCustomizationName": "VfVmee..base_vmme..module-0",
9059                     "properties": {
9060                       "minCountInstances": 1,
9061                       "maxCountInstances": 1,
9062                       "initialCount": 1,
9063                       "vfModuleLabel": "base_vmme"
9064                     },
9065                     "inputs": {},
9066                     "volumeGroupAllowed": true
9067                   }
9068                 },
9069                 "volumeGroups": {
9070                   "vf_vmee0..VfVmee..base_vmme..module-0": {
9071                     "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
9072                     "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
9073                     "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
9074                     "description": null,
9075                     "name": "VfVmee..base_vmme..module-0",
9076                     "version": "2",
9077                     "modelCustomizationName": "VfVmee..base_vmme..module-0",
9078                     "properties": {
9079                       "minCountInstances": 1,
9080                       "maxCountInstances": 1,
9081                       "initialCount": 1,
9082                       "vfModuleLabel": "base_vmme"
9083                     },
9084                     "inputs": {}
9085                   }
9086                 },
9087                 "vfcInstanceGroups": {}
9088               }
9089             },
9090             "networks": {
9091               "ExtVL 0": {
9092                 "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
9093                 "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
9094                 "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
9095                 "name": "ExtVL",
9096                 "version": "37.0",
9097                 "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
9098                 "inputs": {},
9099                 "commands": {},
9100                 "properties": {
9101                   "ecomp_generated_naming": "false",
9102                   "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}}",
9103                   "exVL_naming": "{ecomp_generated_naming=true}",
9104                   "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
9105                   "network_homing": "{ecomp_selected_instance_node_target=false}"
9106                 },
9107                 "type": "VL",
9108                 "modelCustomizationName": "ExtVL 0"
9109               }
9110             },
9111             "collectionResource": {},
9112             "configurations": {
9113               "Port Mirroring Configuration By Policy 0": {
9114                 "uuid": "b4398538-e89d-4f13-b33d-ca323434ba50",
9115                 "invariantUuid": "6ef0ca40-f366-4897-951f-abd65d25f6f7",
9116                 "description": "A port mirroring configuration by policy object",
9117                 "name": "Port Mirroring Configuration By Policy",
9118                 "version": "27.0",
9119                 "customizationUuid": "3c3b7b8d-8669-4b3b-8664-61970041fad2",
9120                 "inputs": {},
9121                 "commands": {},
9122                 "properties": {},
9123                 "type": "Configuration",
9124                 "modelCustomizationName": "Port Mirroring Configuration By Policy 0",
9125                 "sourceNodes": [],
9126                 "collectorNodes": null,
9127                 "configurationByPolicy": false
9128               }
9129             },
9130             "serviceProxies": {},
9131             "vfModules": {
9132               "vf_vmee0..VfVmee..vmme_vlc..module-1": {
9133                 "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
9134                 "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
9135                 "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
9136                 "description": null,
9137                 "name": "VfVmee..vmme_vlc..module-1",
9138                 "version": "2",
9139                 "modelCustomizationName": "VfVmee..vmme_vlc..module-1",
9140                 "properties": {
9141                   "minCountInstances": 0,
9142                   "maxCountInstances": null,
9143                   "initialCount": 0,
9144                   "vfModuleLabel": "vmme_vlc"
9145                 },
9146                 "inputs": {},
9147                 "volumeGroupAllowed": false
9148               },
9149               "vf_vmee0..VfVmee..vmme_gpb..module-2": {
9150                 "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
9151                 "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
9152                 "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
9153                 "description": null,
9154                 "name": "VfVmee..vmme_gpb..module-2",
9155                 "version": "2",
9156                 "modelCustomizationName": "VfVmee..vmme_gpb..module-2",
9157                 "properties": {
9158                   "minCountInstances": 0,
9159                   "maxCountInstances": null,
9160                   "initialCount": 0,
9161                   "vfModuleLabel": "vmme_gpb"
9162                 },
9163                 "inputs": {},
9164                 "volumeGroupAllowed": false
9165               },
9166               "vf_vmee0..VfVmee..base_vmme..module-0": {
9167                 "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
9168                 "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
9169                 "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
9170                 "description": null,
9171                 "name": "VfVmee..base_vmme..module-0",
9172                 "version": "2",
9173                 "modelCustomizationName": "VfVmee..base_vmme..module-0",
9174                 "properties": {
9175                   "minCountInstances": 1,
9176                   "maxCountInstances": 1,
9177                   "initialCount": 1,
9178                   "vfModuleLabel": "base_vmme"
9179                 },
9180                 "inputs": {},
9181                 "volumeGroupAllowed": true
9182               }
9183             },
9184             "volumeGroups": {
9185               "vf_vmee0..VfVmee..base_vmme..module-0": {
9186                 "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
9187                 "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
9188                 "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
9189                 "description": null,
9190                 "name": "VfVmee..base_vmme..module-0",
9191                 "version": "2",
9192                 "modelCustomizationName": "VfVmee..base_vmme..module-0",
9193                 "properties": {
9194                   "minCountInstances": 1,
9195                   "maxCountInstances": 1,
9196                   "initialCount": 1,
9197                   "vfModuleLabel": "base_vmme"
9198                 },
9199                 "inputs": {}
9200               }
9201             },
9202             "pnfs": {}
9203           }
9204         },
9205         "serviceInstance": {
9206           "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
9207             "vnfs": {
9208               "VF_vMee 0": {
9209                 "originalName": "VF_vMee 0",
9210                 "rollbackOnFailure": "true",
9211                 "instanceName": "",
9212                 "vfModules": {
9213                   "vf_vmee0..VfVmee..vmme_vlc..module-1": {
9214                     "vf_vmee0..VfVmee..vmme_vlc..module-1dcudx": {
9215                       "modelInfo": {
9216                         "modelInvariantId": "98a7c88b-b577-476a-90e4-e25a5871e02b",
9217                         "modelVersionId": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
9218                         "modelName": "VfVmee..vmme_vlc..module-1",
9219                         "modelVersion": "2",
9220                         "modelCustomizationId": "55b1be94-671a-403e-a26c-667e9c47d091",
9221                         "modelCustomizationName": "VfVmee..vmme_vlc..module-1"
9222                       },
9223                       "isMissingData": false,
9224                       "supplementaryFile": "C:\\fakepath\\sample.json",
9225                       "supplementaryFile_hidden": {},
9226                       "supplementaryFile_hidden_content": "{\r\n  \"name\": \"a\",\r\n  \"value\": \"32\"\r\n}",
9227                       "supplementaryFileContent": {
9228                         "name": "a",
9229                           "value": "32"
9230                       },
9231                       "supplementaryFileName": "sample.json",
9232                       "instanceParams": [
9233                         {}
9234                       ]
9235                     }
9236                   }
9237                 },
9238                 "isMissingData": false,
9239                 "modelName": "VF_vMee 0",
9240                 "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
9241                 "lcpCloudRegionId": "hvf6",
9242                 "tenantId": "bae71557c5bb4d5aac6743a4e5f1d054",
9243                 "lineOfBusiness": "zzz1",
9244                 "platformName": "platform",
9245                 "modelInfo": {
9246                   "modelInvariantId": "4160458e-f648-4b30-a176-43881ffffe9e",
9247                   "modelVersionId": "d6557200-ecf2-4641-8094-5393ae3aae60",
9248                   "modelName": "VF_vMee",
9249                   "modelVersion": "2.0",
9250                   "modelCustomizationId": "91415b44-753d-494c-926a-456a9172bbb9",
9251                   "modelCustomizationName": "VF_vMee 0"
9252                 },
9253                 "legacyRegion": null
9254               }
9255             },
9256             "networks": {},
9257             "instanceParams": [
9258               {}
9259             ],
9260             "validationCounter": 0,
9261             "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
9262             "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
9263             "subscriptionServiceType": "TYLER SILVIA",
9264             "lcpCloudRegionId": "hvf6",
9265             "tenantId": "1178612d2b394be4834ad77f567c0af2",
9266             "aicZoneId": "YYY1",
9267             "projectName": "yyy1",
9268             "owningEntityId": "aaa1",
9269             "owningEntityName": "aaa1",
9270             "rollbackOnFailure": "true",
9271             "isALaCarte": false,
9272             "bulkSize": 1,
9273             "modelInfo": {
9274               "modelInvariantId": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
9275               "modelVersionId": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
9276               "modelName": "ComplexService",
9277               "modelVersion": "1.0"
9278             },
9279             "instanceName": "",
9280             "existingNames": {
9281               "serviceinstancename": "",
9282               "vfvmee00001": ""
9283             },
9284             "existingVNFCounterMap": {
9285               "91415b44-753d-494c-926a-456a9172bbb9": 1
9286             },
9287             "existingNetworksCounterMap": {},
9288             "tenantName": "AIN Web Tool-15-D-SSPtestcustome",
9289             "aicZoneName": "UUUAIAAI-YYY1"
9290           }
9291         },
9292         "lcpRegionsAndTenants": {
9293           "lcpRegionList": [
9294             {
9295               "id": "JANET25",
9296               "name": "JANET25",
9297               "isPermitted": true
9298             },
9299             {
9300               "id": "hvf6",
9301               "name": "hvf6",
9302               "isPermitted": true
9303             }
9304           ],
9305           "lcpRegionsTenantsMap": {
9306             "JANET25": [
9307               {
9308                 "id": "092eb9e8e4b7412e8787dd091bc58e86",
9309                 "name": "USP-SIP-IC-24335-T-01",
9310                 "isPermitted": true
9311               }
9312             ],
9313             "hvf6": [
9314               {
9315                 "id": "bae71557c5bb4d5aac6743a4e5f1d054",
9316                 "name": "AIN Web Tool-15-D-testalexandria",
9317                 "isPermitted": true
9318               },
9319               {
9320                 "id": "229bcdc6eaeb4ca59d55221141d01f8e",
9321                 "name": "AIN Web Tool-15-D-STTest2",
9322                 "isPermitted": true
9323               },
9324               {
9325                 "id": "1178612d2b394be4834ad77f567c0af2",
9326                 "name": "AIN Web Tool-15-D-SSPtestcustome",
9327                 "isPermitted": true
9328               },
9329               {
9330                 "id": "19c5ade915eb461e8af52fb2fd8cd1f2",
9331                 "name": "AIN Web Tool-15-D-UncheckedEcopm",
9332                 "isPermitted": true
9333               },
9334               {
9335                 "id": "de007636e25249238447264a988a927b",
9336                 "name": "AIN Web Tool-15-D-dfsdf",
9337                 "isPermitted": true
9338               },
9339               {
9340                 "id": "62f29b3613634ca6a3065cbe0e020c44",
9341                 "name": "AIN/SMS-16-D-Multiservices1",
9342                 "isPermitted": true
9343               },
9344               {
9345                 "id": "649289e30d3244e0b48098114d63c2aa",
9346                 "name": "AIN Web Tool-15-D-SSPST66",
9347                 "isPermitted": true
9348               },
9349               {
9350                 "id": "3f21eeea6c2c486bba31dab816c05a32",
9351                 "name": "AIN Web Tool-15-D-ASSPST47",
9352                 "isPermitted": true
9353               },
9354               {
9355                 "id": "f60ce21d3ee6427586cff0d22b03b773",
9356                 "name": "CESAR-100-D-sspjg67246",
9357                 "isPermitted": true
9358               },
9359               {
9360                 "id": "8774659e425f479895ae091bb5d46560",
9361                 "name": "CESAR-100-D-sspjg68359",
9362                 "isPermitted": true
9363               },
9364               {
9365                 "id": "624eb554b0d147c19ff8885341760481",
9366                 "name": "AINWebTool-15-D-iftach",
9367                 "isPermitted": true
9368               },
9369               {
9370                 "id": "214f55f5fc414c678059c383b03e4962",
9371                 "name": "CESAR-100-D-sspjg612401",
9372                 "isPermitted": true
9373               },
9374               {
9375                 "id": "c90666c291664841bb98e4d981ff1db5",
9376                 "name": "CESAR-100-D-sspjg621340",
9377                 "isPermitted": true
9378               },
9379               {
9380                 "id": "ce5b6bc5c7b348e1bf4b91ac9a174278",
9381                 "name": "sspjg621351cloned",
9382                 "isPermitted": true
9383               },
9384               {
9385                 "id": "b386b768a3f24c8e953abbe0b3488c02",
9386                 "name": "AINWebTool-15-D-eteancomp",
9387                 "isPermitted": true
9388               },
9389               {
9390                 "id": "dc6c4dbfd225474e9deaadd34968646c",
9391                 "name": "AINWebTool-15-T-SPFET",
9392                 "isPermitted": true
9393               },
9394               {
9395                 "id": "02cb5030e9914aa4be120bd9ed1e19eb",
9396                 "name": "AINWebTool-15-X-eeweww",
9397                 "isPermitted": true
9398               },
9399               {
9400                 "id": "f2f3830e4c984d45bcd00e1a04158a79",
9401                 "name": "CESAR-100-D-spjg61909",
9402                 "isPermitted": true
9403               },
9404               {
9405                 "id": "05b91bd5137f4929878edd965755c06d",
9406                 "name": "CESAR-100-D-sspjg621512cloned",
9407                 "isPermitted": true
9408               },
9409               {
9410                 "id": "7002fbe8482d4a989ddf445b1ce336e0",
9411                 "name": "AINWebTool-15-X-vdr",
9412                 "isPermitted": true
9413               },
9414               {
9415                 "id": "4008522be43741dcb1f5422022a2aa0b",
9416                 "name": "AINWebTool-15-D-ssasa",
9417                 "isPermitted": true
9418               },
9419               {
9420                 "id": "f44e2e96a1b6476abfda2fa407b00169",
9421                 "name": "AINWebTool-15-D-PFNPT",
9422                 "isPermitted": true
9423               },
9424               {
9425                 "id": "b69a52bec8a84669a37a1e8b72708be7",
9426                 "name": "AINWebTool-15-X-vdre",
9427                 "isPermitted": true
9428               },
9429               {
9430                 "id": "fac7d9fd56154caeb9332202dcf2969f",
9431                 "name": "AINWebTool-15-X-NONPODECOMP",
9432                 "isPermitted": true
9433               },
9434               {
9435                 "id": "2d34d8396e194eb49969fd61ffbff961",
9436                 "name": "DN5242-Nov16-T5",
9437                 "isPermitted": true
9438               },
9439               {
9440                 "id": "cb42a77ff45b48a8b8deb83bb64acc74",
9441                 "name": "ro-T11",
9442                 "isPermitted": true
9443               },
9444               {
9445                 "id": "fa45ca53c80b492fa8be5477cd84fc2b",
9446                 "name": "ro-T112",
9447                 "isPermitted": true
9448               },
9449               {
9450                 "id": "4914ab0ab3a743e58f0eefdacc1dde77",
9451                 "name": "DN5242-Nov21-T1",
9452                 "isPermitted": true
9453               },
9454               {
9455                 "id": "d0a3e3f2964542259d155a81c41aadc3",
9456                 "name": "test-hvf6-09",
9457                 "isPermitted": true
9458               },
9459               {
9460                 "id": "cbb99fe4ada84631b7baf046b6fd2044",
9461                 "name": "DN5242-Nov16-T3",
9462                 "isPermitted": true
9463               }
9464             ]
9465           }
9466         },
9467         "subscribers": [
9468           {
9469             "id": "CAR_2020_ER",
9470             "name": "CAR_2020_ER",
9471             "isPermitted": true
9472           },
9473           {
9474             "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
9475             "name": "JULIO ERICKSON",
9476             "isPermitted": false
9477           },
9478           {
9479             "id": "DHV1707-TestSubscriber-2",
9480             "name": "DALE BRIDGES",
9481             "isPermitted": false
9482           },
9483           {
9484             "id": "DHV1707-TestSubscriber-1",
9485             "name": "LLOYD BRIDGES",
9486             "isPermitted": false
9487           },
9488           {
9489             "id": "jimmy-example",
9490             "name": "JimmyExampleCust-20161102",
9491             "isPermitted": false
9492           },
9493           {
9494             "id": "jimmy-example2",
9495             "name": "JimmyExampleCust-20161103",
9496             "isPermitted": false
9497           },
9498           {
9499             "id": "ERICA5779-TestSub-PWT-102",
9500             "name": "ERICA5779-TestSub-PWT-102",
9501             "isPermitted": false
9502           },
9503           {
9504             "id": "ERICA5779-TestSub-PWT-101",
9505             "name": "ERICA5779-TestSub-PWT-101",
9506             "isPermitted": false
9507           },
9508           {
9509             "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
9510             "name": "Emanuel",
9511             "isPermitted": false
9512           },
9513           {
9514             "id": "ERICA5779-Subscriber-4",
9515             "name": "ERICA5779-Subscriber-5",
9516             "isPermitted": false
9517           },
9518           {
9519             "id": "ERICA5779-TestSub-PWT-103",
9520             "name": "ERICA5779-TestSub-PWT-103",
9521             "isPermitted": false
9522           },
9523           {
9524             "id": "ERICA5779-Subscriber-2",
9525             "name": "ERICA5779-Subscriber-2",
9526             "isPermitted": false
9527           },
9528           {
9529             "id": "e433710f-9217-458d-a79d-1c7aff376d89",
9530             "name": "SILVIA ROBBINS",
9531             "isPermitted": true
9532           },
9533           {
9534             "id": "ERICA5779-Subscriber-3",
9535             "name": "ERICA5779-Subscriber-3",
9536             "isPermitted": false
9537           },
9538           {
9539             "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
9540             "name": "CRAIG/ROBERTS",
9541             "isPermitted": false
9542           }
9543         ],
9544         "productFamilies": [
9545           {
9546             "id": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
9547             "name": "SCOTTIE",
9548             "isPermitted": true
9549           },
9550           {
9551             "id": "17cc1042-527b-11e6-beb8-9e71128cae77",
9552             "name": "IGNACIO",
9553             "isPermitted": true
9554           },
9555           {
9556             "id": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
9557             "name": "Christie",
9558             "isPermitted": true
9559           },
9560           {
9561             "id": "a4f6f2ae-9bf5-4ed7-b904-06b2099c4bd7",
9562             "name": "Enhanced Services",
9563             "isPermitted": true
9564           },
9565           {
9566             "id": "vTerrance",
9567             "name": "vTerrance",
9568             "isPermitted": true
9569           },
9570           {
9571             "id": "323d69d9-2efe-4r45-ay0a-89ea7ard4e6f",
9572             "name": "vSCP",
9573             "isPermitted": true
9574           },
9575           {
9576             "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
9577             "name": "Emanuel",
9578             "isPermitted": true
9579           },
9580           {
9581             "id": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
9582             "name": "BVOIP",
9583             "isPermitted": true
9584           },
9585           {
9586             "id": "db171b8f-115c-4992-a2e3-ee04cae357e0",
9587             "name": "LINDSEY",
9588             "isPermitted": true
9589           },
9590           {
9591             "id": "LRSI-OSPF",
9592             "name": "LRSI-OSPF",
9593             "isPermitted": true
9594           },
9595           {
9596             "id": "vRosemarie",
9597             "name": "HNGATEWAY",
9598             "isPermitted": true
9599           },
9600           {
9601             "id": "vHNPaas",
9602             "name": "WILKINS",
9603             "isPermitted": true
9604           },
9605           {
9606             "id": "e433710f-9217-458d-a79d-1c7aff376d89",
9607             "name": "TYLER SILVIA",
9608             "isPermitted": true
9609           },
9610           {
9611             "id": "b6a3f28c-eebf-494c-a900-055cc7c874ce",
9612             "name": "VROUTER",
9613             "isPermitted": true
9614           },
9615           {
9616             "id": "Cisneros",
9617             "name": "vMuriel",
9618             "isPermitted": true
9619           },
9620           {
9621             "id": "0ee8c1bc-7cbd-4b0a-a1ac-e9999255abc1",
9622             "name": "CARA Griffin",
9623             "isPermitted": true
9624           },
9625           {
9626             "id": "c7611ebe-c324-48f1-8085-94aef0c6ef3d",
9627             "name": "DARREN MCGEE",
9628             "isPermitted": true
9629           },
9630           {
9631             "id": "e30755dc-5673-4b6b-9dcf-9abdd96b93d1",
9632             "name": "Transport",
9633             "isPermitted": true
9634           },
9635           {
9636             "id": "vSalvatore",
9637             "name": "vSalvatore",
9638             "isPermitted": true
9639           },
9640           {
9641             "id": "d7bb0a21-66f2-4e6d-87d9-9ef3ced63ae4",
9642             "name": "Josefina",
9643             "isPermitted": true
9644           },
9645           {
9646             "id": "vHubbard",
9647             "name": "vHubbard",
9648             "isPermitted": true
9649           },
9650           {
9651             "id": "12a96a9d-4b4c-4349-a950-fe1159602621",
9652             "name": "DARREN MCGEE",
9653             "isPermitted": true
9654           }
9655         ],
9656         "serviceTypes": {
9657           "e433710f-9217-458d-a79d-1c7aff376d89": [
9658             {
9659               "id": "0",
9660               "name": "vRichardson",
9661               "isPermitted": false
9662             },
9663             {
9664               "id": "1",
9665               "name": "TYLER SILVIA",
9666               "isPermitted": true
9667             },
9668             {
9669               "id": "2",
9670               "name": "Emanuel",
9671               "isPermitted": false
9672             },
9673             {
9674               "id": "3",
9675               "name": "vJamie",
9676               "isPermitted": false
9677             },
9678             {
9679               "id": "4",
9680               "name": "vVoiceMail",
9681               "isPermitted": false
9682             },
9683             {
9684               "id": "5",
9685               "name": "Kennedy",
9686               "isPermitted": false
9687             },
9688             {
9689               "id": "6",
9690               "name": "vSEGW",
9691               "isPermitted": false
9692             },
9693             {
9694               "id": "7",
9695               "name": "vVM",
9696               "isPermitted": false
9697             },
9698             {
9699               "id": "8",
9700               "name": "vOTA",
9701               "isPermitted": false
9702             },
9703             {
9704               "id": "9",
9705               "name": "vMME",
9706               "isPermitted": false
9707             },
9708             {
9709               "id": "10",
9710               "name": "vMNS",
9711               "isPermitted": false
9712             },
9713             {
9714               "id": "11",
9715               "name": "vSCP",
9716               "isPermitted": false
9717             },
9718             {
9719               "id": "12",
9720               "name": "VPMS",
9721               "isPermitted": false
9722             },
9723             {
9724               "id": "13",
9725               "name": "vMMSC",
9726               "isPermitted": false
9727             },
9728             {
9729               "id": "14",
9730               "name": "SSD",
9731               "isPermitted": false
9732             },
9733             {
9734               "id": "15",
9735               "name": "vMOG",
9736               "isPermitted": false
9737             },
9738             {
9739               "id": "16",
9740               "name": "LINDSEY",
9741               "isPermitted": false
9742             },
9743             {
9744               "id": "17",
9745               "name": "JOHANNA_SANTOS",
9746               "isPermitted": false
9747             },
9748             {
9749               "id": "18",
9750               "name": "vCarroll",
9751               "isPermitted": false
9752             }
9753           ]
9754         },
9755         "aicZones": [
9756           {
9757             "id": "NFT1",
9758             "name": "NFTJSSSS-NFT1"
9759           },
9760           {
9761             "id": "JAG1",
9762             "name": "YUDFJULP-JAG1"
9763           },
9764           {
9765             "id": "YYY1",
9766             "name": "UUUAIAAI-YYY1"
9767           },
9768           {
9769             "id": "BAN1",
9770             "name": "VSDKYUTP-BAN1"
9771           },
9772           {
9773             "id": "DKJ1",
9774             "name": "DKJSJDKA-DKJ1"
9775           },
9776           {
9777             "id": "MCS1",
9778             "name": "ASACMAMS-MCS1"
9779           },
9780           {
9781             "id": "UIO1",
9782             "name": "uioclli1-UIO1"
9783           },
9784           {
9785             "id": "RAJ1",
9786             "name": "YGBIJNLQ-RAJ1"
9787           },
9788           {
9789             "id": "OPA1",
9790             "name": "opaclli1-OPA1"
9791           },
9792           {
9793             "id": "SDE1",
9794             "name": "ZXCVBNMA-SDE1"
9795           },
9796           {
9797             "id": "VEN2",
9798             "name": "FGHJUHIL-VEN2"
9799           },
9800           {
9801             "id": "ORL1",
9802             "name": "ORLDFLMA-ORL1"
9803           },
9804           {
9805             "id": "JAD1",
9806             "name": "JADECLLI-JAD1"
9807           },
9808           {
9809             "id": "ZXL1",
9810             "name": "LWLWCANN-ZXL1"
9811           },
9812           {
9813             "id": "CKL1",
9814             "name": "CLKSKCKK-CKL1"
9815           },
9816           {
9817             "id": "SDF1",
9818             "name": "sdfclli1-SDF1"
9819           },
9820           {
9821             "id": "RAD1",
9822             "name": "RADICAL1-RAD1"
9823           },
9824           {
9825             "id": "KIT1",
9826             "name": "BHYJFGLN-KIT1"
9827           },
9828           {
9829             "id": "REL1",
9830             "name": "INGERFGT-REL1"
9831           },
9832           {
9833             "id": "JNL1",
9834             "name": "CJALSDAC-JNL1"
9835           },
9836           {
9837             "id": "OLK1",
9838             "name": "OLKOLKLS-OLK1"
9839           },
9840           {
9841             "id": "CHI1",
9842             "name": "CHILLIWE-CHI1"
9843           },
9844           {
9845             "id": "UUU4",
9846             "name": "UUUAAAUU-UUU4"
9847           },
9848           {
9849             "id": "TUF1",
9850             "name": "TUFCLLI1-TUF1"
9851           },
9852           {
9853             "id": "KJN1",
9854             "name": "CKALDKSA-KJN1"
9855           },
9856           {
9857             "id": "SAM1",
9858             "name": "SNDGCA64-SAN1"
9859           },
9860           {
9861             "id": "SCK1",
9862             "name": "SCKSCKSK-SCK1"
9863           },
9864           {
9865             "id": "HJH1",
9866             "name": "AOEEQQQD-HJH1"
9867           },
9868           {
9869             "id": "HGD1",
9870             "name": "SDFQWHGD-HGD1"
9871           },
9872           {
9873             "id": "KOR1",
9874             "name": "HYFLNBVT-KOR1"
9875           },
9876           {
9877             "id": "ATL43",
9878             "name": "AICLOCID-ATL43"
9879           },
9880           {
9881             "id": "ATL54",
9882             "name": "AICFTAAI-ATL54"
9883           },
9884           {
9885             "id": "ATL66",
9886             "name": "CLLIAAII-ATL66"
9887           },
9888           {
9889             "id": "VEL1",
9890             "name": "BNMLKUIK-VEL1"
9891           },
9892           {
9893             "id": "ICC1",
9894             "name": "SANJITAT-ICC1"
9895           },
9896           {
9897             "id": "MNT11",
9898             "name": "WSXEFBTH-MNT11"
9899           },
9900           {
9901             "id": "DEF2",
9902             "name": "WSBHGTYL-DEF2"
9903           },
9904           {
9905             "id": "MAD11",
9906             "name": "SDFQWGKL-MAD11"
9907           },
9908           {
9909             "id": "OLG1",
9910             "name": "OLHOLHOL-OLG1"
9911           },
9912           {
9913             "id": "GAR1",
9914             "name": "NGFVSJKO-GAR1"
9915           },
9916           {
9917             "id": "SAN22",
9918             "name": "GNVLSCTL-SAN22"
9919           },
9920           {
9921             "id": "HRG1",
9922             "name": "HRGHRGGS-HRG1"
9923           },
9924           {
9925             "id": "JCS1",
9926             "name": "JCSJSCJS-JCS1"
9927           },
9928           {
9929             "id": "DHA12",
9930             "name": "WSXEDECF-DHA12"
9931           },
9932           {
9933             "id": "HJE1",
9934             "name": "AOEEWWWD-HJE1"
9935           },
9936           {
9937             "id": "NCA1",
9938             "name": "NCANCANN-NCA1"
9939           },
9940           {
9941             "id": "IOP1",
9942             "name": "iopclli1-IOP1"
9943           },
9944           {
9945             "id": "RTY1",
9946             "name": "rtyclli1-RTY1"
9947           },
9948           {
9949             "id": "KAP1",
9950             "name": "HIOUYTRQ-KAP1"
9951           },
9952           {
9953             "id": "ZEN1",
9954             "name": "ZENCLLI1-ZEN1"
9955           },
9956           {
9957             "id": "HKA1",
9958             "name": "JAKHLASS-HKA1"
9959           },
9960           {
9961             "id": "CQK1",
9962             "name": "CQKSCAKK-CQK1"
9963           },
9964           {
9965             "id": "SAI1",
9966             "name": "UBEKQLPD-SAI1"
9967           },
9968           {
9969             "id": "ERT1",
9970             "name": "ertclli1-ERT1"
9971           },
9972           {
9973             "id": "IBB1",
9974             "name": "PLMKOIJU-IBB1"
9975           },
9976           {
9977             "id": "TIR2",
9978             "name": "PLKINHYI-TIR2"
9979           },
9980           {
9981             "id": "HSD1",
9982             "name": "CHASKCDS-HSD1"
9983           },
9984           {
9985             "id": "SLF78",
9986             "name": "SDCTLFN1-SLF78"
9987           },
9988           {
9989             "id": "SEE78",
9990             "name": "SDCTEEE4-SEE78"
9991           },
9992           {
9993             "id": "SAN13",
9994             "name": "TOKYJPFA-SAN13"
9995           },
9996           {
9997             "id": "SAA78",
9998             "name": "SDCTAAA1-SAA78"
9999           },
10000           {
10001             "id": "LUC1",
10002             "name": "ATLDFGYC-LUC1"
10003           },
10004           {
10005             "id": "AMD13",
10006             "name": "MEMATLAN-AMD13"
10007           },
10008           {
10009             "id": "TOR1",
10010             "name": "TOROONXN-TOR1"
10011           },
10012           {
10013             "id": "QWE1",
10014             "name": "QWECLLI1-QWE1"
10015           },
10016           {
10017             "id": "ZOG1",
10018             "name": "ZOGASTRO-ZOG1"
10019           },
10020           {
10021             "id": "CAL33",
10022             "name": "CALIFORN-CAL33"
10023           },
10024           {
10025             "id": "SHH78",
10026             "name": "SDIT1HHH-SHH78"
10027           },
10028           {
10029             "id": "DSA1",
10030             "name": "LKJHGFDS-DSA1"
10031           },
10032           {
10033             "id": "CLG1",
10034             "name": "CLGRABAD-CLG1"
10035           },
10036           {
10037             "id": "BNA1",
10038             "name": "BNARAGBK-BNA1"
10039           },
10040           {
10041             "id": "ATL84",
10042             "name": "CANTTCOC-ATL84"
10043           },
10044           {
10045             "id": "APP1",
10046             "name": "WBHGTYUI-APP1"
10047           },
10048           {
10049             "id": "RJN1",
10050             "name": "RJNRBZAW-RJN1"
10051           },
10052           {
10053             "id": "EHH78",
10054             "name": "SDCSHHH5-EHH78"
10055           },
10056           {
10057             "id": "mac10",
10058             "name": "PKGTESTF-mac10"
10059           },
10060           {
10061             "id": "SXB78",
10062             "name": "SDCTGXB1-SXB78"
10063           },
10064           {
10065             "id": "SAX78",
10066             "name": "SDCTAXG1-SAX78"
10067           },
10068           {
10069             "id": "SYD1",
10070             "name": "SYDNAUBV-SYD1"
10071           },
10072           {
10073             "id": "TOK1",
10074             "name": "TOKYJPFA-TOK1"
10075           },
10076           {
10077             "id": "KGM2",
10078             "name": "KGMTNC20-KGM2"
10079           },
10080           {
10081             "id": "DCC1b",
10082             "name": "POIUYTGH-DCC1b"
10083           },
10084           {
10085             "id": "SKK78",
10086             "name": "SDCTKKK1-SKK78"
10087           },
10088           {
10089             "id": "SGG78",
10090             "name": "SDCTGGG1-SGG78"
10091           },
10092           {
10093             "id": "SJJ78",
10094             "name": "SDCTJJJ1-SJJ78"
10095           },
10096           {
10097             "id": "SBX78",
10098             "name": "SDCTBXG1-SBX78"
10099           },
10100           {
10101             "id": "LAG1",
10102             "name": "LARGIZON-LAG1"
10103           },
10104           {
10105             "id": "IAA1",
10106             "name": "QAZXSWED-IAA1"
10107           },
10108           {
10109             "id": "POI1",
10110             "name": "PLMNJKIU-POI1"
10111           },
10112           {
10113             "id": "LAG1a",
10114             "name": "LARGIZON-LAG1a"
10115           },
10116           {
10117             "id": "PBL1",
10118             "name": "PBLAPBAI-PBL1"
10119           },
10120           {
10121             "id": "LAG45",
10122             "name": "LARGIZON-LAG1a"
10123           },
10124           {
10125             "id": "MAR1",
10126             "name": "MNBVCXZM-MAR1"
10127           },
10128           {
10129             "id": "HST70",
10130             "name": "HSTNTX70-HST70"
10131           },
10132           {
10133             "id": "DCC1a",
10134             "name": "POIUYTGH-DCC1a"
10135           },
10136           {
10137             "id": "TOL1",
10138             "name": "TOLDOH21-TOL1"
10139           },
10140           {
10141             "id": "LON1",
10142             "name": "LONEENCO-LON1"
10143           },
10144           {
10145             "id": "SJU78",
10146             "name": "SDIT1JUB-SJU78"
10147           },
10148           {
10149             "id": "STN27",
10150             "name": "HSTNTX01-STN27"
10151           },
10152           {
10153             "id": "SSW56",
10154             "name": "ss8126GT-SSW56"
10155           },
10156           {
10157             "id": "SBB78",
10158             "name": "SDIT1BBB-SBB78"
10159           },
10160           {
10161             "id": "DCC3",
10162             "name": "POIUYTGH-DCC3"
10163           },
10164           {
10165             "id": "GNV1",
10166             "name": "GNVLSCTL-GNV1"
10167           },
10168           {
10169             "id": "WAS1",
10170             "name": "WASHDCSW-WAS1"
10171           },
10172           {
10173             "id": "TOY1",
10174             "name": "TORYONNZ-TOY1"
10175           },
10176           {
10177             "id": "STT1",
10178             "name": "STTLWA02-STT1"
10179           },
10180           {
10181             "id": "STG1",
10182             "name": "STTGGE62-STG1"
10183           },
10184           {
10185             "id": "SLL78",
10186             "name": "SDCTLLL1-SLL78"
10187           },
10188           {
10189             "id": "SBU78",
10190             "name": "SDIT1BUB-SBU78"
10191           },
10192           {
10193             "id": "ATL2",
10194             "name": "ATLNGANW-ATL2"
10195           },
10196           {
10197             "id": "BOT1",
10198             "name": "BOTHWAKY-BOT1"
10199           },
10200           {
10201             "id": "SNG1",
10202             "name": "SNGPSIAU-SNG1"
10203           },
10204           {
10205             "id": "NYC1",
10206             "name": "NYCMNY54-NYC1"
10207           },
10208           {
10209             "id": "LAG1b",
10210             "name": "LARGIZON-LAG1b"
10211           },
10212           {
10213             "id": "AMD15",
10214             "name": "AMDFAA01-AMD15"
10215           },
10216           {
10217             "id": "SNA1",
10218             "name": "SNANTXCA-SNA1"
10219           },
10220           {
10221             "id": "PLT1",
10222             "name": "PLTNCA60-PLT1"
10223           },
10224           {
10225             "id": "TLP1",
10226             "name": "TLPNXM18-TLP1"
10227           },
10228           {
10229             "id": "SDD81",
10230             "name": "SAIT1DD6-SDD81"
10231           },
10232           {
10233             "id": "DCC1",
10234             "name": "POIUYTGH-DCC1"
10235           },
10236           {
10237             "id": "DCC2",
10238             "name": "POIUYTGH-DCC2"
10239           },
10240           {
10241             "id": "OKC1",
10242             "name": "OKCBOK55-OKC1"
10243           },
10244           {
10245             "id": "PAR1",
10246             "name": "PARSFRCG-PAR1"
10247           },
10248           {
10249             "id": "TES36",
10250             "name": "ABCEETES-TES36"
10251           },
10252           {
10253             "id": "COM1",
10254             "name": "PLMKOPIU-COM1"
10255           },
10256           {
10257             "id": "ANI1",
10258             "name": "ATLNGTRE-ANI1"
10259           },
10260           {
10261             "id": "SDG78",
10262             "name": "SDIT1BDG-SDG78"
10263           },
10264           {
10265             "id": "mac20",
10266             "name": "PKGTESTF-mac20"
10267           },
10268           {
10269             "id": "DSF45",
10270             "name": "DSFBG123-DSF45"
10271           },
10272           {
10273             "id": "HST25",
10274             "name": "HSTNTX01-HST25"
10275           },
10276           {
10277             "id": "AMD18",
10278             "name": "AUDIMA01-AMD18"
10279           },
10280           {
10281             "id": "SAA80",
10282             "name": "SAIT9AA3-SAA80"
10283           },
10284           {
10285             "id": "SSA56",
10286             "name": "SSIT2AA7-SSA56"
10287           },
10288           {
10289             "id": "SDD82",
10290             "name": "SAIT1DD9-SDD82"
10291           },
10292           {
10293             "id": "JCV1",
10294             "name": "JCVLFLBW-JCV1"
10295           },
10296           {
10297             "id": "SUL2",
10298             "name": "WERTYUJK-SUL2"
10299           },
10300           {
10301             "id": "PUR1",
10302             "name": "purelyde-PUR1"
10303           },
10304           {
10305             "id": "FDE55",
10306             "name": "FDERT555-FDE55"
10307           },
10308           {
10309             "id": "SITE",
10310             "name": "LONEENCO-SITE"
10311           },
10312           {
10313             "id": "ATL1",
10314             "name": "ATLNGAMA-ATL1"
10315           },
10316           {
10317             "id": "JUL1",
10318             "name": "ZXCVBNMM-JUL1"
10319           },
10320           {
10321             "id": "TAT34",
10322             "name": "TESAAISB-TAT34"
10323           },
10324           {
10325             "id": "XCP12",
10326             "name": "CHKGH123-XCP12"
10327           },
10328           {
10329             "id": "RAI1",
10330             "name": "poiuytre-RAI1"
10331           },
10332           {
10333             "id": "HPO1",
10334             "name": "ATLNGAUP-HPO1"
10335           },
10336           {
10337             "id": "KJF12",
10338             "name": "KJFDH123-KJF12"
10339           },
10340           {
10341             "id": "SCC80",
10342             "name": "SAIT9CC3-SCC80"
10343           },
10344           {
10345             "id": "SAA12",
10346             "name": "SAIT9AF8-SAA12"
10347           },
10348           {
10349             "id": "SAA14",
10350             "name": "SAIT1AA9-SAA14"
10351           },
10352           {
10353             "id": "ATL35",
10354             "name": "TTESSAAI-ATL35"
10355           },
10356           {
10357             "id": "CWY1",
10358             "name": "CWYMOWBS-CWY1"
10359           },
10360           {
10361             "id": "ATL76",
10362             "name": "TELEPAAI-ATL76"
10363           },
10364           {
10365             "id": "DSL12",
10366             "name": "DSLFK242-DSL12"
10367           },
10368           {
10369             "id": "ATL53",
10370             "name": "AAIATLTE-ATL53"
10371           },
10372           {
10373             "id": "SAA11",
10374             "name": "SAIT9AA2-SAA11"
10375           },
10376           {
10377             "id": "ATL62",
10378             "name": "TESSASCH-ATL62"
10379           },
10380           {
10381             "id": "AUG1",
10382             "name": "ASDFGHJK-AUG1"
10383           },
10384           {
10385             "id": "POI22",
10386             "name": "POIUY123-POI22"
10387           },
10388           {
10389             "id": "SAA13",
10390             "name": "SAIT1AA9-SAA13"
10391           },
10392           {
10393             "id": "BHY17",
10394             "name": "BHYTFRF3-BHY17"
10395           },
10396           {
10397             "id": "LIS1",
10398             "name": "HOSTPROF-LIS1"
10399           },
10400           {
10401             "id": "SIP1",
10402             "name": "ZXCVBNMK-SIP1"
10403           },
10404           {
10405             "id": "ATL99",
10406             "name": "TEESTAAI-ATL43"
10407           },
10408           {
10409             "id": "ATL64",
10410             "name": "FORLOAAJ-ATL64"
10411           },
10412           {
10413             "id": "TAT33",
10414             "name": "TESAAISA-TAT33"
10415           },
10416           {
10417             "id": "RAD10",
10418             "name": "INDIPUNE-RAD10"
10419           },
10420           {
10421             "id": "RTW5",
10422             "name": "BHYTFRY4-RTW5"
10423           },
10424           {
10425             "id": "JGS1",
10426             "name": "KSJKKKKK-JGS1"
10427           },
10428           {
10429             "id": "ATL98",
10430             "name": "TEESTAAI-ATL43"
10431           },
10432           {
10433             "id": "WAN1",
10434             "name": "LEIWANGW-WAN1"
10435           },
10436           {
10437             "id": "ATL44",
10438             "name": "ATLSANAB-ATL44"
10439           },
10440           {
10441             "id": "RTD2",
10442             "name": "BHYTFRk4-RTD2"
10443           },
10444           {
10445             "id": "NIR1",
10446             "name": "ORFLMANA-NIR1"
10447           },
10448           {
10449             "id": "ATL75",
10450             "name": "SANAAIRE-ATL75"
10451           },
10452           {
10453             "id": "NUM1",
10454             "name": "QWERTYUI-NUM1"
10455           },
10456           {
10457             "id": "MTN32",
10458             "name": "MDTWNJ21-MTN32"
10459           },
10460           {
10461             "id": "RTZ4",
10462             "name": "BHYTFRZ6-RTZ4"
10463           },
10464           {
10465             "id": "ATL56",
10466             "name": "ATLSANAC-ATL56"
10467           },
10468           {
10469             "id": "AMS1",
10470             "name": "AMSTNLBW-AMS1"
10471           },
10472           {
10473             "id": "RCT1",
10474             "name": "AMSTERNL-RCT1"
10475           },
10476           {
10477             "id": "JAN1",
10478             "name": "ORFLMATT-JAN1"
10479           },
10480           {
10481             "id": "ABC14",
10482             "name": "TESAAISA-ABC14"
10483           },
10484           {
10485             "id": "TAT37",
10486             "name": "TESAAISD-TAT37"
10487           },
10488           {
10489             "id": "MIC54",
10490             "name": "MICHIGAN-MIC54"
10491           },
10492           {
10493             "id": "ABC11",
10494             "name": "ATLSANAI-ABC11"
10495           },
10496           {
10497             "id": "AMF11",
10498             "name": "AMDOCS01-AMF11"
10499           },
10500           {
10501             "id": "ATL63",
10502             "name": "ATLSANEW-ATL63"
10503           },
10504           {
10505             "id": "ABC12",
10506             "name": "ATLSECIA-ABC12"
10507           },
10508           {
10509             "id": "MTN20",
10510             "name": "MDTWNJ21-MTN20"
10511           },
10512           {
10513             "id": "ABC15",
10514             "name": "AAITESAN-ABC15"
10515           },
10516           {
10517             "id": "AVT1",
10518             "name": "AVTRFLHD-AVT1"
10519           },
10520           {
10521             "id": "ATL34",
10522             "name": "ATLSANAI-ATL34"
10523           }
10524         ],
10525         "categoryParameters": {
10526           "owningEntityList": [
10527             {
10528               "id": "aaa1",
10529               "name": "aaa1"
10530             },
10531             {
10532               "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
10533               "name": "WayneHolland"
10534             },
10535             {
10536               "id": "Melissa",
10537               "name": "Melissa"
10538             }
10539           ],
10540           "projectList": [
10541             {
10542               "id": "WATKINS",
10543               "name": "WATKINS"
10544             },
10545             {
10546               "id": "x1",
10547               "name": "x1"
10548             },
10549             {
10550               "id": "yyy1",
10551               "name": "yyy1"
10552             }
10553           ],
10554           "lineOfBusinessList": [
10555             {
10556               "id": "ONAP",
10557               "name": "ONAP"
10558             },
10559             {
10560               "id": "zzz1",
10561               "name": "zzz1"
10562             }
10563           ],
10564           "platformList": [
10565             {
10566               "id": "platform",
10567               "name": "platform"
10568             },
10569             {
10570               "id": "xxx1",
10571               "name": "xxx1"
10572             }
10573           ]
10574         },
10575         "type": "[PRODUCT_FAMILIES] Update"
10576       }
10577     }
10578   }
10579
10580   function editSecondVnf(vnfNode: string) {
10581     cy.drawingBoardTreeOpenContextMenuByElementDataTestId(vnfNode, 1)
10582       .drawingBoardTreeClickOnContextMenuOptionByName('Edit');
10583     cy.selectDropdownOptionByText('lineOfBusiness', 'ONAP');
10584     cy.genericFormSubmitForm();
10585   }
10586
10587   function checkDynamicInputs() {
10588     cy.getReduxState().then((state) => {
10589       let dynamicInputs = state.service.serviceHierarchy['f4d84bb4-a416-4b4e-997e-0059973630b9'].vnfs['2017-488_ADIOD-vPE 0'].inputs;
10590
10591       chai.expect(dynamicInputs.vnf_config_template_version.description).equal("VPE Software Version");
10592       chai.expect(dynamicInputs.bandwidth_units.description).equal("Units of bandwidth");
10593       chai.expect(dynamicInputs.bandwidth.description).equal("Requested VPE bandwidth");
10594       chai.expect(dynamicInputs.AIC_CLLI.description).equal("AIC Site CLLI");
10595       chai.expect(dynamicInputs.availability_zone_0.description).equal("The Availability Zone to launch the instance.")
10596       chai.expect(dynamicInputs.ASN.description).equal("AV/PE");
10597       chai.expect(dynamicInputs.vnf_instance_name.description).equal("The hostname assigned to the vpe.");
10598
10599     });
10600   }
10601
10602   function assertEditvfModuleShowFile(vfModuleNode: string, content: string) {
10603     cy.drawingBoardTreeOpenContextMenuByElementDataTestId(vfModuleNode)
10604       .drawingBoardTreeClickOnContextMenuOptionByName('Edit');
10605     cy.get(".file-name").contains(content);
10606
10607   }
10608 });