merge from ecomp a88f0072 - Modern UI
[vid.git] / vid-webpack-master / cypress / integration / iFrames / vnf.popup.e2e.ts
1 ///<reference path="../../../node_modules/cypress/types/index.d.ts"/>
2
3 describe('Vnf popup', function () {
4   describe('basic UI tests', () => {
5
6     beforeEach(() => {
7       cy.window().then((win) => {
8         win.sessionStorage.clear();
9         cy.setReduxState();
10         cy.preventErrorsOnLoading();
11         cy.initAAIMock();
12         cy.initVidMock();
13         cy.login();
14       })
15     });
16
17     afterEach(() => {
18       cy.screenshot();
19     });
20
21     it('volume group should change on instance name blur if the value is null or empty', function () {
22         let redux = getReduxWithVNFS();
23         redux.service.serviceHierarchy['6e59c5de-f052-46fa-aa7e-2fca9d674c44'].vnfs['VF_vMee 0'].properties['ecomp_generated_naming'] = 'false';
24         redux.service.serviceHierarchy['6e59c5de-f052-46fa-aa7e-2fca9d674c44'].vfModules['vf_vmee0..VfVmee..vmme_vlc..module-1']['volumeGroupAllowed'] = true;
25
26         cy.setReduxState(<any>redux);
27         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6e59c5de-f052-46fa-aa7e-2fca9d674c44');
28
29         cy.getElementByDataTestsId('node-522159d5-d6e0-4c2a-aa44-5a542a12a830-vf_vmee0..VfVmee..vmme_vlc..module-1-menu-btn').click({force: true})
30           .getElementByDataTestsId('context-menu-edit').click({force: true})
31           .getElementByDataTestsId('form-set').should('not.have.attr', 'disabled')
32           .getElementByDataTestsId("instanceName").clear()
33           .getElementByDataTestsId('form-set').should('have.attr', 'disabled')
34           .typeToInput('instanceName', 'someInput1');
35         cy.getElementByDataTestsId('instanceName').blur();
36         cy.getElementByDataTestsId("volumeGroupName").should('have.value', 'someInput1_vol');
37         cy.getElementByDataTestsId('form-set').should('not.have.attr', 'disabled');
38         cy.typeToInput('volumeGroupName', 'textAfter');
39         cy.getElementByDataTestsId('form-set').click()
40           .get('#drawing-board-tree .toggle-children').click()
41           .getElementByDataTestsId('node-522159d5-d6e0-4c2a-aa44-5a542a12a830-vf_vmee0..VfVmee..vmme_vlc..module-1-menu-btn').click({force: true})
42           .getElementByDataTestsId('context-menu-edit').click({force: true})
43           .getElementByDataTestsId("volumeGroupName").should('have.value', 'someInput1_voltextAfter');
44
45     });
46
47     it('should display min/max', function () {
48       cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
49         res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_ADIOD-vPE 0'].properties.min_instances = 100;
50         res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_ADIOD-vPE 0'].properties.max_instances = 200;
51         cy.setReduxState(<any>res);
52         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
53         cy.getElementByDataTestsId('node-2017-488_ADIOD-vPE 0-add-btn').click({force : true});
54         cy.getElementByDataTestsId('model-item-label-vnf-min').contains('Minimum to instantiate');
55         cy.getElementByDataTestsId('model-item-value-vnf-min').contains('100');
56         cy.getElementByDataTestsId('model-item-label-vnf-max').contains('Maximum to instantiate');
57         cy.getElementByDataTestsId('model-item-value-vnf-max').contains('200');
58       })
59     });
60
61     it('should display default values for undefined min/max', function () {
62       cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
63         res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_ADIOD-vPE 0'].properties.min_instances = null;
64         res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_ADIOD-vPE 0'].properties.max_instances = null;
65         cy.setReduxState(<any>res);
66         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
67         cy.getElementByDataTestsId('node-2017-488_ADIOD-vPE 0-add-btn').click({force : true});
68         cy.getElementByDataTestsId('model-item-label-vnf-min').contains('Minimum to instantiate');
69         cy.getElementByDataTestsId('model-item-value-vnf-min').contains('0');
70         cy.getElementByDataTestsId('model-item-label-vnf-max').contains('Maximum to instantiate');
71         cy.getElementByDataTestsId('model-item-value-vnf-max').contains('1');
72       })
73      });
74
75     it('fill all fields of vnf popup', function () {
76       cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
77         res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_ADIOD-vPE 0'].min = null;
78         res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_ADIOD-vPE 0'].max = null;
79         cy.setReduxState(<any>res);
80         cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
81         cy.getElementByDataTestsId('node-2017-488_ADIOD-vPE 0-add-btn').click({force : true});
82         cy.selectDropdownOptionByText('productFamily', 'Emanuel');
83         cy.selectDropdownOptionByText('lcpRegion', 'hvf6');
84         cy.selectDropdownOptionByText('tenant', 'AIN Web Tool-15-D-STTest2');
85         cy.selectDropdownOptionByText('lineOfBusiness', 'zzz1');
86         cy.selectDropdownOptionByText('platform', 'xxx1');
87
88       })
89     });
90
91     function getReduxWithVNFS(){
92       return {
93         "global": {
94           "name": null,
95           "flags": {
96             "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
97             "FLAG_SHOW_ASSIGNMENTS": true,
98             "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
99             "FLAG_UNASSIGN_SERVICE": true,
100             "FLAG_SHOW_VERIFY_SERVICE": false,
101             "FLAG_COLLECTION_RESOURCE_SUPPORT": true,
102             "FLAG_DUPLICATE_VNF": true,
103             "FLAG_SERVICE_MODEL_CACHE": true,
104             "CREATE_INSTANCE_TEST": false,
105             "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": false,
106             "FLAG_ASYNC_INSTANTIATION": true,
107             "FLAG_ASYNC_JOBS": true,
108             "EMPTY_DRAWING_BOARD_TEST": false,
109             "FLAG_ADD_MSO_TESTAPI_FIELD": true
110           },
111           "type": "[FLAGS] Update"
112         },
113         "service": {
114           "serviceHierarchy": {
115             "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
116               "service": {
117                 "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
118                 "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
119                 "name": "ComplexService",
120                 "version": "1.0",
121                 "toscaModelURL": null,
122                 "category": "Emanuel",
123                 "serviceType": "",
124                 "serviceRole": "",
125                 "description": "ComplexService",
126                 "serviceEcompNaming": "true",
127                 "instantiationType": "Macro",
128                 "inputs": {}
129               },
130               "vnfs": {
131                 "VF_vMee 0": {
132                   "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60",
133                   "invariantUuid": "4160458e-f648-4b30-a176-43881ffffe9e",
134                   "description": "VSP_vMee",
135                   "name": "VF_vMee",
136                   "version": "2.0",
137                   "customizationUuid": "91415b44-753d-494c-926a-456a9172bbb9",
138                   "inputs": {},
139                   "commands": {},
140                   "properties": {
141                     "max_instances" : 10,
142                     "min_instances"  : 1,
143                     "gpb2_Internal2_mac": "00:11:22:EF:AC:DF",
144                     "sctp-b-ipv6-egress_src_start_port": "0",
145                     "sctp-a-ipv6-egress_rule_application": "any",
146                     "Internal2_allow_transit": "true",
147                     "sctp-b-IPv6_ethertype": "IPv6",
148                     "sctp-a-egress_rule_application": "any",
149                     "sctp-b-ingress_action": "pass",
150                     "sctp-b-ingress_rule_protocol": "icmp",
151                     "ncb2_Internal1_mac": "00:11:22:EF:AC:DF",
152                     "sctp-b-ipv6-ingress-src_start_port": "0.0",
153                     "ncb1_Internal2_mac": "00:11:22:EF:AC:DF",
154                     "fsb_volume_size_0": "320.0",
155                     "sctp-b-egress_src_addresses": "local",
156                     "sctp-a-ipv6-ingress_ethertype": "IPv4",
157                     "sctp-a-ipv6-ingress-dst_start_port": "0",
158                     "sctp-b-ipv6-ingress_rule_application": "any",
159                     "domain_name": "default-domain",
160                     "sctp-a-ingress_rule_protocol": "icmp",
161                     "sctp-b-egress-src_start_port": "0.0",
162                     "sctp-a-egress_src_addresses": "local",
163                     "sctp-b-display_name": "epc-sctp-b-ipv4v6-sec-group",
164                     "sctp-a-egress-src_start_port": "0.0",
165                     "sctp-a-ingress_ethertype": "IPv4",
166                     "sctp-b-ipv6-ingress-dst_end_port": "65535",
167                     "sctp-b-dst_subnet_prefix_v6": "::",
168                     "nf_naming": "{ecomp_generated_naming=true}",
169                     "sctp-a-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
170                     "sctp-b-egress-dst_start_port": "0.0",
171                     "ncb_flavor_name": "nv.c20r64d1",
172                     "gpb1_Internal1_mac": "00:11:22:EF:AC:DF",
173                     "sctp-b-egress_dst_subnet_prefix_len": "0.0",
174                     "Internal2_net_cidr": "10.0.0.10",
175                     "sctp-a-ingress-dst_start_port": "0.0",
176                     "sctp-a-egress-dst_start_port": "0.0",
177                     "fsb1_Internal2_mac": "00:11:22:EF:AC:DF",
178                     "sctp-a-egress_ethertype": "IPv4",
179                     "vlc_st_service_mode": "in-network-nat",
180                     "sctp-a-ipv6-egress_ethertype": "IPv4",
181                     "sctp-a-egress-src_end_port": "65535.0",
182                     "sctp-b-ipv6-egress_rule_application": "any",
183                     "sctp-b-egress_action": "pass",
184                     "sctp-a-ingress-src_subnet_prefix_len": "0.0",
185                     "sctp-b-ipv6-ingress-src_end_port": "65535.0",
186                     "sctp-b-name": "epc-sctp-b-ipv4v6-sec-group",
187                     "fsb2_Internal1_mac": "00:11:22:EF:AC:DF",
188                     "sctp-a-ipv6-ingress-src_start_port": "0.0",
189                     "sctp-b-ipv6-egress_ethertype": "IPv4",
190                     "Internal1_net_cidr": "10.0.0.10",
191                     "sctp-a-egress_dst_subnet_prefix": "0.0.0.0",
192                     "fsb_flavor_name": "nv.c20r64d1",
193                     "sctp_rule_protocol": "132",
194                     "sctp-b-ipv6-ingress_src_subnet_prefix_len": "0",
195                     "sctp-a-ipv6-ingress_rule_application": "any",
196                     "ecomp_generated_naming": "true",
197                     "sctp-a-IPv6_ethertype": "IPv6",
198                     "vlc2_Internal1_mac": "00:11:22:EF:AC:DF",
199                     "vlc_st_virtualization_type": "virtual-machine",
200                     "sctp-b-ingress-dst_start_port": "0.0",
201                     "sctp-b-ingress-dst_end_port": "65535.0",
202                     "sctp-a-ipv6-ingress-src_end_port": "65535.0",
203                     "sctp-a-display_name": "epc-sctp-a-ipv4v6-sec-group",
204                     "sctp-b-ingress_rule_application": "any",
205                     "int2_sec_group_name": "int2-sec-group",
206                     "vlc_flavor_name": "nd.c16r64d1",
207                     "sctp-b-ipv6-egress_src_addresses": "local",
208                     "vlc_st_interface_type_int1": "other1",
209                     "sctp-b-egress-src_end_port": "65535.0",
210                     "sctp-a-ipv6-egress-dst_start_port": "0",
211                     "vlc_st_interface_type_int2": "other2",
212                     "sctp-a-ipv6-egress_rule_protocol": "any",
213                     "Internal2_shared": "false",
214                     "sctp-a-ipv6-egress_dst_subnet_prefix_len": "0",
215                     "Internal2_rpf": "disable",
216                     "vlc1_Internal1_mac": "00:11:22:EF:AC:DF",
217                     "sctp-b-ipv6-egress_src_end_port": "65535",
218                     "sctp-a-ipv6-egress_src_addresses": "local",
219                     "sctp-a-ingress-dst_end_port": "65535.0",
220                     "sctp-a-ipv6-egress_src_end_port": "65535",
221                     "Internal1_forwarding_mode": "l2",
222                     "Internal2_dhcp": "false",
223                     "sctp-a-dst_subnet_prefix_v6": "::",
224                     "pxe_image_name": "MME_PXE-Boot_16ACP04_GA.qcow2",
225                     "vlc_st_interface_type_gtp": "other0",
226                     "ncb1_Internal1_mac": "00:11:22:EF:AC:DF",
227                     "sctp-b-src_subnet_prefix_v6": "::",
228                     "sctp-a-egress_dst_subnet_prefix_len": "0.0",
229                     "int1_sec_group_name": "int1-sec-group",
230                     "Internal1_dhcp": "false",
231                     "sctp-a-ipv6-egress_dst_end_port": "65535",
232                     "Internal2_forwarding_mode": "l2",
233                     "fsb2_Internal2_mac": "00:11:22:EF:AC:DF",
234                     "sctp-b-egress_dst_subnet_prefix": "0.0.0.0",
235                     "Internal1_net_cidr_len": "17",
236                     "gpb2_Internal1_mac": "00:11:22:EF:AC:DF",
237                     "sctp-b-ingress-src_subnet_prefix_len": "0.0",
238                     "sctp-a-ingress_dst_addresses": "local",
239                     "sctp-a-egress_action": "pass",
240                     "fsb_volume_type_0": "SF-Default-SSD",
241                     "ncb2_Internal2_mac": "00:11:22:EF:AC:DF",
242                     "vlc_st_interface_type_sctp_a": "left",
243                     "vlc_st_interface_type_sctp_b": "right",
244                     "sctp-a-src_subnet_prefix_v6": "::",
245                     "vlc_st_version": "2",
246                     "sctp-b-egress_ethertype": "IPv4",
247                     "sctp-a-ingress_rule_application": "any",
248                     "gpb1_Internal2_mac": "00:11:22:EF:AC:DF",
249                     "instance_ip_family_v6": "v6",
250                     "sctp-a-ipv6-egress_src_start_port": "0",
251                     "sctp-b-ingress-src_start_port": "0.0",
252                     "sctp-b-ingress_dst_addresses": "local",
253                     "fsb1_Internal1_mac": "00:11:22:EF:AC:DF",
254                     "vlc_st_interface_type_oam": "management",
255                     "multi_stage_design": "false",
256                     "oam_sec_group_name": "oam-sec-group",
257                     "Internal2_net_gateway": "10.0.0.10",
258                     "sctp-a-ipv6-ingress-dst_end_port": "65535",
259                     "sctp-b-ipv6-egress-dst_start_port": "0",
260                     "Internal1_net_gateway": "10.0.0.10",
261                     "sctp-b-ipv6-egress_rule_protocol": "any",
262                     "gtp_sec_group_name": "gtp-sec-group",
263                     "sctp-a-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
264                     "sctp-b-ipv6-egress_dst_subnet_prefix_len": "0",
265                     "sctp-a-ipv6-ingress_dst_addresses": "local",
266                     "sctp-a-egress_rule_protocol": "icmp",
267                     "sctp-b-ipv6-egress_action": "pass",
268                     "sctp-a-ipv6-egress_action": "pass",
269                     "Internal1_shared": "false",
270                     "sctp-b-ipv6-ingress_rule_protocol": "any",
271                     "Internal2_net_cidr_len": "17",
272                     "sctp-a-name": "epc-sctp-a-ipv4v6-sec-group",
273                     "sctp-a-ingress-src_end_port": "65535.0",
274                     "sctp-b-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
275                     "sctp-a-egress-dst_end_port": "65535.0",
276                     "sctp-a-ingress_action": "pass",
277                     "sctp-b-egress_rule_protocol": "icmp",
278                     "sctp-b-ipv6-ingress_action": "pass",
279                     "vlc_st_service_type": "firewall",
280                     "sctp-b-ipv6-egress_dst_end_port": "65535",
281                     "sctp-b-ipv6-ingress-dst_start_port": "0",
282                     "vlc2_Internal2_mac": "00:11:22:EF:AC:DF",
283                     "vlc_st_availability_zone": "true",
284                     "fsb_volume_image_name_1": "MME_FSB2_16ACP04_GA.qcow2",
285                     "sctp-b-ingress-src_subnet_prefix": "0.0.0.0",
286                     "sctp-a-ipv6-ingress_src_subnet_prefix_len": "0",
287                     "Internal1_allow_transit": "true",
288                     "gpb_flavor_name": "nv.c20r64d1",
289                     "availability_zone_max_count": "1",
290                     "fsb_volume_image_name_0": "MME_FSB1_16ACP04_GA.qcow2",
291                     "sctp-b-ipv6-ingress_dst_addresses": "local",
292                     "sctp-b-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
293                     "sctp-b-ipv6-ingress_ethertype": "IPv4",
294                     "vlc1_Internal2_mac": "00:11:22:EF:AC:DF",
295                     "sctp-a-ingress-src_subnet_prefix": "0.0.0.0",
296                     "sctp-a-ipv6-ingress_action": "pass",
297                     "Internal1_rpf": "disable",
298                     "sctp-b-ingress_ethertype": "IPv4",
299                     "sctp-b-egress_rule_application": "any",
300                     "sctp-b-ingress-src_end_port": "65535.0",
301                     "sctp-a-ipv6-ingress_rule_protocol": "any",
302                     "sctp-a-ingress-src_start_port": "0.0",
303                     "sctp-b-egress-dst_end_port": "65535.0"
304                   },
305                   "type": "VF",
306                   "modelCustomizationName": "VF_vMee 0",
307                   "vfModules": {
308                     "vf_vmee0..VfVmee..vmme_vlc..module-1": {
309                       "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
310                       "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
311                       "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
312                       "description": null,
313                       "name": "VfVmee..vmme_vlc..module-1",
314                       "version": "2",
315                       "modelCustomizationName": "VfVmee..vmme_vlc..module-1",
316                       "properties": {
317                         "minCountInstances": 0,
318                         "maxCountInstances": null,
319                         "initialCount": 0,
320                         "vfModuleLabel": "vmme_vlc"
321                       },
322                       "inputs": {},
323                       "volumeGroupAllowed": false
324                     },
325                     "vf_vmee0..VfVmee..vmme_gpb..module-2": {
326                       "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
327                       "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
328                       "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
329                       "description": null,
330                       "name": "VfVmee..vmme_gpb..module-2",
331                       "version": "2",
332                       "modelCustomizationName": "VfVmee..vmme_gpb..module-2",
333                       "properties": {
334                         "minCountInstances": 0,
335                         "maxCountInstances": null,
336                         "initialCount": 0,
337                         "vfModuleLabel": "vmme_gpb"
338                       },
339                       "inputs": {},
340                       "volumeGroupAllowed": false
341                     },
342                     "vf_vmee0..VfVmee..base_vmme..module-0": {
343                       "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
344                       "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
345                       "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
346                       "description": null,
347                       "name": "VfVmee..base_vmme..module-0",
348                       "version": "2",
349                       "modelCustomizationName": "VfVmee..base_vmme..module-0",
350                       "properties": {
351                         "minCountInstances": 1,
352                         "maxCountInstances": 1,
353                         "initialCount": 1,
354                         "vfModuleLabel": "base_vmme"
355                       },
356                       "inputs": {},
357                       "volumeGroupAllowed": true
358                     }
359                   },
360                   "volumeGroups": {
361                     "vf_vmee0..VfVmee..base_vmme..module-0": {
362                       "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
363                       "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
364                       "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
365                       "description": null,
366                       "name": "VfVmee..base_vmme..module-0",
367                       "version": "2",
368                       "modelCustomizationName": "VfVmee..base_vmme..module-0",
369                       "properties": {
370                         "minCountInstances": 1,
371                         "maxCountInstances": 1,
372                         "initialCount": 1,
373                         "vfModuleLabel": "base_vmme"
374                       },
375                       "inputs": {}
376                     }
377                   },
378                   "vfcInstanceGroups": {}
379                 }
380               },
381               "networks": {
382                 "ExtVL 0": {
383                   "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
384                   "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
385                   "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
386                   "name": "ExtVL",
387                   "version": "37.0",
388                   "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
389                   "inputs": {},
390                   "commands": {},
391                   "properties": {
392                     "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}}",
393                     "exVL_naming": "{ecomp_generated_naming=true}",
394                     "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
395                     "network_homing": "{ecomp_selected_instance_node_target=false}"
396                   },
397                   "type": "VL",
398                   "modelCustomizationName": "ExtVL 0"
399                 }
400               },
401               "collectionResource": {},
402               "configurations": {
403                 "Port Mirroring Configuration By Policy 0": {
404                   "uuid": "b4398538-e89d-4f13-b33d-ca323434ba50",
405                   "invariantUuid": "6ef0ca40-f366-4897-951f-abd65d25f6f7",
406                   "description": "A port mirroring configuration by policy object",
407                   "name": "Port Mirroring Configuration By Policy",
408                   "version": "27.0",
409                   "customizationUuid": "3c3b7b8d-8669-4b3b-8664-61970041fad2",
410                   "inputs": {},
411                   "commands": {},
412                   "properties": {},
413                   "type": "Configuration",
414                   "modelCustomizationName": "Port Mirroring Configuration By Policy 0",
415                   "sourceNodes": [],
416                   "collectorNodes": null,
417                   "configurationByPolicy": false
418                 }
419               },
420               "serviceProxies": {},
421               "vfModules": {
422                 "vf_vmee0..VfVmee..vmme_vlc..module-1": {
423                   "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
424                   "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
425                   "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
426                   "description": null,
427                   "name": "VfVmee..vmme_vlc..module-1",
428                   "version": "2",
429                   "modelCustomizationName": "VfVmee..vmme_vlc..module-1",
430                   "properties": {
431                     "minCountInstances": 0,
432                     "maxCountInstances": null,
433                     "initialCount": 0,
434                     "vfModuleLabel": "vmme_vlc"
435                   },
436                   "inputs": {},
437                   "volumeGroupAllowed": false
438                 },
439                 "vf_vmee0..VfVmee..vmme_gpb..module-2": {
440                   "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
441                   "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
442                   "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
443                   "description": null,
444                   "name": "VfVmee..vmme_gpb..module-2",
445                   "version": "2",
446                   "modelCustomizationName": "VfVmee..vmme_gpb..module-2",
447                   "properties": {
448                     "minCountInstances": 0,
449                     "maxCountInstances": null,
450                     "initialCount": 0,
451                     "vfModuleLabel": "vmme_gpb"
452                   },
453                   "inputs": {},
454                   "volumeGroupAllowed": false
455                 },
456                 "vf_vmee0..VfVmee..base_vmme..module-0": {
457                   "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
458                   "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
459                   "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
460                   "description": null,
461                   "name": "VfVmee..base_vmme..module-0",
462                   "version": "2",
463                   "modelCustomizationName": "VfVmee..base_vmme..module-0",
464                   "properties": {
465                     "minCountInstances": 1,
466                     "maxCountInstances": 1,
467                     "initialCount": 1,
468                     "vfModuleLabel": "base_vmme"
469                   },
470                   "inputs": {},
471                   "volumeGroupAllowed": true
472                 }
473               },
474               "volumeGroups": {
475                 "vf_vmee0..VfVmee..base_vmme..module-0": {
476                   "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
477                   "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
478                   "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
479                   "description": null,
480                   "name": "VfVmee..base_vmme..module-0",
481                   "version": "2",
482                   "modelCustomizationName": "VfVmee..base_vmme..module-0",
483                   "properties": {
484                     "minCountInstances": 1,
485                     "maxCountInstances": 1,
486                     "initialCount": 1,
487                     "vfModuleLabel": "base_vmme"
488                   },
489                   "inputs": {}
490                 }
491               },
492               "pnfs": {}
493             }
494           },
495           "serviceInstance": {
496             "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
497               "vnfs": {
498                 "VF_vMee 0": {
499                   "originalName": "VF_vMee 0",
500                   "rollbackOnFailure": "true",
501                   "vfModules": {
502                     "vf_vmee0..VfVmee..vmme_vlc..module-1": {
503                       "vf_vmee0..VfVmee..vmme_vlc..module-1dcudx": {
504                         "modelInfo": {
505                           "modelInvariantId": "98a7c88b-b577-476a-90e4-e25a5871e02b",
506                           "modelVersionId": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
507                           "modelName": "VfVmee..vmme_vlc..module-1",
508                           "modelVersion": "2",
509                           "modelCustomizationId": "55b1be94-671a-403e-a26c-667e9c47d091",
510                           "modelCustomizationName": "VfVmee..vmme_vlc..module-1"
511                         },
512                         "isMissingData": false,
513                         "instanceParams": [
514                           {}
515                         ]
516                       }
517                     }
518                   },
519                   "isMissingData": false,
520                   "modelName": "VF_vMee 0",
521                   "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
522                   "lcpCloudRegionId": "hvf6",
523                   "tenantId": "bae71557c5bb4d5aac6743a4e5f1d054",
524                   "lineOfBusiness": "zzz1",
525                   "platformName": "platform",
526                   "modelInfo": {
527                     "modelInvariantId": "4160458e-f648-4b30-a176-43881ffffe9e",
528                     "modelVersionId": "d6557200-ecf2-4641-8094-5393ae3aae60",
529                     "modelName": "VF_vMee",
530                     "modelVersion": "2.0",
531                     "modelCustomizationId": "91415b44-753d-494c-926a-456a9172bbb9",
532                     "modelCustomizationName": "VF_vMee 0"
533                   }
534                 }
535               },
536               "instanceParams": [
537                 {}
538               ],
539               "validationCounter": 0,
540               "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
541               "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
542               "subscriptionServiceType": "TYLER SILVIA",
543               "lcpCloudRegionId": "hvf6",
544               "tenantId": "1178612d2b394be4834ad77f567c0af2",
545               "aicZoneId": "YYY1",
546               "projectName": "yyy1",
547               "owningEntityId": "aaa1",
548               "rollbackOnFailure": "true",
549               "bulkSize": 1,
550               "modelInfo": {
551                 "modelInvariantId": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
552                 "modelVersionId": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
553                 "modelName": "ComplexService",
554                 "modelVersion": "1.0"
555               },
556               "existingVNFCounterMap": {
557                 "91415b44-753d-494c-926a-456a9172bbb9": 1
558               },
559               "existingNames": {},
560               "existingNetworksCounterMap" : {},
561               "tenantName": "AIN Web Tool-15-D-SSPtestcustome",
562               "aicZoneName": "UUUAIAAI-YYY1"
563             }
564           },
565           "lcpRegionsAndTenants": {
566             "lcpRegionList": [
567               {
568                 "id": "JANET25",
569                 "name": "JANET25 (AIC)",
570                 "cloudOwner" : "irma-aic",
571                 "isPermitted": true
572               },
573               {
574                 "id": "hvf6",
575                 "name": "hvf6 (AIC)",
576                 "cloudOwner" : "irma-aic",
577                 "isPermitted": true
578               }
579             ],
580             "lcpRegionsTenantsMap": {
581               "JANET25": [
582                 {
583                   "id": "092eb9e8e4b7412e8787dd091bc58e86",
584                   "name": "USP-SIP-IC-24335-T-01",
585                   "isPermitted": true
586                 }
587               ],
588               "hvf6": [
589                 {
590                   "id": "bae71557c5bb4d5aac6743a4e5f1d054",
591                   "name": "AIN Web Tool-15-D-testalexandria",
592                   "isPermitted": true
593                 },
594                 {
595                   "id": "229bcdc6eaeb4ca59d55221141d01f8e",
596                   "name": "AIN Web Tool-15-D-STTest2",
597                   "isPermitted": true
598                 },
599                 {
600                   "id": "1178612d2b394be4834ad77f567c0af2",
601                   "name": "AIN Web Tool-15-D-SSPtestcustome",
602                   "isPermitted": true
603                 },
604                 {
605                   "id": "19c5ade915eb461e8af52fb2fd8cd1f2",
606                   "name": "AIN Web Tool-15-D-UncheckedEcopm",
607                   "isPermitted": true
608                 },
609                 {
610                   "id": "de007636e25249238447264a988a927b",
611                   "name": "AIN Web Tool-15-D-dfsdf",
612                   "isPermitted": true
613                 },
614                 {
615                   "id": "62f29b3613634ca6a3065cbe0e020c44",
616                   "name": "AIN/SMS-16-D-Multiservices1",
617                   "isPermitted": true
618                 },
619                 {
620                   "id": "649289e30d3244e0b48098114d63c2aa",
621                   "name": "AIN Web Tool-15-D-SSPST66",
622                   "isPermitted": true
623                 },
624                 {
625                   "id": "3f21eeea6c2c486bba31dab816c05a32",
626                   "name": "AIN Web Tool-15-D-ASSPST47",
627                   "isPermitted": true
628                 },
629                 {
630                   "id": "f60ce21d3ee6427586cff0d22b03b773",
631                   "name": "CESAR-100-D-sspjg67246",
632                   "isPermitted": true
633                 },
634                 {
635                   "id": "8774659e425f479895ae091bb5d46560",
636                   "name": "CESAR-100-D-sspjg68359",
637                   "isPermitted": true
638                 },
639                 {
640                   "id": "624eb554b0d147c19ff8885341760481",
641                   "name": "AINWebTool-15-D-iftach",
642                   "isPermitted": true
643                 },
644                 {
645                   "id": "214f55f5fc414c678059c383b03e4962",
646                   "name": "CESAR-100-D-sspjg612401",
647                   "isPermitted": true
648                 },
649                 {
650                   "id": "c90666c291664841bb98e4d981ff1db5",
651                   "name": "CESAR-100-D-sspjg621340",
652                   "isPermitted": true
653                 },
654                 {
655                   "id": "ce5b6bc5c7b348e1bf4b91ac9a174278",
656                   "name": "sspjg621351cloned",
657                   "isPermitted": true
658                 },
659                 {
660                   "id": "b386b768a3f24c8e953abbe0b3488c02",
661                   "name": "AINWebTool-15-D-eteancomp",
662                   "isPermitted": true
663                 },
664                 {
665                   "id": "dc6c4dbfd225474e9deaadd34968646c",
666                   "name": "AINWebTool-15-T-SPFET",
667                   "isPermitted": true
668                 },
669                 {
670                   "id": "02cb5030e9914aa4be120bd9ed1e19eb",
671                   "name": "AINWebTool-15-X-eeweww",
672                   "isPermitted": true
673                 },
674                 {
675                   "id": "f2f3830e4c984d45bcd00e1a04158a79",
676                   "name": "CESAR-100-D-spjg61909",
677                   "isPermitted": true
678                 },
679                 {
680                   "id": "05b91bd5137f4929878edd965755c06d",
681                   "name": "CESAR-100-D-sspjg621512cloned",
682                   "isPermitted": true
683                 },
684                 {
685                   "id": "7002fbe8482d4a989ddf445b1ce336e0",
686                   "name": "AINWebTool-15-X-vdr",
687                   "isPermitted": true
688                 },
689                 {
690                   "id": "4008522be43741dcb1f5422022a2aa0b",
691                   "name": "AINWebTool-15-D-ssasa",
692                   "isPermitted": true
693                 },
694                 {
695                   "id": "f44e2e96a1b6476abfda2fa407b00169",
696                   "name": "AINWebTool-15-D-PFNPT",
697                   "isPermitted": true
698                 },
699                 {
700                   "id": "b69a52bec8a84669a37a1e8b72708be7",
701                   "name": "AINWebTool-15-X-vdre",
702                   "isPermitted": true
703                 },
704                 {
705                   "id": "fac7d9fd56154caeb9332202dcf2969f",
706                   "name": "AINWebTool-15-X-NONPODECOMP",
707                   "isPermitted": true
708                 },
709                 {
710                   "id": "2d34d8396e194eb49969fd61ffbff961",
711                   "name": "DN5242-Nov16-T5",
712                   "isPermitted": true
713                 },
714                 {
715                   "id": "cb42a77ff45b48a8b8deb83bb64acc74",
716                   "name": "ro-T11",
717                   "isPermitted": true
718                 },
719                 {
720                   "id": "fa45ca53c80b492fa8be5477cd84fc2b",
721                   "name": "ro-T112",
722                   "isPermitted": true
723                 },
724                 {
725                   "id": "4914ab0ab3a743e58f0eefdacc1dde77",
726                   "name": "DN5242-Nov21-T1",
727                   "isPermitted": true
728                 },
729                 {
730                   "id": "d0a3e3f2964542259d155a81c41aadc3",
731                   "name": "test-hvf6-09",
732                   "isPermitted": true
733                 },
734                 {
735                   "id": "cbb99fe4ada84631b7baf046b6fd2044",
736                   "name": "DN5242-Nov16-T3",
737                   "isPermitted": true
738                 }
739               ]
740             }
741           },
742           "subscribers": [
743             {
744               "id": "CAR_2020_ER",
745               "name": "CAR_2020_ER",
746               "isPermitted": true
747             },
748             {
749               "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
750               "name": "JULIO ERICKSON",
751               "isPermitted": false
752             },
753             {
754               "id": "DHV1707-TestSubscriber-2",
755               "name": "DALE BRIDGES",
756               "isPermitted": false
757             },
758             {
759               "id": "DHV1707-TestSubscriber-1",
760               "name": "LLOYD BRIDGES",
761               "isPermitted": false
762             },
763             {
764               "id": "jimmy-example",
765               "name": "JimmyExampleCust-20161102",
766               "isPermitted": false
767             },
768             {
769               "id": "jimmy-example2",
770               "name": "JimmyExampleCust-20161103",
771               "isPermitted": false
772             },
773             {
774               "id": "ERICA5779-TestSub-PWT-102",
775               "name": "ERICA5779-TestSub-PWT-102",
776               "isPermitted": false
777             },
778             {
779               "id": "ERICA5779-TestSub-PWT-101",
780               "name": "ERICA5779-TestSub-PWT-101",
781               "isPermitted": false
782             },
783             {
784               "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
785               "name": "Emanuel",
786               "isPermitted": false
787             },
788             {
789               "id": "ERICA5779-Subscriber-4",
790               "name": "ERICA5779-Subscriber-5",
791               "isPermitted": false
792             },
793             {
794               "id": "ERICA5779-TestSub-PWT-103",
795               "name": "ERICA5779-TestSub-PWT-103",
796               "isPermitted": false
797             },
798             {
799               "id": "ERICA5779-Subscriber-2",
800               "name": "ERICA5779-Subscriber-2",
801               "isPermitted": false
802             },
803             {
804               "id": "e433710f-9217-458d-a79d-1c7aff376d89",
805               "name": "SILVIA ROBBINS",
806               "isPermitted": true
807             },
808             {
809               "id": "ERICA5779-Subscriber-3",
810               "name": "ERICA5779-Subscriber-3",
811               "isPermitted": false
812             },
813             {
814               "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
815               "name": "CRAIG/ROBERTS",
816               "isPermitted": false
817             }
818           ],
819           "productFamilies": [
820             {
821               "id": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
822               "name": "SCOTTIE",
823               "isPermitted": true
824             },
825             {
826               "id": "17cc1042-527b-11e6-beb8-9e71128cae77",
827               "name": "IGNACIO",
828               "isPermitted": true
829             },
830             {
831               "id": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
832               "name": "Christie",
833               "isPermitted": true
834             },
835             {
836               "id": "a4f6f2ae-9bf5-4ed7-b904-06b2099c4bd7",
837               "name": "Enhanced Services",
838               "isPermitted": true
839             },
840             {
841               "id": "vTerrance",
842               "name": "vTerrance",
843               "isPermitted": true
844             },
845             {
846               "id": "323d69d9-2efe-4r45-ay0a-89ea7ard4e6f",
847               "name": "vSCP",
848               "isPermitted": true
849             },
850             {
851               "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
852               "name": "Emanuel",
853               "isPermitted": true
854             },
855             {
856               "id": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
857               "name": "BVOIP",
858               "isPermitted": true
859             },
860             {
861               "id": "db171b8f-115c-4992-a2e3-ee04cae357e0",
862               "name": "LINDSEY",
863               "isPermitted": true
864             },
865             {
866               "id": "LRSI-OSPF",
867               "name": "LRSI-OSPF",
868               "isPermitted": true
869             },
870             {
871               "id": "vRosemarie",
872               "name": "HNGATEWAY",
873               "isPermitted": true
874             },
875             {
876               "id": "vHNPaas",
877               "name": "WILKINS",
878               "isPermitted": true
879             },
880             {
881               "id": "e433710f-9217-458d-a79d-1c7aff376d89",
882               "name": "TYLER SILVIA",
883               "isPermitted": true
884             },
885             {
886               "id": "b6a3f28c-eebf-494c-a900-055cc7c874ce",
887               "name": "VROUTER",
888               "isPermitted": true
889             },
890             {
891               "id": "Cisneros",
892               "name": "vMuriel",
893               "isPermitted": true
894             },
895             {
896               "id": "0ee8c1bc-7cbd-4b0a-a1ac-e9999255abc1",
897               "name": "CARA Griffin",
898               "isPermitted": true
899             },
900             {
901               "id": "c7611ebe-c324-48f1-8085-94aef0c6ef3d",
902               "name": "DARREN MCGEE",
903               "isPermitted": true
904             },
905             {
906               "id": "e30755dc-5673-4b6b-9dcf-9abdd96b93d1",
907               "name": "Transport",
908               "isPermitted": true
909             },
910             {
911               "id": "vSalvatore",
912               "name": "vSalvatore",
913               "isPermitted": true
914             },
915             {
916               "id": "d7bb0a21-66f2-4e6d-87d9-9ef3ced63ae4",
917               "name": "Josefina",
918               "isPermitted": true
919             },
920             {
921               "id": "vHubbard",
922               "name": "vHubbard",
923               "isPermitted": true
924             },
925             {
926               "id": "12a96a9d-4b4c-4349-a950-fe1159602621",
927               "name": "DARREN MCGEE",
928               "isPermitted": true
929             }
930           ],
931           "serviceTypes": {
932             "e433710f-9217-458d-a79d-1c7aff376d89": [
933               {
934                 "id": "0",
935                 "name": "vRichardson",
936                 "isPermitted": false
937               },
938               {
939                 "id": "1",
940                 "name": "TYLER SILVIA",
941                 "isPermitted": true
942               },
943               {
944                 "id": "2",
945                 "name": "Emanuel",
946                 "isPermitted": false
947               },
948               {
949                 "id": "3",
950                 "name": "vJamie",
951                 "isPermitted": false
952               },
953               {
954                 "id": "4",
955                 "name": "vVoiceMail",
956                 "isPermitted": false
957               },
958               {
959                 "id": "5",
960                 "name": "Kennedy",
961                 "isPermitted": false
962               },
963               {
964                 "id": "6",
965                 "name": "vSEGW",
966                 "isPermitted": false
967               },
968               {
969                 "id": "7",
970                 "name": "vVM",
971                 "isPermitted": false
972               },
973               {
974                 "id": "8",
975                 "name": "vOTA",
976                 "isPermitted": false
977               },
978               {
979                 "id": "9",
980                 "name": "vMME",
981                 "isPermitted": false
982               },
983               {
984                 "id": "10",
985                 "name": "vMNS",
986                 "isPermitted": false
987               },
988               {
989                 "id": "11",
990                 "name": "vSCP",
991                 "isPermitted": false
992               },
993               {
994                 "id": "12",
995                 "name": "VPMS",
996                 "isPermitted": false
997               },
998               {
999                 "id": "13",
1000                 "name": "vMMSC",
1001                 "isPermitted": false
1002               },
1003               {
1004                 "id": "14",
1005                 "name": "SSD",
1006                 "isPermitted": false
1007               },
1008               {
1009                 "id": "15",
1010                 "name": "vMOG",
1011                 "isPermitted": false
1012               },
1013               {
1014                 "id": "16",
1015                 "name": "LINDSEY",
1016                 "isPermitted": false
1017               },
1018               {
1019                 "id": "17",
1020                 "name": "JOHANNA_SANTOS",
1021                 "isPermitted": false
1022               },
1023               {
1024                 "id": "18",
1025                 "name": "vCarroll",
1026                 "isPermitted": false
1027               }
1028             ]
1029           },
1030           "aicZones": [
1031             {
1032               "id": "NFT1",
1033               "name": "NFTJSSSS-NFT1"
1034             },
1035             {
1036               "id": "JAG1",
1037               "name": "YUDFJULP-JAG1"
1038             },
1039             {
1040               "id": "YYY1",
1041               "name": "UUUAIAAI-YYY1"
1042             },
1043             {
1044               "id": "BAN1",
1045               "name": "VSDKYUTP-BAN1"
1046             },
1047             {
1048               "id": "DKJ1",
1049               "name": "DKJSJDKA-DKJ1"
1050             },
1051             {
1052               "id": "MCS1",
1053               "name": "ASACMAMS-MCS1"
1054             },
1055             {
1056               "id": "UIO1",
1057               "name": "uioclli1-UIO1"
1058             },
1059             {
1060               "id": "RAJ1",
1061               "name": "YGBIJNLQ-RAJ1"
1062             },
1063             {
1064               "id": "OPA1",
1065               "name": "opaclli1-OPA1"
1066             },
1067             {
1068               "id": "SDE1",
1069               "name": "ZXCVBNMA-SDE1"
1070             },
1071             {
1072               "id": "VEN2",
1073               "name": "FGHJUHIL-VEN2"
1074             },
1075             {
1076               "id": "ORL1",
1077               "name": "ORLDFLMA-ORL1"
1078             },
1079             {
1080               "id": "JAD1",
1081               "name": "JADECLLI-JAD1"
1082             },
1083             {
1084               "id": "ZXL1",
1085               "name": "LWLWCANN-ZXL1"
1086             },
1087             {
1088               "id": "CKL1",
1089               "name": "CLKSKCKK-CKL1"
1090             },
1091             {
1092               "id": "SDF1",
1093               "name": "sdfclli1-SDF1"
1094             },
1095             {
1096               "id": "RAD1",
1097               "name": "RADICAL1-RAD1"
1098             },
1099             {
1100               "id": "KIT1",
1101               "name": "BHYJFGLN-KIT1"
1102             },
1103             {
1104               "id": "REL1",
1105               "name": "INGERFGT-REL1"
1106             },
1107             {
1108               "id": "JNL1",
1109               "name": "CJALSDAC-JNL1"
1110             },
1111             {
1112               "id": "OLK1",
1113               "name": "OLKOLKLS-OLK1"
1114             },
1115             {
1116               "id": "CHI1",
1117               "name": "CHILLIWE-CHI1"
1118             },
1119             {
1120               "id": "UUU4",
1121               "name": "UUUAAAUU-UUU4"
1122             },
1123             {
1124               "id": "TUF1",
1125               "name": "TUFCLLI1-TUF1"
1126             },
1127             {
1128               "id": "KJN1",
1129               "name": "CKALDKSA-KJN1"
1130             },
1131             {
1132               "id": "SAM1",
1133               "name": "SNDGCA64-SAN1"
1134             },
1135             {
1136               "id": "SCK1",
1137               "name": "SCKSCKSK-SCK1"
1138             },
1139             {
1140               "id": "HJH1",
1141               "name": "AOEEQQQD-HJH1"
1142             },
1143             {
1144               "id": "HGD1",
1145               "name": "SDFQWHGD-HGD1"
1146             },
1147             {
1148               "id": "KOR1",
1149               "name": "HYFLNBVT-KOR1"
1150             },
1151             {
1152               "id": "ATL43",
1153               "name": "AICLOCID-ATL43"
1154             },
1155             {
1156               "id": "ATL54",
1157               "name": "AICFTAAI-ATL54"
1158             },
1159             {
1160               "id": "ATL66",
1161               "name": "CLLIAAII-ATL66"
1162             },
1163             {
1164               "id": "VEL1",
1165               "name": "BNMLKUIK-VEL1"
1166             },
1167             {
1168               "id": "ICC1",
1169               "name": "SANJITAT-ICC1"
1170             },
1171             {
1172               "id": "MNT11",
1173               "name": "WSXEFBTH-MNT11"
1174             },
1175             {
1176               "id": "DEF2",
1177               "name": "WSBHGTYL-DEF2"
1178             },
1179             {
1180               "id": "MAD11",
1181               "name": "SDFQWGKL-MAD11"
1182             },
1183             {
1184               "id": "OLG1",
1185               "name": "OLHOLHOL-OLG1"
1186             },
1187             {
1188               "id": "GAR1",
1189               "name": "NGFVSJKO-GAR1"
1190             },
1191             {
1192               "id": "SAN22",
1193               "name": "GNVLSCTL-SAN22"
1194             },
1195             {
1196               "id": "HRG1",
1197               "name": "HRGHRGGS-HRG1"
1198             },
1199             {
1200               "id": "JCS1",
1201               "name": "JCSJSCJS-JCS1"
1202             },
1203             {
1204               "id": "DHA12",
1205               "name": "WSXEDECF-DHA12"
1206             },
1207             {
1208               "id": "HJE1",
1209               "name": "AOEEWWWD-HJE1"
1210             },
1211             {
1212               "id": "NCA1",
1213               "name": "NCANCANN-NCA1"
1214             },
1215             {
1216               "id": "IOP1",
1217               "name": "iopclli1-IOP1"
1218             },
1219             {
1220               "id": "RTY1",
1221               "name": "rtyclli1-RTY1"
1222             },
1223             {
1224               "id": "KAP1",
1225               "name": "HIOUYTRQ-KAP1"
1226             },
1227             {
1228               "id": "ZEN1",
1229               "name": "ZENCLLI1-ZEN1"
1230             },
1231             {
1232               "id": "HKA1",
1233               "name": "JAKHLASS-HKA1"
1234             },
1235             {
1236               "id": "CQK1",
1237               "name": "CQKSCAKK-CQK1"
1238             },
1239             {
1240               "id": "SAI1",
1241               "name": "UBEKQLPD-SAI1"
1242             },
1243             {
1244               "id": "ERT1",
1245               "name": "ertclli1-ERT1"
1246             },
1247             {
1248               "id": "IBB1",
1249               "name": "PLMKOIJU-IBB1"
1250             },
1251             {
1252               "id": "TIR2",
1253               "name": "PLKINHYI-TIR2"
1254             },
1255             {
1256               "id": "HSD1",
1257               "name": "CHASKCDS-HSD1"
1258             },
1259             {
1260               "id": "SLF78",
1261               "name": "SDCTLFN1-SLF78"
1262             },
1263             {
1264               "id": "SEE78",
1265               "name": "SDCTEEE4-SEE78"
1266             },
1267             {
1268               "id": "SAN13",
1269               "name": "TOKYJPFA-SAN13"
1270             },
1271             {
1272               "id": "SAA78",
1273               "name": "SDCTAAA1-SAA78"
1274             },
1275             {
1276               "id": "LUC1",
1277               "name": "ATLDFGYC-LUC1"
1278             },
1279             {
1280               "id": "AMD13",
1281               "name": "MEMATLAN-AMD13"
1282             },
1283             {
1284               "id": "TOR1",
1285               "name": "TOROONXN-TOR1"
1286             },
1287             {
1288               "id": "QWE1",
1289               "name": "QWECLLI1-QWE1"
1290             },
1291             {
1292               "id": "ZOG1",
1293               "name": "ZOGASTRO-ZOG1"
1294             },
1295             {
1296               "id": "CAL33",
1297               "name": "CALIFORN-CAL33"
1298             },
1299             {
1300               "id": "SHH78",
1301               "name": "SDIT1HHH-SHH78"
1302             },
1303             {
1304               "id": "DSA1",
1305               "name": "LKJHGFDS-DSA1"
1306             },
1307             {
1308               "id": "CLG1",
1309               "name": "CLGRABAD-CLG1"
1310             },
1311             {
1312               "id": "BNA1",
1313               "name": "BNARAGBK-BNA1"
1314             },
1315             {
1316               "id": "ATL84",
1317               "name": "CANTTCOC-ATL84"
1318             },
1319             {
1320               "id": "APP1",
1321               "name": "WBHGTYUI-APP1"
1322             },
1323             {
1324               "id": "RJN1",
1325               "name": "RJNRBZAW-RJN1"
1326             },
1327             {
1328               "id": "EHH78",
1329               "name": "SDCSHHH5-EHH78"
1330             },
1331             {
1332               "id": "mac10",
1333               "name": "PKGTESTF-mac10"
1334             },
1335             {
1336               "id": "SXB78",
1337               "name": "SDCTGXB1-SXB78"
1338             },
1339             {
1340               "id": "SAX78",
1341               "name": "SDCTAXG1-SAX78"
1342             },
1343             {
1344               "id": "SYD1",
1345               "name": "SYDNAUBV-SYD1"
1346             },
1347             {
1348               "id": "TOK1",
1349               "name": "TOKYJPFA-TOK1"
1350             },
1351             {
1352               "id": "KGM2",
1353               "name": "KGMTNC20-KGM2"
1354             },
1355             {
1356               "id": "DCC1b",
1357               "name": "POIUYTGH-DCC1b"
1358             },
1359             {
1360               "id": "SKK78",
1361               "name": "SDCTKKK1-SKK78"
1362             },
1363             {
1364               "id": "SGG78",
1365               "name": "SDCTGGG1-SGG78"
1366             },
1367             {
1368               "id": "SJJ78",
1369               "name": "SDCTJJJ1-SJJ78"
1370             },
1371             {
1372               "id": "SBX78",
1373               "name": "SDCTBXG1-SBX78"
1374             },
1375             {
1376               "id": "LAG1",
1377               "name": "LARGIZON-LAG1"
1378             },
1379             {
1380               "id": "IAA1",
1381               "name": "QAZXSWED-IAA1"
1382             },
1383             {
1384               "id": "POI1",
1385               "name": "PLMNJKIU-POI1"
1386             },
1387             {
1388               "id": "LAG1a",
1389               "name": "LARGIZON-LAG1a"
1390             },
1391             {
1392               "id": "PBL1",
1393               "name": "PBLAPBAI-PBL1"
1394             },
1395             {
1396               "id": "LAG45",
1397               "name": "LARGIZON-LAG1a"
1398             },
1399             {
1400               "id": "MAR1",
1401               "name": "MNBVCXZM-MAR1"
1402             },
1403             {
1404               "id": "HST70",
1405               "name": "HSTNTX70-HST70"
1406             },
1407             {
1408               "id": "DCC1a",
1409               "name": "POIUYTGH-DCC1a"
1410             },
1411             {
1412               "id": "TOL1",
1413               "name": "TOLDOH21-TOL1"
1414             },
1415             {
1416               "id": "LON1",
1417               "name": "LONEENCO-LON1"
1418             },
1419             {
1420               "id": "SJU78",
1421               "name": "SDIT1JUB-SJU78"
1422             },
1423             {
1424               "id": "STN27",
1425               "name": "HSTNTX01-STN27"
1426             },
1427             {
1428               "id": "SSW56",
1429               "name": "ss8126GT-SSW56"
1430             },
1431             {
1432               "id": "SBB78",
1433               "name": "SDIT1BBB-SBB78"
1434             },
1435             {
1436               "id": "DCC3",
1437               "name": "POIUYTGH-DCC3"
1438             },
1439             {
1440               "id": "GNV1",
1441               "name": "GNVLSCTL-GNV1"
1442             },
1443             {
1444               "id": "WAS1",
1445               "name": "WASHDCSW-WAS1"
1446             },
1447             {
1448               "id": "TOY1",
1449               "name": "TORYONNZ-TOY1"
1450             },
1451             {
1452               "id": "STT1",
1453               "name": "STTLWA02-STT1"
1454             },
1455             {
1456               "id": "STG1",
1457               "name": "STTGGE62-STG1"
1458             },
1459             {
1460               "id": "SLL78",
1461               "name": "SDCTLLL1-SLL78"
1462             },
1463             {
1464               "id": "SBU78",
1465               "name": "SDIT1BUB-SBU78"
1466             },
1467             {
1468               "id": "ATL2",
1469               "name": "ATLNGANW-ATL2"
1470             },
1471             {
1472               "id": "BOT1",
1473               "name": "BOTHWAKY-BOT1"
1474             },
1475             {
1476               "id": "SNG1",
1477               "name": "SNGPSIAU-SNG1"
1478             },
1479             {
1480               "id": "NYC1",
1481               "name": "NYCMNY54-NYC1"
1482             },
1483             {
1484               "id": "LAG1b",
1485               "name": "LARGIZON-LAG1b"
1486             },
1487             {
1488               "id": "AMD15",
1489               "name": "AMDFAA01-AMD15"
1490             },
1491             {
1492               "id": "SNA1",
1493               "name": "SNANTXCA-SNA1"
1494             },
1495             {
1496               "id": "PLT1",
1497               "name": "PLTNCA60-PLT1"
1498             },
1499             {
1500               "id": "TLP1",
1501               "name": "TLPNXM18-TLP1"
1502             },
1503             {
1504               "id": "SDD81",
1505               "name": "SAIT1DD6-SDD81"
1506             },
1507             {
1508               "id": "DCC1",
1509               "name": "POIUYTGH-DCC1"
1510             },
1511             {
1512               "id": "DCC2",
1513               "name": "POIUYTGH-DCC2"
1514             },
1515             {
1516               "id": "OKC1",
1517               "name": "OKCBOK55-OKC1"
1518             },
1519             {
1520               "id": "PAR1",
1521               "name": "PARSFRCG-PAR1"
1522             },
1523             {
1524               "id": "TES36",
1525               "name": "ABCEETES-TES36"
1526             },
1527             {
1528               "id": "COM1",
1529               "name": "PLMKOPIU-COM1"
1530             },
1531             {
1532               "id": "ANI1",
1533               "name": "ATLNGTRE-ANI1"
1534             },
1535             {
1536               "id": "SDG78",
1537               "name": "SDIT1BDG-SDG78"
1538             },
1539             {
1540               "id": "mac20",
1541               "name": "PKGTESTF-mac20"
1542             },
1543             {
1544               "id": "DSF45",
1545               "name": "DSFBG123-DSF45"
1546             },
1547             {
1548               "id": "HST25",
1549               "name": "HSTNTX01-HST25"
1550             },
1551             {
1552               "id": "AMD18",
1553               "name": "AUDIMA01-AMD18"
1554             },
1555             {
1556               "id": "SAA80",
1557               "name": "SAIT9AA3-SAA80"
1558             },
1559             {
1560               "id": "SSA56",
1561               "name": "SSIT2AA7-SSA56"
1562             },
1563             {
1564               "id": "SDD82",
1565               "name": "SAIT1DD9-SDD82"
1566             },
1567             {
1568               "id": "JCV1",
1569               "name": "JCVLFLBW-JCV1"
1570             },
1571             {
1572               "id": "SUL2",
1573               "name": "WERTYUJK-SUL2"
1574             },
1575             {
1576               "id": "PUR1",
1577               "name": "purelyde-PUR1"
1578             },
1579             {
1580               "id": "FDE55",
1581               "name": "FDERT555-FDE55"
1582             },
1583             {
1584               "id": "SITE",
1585               "name": "LONEENCO-SITE"
1586             },
1587             {
1588               "id": "ATL1",
1589               "name": "ATLNGAMA-ATL1"
1590             },
1591             {
1592               "id": "JUL1",
1593               "name": "ZXCVBNMM-JUL1"
1594             },
1595             {
1596               "id": "TAT34",
1597               "name": "TESAAISB-TAT34"
1598             },
1599             {
1600               "id": "XCP12",
1601               "name": "CHKGH123-XCP12"
1602             },
1603             {
1604               "id": "RAI1",
1605               "name": "poiuytre-RAI1"
1606             },
1607             {
1608               "id": "HPO1",
1609               "name": "ATLNGAUP-HPO1"
1610             },
1611             {
1612               "id": "KJF12",
1613               "name": "KJFDH123-KJF12"
1614             },
1615             {
1616               "id": "SCC80",
1617               "name": "SAIT9CC3-SCC80"
1618             },
1619             {
1620               "id": "SAA12",
1621               "name": "SAIT9AF8-SAA12"
1622             },
1623             {
1624               "id": "SAA14",
1625               "name": "SAIT1AA9-SAA14"
1626             },
1627             {
1628               "id": "ATL35",
1629               "name": "TTESSAAI-ATL35"
1630             },
1631             {
1632               "id": "CWY1",
1633               "name": "CWYMOWBS-CWY1"
1634             },
1635             {
1636               "id": "ATL76",
1637               "name": "TELEPAAI-ATL76"
1638             },
1639             {
1640               "id": "DSL12",
1641               "name": "DSLFK242-DSL12"
1642             },
1643             {
1644               "id": "ATL53",
1645               "name": "AAIATLTE-ATL53"
1646             },
1647             {
1648               "id": "SAA11",
1649               "name": "SAIT9AA2-SAA11"
1650             },
1651             {
1652               "id": "ATL62",
1653               "name": "TESSASCH-ATL62"
1654             },
1655             {
1656               "id": "AUG1",
1657               "name": "ASDFGHJK-AUG1"
1658             },
1659             {
1660               "id": "POI22",
1661               "name": "POIUY123-POI22"
1662             },
1663             {
1664               "id": "SAA13",
1665               "name": "SAIT1AA9-SAA13"
1666             },
1667             {
1668               "id": "BHY17",
1669               "name": "BHYTFRF3-BHY17"
1670             },
1671             {
1672               "id": "LIS1",
1673               "name": "HOSTPROF-LIS1"
1674             },
1675             {
1676               "id": "SIP1",
1677               "name": "ZXCVBNMK-SIP1"
1678             },
1679             {
1680               "id": "ATL99",
1681               "name": "TEESTAAI-ATL43"
1682             },
1683             {
1684               "id": "ATL64",
1685               "name": "FORLOAAJ-ATL64"
1686             },
1687             {
1688               "id": "TAT33",
1689               "name": "TESAAISA-TAT33"
1690             },
1691             {
1692               "id": "RAD10",
1693               "name": "INDIPUNE-RAD10"
1694             },
1695             {
1696               "id": "RTW5",
1697               "name": "BHYTFRY4-RTW5"
1698             },
1699             {
1700               "id": "JGS1",
1701               "name": "KSJKKKKK-JGS1"
1702             },
1703             {
1704               "id": "ATL98",
1705               "name": "TEESTAAI-ATL43"
1706             },
1707             {
1708               "id": "WAN1",
1709               "name": "LEIWANGW-WAN1"
1710             },
1711             {
1712               "id": "ATL44",
1713               "name": "ATLSANAB-ATL44"
1714             },
1715             {
1716               "id": "RTD2",
1717               "name": "BHYTFRk4-RTD2"
1718             },
1719             {
1720               "id": "NIR1",
1721               "name": "ORFLMANA-NIR1"
1722             },
1723             {
1724               "id": "ATL75",
1725               "name": "SANAAIRE-ATL75"
1726             },
1727             {
1728               "id": "NUM1",
1729               "name": "QWERTYUI-NUM1"
1730             },
1731             {
1732               "id": "MTN32",
1733               "name": "MDTWNJ21-MTN32"
1734             },
1735             {
1736               "id": "RTZ4",
1737               "name": "BHYTFRZ6-RTZ4"
1738             },
1739             {
1740               "id": "ATL56",
1741               "name": "ATLSANAC-ATL56"
1742             },
1743             {
1744               "id": "AMS1",
1745               "name": "AMSTNLBW-AMS1"
1746             },
1747             {
1748               "id": "RCT1",
1749               "name": "AMSTERNL-RCT1"
1750             },
1751             {
1752               "id": "JAN1",
1753               "name": "ORFLMATT-JAN1"
1754             },
1755             {
1756               "id": "ABC14",
1757               "name": "TESAAISA-ABC14"
1758             },
1759             {
1760               "id": "TAT37",
1761               "name": "TESAAISD-TAT37"
1762             },
1763             {
1764               "id": "MIC54",
1765               "name": "MICHIGAN-MIC54"
1766             },
1767             {
1768               "id": "ABC11",
1769               "name": "ATLSANAI-ABC11"
1770             },
1771             {
1772               "id": "AMF11",
1773               "name": "AMDOCS01-AMF11"
1774             },
1775             {
1776               "id": "ATL63",
1777               "name": "ATLSANEW-ATL63"
1778             },
1779             {
1780               "id": "ABC12",
1781               "name": "ATLSECIA-ABC12"
1782             },
1783             {
1784               "id": "MTN20",
1785               "name": "MDTWNJ21-MTN20"
1786             },
1787             {
1788               "id": "ABC15",
1789               "name": "AAITESAN-ABC15"
1790             },
1791             {
1792               "id": "AVT1",
1793               "name": "AVTRFLHD-AVT1"
1794             },
1795             {
1796               "id": "ATL34",
1797               "name": "ATLSANAI-ATL34"
1798             }
1799           ],
1800           "categoryParameters": {
1801             "owningEntityList": [
1802               {
1803                 "id": "aaa1",
1804                 "name": "aaa1"
1805               },
1806               {
1807                 "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
1808                 "name": "WayneHolland"
1809               },
1810               {
1811                 "id": "Melissa",
1812                 "name": "Melissa"
1813               }
1814             ],
1815             "projectList": [
1816               {
1817                 "id": "WATKINS",
1818                 "name": "WATKINS"
1819               },
1820               {
1821                 "id": "x1",
1822                 "name": "x1"
1823               },
1824               {
1825                 "id": "yyy1",
1826                 "name": "yyy1"
1827               }
1828             ],
1829             "lineOfBusinessList": [
1830               {
1831                 "id": "ONAP",
1832                 "name": "ONAP"
1833               },
1834               {
1835                 "id": "zzz1",
1836                 "name": "zzz1"
1837               }
1838             ],
1839             "platformList": [
1840               {
1841                 "id": "platform",
1842                 "name": "platform"
1843               },
1844               {
1845                 "id": "xxx1",
1846                 "name": "xxx1"
1847               }
1848             ]
1849           },
1850           "type": "[PRODUCT_FAMILIES] Update"
1851         }
1852       }
1853     }
1854
1855   });
1856 });