Visualization of the VF Module Sequencing
[vid.git] / vid-webpack-master / cypress / integration / iFrames / instanceCreationWithOrderNumber.e2e.ts
1 import {JsonBuilder} from "../../support/jsonBuilders/jsonBuilder";
2 import {ServiceModel} from "../../support/jsonBuilders/models/service.model";
3 import {AsyncInstantiationModel} from "../../support/jsonBuilders/models/asyncInstantiation.model";
4
5 describe('Create instance : from service instance, from drawing board, with order number', function () {
6   var jsonBuilderInstantiationBuilder: JsonBuilder<AsyncInstantiationModel> = new JsonBuilder<AsyncInstantiationModel>();
7   var asyncRes: Array<any>;
8   beforeEach(() => {
9     cy.clearSessionStorage();
10     cy.setReduxState();
11     cy.preventErrorsOnLoading();
12     cy.initAAIMock();
13     cy.initVidMock();
14     cy.initActiveNetworks();
15     cy.setTestApiParamToGR();
16     cy.permissionVidMock();
17     jsonBuilderInstantiationBuilder.basicMock('cypress/support/jsonBuilders/mocks/jsons/asyncInstantiation.json',
18       Cypress.config('baseUrl') + "/asyncInstantiation**",
19       (res: any) => {
20         asyncRes = res;
21         return res;
22       });
23     cy.login();
24   });
25
26   afterEach(() => {
27     cy.screenshot();
28   });
29
30   describe('multiple scenario tests', () => {
31
32
33     it('should create VF modules automatically with order number as 1 for the base module,' +
34       'for service instance with 1 VNF with a required VF module', () => {
35       cy.readFile('cypress/support/jsonBuilders/mocks/jsons/basicReduxForTestingPosition.json').then((res) => {
36         res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_PASQUALE-vPE 0"].properties['min_instances'] = 3;
37         cy.setReduxState(<any>res);
38         cy.addAlacarteService().then(() => {
39           cy.wait(2000);
40           cy.visit("welcome.htm").then(() => {
41             cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
42             cy.getElementByDataTestsId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0').should('exist');
43             cy.getElementByDataTestsId('node-f8360508-3f17-4414-a2ed-6bc71161e8db-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0').should('have.length', 1);
44             cy.getElementByDataTestsId('node-f8360508-3f17-4414-a2ed-6bc71161e8db-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0').find(`[data-tests-id='node-position-indicator']`).should('have.text', '1');
45             cy.getElementByDataTestsId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0-menu-btn').click({force: true}).then(() => {
46               cy.getElementByDataTestsId('context-menu-edit').click().then(() => {
47                 cy.fillVnfPopup();
48               })
49             })
50
51           });
52         });
53       });
54     });
55
56     it('should Add 2 more VF module instances with the order number is calculated properly', () => {
57       let res = getReduxWithVNFS();
58       cy.setReduxState(<any>res);
59       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
60       cy.wait(3000);
61       cy.getElementByDataTestsId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0').should('exist');
62       cy.getElementByDataTestsId('node-f8360508-3f17-4414-a2ed-6bc71161e8db-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0').should('have.length', 1);
63       cy.getElementByDataTestsId('node-f8360508-3f17-4414-a2ed-6bc71161e8db-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0').find(`[data-tests-id='node-position-indicator']`).should('have.text', '1');
64       cy.getElementByDataTestsId('node-f8360508-3f17-4414-a2ed-6bc71161e8db-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0-menu-btn')
65         .click({force: true}).then(() => {
66         cy.getElementByDataTestsId('context-menu-edit').click().then(() => {
67           cy.getElementByDataTestsId('form-set').click();
68         })
69       })
70       const vnfName = "2017-488_PASQUALE-vPE 0";
71       let vfModulesNames: Array<string> = [
72         '2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1',
73         '2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2'
74       ];
75       const uuidAndVfModuleNames: Array<string> = [
76         '25284168-24bb-4698-8cb4-3f509146eca5-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1',
77         '0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2'
78       ];
79       addALaCarteVfModuleEcompGeneratedNamingTrue(vnfName, vfModulesNames[0], uuidAndVfModuleNames[0]);
80       cy.getElementByDataTestsId('node-25284168-24bb-4698-8cb4-3f509146eca5-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1').find(`[data-tests-id='node-position-indicator']`).should('have.text', '2');
81       cy.getElementByDataTestsId('node-25284168-24bb-4698-8cb4-3f509146eca5-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1-menu-btn')
82         .click({force: true}).then(() => {
83         cy.wait(1000);
84         cy.getElementByDataTestsId('context-menu-edit').click().then(() => {
85           cy.getElementByDataTestsId('form-set').click();
86         })
87       })
88       addALaCarteVfModuleEcompGeneratedNamingTrue(vnfName, vfModulesNames[1], uuidAndVfModuleNames[1]);
89       cy.getElementByDataTestsId('node-0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2').find(`[data-tests-id='node-position-indicator']`).should('have.text', '3');
90       cy.getElementByDataTestsId('node-0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2-menu-btn')
91         .click({force: true}).then(() => {
92           cy.wait(1000);
93         cy.getElementByDataTestsId('context-menu-edit').click().then(() => {
94           cy.getElementByDataTestsId('form-set').click();
95         })
96       })
97       });
98
99     it('should Add 1 more VF module instance of module 1', () => {
100       let res = getReduxWithVNFS(); //get with 3 module instances
101       (<any> res.service.serviceInstance)['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_PASQUALE-vPE 0'].vfModules = {
102         "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
103           "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0dcclk": {
104             "instanceName": null,
105             "rollbackOnFailure": true,
106             "sdncPreLoad": null,
107             "instanceParams": [
108               {}
109             ],
110             "modelInfo": {
111               "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
112               "modelVersionId": "f8360508-3f17-4414-a2ed-6bc71161e8db",
113               "modelName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
114               "modelVersion": "5",
115               "modelCustomizationId": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
116               "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
117               "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
118               "modelUniqueId": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3"
119             },
120             "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
121             "isMissingData": false,
122             "position": 1
123           }
124         },
125         "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
126           "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1nbuwm": {
127             "instanceName": null,
128             "volumeGroupName": null,
129             "rollbackOnFailure": true,
130             "sdncPreLoad": null,
131             "instanceParams": [
132               {
133                 "pasqualevpe0_bandwidth": "10",
134                 "2017488_pasqualevpe0_vnf_instance_name": "mtnj309me6",
135                 "2017488_pasqualevpe0_vnf_config_template_version": "17.2",
136                 "2017488_pasqualevpe0_AIC_CLLI": "ATLMY8GA",
137                 "pasqualevpe0_bandwidth_units": "Gbps"
138               }
139             ],
140             "modelInfo": {
141               "modelInvariantId": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
142               "modelVersionId": "25284168-24bb-4698-8cb4-3f509146eca5",
143               "modelName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
144               "modelVersion": "6",
145               "modelCustomizationId": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
146               "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
147               "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
148               "modelUniqueId": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401"
149             },
150             "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
151             "isMissingData": false,
152             "position": 2
153           }
154         },
155         "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
156           "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2tleon": {
157             "instanceName": null,
158             "volumeGroupName": null,
159             "rollbackOnFailure": true,
160             "sdncPreLoad": null,
161             "instanceParams": [
162               {}
163             ],
164             "modelInfo": {
165               "modelInvariantId": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
166               "modelVersionId": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
167               "modelName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
168               "modelVersion": "6",
169               "modelCustomizationId": "3cd946bb-50e0-40d8-96d3-c9023520b557",
170               "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
171               "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
172               "modelUniqueId": "3cd946bb-50e0-40d8-96d3-c9023520b557"
173             },
174             "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
175             "isMissingData": false,
176             "position": 3
177           }
178         }
179       };
180       cy.setReduxState(<any>res);
181       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
182
183       const vnfName = "2017-488_PASQUALE-vPE 0";
184       let vfModulesNames: Array<string> = [
185         '2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1'
186       ];
187       const uuidAndVfModuleNames: Array<string> = [
188         '25284168-24bb-4698-8cb4-3f509146eca5-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1'
189       ];
190
191       cy.getElementByDataTestsId('node-' + vnfName).click({force: true}).then(() => {
192         cy.getElementByDataTestsId('node-' + vfModulesNames[0] + '-add-btn').click({force: true})
193       });
194       //addALaCarteVfModuleEcompGeneratedNamingTrue(vnfName, vfModulesNames[0], uuidAndVfModuleNames[0]);
195       cy.getElementByDataTestsId('node-'+uuidAndVfModuleNames[0]).should('have.length', '2');
196
197
198     });
199
200
201     it('should not display order number on drawing board if the flag is set to false', () => {
202       let res = getReduxWithVNFS();
203       (<any> res.global.flags)['FLAG_2008_DISABLE_DRAG_FOR_BASE_MODULE'] = false;
204       (<any> res.global.flags)['FLAG_2008_CREATE_VFMODULE_INSTANTIATION_ORDER_NUMBER']=false;
205
206       cy.setReduxState(<any>res);
207       cy.visit("welcome.htm").then(() => {
208         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
209         cy.get('#node-position-indicator').and('not.be.visible');
210       });
211
212       //cy.getElementByDataTestsId('node-f8360508-3f17-4414-a2ed-6bc71161e8db-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0').find(`[data-tests-id='node-position-indicator']`).should('have.text', '1');
213
214     });
215
216     it('should click on deploy and verify the positions of all instances', () => {
217       let res = getReduxWithVNFS(); //get with 3 module instances
218       (<any> res.service.serviceInstance)['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_PASQUALE-vPE 0'].vfModules = {
219
220         "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
221           "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0dcclk": {
222             "instanceName": null,
223             "rollbackOnFailure": true,
224             "sdncPreLoad": null,
225             "instanceParams": [
226               {}
227             ],
228             "modelInfo": {
229               "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
230               "modelVersionId": "f8360508-3f17-4414-a2ed-6bc71161e8db",
231               "modelName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
232               "modelVersion": "5",
233               "modelCustomizationId": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
234               "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
235               "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
236               "modelUniqueId": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3"
237             },
238             "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
239             "isMissingData": false,
240             "position": 1
241           }
242         },
243         "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
244           "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1nbuwm": {
245             "instanceName": null,
246             "volumeGroupName": null,
247             "rollbackOnFailure": true,
248             "sdncPreLoad": null,
249             "instanceParams": [
250               {
251                 "pasqualevpe0_bandwidth": "10",
252                 "2017488_pasqualevpe0_vnf_instance_name": "mtnj309me6",
253                 "2017488_pasqualevpe0_vnf_config_template_version": "17.2",
254                 "2017488_pasqualevpe0_AIC_CLLI": "ATLMY8GA",
255                 "pasqualevpe0_bandwidth_units": "Gbps"
256               }
257             ],
258             "modelInfo": {
259               "modelInvariantId": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
260               "modelVersionId": "25284168-24bb-4698-8cb4-3f509146eca5",
261               "modelName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
262               "modelVersion": "6",
263               "modelCustomizationId": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
264               "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
265               "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
266               "modelUniqueId": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401"
267             },
268             "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
269             "isMissingData": false,
270             "position": 2
271           },
272           "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1owfay": {
273             "isMissingData": false,
274             "sdncPreReload": null,
275             "modelInfo": {
276               "modelType": "VFmodule",
277               "modelInvariantId": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
278               "modelVersionId": "25284168-24bb-4698-8cb4-3f509146eca5",
279               "modelName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
280               "modelVersion": "6",
281               "modelCustomizationId": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
282               "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
283               "modelUniqueId": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401"
284             },
285             "instanceParams": [
286               {
287                 "pasqualevpe0_bandwidth": "10",
288                 "2017488_pasqualevpe0_vnf_instance_name": "mtnj309me6",
289                 "2017488_pasqualevpe0_vnf_config_template_version": "17.2",
290                 "2017488_pasqualevpe0_AIC_CLLI": "ATLMY8GA",
291                 "pasqualevpe0_bandwidth_units": "Gbps"
292               }
293             ],
294             "trackById": "u3xrxb65ff",
295             "rollbackOnFailure": true,
296             "position": 4,
297             "action": "Create"
298           }
299         },
300         "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
301           "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2tleon": {
302             "instanceName": null,
303             "volumeGroupName": null,
304             "rollbackOnFailure": true,
305             "sdncPreLoad": null,
306             "instanceParams": [
307               {}
308             ],
309             "modelInfo": {
310               "modelInvariantId": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
311               "modelVersionId": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
312               "modelName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
313               "modelVersion": "6",
314               "modelCustomizationId": "3cd946bb-50e0-40d8-96d3-c9023520b557",
315               "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
316               "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
317               "modelUniqueId": "3cd946bb-50e0-40d8-96d3-c9023520b557"
318             },
319             "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
320             "isMissingData": false,
321             "position": 3
322           }
323         }
324       };
325       cy.setReduxState(<any>res);
326       cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
327
328       const vnfName = "2017-488_PASQUALE-vPE 0";
329       let vfModulesNames: Array<string> = [
330         '2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0',
331         '2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1',
332         '2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2'
333       ];
334
335
336       mockAsyncBulkResponse();
337       cy.wait(1000);
338       cy.getDrawingBoardDeployBtn().click();
339
340       cy.wait('@expectedPostAsyncInstantiation')
341         .then(xhr => {
342           let vfModules = bodyOf(xhr).vnfs['2017-488_PASQUALE-vPE 0'].vfModules;
343
344           let baseVModule = vfModules[vfModulesNames[0]];
345           const baseVModuleObject = baseVModule[Object.keys(baseVModule)[0]];
346           expect(baseVModuleObject.position).equals(1);
347
348           let secondVModule = vfModules[vfModulesNames[1]];
349           const secondVModuleObject = secondVModule[Object.keys(secondVModule)[0]];
350           expect(secondVModuleObject.position).equals(2);
351
352           let thirdVModule = vfModules[vfModulesNames[2]];
353           const thirdVModuleObject = thirdVModule[Object.keys(thirdVModule)[0]];
354           expect(thirdVModuleObject.position).equals(3);
355
356           let secondVModuleInstance2 = vfModules[vfModulesNames[1]];
357           const secondVModuleObjectInstance2 = secondVModuleInstance2[Object.keys(secondVModuleInstance2)[1]];
358           expect(secondVModuleObjectInstance2.position).equals(4);
359
360         });
361       cy.openIframe('app/ui/#/instantiationStatus');
362
363
364     });
365
366     function getJobIconClass(status: string) : string{
367       switch(`${status}`.toUpperCase()) {
368         case  'PENDING' :
369           return "pending";
370         case  'IN_PROGRESS' :
371           return  "in_progress";
372         case  'PAUSED' :
373           return "pause";
374         case  'FAILED' :
375           return "x-circle-o";
376         case  'COMPLETED' :
377           return "success-circle-o";
378         case  'STOPPED' :
379           return "stop";
380         case  'COMPLETED_WITH_ERRORS' :
381           return "success_with_warning";
382         case  'COMPLETED_AND_PAUSED' :
383           return "stopped-upon-success";
384         default:
385           return "question-mark-circle-o";
386       }
387     }
388
389     function bodyOf(xhr: Cypress.WaitXHR) {
390       return JSON.parse(JSON.stringify(xhr.request.body));
391     }
392
393     function mockAsyncBulkResponse() {
394       cy.server().route({
395         url: Cypress.config('baseUrl') + '/asyncInstantiation/bulk',
396         method: 'POST',
397         status: 200,
398         response: "[]",
399       }).as("expectedPostAsyncInstantiation");
400     }
401
402     function getReduxWithVNFS() {
403       return {
404         "global": {
405           "name": null,
406           "type": "UPDATE_DRAWING_BOARD_STATUS",
407           "flags": {
408             "EMPTY_DRAWING_BOARD_TEST": false,
409             "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
410             "FLAG_ADD_MSO_TESTAPI_FIELD": true,
411             "FLAG_SERVICE_MODEL_CACHE": false,
412             "FLAG_SHOW_ASSIGNMENTS": true,
413             "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
414             "FLAG_A_LA_CARTE_AUDIT_INFO": true,
415             "FLAG_1810_CR_ADD_CLOUD_OWNER_TO_MSO_REQUEST": true,
416             "FLAG_PRESENT_PROVIDER_NETWORKS_ASSOCIATIONS": true,
417             "FLAG_1902_NEW_VIEW_EDIT": true,
418             "FLAG_VF_MODULE_RESUME_STATUS_CREATE": true,
419             "FLAG_1906_COMPONENT_INFO": true,
420             "FLAG_1908_RESUME_MACRO_SERVICE": true,
421             "FLAG_ENABLE_WEBPACK_MODERN_UI": true,
422             "FLAG_FLASH_REPLACE_VF_MODULE": true,
423             "FLAG_FLASH_MORE_ACTIONS_BUTTON_IN_OLD_VIEW_EDIT": true,
424             "FLAG_1911_INSTANTIATION_ORDER_IN_ASYNC_ALACARTE": true,
425             "FLAG_1911_INSTANTIATION_ORDER_BUTTON_IN_ASYNC_ALACARTE": true,
426             "FLAG_2002_VNF_PLATFORM_MULTI_SELECT": true,
427             "FLAG_2002_VFM_UPGRADE_ADDITIONAL_OPTIONS": true,
428             "FLAG_2004_INSTANTIATION_STATUS_FILTER": true,
429             "FLAG_2004_INSTANTIATION_TEMPLATES_POPUP": true,
430             "FLAG_2002_UNLIMITED_MAX": true,
431             "FLAG_2004_CREATE_ANOTHER_INSTANCE_FROM_TEMPLATE": true,
432             "FLAG_2006_VFM_SDNC_PRELOAD_FILES": true,
433             "FLAG_2006_VFMODULE_TAKES_TENANT_AND_REGION_FROM_VNF": true,
434             "FLAG_2006_NETWORK_PLATFORM_MULTI_SELECT": true,
435             "FLAG_2006_NETWORK_LOB_MULTI_SELECT": true,
436             "FLAG_2006_NEW_VIEW_EDIT_BUTTON_IN_INSTANTIATION_STATUS": true,
437             "FLAG_2006_PAUSE_VFMODULE_INSTANTIATION_CREATION": true,
438             "FLAG_2008_DISABLE_DRAG_FOR_BASE_MODULE": true,
439             "FLAG_2008_CREATE_VFMODULE_INSTANTIATION_ORDER_NUMBER": true
440           },
441           "drawingBoardStatus": "CREATE"
442         },
443         "service": {
444           "serviceHierarchy": {
445             "2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd": {
446               "service": {
447                 "uuid": "2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
448                 "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
449                 "name": "action-data",
450                 "version": "1.0",
451                 "toscaModelURL": null,
452                 "category": "",
453                 "serviceType": "",
454                 "serviceRole": "",
455                 "description": "",
456                 "serviceEcompNaming": "true",
457                 "instantiationType": "A-La-Carte",
458                 "vidNotions": {
459                   "instantiationType": "A-La-Carte"
460                 },
461                 "inputs": {
462                   "2017488_pasqualevpe0_ASN": {
463                     "type": "string",
464                     "description": "AV/PE",
465                     "entry_schema": null,
466                     "inputProperties": null,
467                     "constraints": [],
468                     "required": true,
469                     "default": "AV_vPE"
470                   }
471                 }
472               },
473               "vnfs": {
474                 "2017-488_PASQUALE-vPE 0": {
475                   "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
476                   "invariantUuid": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
477                   "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",
478                   "name": "2017-488_PASQUALE-vPE",
479                   "version": "5.0",
480                   "customizationUuid": "1da7b585-5e61-4993-b95e-8e6606c81e45",
481                   "inputs": {},
482                   "commands": {},
483                   "properties": {
484                     "vmxvre_retype": "RE-VMX",
485                     "vnf_config_template_version": "get_input:2017488_pasqualevpe0_vnf_config_template_version",
486                     "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
487                     "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
488                     "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
489                     "int_ctl_net_name": "VMX-INTXI",
490                     "vmx_int_ctl_prefix": "10.0.0.10",
491                     "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
492                     "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
493                     "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
494                     "nf_type": "vPE",
495                     "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
496                     "is_AVPN_service": "false",
497                     "vmx_RSG_name": "vREXI-affinity",
498                     "vmx_int_ctl_forwarding": "l2",
499                     "vmxvre_oam_ip_0": "10.0.0.10",
500                     "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
501                     "vmxvpfe_sriov41_0_port_vlanstrip": "false",
502                     "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
503                     "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
504                     "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2",
505                     "vmxvre_instance": "0",
506                     "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
507                     "vmxvre_flavor_name": "ns.c1r16d32.v5",
508                     "vmxvpfe_volume_size_0": "40.0",
509                     "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
510                     "nf_naming": "{ecomp_generated_naming=true}",
511                     "nf_naming_code": "Navneet",
512                     "vmxvre_name_0": "vREXI",
513                     "vmxvpfe_sriov42_0_port_vlanstrip": "false",
514                     "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
515                     "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
516                     "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
517                     "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
518                     "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
519                     "vmxvre_console": "vidconsole",
520                     "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
521                     "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
522                     "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
523                     "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
524                     "vmxvpfe_sriov44_0_port_vlanstrip": "false",
525                     "vf_module_id": "123",
526                     "nf_function": "JAI",
527                     "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
528                     "vmxvre_int_ctl_ip_0": "10.0.0.10",
529                     "ecomp_generated_naming": "true",
530                     "AIC_CLLI": "get_input:2017488_pasqualevpe0_AIC_CLLI",
531                     "vnf_name": "mtnj309me6vre",
532                     "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
533                     "vmxvre_volume_type_1": "HITACHI",
534                     "vmxvpfe_sriov44_0_port_broadcastallow": "true",
535                     "vmxvre_volume_type_0": "HITACHI",
536                     "vmxvpfe_volume_type_0": "HITACHI",
537                     "vmxvpfe_sriov43_0_port_broadcastallow": "true",
538                     "bandwidth_units": "get_input:pasqualevpe0_bandwidth_units",
539                     "vnf_id": "123",
540                     "vmxvre_oam_prefix": "24",
541                     "availability_zone_0": "mtpocfo-kvm-az01",
542                     "ASN": "get_input:2017488_pasqualevpe0_ASN",
543                     "vmxvre_chassis_i2cid": "161",
544                     "vmxvpfe_name_0": "vPFEXI",
545                     "bandwidth": "get_input:pasqualevpe0_bandwidth",
546                     "availability_zone_max_count": "1",
547                     "vmxvre_volume_size_0": "45.0",
548                     "vmxvre_volume_size_1": "50.0",
549                     "vmxvpfe_sriov42_0_port_broadcastallow": "true",
550                     "vmxvre_oam_gateway": "10.0.0.10",
551                     "vmxvre_volume_name_1": "vREXI_FAVolume",
552                     "vmxvre_ore_present": "0",
553                     "vmxvre_volume_name_0": "vREXI_FBVolume",
554                     "vmxvre_type": "0",
555                     "vnf_instance_name": "get_input:2017488_pasqualevpe0_vnf_instance_name",
556                     "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
557                     "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
558                     "vmx_int_ctl_len": "24",
559                     "vmxvpfe_sriov43_0_port_vlanstrip": "false",
560                     "vmxvpfe_sriov41_0_port_broadcastallow": "true",
561                     "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
562                     "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
563                     "nf_role": "Testing",
564                     "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
565                     "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
566                     "vmxvpfe_flavor_name": "ns.c20r16d25.v5",
567                     "min_instances": 3
568                   },
569                   "type": "VF",
570                   "modelCustomizationName": "2017-488_PASQUALE-vPE 0",
571                   "vfModules": {
572                     "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
573                       "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
574                       "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
575                       "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
576                       "description": null,
577                       "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
578                       "version": "6",
579                       "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
580                       "properties": {
581                         "minCountInstances": 0,
582                         "maxCountInstances": null,
583                         "initialCount": 0,
584                         "vfModuleLabel": "PASQUALE_vRE_BV",
585                         "baseModule": false
586                       },
587                       "inputs": {
588                         "pasqualevpe0_bandwidth": {
589                           "type": "string",
590                           "description": "Requested VPE bandwidth",
591                           "entry_schema": null,
592                           "inputProperties": {
593                             "sourceType": "HEAT",
594                             "vfModuleLabel": "PASQUALE_vRE_BV",
595                             "paramName": "bandwidth"
596                           },
597                           "constraints": null,
598                           "required": true,
599                           "default": "10"
600                         },
601                         "2017488_pasqualevpe0_vnf_instance_name": {
602                           "type": "string",
603                           "description": "The hostname assigned to the vpe.",
604                           "entry_schema": null,
605                           "inputProperties": {
606                             "sourceType": "HEAT",
607                             "vfModuleLabel": "PASQUALE_vRE_BV",
608                             "paramName": "vnf_instance_name"
609                           },
610                           "constraints": null,
611                           "required": true,
612                           "default": "mtnj309me6"
613                         },
614                         "2017488_pasqualevpe0_vnf_config_template_version": {
615                           "type": "string",
616                           "description": "VPE Software Version",
617                           "entry_schema": null,
618                           "inputProperties": {
619                             "sourceType": "HEAT",
620                             "vfModuleLabel": "PASQUALE_vRE_BV",
621                             "paramName": "vnf_config_template_version"
622                           },
623                           "constraints": null,
624                           "required": true,
625                           "default": "17.2"
626                         },
627                         "2017488_pasqualevpe0_AIC_CLLI": {
628                           "type": "string",
629                           "description": "AIC Site CLLI",
630                           "entry_schema": null,
631                           "inputProperties": {
632                             "sourceType": "HEAT",
633                             "vfModuleLabel": "PASQUALE_vRE_BV",
634                             "paramName": "AIC_CLLI"
635                           },
636                           "constraints": null,
637                           "required": true,
638                           "default": "ATLMY8GA"
639                         },
640                         "pasqualevpe0_bandwidth_units": {
641                           "type": "string",
642                           "description": "Units of bandwidth",
643                           "entry_schema": null,
644                           "inputProperties": {
645                             "sourceType": "HEAT",
646                             "vfModuleLabel": "PASQUALE_vRE_BV",
647                             "paramName": "bandwidth_units"
648                           },
649                           "constraints": null,
650                           "required": true,
651                           "default": "Gbps"
652                         }
653                       },
654                       "volumeGroupAllowed": true
655                     },
656                     "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
657                       "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
658                       "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
659                       "customizationUuid": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
660                       "description": null,
661                       "name": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
662                       "version": "5",
663                       "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
664                       "properties": {
665                         "minCountInstances": 1,
666                         "maxCountInstances": 1,
667                         "initialCount": 1,
668                         "vfModuleLabel": "base_vPE_BV",
669                         "baseModule": true
670                       },
671                       "inputs": {},
672                       "volumeGroupAllowed": false
673                     },
674                     "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
675                       "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
676                       "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
677                       "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
678                       "description": null,
679                       "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
680                       "version": "6",
681                       "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
682                       "properties": {
683                         "minCountInstances": 0,
684                         "maxCountInstances": null,
685                         "initialCount": 0,
686                         "vfModuleLabel": "PASQUALE_vPFE_BV",
687                         "baseModule": false
688                       },
689                       "inputs": {},
690                       "volumeGroupAllowed": true
691                     }
692                   },
693                   "volumeGroups": {
694                     "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
695                       "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
696                       "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
697                       "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
698                       "description": null,
699                       "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
700                       "version": "6",
701                       "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
702                       "properties": {
703                         "minCountInstances": 0,
704                         "maxCountInstances": null,
705                         "initialCount": 0,
706                         "vfModuleLabel": "PASQUALE_vRE_BV"
707                       },
708                       "inputs": {
709                         "pasqualevpe0_bandwidth": {
710                           "type": "string",
711                           "description": "Requested VPE bandwidth",
712                           "entry_schema": null,
713                           "inputProperties": {
714                             "sourceType": "HEAT",
715                             "vfModuleLabel": "PASQUALE_vRE_BV",
716                             "paramName": "bandwidth"
717                           },
718                           "constraints": null,
719                           "required": true,
720                           "default": "10"
721                         },
722                         "2017488_pasqualevpe0_vnf_instance_name": {
723                           "type": "string",
724                           "description": "The hostname assigned to the vpe.",
725                           "entry_schema": null,
726                           "inputProperties": {
727                             "sourceType": "HEAT",
728                             "vfModuleLabel": "PASQUALE_vRE_BV",
729                             "paramName": "vnf_instance_name"
730                           },
731                           "constraints": null,
732                           "required": true,
733                           "default": "mtnj309me6"
734                         },
735                         "2017488_pasqualevpe0_vnf_config_template_version": {
736                           "type": "string",
737                           "description": "VPE Software Version",
738                           "entry_schema": null,
739                           "inputProperties": {
740                             "sourceType": "HEAT",
741                             "vfModuleLabel": "PASQUALE_vRE_BV",
742                             "paramName": "vnf_config_template_version"
743                           },
744                           "constraints": null,
745                           "required": true,
746                           "default": "17.2"
747                         },
748                         "2017488_pasqualevpe0_AIC_CLLI": {
749                           "type": "string",
750                           "description": "AIC Site CLLI",
751                           "entry_schema": null,
752                           "inputProperties": {
753                             "sourceType": "HEAT",
754                             "vfModuleLabel": "PASQUALE_vRE_BV",
755                             "paramName": "AIC_CLLI"
756                           },
757                           "constraints": null,
758                           "required": true,
759                           "default": "ATLMY8GA"
760                         },
761                         "pasqualevpe0_bandwidth_units": {
762                           "type": "string",
763                           "description": "Units of bandwidth",
764                           "entry_schema": null,
765                           "inputProperties": {
766                             "sourceType": "HEAT",
767                             "vfModuleLabel": "PASQUALE_vRE_BV",
768                             "paramName": "bandwidth_units"
769                           },
770                           "constraints": null,
771                           "required": true,
772                           "default": "Gbps"
773                         }
774                       }
775                     },
776                     "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
777                       "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
778                       "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
779                       "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
780                       "description": null,
781                       "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
782                       "version": "6",
783                       "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
784                       "properties": {
785                         "minCountInstances": 0,
786                         "maxCountInstances": null,
787                         "initialCount": 0,
788                         "vfModuleLabel": "PASQUALE_vPFE_BV"
789                       },
790                       "inputs": {}
791                     }
792                   },
793                   "vfcInstanceGroups": {}
794                 }
795               },
796               "networks": {},
797               "collectionResources": {},
798               "configurations": {},
799               "serviceProxies": {},
800               "vfModules": {
801                 "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
802                   "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
803                   "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
804                   "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
805                   "description": null,
806                   "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
807                   "version": "6",
808                   "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
809                   "properties": {
810                     "minCountInstances": 0,
811                     "maxCountInstances": null,
812                     "initialCount": 0,
813                     "vfModuleLabel": "PASQUALE_vRE_BV"
814                   },
815                   "inputs": {
816                     "pasqualevpe0_bandwidth": {
817                       "type": "string",
818                       "description": "Requested VPE bandwidth",
819                       "entry_schema": null,
820                       "inputProperties": {
821                         "sourceType": "HEAT",
822                         "vfModuleLabel": "PASQUALE_vRE_BV",
823                         "paramName": "bandwidth"
824                       },
825                       "constraints": null,
826                       "required": true,
827                       "default": "10"
828                     },
829                     "2017488_pasqualevpe0_vnf_instance_name": {
830                       "type": "string",
831                       "description": "The hostname assigned to the vpe.",
832                       "entry_schema": null,
833                       "inputProperties": {
834                         "sourceType": "HEAT",
835                         "vfModuleLabel": "PASQUALE_vRE_BV",
836                         "paramName": "vnf_instance_name"
837                       },
838                       "constraints": null,
839                       "required": true,
840                       "default": "mtnj309me6"
841                     },
842                     "2017488_pasqualevpe0_vnf_config_template_version": {
843                       "type": "string",
844                       "description": "VPE Software Version",
845                       "entry_schema": null,
846                       "inputProperties": {
847                         "sourceType": "HEAT",
848                         "vfModuleLabel": "PASQUALE_vRE_BV",
849                         "paramName": "vnf_config_template_version"
850                       },
851                       "constraints": null,
852                       "required": true,
853                       "default": "17.2"
854                     },
855                     "2017488_pasqualevpe0_AIC_CLLI": {
856                       "type": "string",
857                       "description": "AIC Site CLLI",
858                       "entry_schema": null,
859                       "inputProperties": {
860                         "sourceType": "HEAT",
861                         "vfModuleLabel": "PASQUALE_vRE_BV",
862                         "paramName": "AIC_CLLI"
863                       },
864                       "constraints": null,
865                       "required": true,
866                       "default": "ATLMY8GA"
867                     },
868                     "pasqualevpe0_bandwidth_units": {
869                       "type": "string",
870                       "description": "Units of bandwidth",
871                       "entry_schema": null,
872                       "inputProperties": {
873                         "sourceType": "HEAT",
874                         "vfModuleLabel": "PASQUALE_vRE_BV",
875                         "paramName": "bandwidth_units"
876                       },
877                       "constraints": null,
878                       "required": true,
879                       "default": "Gbps"
880                     }
881                   },
882                   "volumeGroupAllowed": true
883                 },
884                 "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
885                   "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
886                   "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
887                   "customizationUuid": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
888                   "description": null,
889                   "name": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
890                   "version": "5",
891                   "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
892                   "properties": {
893                     "minCountInstances": 1,
894                     "maxCountInstances": 1,
895                     "initialCount": 1,
896                     "vfModuleLabel": "PASQUALE_base_vPE_BV"
897                   },
898                   "inputs": {},
899                   "volumeGroupAllowed": false
900                 },
901                 "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
902                   "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
903                   "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
904                   "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
905                   "description": null,
906                   "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
907                   "version": "6",
908                   "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
909                   "properties": {
910                     "minCountInstances": 0,
911                     "maxCountInstances": null,
912                     "initialCount": 0,
913                     "vfModuleLabel": "PASQUALE_vPFE_BV"
914                   },
915                   "inputs": {},
916                   "volumeGroupAllowed": true
917                 }
918               },
919               "volumeGroups": {
920                 "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
921                   "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
922                   "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
923                   "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
924                   "description": null,
925                   "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
926                   "version": "6",
927                   "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
928                   "properties": {
929                     "minCountInstances": 0,
930                     "maxCountInstances": null,
931                     "initialCount": 0,
932                     "vfModuleLabel": "PASQUALE_vRE_BV"
933                   },
934                   "inputs": {
935                     "pasqualevpe0_bandwidth": {
936                       "type": "string",
937                       "description": "Requested VPE bandwidth",
938                       "entry_schema": null,
939                       "inputProperties": {
940                         "sourceType": "HEAT",
941                         "vfModuleLabel": "PASQUALE_vRE_BV",
942                         "paramName": "bandwidth"
943                       },
944                       "constraints": null,
945                       "required": true,
946                       "default": "10"
947                     },
948                     "2017488_pasqualevpe0_vnf_instance_name": {
949                       "type": "string",
950                       "description": "The hostname assigned to the vpe.",
951                       "entry_schema": null,
952                       "inputProperties": {
953                         "sourceType": "HEAT",
954                         "vfModuleLabel": "PASQUALE_vRE_BV",
955                         "paramName": "vnf_instance_name"
956                       },
957                       "constraints": null,
958                       "required": true,
959                       "default": "mtnj309me6"
960                     },
961                     "2017488_pasqualevpe0_vnf_config_template_version": {
962                       "type": "string",
963                       "description": "VPE Software Version",
964                       "entry_schema": null,
965                       "inputProperties": {
966                         "sourceType": "HEAT",
967                         "vfModuleLabel": "PASQUALE_vRE_BV",
968                         "paramName": "vnf_config_template_version"
969                       },
970                       "constraints": null,
971                       "required": true,
972                       "default": "17.2"
973                     },
974                     "2017488_pasqualevpe0_AIC_CLLI": {
975                       "type": "string",
976                       "description": "AIC Site CLLI",
977                       "entry_schema": null,
978                       "inputProperties": {
979                         "sourceType": "HEAT",
980                         "vfModuleLabel": "PASQUALE_vRE_BV",
981                         "paramName": "AIC_CLLI"
982                       },
983                       "constraints": null,
984                       "required": true,
985                       "default": "ATLMY8GA"
986                     },
987                     "pasqualevpe0_bandwidth_units": {
988                       "type": "string",
989                       "description": "Units of bandwidth",
990                       "entry_schema": null,
991                       "inputProperties": {
992                         "sourceType": "HEAT",
993                         "vfModuleLabel": "PASQUALE_vRE_BV",
994                         "paramName": "bandwidth_units"
995                       },
996                       "constraints": null,
997                       "required": true,
998                       "default": "Gbps"
999                     }
1000                   }
1001                 },
1002                 "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
1003                   "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
1004                   "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
1005                   "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
1006                   "description": null,
1007                   "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
1008                   "version": "6",
1009                   "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
1010                   "properties": {
1011                     "minCountInstances": 0,
1012                     "maxCountInstances": null,
1013                     "initialCount": 0,
1014                     "vfModuleLabel": "PASQUALE_vPFE_BV"
1015                   },
1016                   "inputs": {}
1017                 }
1018               },
1019               "pnfs": {}
1020             }
1021           },
1022           "serviceInstance": {
1023             "2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd": {
1024               "action": "Create",
1025               "isDirty": true,
1026               "vnfs": {
1027                 "2017-488_PASQUALE-vPE 0": {
1028                   "action": "Create",
1029                   "inMaint": false,
1030                   "rollbackOnFailure": "true",
1031                   "originalName": "2017-488_PASQUALE-vPE 0",
1032                   "isMissingData": false,
1033                   "trackById": "v7t52jd77ve",
1034                   "vfModules": {
1035                     "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
1036                       "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0dcclk": {
1037                         "isMissingData": true,
1038                         "sdncPreReload": null,
1039                         "modelInfo": {
1040                           "modelType": "VFmodule",
1041                           "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
1042                           "modelVersionId": "f8360508-3f17-4414-a2ed-6bc71161e8db",
1043                           "modelName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
1044                           "modelVersion": "5",
1045                           "modelCustomizationId": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
1046                           "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
1047                           "modelUniqueId": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3"
1048                         },
1049                         "instanceParams": [
1050                           {}
1051                         ],
1052                         "trackById": "j671h5gcc89",
1053                         "rollbackOnFailure": true,
1054                         "action": "Create",
1055                         "position": 1
1056                       }
1057                     }
1058                   },
1059                   "vnfStoreKey": "2017-488_PASQUALE-vPE 0",
1060                   "upgradedVFMSonsCounter": 0,
1061                   "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
1062                   "lcpCloudRegionId": "hvf6",
1063                   "tenantId": "229bcdc6eaeb4ca59d55221141d01f8e",
1064                   "lineOfBusiness": "zzz1",
1065                   "platformName": "xxx1",
1066                   "modelInfo": {
1067                     "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
1068                     "modelVersionId": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
1069                     "modelName": "2017-488_PASQUALE-vPE",
1070                     "modelVersion": "5.0",
1071                     "modelCustomizationId": "1da7b585-5e61-4993-b95e-8e6606c81e45",
1072                     "modelCustomizationName": "2017-488_PASQUALE-vPE 0",
1073                     "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
1074                     "modelUniqueId": "1da7b585-5e61-4993-b95e-8e6606c81e45"
1075                   },
1076                   "instanceName": null,
1077                   "productFamilyId": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
1078                   "instanceParams": [
1079                     {}
1080                   ]
1081                 }
1082               },
1083               "vrfs": {},
1084               "instanceParams": [
1085                 {
1086                   "2017488_pasqualevpe0_ASN": "AV_vPE"
1087                 }
1088               ],
1089               "validationCounter": 0,
1090               "existingNames": {},
1091               "existingVNFCounterMap": {
1092                 "1da7b585-5e61-4993-b95e-8e6606c81e45": 1
1093               },
1094               "existingVRFCounterMap": {},
1095               "existingVnfGroupCounterMap": {},
1096               "existingNetworksCounterMap": {},
1097               "optionalGroupMembersMap": {},
1098               "networks": {},
1099               "vnfGroups": {},
1100               "bulkSize": 1,
1101               "isUpgraded": false,
1102               "upgradedVFMSonsCounter": 0,
1103               "instanceName": null,
1104               "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
1105               "subscriptionServiceType": "TYLER SILVIA",
1106               "owningEntityId": "aaa1",
1107               "projectName": "WATKINS",
1108               "rollbackOnFailure": "true",
1109               "aicZoneName": null,
1110               "owningEntityName": "aaa1",
1111               "testApi": "GR_API",
1112               "tenantName": null,
1113               "modelInfo": {
1114                 "modelInvariantId": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
1115                 "modelVersionId": "2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
1116                 "modelName": "action-data",
1117                 "modelVersion": "1.0",
1118                 "uuid": "2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
1119                 "modelUniqueId": "2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"
1120               },
1121               "isALaCarte": true,
1122               "name": "action-data",
1123               "version": "1.0",
1124               "description": "",
1125               "category": "",
1126               "uuid": "2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
1127               "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
1128               "serviceType": "",
1129               "serviceRole": "",
1130               "vidNotions": {
1131                 "instantiationType": "A-La-Carte"
1132               },
1133               "isEcompGeneratedNaming": true,
1134               "isMultiStepDesign": false
1135             }
1136           },
1137           "lcpRegionsAndTenants": {
1138             "lcpRegionList": [
1139               {
1140                 "id": "AAIAIC25",
1141                 "name": "AAIAIC25 (AIC)",
1142                 "isPermitted": true,
1143                 "cloudOwner": "irma-aic"
1144               },
1145               {
1146                 "id": "hvf6",
1147                 "name": "hvf6 (AIC)",
1148                 "isPermitted": true,
1149                 "cloudOwner": "irma-aic"
1150               },
1151               {
1152                 "id": "olson3",
1153                 "name": "olson3 (AIC)",
1154                 "isPermitted": true,
1155                 "cloudOwner": "irma-aic"
1156               },
1157               {
1158                 "id": "olson5a",
1159                 "name": "olson5a (AIC)",
1160                 "isPermitted": true,
1161                 "cloudOwner": "irma-aic"
1162               }
1163             ],
1164             "lcpRegionsTenantsMap": {
1165               "AAIAIC25": [
1166                 {
1167                   "id": "092eb9e8e4b7412e8787dd091bc58e86",
1168                   "name": "USP-SIP-IC-24335-T-01",
1169                   "isPermitted": true,
1170                   "cloudOwner": "irma-aic"
1171                 }
1172               ],
1173               "hvf6": [
1174                 {
1175                   "id": "bae71557c5bb4d5aac6743a4e5f1d054",
1176                   "name": "AIN Web Tool-15-D-testalexandria",
1177                   "isPermitted": true,
1178                   "cloudOwner": "irma-aic"
1179                 },
1180                 {
1181                   "id": "229bcdc6eaeb4ca59d55221141d01f8e",
1182                   "name": "AIN Web Tool-15-D-STTest2",
1183                   "isPermitted": true,
1184                   "cloudOwner": "irma-aic"
1185                 },
1186                 {
1187                   "id": "1178612d2b394be4834ad77f567c0af2",
1188                   "name": "AIN Web Tool-15-D-SSPtestcustome",
1189                   "isPermitted": true,
1190                   "cloudOwner": "irma-aic"
1191                 },
1192                 {
1193                   "id": "19c5ade915eb461e8af52fb2fd8cd1f2",
1194                   "name": "AIN Web Tool-15-D-UncheckedEcopm",
1195                   "isPermitted": true,
1196                   "cloudOwner": "irma-aic"
1197                 },
1198                 {
1199                   "id": "de007636e25249238447264a988a927b",
1200                   "name": "AIN Web Tool-15-D-dfsdf",
1201                   "isPermitted": true,
1202                   "cloudOwner": "irma-aic"
1203                 },
1204                 {
1205                   "id": "62f29b3613634ca6a3065cbe0e020c44",
1206                   "name": "AIN/SMS-16-D-Multiservices1",
1207                   "isPermitted": true,
1208                   "cloudOwner": "irma-aic"
1209                 },
1210                 {
1211                   "id": "649289e30d3244e0b48098114d63c2aa",
1212                   "name": "AIN Web Tool-15-D-SSPST66",
1213                   "isPermitted": true,
1214                   "cloudOwner": "irma-aic"
1215                 },
1216                 {
1217                   "id": "3f21eeea6c2c486bba31dab816c05a32",
1218                   "name": "AIN Web Tool-15-D-ASSPST47",
1219                   "isPermitted": true,
1220                   "cloudOwner": "irma-aic"
1221                 },
1222                 {
1223                   "id": "f60ce21d3ee6427586cff0d22b03b773",
1224                   "name": "CESAR-100-D-sspjg67246",
1225                   "isPermitted": true,
1226                   "cloudOwner": "irma-aic"
1227                 },
1228                 {
1229                   "id": "8774659e425f479895ae091bb5d46560",
1230                   "name": "CESAR-100-D-sspjg68359",
1231                   "isPermitted": true,
1232                   "cloudOwner": "irma-aic"
1233                 },
1234                 {
1235                   "id": "624eb554b0d147c19ff8885341760481",
1236                   "name": "AINWebTool-15-D-iftach",
1237                   "isPermitted": true,
1238                   "cloudOwner": "irma-aic"
1239                 },
1240                 {
1241                   "id": "214f55f5fc414c678059c383b03e4962",
1242                   "name": "CESAR-100-D-sspjg612401",
1243                   "isPermitted": true,
1244                   "cloudOwner": "irma-aic"
1245                 },
1246                 {
1247                   "id": "c90666c291664841bb98e4d981ff1db5",
1248                   "name": "CESAR-100-D-sspjg621340",
1249                   "isPermitted": true,
1250                   "cloudOwner": "irma-aic"
1251                 },
1252                 {
1253                   "id": "ce5b6bc5c7b348e1bf4b91ac9a174278",
1254                   "name": "sspjg621351cloned",
1255                   "isPermitted": true,
1256                   "cloudOwner": "irma-aic"
1257                 },
1258                 {
1259                   "id": "b386b768a3f24c8e953abbe0b3488c02",
1260                   "name": "AINWebTool-15-D-eteancomp",
1261                   "isPermitted": true,
1262                   "cloudOwner": "irma-aic"
1263                 },
1264                 {
1265                   "id": "dc6c4dbfd225474e9deaadd34968646c",
1266                   "name": "AINWebTool-15-T-SPFET",
1267                   "isPermitted": true,
1268                   "cloudOwner": "irma-aic"
1269                 },
1270                 {
1271                   "id": "02cb5030e9914aa4be120bd9ed1e19eb",
1272                   "name": "AINWebTool-15-X-eeweww",
1273                   "isPermitted": true,
1274                   "cloudOwner": "irma-aic"
1275                 },
1276                 {
1277                   "id": "f2f3830e4c984d45bcd00e1a04158a79",
1278                   "name": "CESAR-100-D-spjg61909",
1279                   "isPermitted": true,
1280                   "cloudOwner": "irma-aic"
1281                 },
1282                 {
1283                   "id": "05b91bd5137f4929878edd965755c06d",
1284                   "name": "CESAR-100-D-sspjg621512cloned",
1285                   "isPermitted": true,
1286                   "cloudOwner": "irma-aic"
1287                 },
1288                 {
1289                   "id": "7002fbe8482d4a989ddf445b1ce336e0",
1290                   "name": "AINWebTool-15-X-vdr",
1291                   "isPermitted": true,
1292                   "cloudOwner": "irma-aic"
1293                 },
1294                 {
1295                   "id": "4008522be43741dcb1f5422022a2aa0b",
1296                   "name": "AINWebTool-15-D-ssasa",
1297                   "isPermitted": true,
1298                   "cloudOwner": "irma-aic"
1299                 },
1300                 {
1301                   "id": "f44e2e96a1b6476abfda2fa407b00169",
1302                   "name": "AINWebTool-15-D-PFNPT",
1303                   "isPermitted": true,
1304                   "cloudOwner": "irma-aic"
1305                 },
1306                 {
1307                   "id": "b69a52bec8a84669a37a1e8b72708be7",
1308                   "name": "AINWebTool-15-X-vdre",
1309                   "isPermitted": true,
1310                   "cloudOwner": "irma-aic"
1311                 },
1312                 {
1313                   "id": "fac7d9fd56154caeb9332202dcf2969f",
1314                   "name": "AINWebTool-15-X-NONPODECOMP",
1315                   "isPermitted": true,
1316                   "cloudOwner": "irma-aic"
1317                 },
1318                 {
1319                   "id": "2d34d8396e194eb49969fd61ffbff961",
1320                   "name": "DN5242-Nov16-T5",
1321                   "isPermitted": true,
1322                   "cloudOwner": "irma-aic"
1323                 },
1324                 {
1325                   "id": "cb42a77ff45b48a8b8deb83bb64acc74",
1326                   "name": "ro-T11",
1327                   "isPermitted": true,
1328                   "cloudOwner": "irma-aic"
1329                 },
1330                 {
1331                   "id": "fa45ca53c80b492fa8be5477cd84fc2b",
1332                   "name": "ro-T112",
1333                   "isPermitted": true,
1334                   "cloudOwner": "irma-aic"
1335                 },
1336                 {
1337                   "id": "4914ab0ab3a743e58f0eefdacc1dde77",
1338                   "name": "DN5242-Nov21-T1",
1339                   "isPermitted": true,
1340                   "cloudOwner": "irma-aic"
1341                 },
1342                 {
1343                   "id": "d0a3e3f2964542259d155a81c41aadc3",
1344                   "name": "test-hvf6-09",
1345                   "isPermitted": true,
1346                   "cloudOwner": "irma-aic"
1347                 },
1348                 {
1349                   "id": "cbb99fe4ada84631b7baf046b6fd2044",
1350                   "name": "DN5242-Nov16-T3",
1351                   "isPermitted": true,
1352                   "cloudOwner": "irma-aic"
1353                 }
1354               ],
1355               "olson3": [
1356                 {
1357                   "id": "cbb99fe4ada84631b7baf046b6fd2XXX",
1358                   "name": "DN5242-Nov16-T3XXX",
1359                   "isPermitted": true,
1360                   "cloudOwner": "irma-aic"
1361                 }
1362               ],
1363               "olson5a": [
1364                 {
1365                   "id": "cbb99fe4ada84631b7baf046b6fd2YYY",
1366                   "name": "DN5242-Nov16-T3YYY",
1367                   "isPermitted": true,
1368                   "cloudOwner": "irma-aic"
1369                 }
1370               ]
1371             }
1372           },
1373           "subscribers": [
1374             {
1375               "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
1376               "name": "Emanuel",
1377               "isPermitted": false
1378             },
1379             {
1380               "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fc",
1381               "name": "JULIO ERICKSON",
1382               "isPermitted": false
1383             },
1384             {
1385               "id": "e433710f-9217-458d-a79d-1c7aff376d89",
1386               "name": "SILVIA ROBBINS",
1387               "isPermitted": true
1388             }
1389           ],
1390           "productFamilies": [
1391             {
1392               "id": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
1393               "name": "ERICA",
1394               "isPermitted": true
1395             },
1396             {
1397               "id": "17cc1042-527b-11e6-beb8-9e71128cae77",
1398               "name": "IGNACIO",
1399               "isPermitted": true
1400             },
1401             {
1402               "id": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
1403               "name": "Christie",
1404               "isPermitted": true
1405             },
1406             {
1407               "id": "a4f6f2ae-9bf5-4ed7-b904-06b2099c4bd7",
1408               "name": "Enhanced Services",
1409               "isPermitted": true
1410             },
1411             {
1412               "id": "vTerrance",
1413               "name": "vTerrance",
1414               "isPermitted": true
1415             },
1416             {
1417               "id": "323d69d9-2efe-4r45-ay0a-89ea7ard4e6f",
1418               "name": "vEsmeralda",
1419               "isPermitted": true
1420             },
1421             {
1422               "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
1423               "name": "Emanuel",
1424               "isPermitted": true
1425             },
1426             {
1427               "id": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
1428               "name": "BVOIP",
1429               "isPermitted": true
1430             },
1431             {
1432               "id": "db171b8f-115c-4992-a2e3-ee04cae357e0",
1433               "name": "LINDSEY",
1434               "isPermitted": true
1435             },
1436             {
1437               "id": "LRSI-OSPF",
1438               "name": "LRSI-OSPF",
1439               "isPermitted": true
1440             },
1441             {
1442               "id": "vRosemarie",
1443               "name": "HNGATEWAY",
1444               "isPermitted": true
1445             },
1446             {
1447               "id": "vHNPaas",
1448               "name": "WILKINS",
1449               "isPermitted": true
1450             },
1451             {
1452               "id": "e433710f-9217-458d-a79d-1c7aff376d89",
1453               "name": "TYLER SILVIA",
1454               "isPermitted": true
1455             },
1456             {
1457               "id": "b6a3f28c-eebf-494c-a900-055cc7c874ce",
1458               "name": "VROUTER",
1459               "isPermitted": true
1460             },
1461             {
1462               "id": "vMuriel",
1463               "name": "vMuriel",
1464               "isPermitted": true
1465             },
1466             {
1467               "id": "0ee8c1bc-7cbd-4b0a-a1ac-e9999255abc1",
1468               "name": "CARA Griffin",
1469               "isPermitted": true
1470             },
1471             {
1472               "id": "c7611ebe-c324-48f1-8085-94aef0c6ef3d",
1473               "name": "DARREN MCGEE",
1474               "isPermitted": true
1475             },
1476             {
1477               "id": "e30755dc-5673-4b6b-9dcf-9abdd96b93d1",
1478               "name": "Transport",
1479               "isPermitted": true
1480             },
1481             {
1482               "id": "vSalvatore",
1483               "name": "vSalvatore",
1484               "isPermitted": true
1485             },
1486             {
1487               "id": "d7bb0a21-66f2-4e6d-87d9-9ef3ced63ae4",
1488               "name": "JOSEFINA",
1489               "isPermitted": true
1490             },
1491             {
1492               "id": "vHubbard",
1493               "name": "vHubbard",
1494               "isPermitted": true
1495             },
1496             {
1497               "id": "12a96a9d-4b4c-4349-a950-fe1159602621",
1498               "name": "DARREN MCGEE",
1499               "isPermitted": true
1500             }
1501           ],
1502           "serviceTypes": {
1503             "e433710f-9217-458d-a79d-1c7aff376d89": [
1504               {
1505                 "id": "0",
1506                 "name": "vRichardson",
1507                 "isPermitted": false
1508               },
1509               {
1510                 "id": "1",
1511                 "name": "TYLER SILVIA",
1512                 "isPermitted": true
1513               },
1514               {
1515                 "id": "2",
1516                 "name": "Emanuel",
1517                 "isPermitted": false
1518               },
1519               {
1520                 "id": "3",
1521                 "name": "vJamie",
1522                 "isPermitted": false
1523               },
1524               {
1525                 "id": "4",
1526                 "name": "vVoiceMail",
1527                 "isPermitted": false
1528               },
1529               {
1530                 "id": "5",
1531                 "name": "Kennedy",
1532                 "isPermitted": false
1533               },
1534               {
1535                 "id": "6",
1536                 "name": "vPorfirio",
1537                 "isPermitted": false
1538               },
1539               {
1540                 "id": "7",
1541                 "name": "vVM",
1542                 "isPermitted": false
1543               },
1544               {
1545                 "id": "8",
1546                 "name": "vOTA",
1547                 "isPermitted": false
1548               },
1549               {
1550                 "id": "9",
1551                 "name": "vFLORENCE",
1552                 "isPermitted": false
1553               },
1554               {
1555                 "id": "10",
1556                 "name": "vMNS",
1557                 "isPermitted": false
1558               },
1559               {
1560                 "id": "11",
1561                 "name": "vEsmeralda",
1562                 "isPermitted": false
1563               },
1564               {
1565                 "id": "12",
1566                 "name": "VPMS",
1567                 "isPermitted": false
1568               },
1569               {
1570                 "id": "13",
1571                 "name": "vWINIFRED",
1572                 "isPermitted": false
1573               },
1574               {
1575                 "id": "14",
1576                 "name": "SSD",
1577                 "isPermitted": false
1578               },
1579               {
1580                 "id": "15",
1581                 "name": "vMOG",
1582                 "isPermitted": false
1583               },
1584               {
1585                 "id": "16",
1586                 "name": "LINDSEY",
1587                 "isPermitted": false
1588               },
1589               {
1590                 "id": "17",
1591                 "name": "JOHANNA_SANTOS",
1592                 "isPermitted": false
1593               },
1594               {
1595                 "id": "18",
1596                 "name": "vCarroll",
1597                 "isPermitted": false
1598               }
1599             ]
1600           },
1601           "aicZones": [
1602             {
1603               "id": "NFT1",
1604               "name": "NFTJSSSS-NFT1"
1605             },
1606             {
1607               "id": "JAG1",
1608               "name": "YUDFJULP-JAG1"
1609             },
1610             {
1611               "id": "YYY1",
1612               "name": "UUUAIAAI-YYY1"
1613             },
1614             {
1615               "id": "AVT1",
1616               "name": "AVTRFLHD-AVT1"
1617             },
1618             {
1619               "id": "ATL34",
1620               "name": "ATLSANAI-ATL34"
1621             }
1622           ],
1623           "categoryParameters": {
1624             "owningEntityList": [
1625               {
1626                 "id": "aaa1",
1627                 "name": "aaa1"
1628               },
1629               {
1630                 "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
1631                 "name": "WayneHolland"
1632               },
1633               {
1634                 "id": "Melissa",
1635                 "name": "Melissa"
1636               }
1637             ],
1638             "projectList": [
1639               {
1640                 "id": "WATKINS",
1641                 "name": "WATKINS"
1642               },
1643               {
1644                 "id": "x1",
1645                 "name": "x1"
1646               },
1647               {
1648                 "id": "yyy1",
1649                 "name": "yyy1"
1650               }
1651             ],
1652             "lineOfBusinessList": [
1653               {
1654                 "id": "ONAP",
1655                 "name": "ONAP",
1656                 "index": 1
1657               },
1658               {
1659                 "id": "zzz1",
1660                 "name": "zzz1",
1661                 "index": 2
1662               }
1663             ],
1664             "platformList": [
1665               {
1666                 "id": "platform",
1667                 "name": "platform"
1668               },
1669               {
1670                 "id": "xxx1",
1671                 "name": "xxx1"
1672               }
1673             ]
1674           },
1675           "type": "UPDATE_LCP_REGIONS_AND_TENANTS"
1676         }
1677       }
1678       }
1679
1680       function addALaCarteVfModuleEcompGeneratedNamingTrue(vnfName: string, vfModulesName: string, uuidAndVfModuleName: string): Chainable<any> {
1681         return cy.getElementByDataTestsId('node-' + vnfName).click({force: true}).then(() => {
1682           cy.getElementByDataTestsId('node-' + vfModulesName + '-add-btn').click({force: true}).then(() => {
1683             cy.getElementByDataTestsId('node-' + uuidAndVfModuleName + '-menu-btn')
1684               .click({force: true, multiple:true}).then(() => {
1685               cy.getElementByDataTestsId('context-menu-edit').click().then(() => {
1686                 cy.getElementByDataTestsId('form-set').click();
1687               })
1688             })
1689           })
1690         })
1691       }
1692
1693
1694
1695
1696   });
1697 });