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