aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/cypress/integration/iFrames/drawingBoard.e2e.ts
blob: e379f7835490dec15627b467f261caedb03b92af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
import java.awt.Color
import java.util.concurrent.Callable
import java.util.concurrent.Executors
import java.util.concurrent.atomic.AtomicBoolean

import static Services.*
import static ServiceControl.*
import java.awt.AWTException
import java.awt.Font
import java.awt.Image
import java.awt.Menu
import java.awt.MenuItem
import java.awt.PopupMenu
import java.awt.SystemTray
import java.awt.TrayIcon
import java.awt.event.ActionEvent
import java.awt.event.ActionListener
import javax.swing.JOptionPane
import javax.imageio.ImageIO


group 'com.att.ecomp'
version '1.01-SNAPSHOT'

apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: "org.hidetake.ssh"
apply plugin: 'java-gradle-plugin'
apply plugin: 'idea'

sourceCompatibility = 1.8

buildscript {
    repositories {
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath 'org.codehaus.groovy:groovy-all:2.4.12'
        classpath "org.hidetake:gradle-ssh-plugin:2.9.0"
    }
}

enum Services {
    BACKEND ,   //be
    FRONTEND ,  //fe
    DB ,        //cassandra
    CACHING ,   //elawsrticsearch
    SECURITY ,   //webseal
    ALL //all services
}
enum ServiceControl {
    HEALTH ,
    START ,
    RESTART ,
    STOP ,
    KILL
}
//env variables
//fill YOUR_WINDOWS_USER_HOME
project.ext.set("NEW_VAG",Boolean.FALSE) //flags to use new vagrant configuration
project.ext.set("IS_HOTSWAP",Boolean.FALSE) //flags to use new vagrant configuration
project.ext.set("PROJECT_PATH", System.getenv("SDC")) //ex. 'C:\\GIT_WORK\\asdc\\sdc')
project.ext.set("VAGRANT_HOME", NEW_VAG ? System.getenv("NEW_VAG") : System.getenv("VAG")) //ex. 'C:\\GIT_WORK\\vagrant-asdc-all-in-one')
project.ext.set("USER_HOME", "${System.getenv("USERPROFILE")}\\.ssh")
project.ext.set("BE_REMOTE", NEW_VAG ? '/opt/app/jetty/base/be' : '/home/vagrant/catalog-be' )
project.ext.set("FE_REMOTE", NEW_VAG ? '/opt/app/jetty/base/fe' : '/home/vagrant/catalog-fe' )
project.ext.set("VAGRANT_USER",     NEW_VAG ? 'm11981' : 'vagrant' )
project.ext.set("RSA_PRIVATE_KEY_PATH", NEW_VAG ? "$VAGRANT_HOME/id_rsa" : '' )
project.ext.set("VAGRANT_PASSWORD", NEW_VAG ? 'Aa123456' : 'vagrant' )
project.ext.set("X_FOLDER",'/xFolder' )
project.ext.set("BE_DEPENDENCIES", 'common-be,common-app-api,catalog-dao,catalog-model,security-utils' )
project.ext.set("command", [ (ALL) :  [  (HEALTH) : { NEW_VAG ? 'sudo curl -i http://localhost:8181/sdc1/rest/healthCheck' : 'curl -i localhost:8080/sdc2/rest/healthCheck' } ,
                                         (KILL) : { NEW_VAG ? 'sudo pkill java' : 'pkill java'} ]  ,   //  TODO: refine kill only for services
                             (BACKEND) : [  (START) : { NEW_VAG ? 'sudo service jettyBE start' : 'service catalog-be start'} ,
                                            (STOP) : { NEW_VAG ? 'sudo service jettyBE stop' : 'service catalog-be stop'} ,
                                            (RESTART) : { NEW_VAG ? 'sudo service jettyBE restart' : 'service catalog-be restart'}]  ,
                             (DB) : [  (START) : { NEW_VAG ? 'sudo service cassandra start' : 'start-asdc-storage.sh' } ,
                                       (STOP) : { NEW_VAG ? 'sudo service cassandra stop' : 'service cassandra stop'} ,
                                       (RESTART) : { NEW_VAG ? 'sudo service cassandra restart' : 'service cassandra restart'} ]  ,
                             (FRONTEND): [  (START) : {  NEW_VAG ? 'sudo service jettyFE start' : 'service catalog-fe start'   } ,
                                            (STOP) : { NEW_VAG ? 'sudo service jettyFE stop' : 'service catalog-fe stop'} ,
                                            (RESTART) : {  NEW_VAG ? 'sudo service jettyFE restart' : 'service catalog-fe restart'   } ]  ,
                             (CACHING): [  (START) : { NEW_VAG ? 'sudo service elasticsearch start' : 'echo "starting es is not yet supported"'   } ],
                             (SECURITY): [  (START) : {  NEW_VAG ? 'sudo docker start sdc-WebSeal-Simulator' : 'service webseal-simulator start'   } ,
                                            (STOP) : { NEW_VAG ? 'sudo docker stop sdc-WebSeal-Simulator' : 'service webseal-simulator stop'} ,
                                            (RESTART) : { NEW_VAG ? 'sudo docker restart sdc-WebSeal-Simulator' : 'service webseal-simulator restart'}]
                             ] )      //abstraction level to shell scripts , support old and new vagrant bash commands

//icons
project.ext.set("warnImg",'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAADvSURBVDhPY2RgYPgPxGQDiAGLXkB4UMD56DuD9YFUhj179oD5Li4uDEcdZjN8l+ME8+EgTgLTAJDm7zWKYPb/enUwzdh4E0xzttxHNQRoABOUCQYYmj+9QrCBACQHUoMM4AYga74ZDiRAmvnEwHwQGywGBOiGgA1A16wmJYjQDAJANkgMmyEosYBVMzIAuuTWs/cM6iuhfCCAGwDWrAHxKyFw68ZNuCE40wGygcga0AEkEEHRiIxxASzqUKKRHIAwAJgo4BgXwKIGxQUgf8MwOsAlh+EFUMDBMAxgE0MGoLwAignSMFQPzmgkDjAwAACSmn13nChk1QAAAABJRU5ErkJggg==')
project.ext.set("okImg1",'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAD4SURBVDhPY2RgYPgPxGQDiAGLXkB4UMD56DuD9YFUhj179oD5Li4uDEcdZjN8l+ME8+EgTgLTAJDm7zWKYLbSRh8wfc9/C5jmbLmPagjQACYoEwwwNLMxgzHMIJAcSA0ygBuArFm81gyi+ddfCAaywWJAgG4I2AB0zdxWkhCNMABkg8SwGYISC1g1IwOgS74ee87wsvkUVADJAJjpyIDbRAxMfz3zCkwjA5ghONMB2DVIBiDbigwggQiKRmSMC2BRhxKN5ACEAcBEAce4ABY1LFAaDLAFJAwgyyGHB4YXQAEHwzCATQwZgPICKCZIw1A9OKOROMDAAAA4gXvZorg7ZgAAAABJRU5ErkJggg==')
project.ext.set("okImg2" , 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAADjSURBVDhPY2RgYPgPxGQDiAGLXkB4UMD56DuD9YFUhj179oD5Li4uDEcdZjN8l+ME8+EgTgLTAJDm7zWKYPbWZ7Jg2lvqMZjmbLmPagjQACYoEwywaQYBGBskB1KDDOAGIGuetFsUTCMDmBi6IWAD0DUra3OA2cgAJIbNEJRYwKUZGdy9+oMhz/U1lIdkADZnwwwDaUIHMENwpgNk16DbigwggQiKRmSMC2BRhxKN5ACEAcBEAce4ABY1LFAaDLAFJAwgyyGHB4YXQAEHwzCATQwZgPICKCZIw1A9OKOROMDAAAAZD3X55epfOAAAAABJRU5ErkJggg==')
project.ext.set("errorImg" , 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAADlSURBVDhPY2RgYPgPxGQDiAGLXkB4UMD56DuD9YFUhj179oD5Li4uDEcdZjN8l+ME8+EgTgLTAJDm7zWKYPZbGRUwLfzkDpjmbLmPagjQACYoEwywaQYBGBskB1KDDOAGIGtexisCppEBTAzdELAB6Jrd+QXAbGQAEsNmCEos4NKMDHZ+/MAQ9fkNlIdkADZnwwwDaUIHyIaADMDAQAP/AwMPjEFsbGpAGGs6AEUPsnfgzsaiDiUayQUgF2A4jaAXoHpQXAByNgyjA1xyGF4A+RuGYQCbGDLA6gWCGKoHJSGRDhgYAL/hkunRq+joAAAAAElFTkSuQmCC')
project.ext.set("unavailableImg" , 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAABJ0AAASdAHeZh94AAAAB3RJTUUH4QwNDgEDrNoaqgAAAOhJREFUOMulkz8OgjAUhz8MQ7mBkwnnkBAH4mbCCdxcXLwAoxdwYXHjBCRupoMheg4TJ29QNhwshMofSfpLOry2v6/vta8OUGEhF4DsbUx6L8XytkNKCUAURTxWZ9TCM93buQb8mFXiI4E43gCQ5xeQPt7x2YG4fWa0OQwDhBANRCVdyGyKOQyDJhuV+HgvZQLGzABCiEGI036FPnNbZVlSFPfvnWg1gJpea72OjPh6lUZcQ5yhPkjTkxHv94fpfcB23t81PftmWMr9e+pQZjobd6zuobX2fViXAFCRvSv9GtOH9ji23/kDswRrCVqtQOAAAAAASUVORK5CYII=')


//health params
project.ext.set("trayIcon", null)
project.ext.set("lastStatus", null)
project.ext.set("isStopHealthCheck", false)
project.ext.set("isHaltHealth", new AtomicBoolean(false) )
project.ext.set("startedAwait", Long.MAX_VALUE)
project.ext.set("logFile", 'C:/ProgramData/all.log')
project.ext.set("pomList" , ["${System?.getenv('SDC')}/catalog-fe/pom.xml" ,"${System?.getenv('SDC')}/catalog-be/pom.xml" ] )   //empty list will scan all openecomp poms
project.ext.set("pomChangesMap" , [:] )
project.ext.set("beConfigFilesToCopyMapping" , [ 'src/main/resources/config/*.yaml' : 'config/catalog-be/' ,
                                               'src/main/resources/config/*.properties' : 'config/catalog-be/'] )

//menu item strings
project.ext.set("toggleHealthString" , "Halt Health" )
//menu item
project.ext.set("toggleHealthItemView" , null )

//other
project.ext.set("IS_MVN_INSTALL",false)
project.ext.set("executor" , null )
project.ext.set("lockObj" , new Object() )
/*compile?.doLast {
    println "2. hello compile2"
}*/

/*def post(String host , String serviceName,String msg){
    // POST
    def post = new URL("$host/$serviceName").openConnection();
    def message = '{"message":"this is a message"}'
    post.setRequestMethod("POST")
    post.setDoOutput(true)
    post.setRequestProperty("Content-Type", "application/json")
    post.getOutputStream().write(message.getBytes("UTF-8"));
    def postRC = post.getResponseCode();
    println(postRC);
    if( postRC.equals(200)) {
        println(post.getInputStream().getText());
    }
}

def postStat( long operationTime, String user , String meta  ){
    def host = 'http://135.76.123.70:8888'
    def params = "user=$user&meta=$meta"
    post host , "UserStats" , params
}*/


def hash( List list ){
    def map = list?.collectEntries { File file -> [(file?.absolutePath) : file?.text?.hashCode() ]}

    map
}

def pomChanges(){
    long started = System.currentTimeMillis()
    if ( !pomList )
        listPom()
    //find hash changes
    def changes = pomList?.findAll {
        def File file = new File(it);
        pomChangesMap[it] != file?.text?.hashCode()
    }
    println "\n\n[MasterD][POM]--> detected changes for -> $changes"
    //update changes in map
    changes?.each { pomChangesMap[it] = new File(it)?.text?.hashCode() }
    println "\n\n[MasterD][POM]--> pom map -> $pomChangesMap"

    println """ 
            ****** POM changes detection finished after -> ${System.currentTimeMillis()- started}ms  ******
            """

    changes
}
//list pom with updated file hashes
def listPom(){
    long started = System.currentTimeMillis()
    if (!pomList) {
        def tree = fileTree( PROJECT_PATH ).include '**/pom.xml'//.filter { it.isFile() && it?.toString()?.toLowerCase()?.endsWith('pom.xml') }
        //println "$PROJECT_PATH list is ->${ list?.collect { it?.absolutePath } }"
        //flatten and filter openecomp poms
        pomList = tree?.flatten()?.findAll { File file -> file?.text?.contains('org.openecomp.sdc') }?.collect {File file -> file?.absolutePath }
    }
    pomChangesMap = pomList.collectEntries { absolutePath ->[ ( absolutePath ) : new File(absolutePath)?.text?.hashCode() ] }

    println """ [MasterD][Init] intializing POM detector

            *********       POM listing finished after -> ${System.currentTimeMillis()- started}ms    *********
            """
    return pomList
}


task initialization(){
    listPom()
    executor = Executors.newCachedThreadPool();
}

def parallel( closure ){
    executor?.submit(new Callable<Object>(){
        @Override
        public Object call() {
            closure();
            return null;
        }
    })
}
/*class Preferences {
    def String Username
    def String IsNewVagrant
    def String IsRapidMode
}

def initXFolder(){
    def folder = new File(X_FOLDER);
    folder?.exists() ?: folder?.mkdirs()

    new File("${folder?.absolutePath}/$PREFERENCES_FILENAME")
}*/

task tester{
    /*doLast{
        //postStat(10000, "shay" , "report/index")
        listPom()
        new File('catalog-be\\pom.xml') << "#hello"
        pomChanges()
    }*/
}


def fetchFilesByExtention(remote, local , ext ){
    ssh.run {
        def started = System.currentTimeMillis()
        println "folder diff"
        session(remotes.vagrant) {
            //execute "cd /home/vagrant/catalog-be/tmp ; ls -lt | grep catalog-be" //todo- use my dates to filter
            get from: remote  , into: local , filter: {  it?.absolutePath =~ /jetty.*catalog-be.*\.dir.*\.$ext/  } // {  it?.absolutePath =~ /.*catalog-be.*dir.*classes.*/  }
        }
        println "fetched files in ${System.currentTimeMillis() - started} ms"
    }
}

def updateRemoteFile(String remote , String local){
    ssh.run {
        def to = "$BE_REMOTE${remote[remote?.indexOf("tmp\\")..remote.size()-1].replaceAll("\\\\","/")}"
        println "copying $local \nto\n $to"
        session(remotes.vagrant) {
            put from: local  , into: to }
    }
}

def compareAndSwap(){
    def final LIMIT = 10
    def newClasses = new File("$PROJECT_PATH\\catalog-be\\target\\classes")
    def File jettyClasses ;
    //locate classes
    println "traversing.."
    new File("build/hotswap").traverse { if (it?.directory && it?.name?.equals("classes")){
        jettyClasses = it
        return;
    }  }
    def jettyClassesList = []
    jettyClasses?.traverse { jettyClassesList << it }

    println "$jettyClasses"
    //Sort compiled classes
    def files = []
    newClasses?.traverse {  files << it }
    def result = files.sort{ a,b -> b.lastModified() <=> a.lastModified() }
    println "show only last $LIMIT changes"
    result[0..LIMIT]?.each{ println it?.lastModified() +" | "+ it?.name + (it?.directory ? "[Directory]" : "") } //show only last 10 changes

    //update
    def changesMap = [ : ] //<old,new>
    println "updating changes"
    result[0..LIMIT]?.each { File f -> def File other = jettyClassesList.find{ File other-> other?.absolutePath?.endsWith(f?.name) };
        if ( !(f.directory) && f?.text?.hashCode() != other?.text?.hashCode() )
            updateRemoteFile( other?.getAbsolutePath() , f?.getAbsolutePath() )
    } //use hashing
}

task hotswap(){
    doLast {
        new File("build/hotswap")?.deleteDir()
        new File("build/hotswap")?.mkdirs()
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        fetchFilesByExtention( "$BE_REMOTE/tmp/" , 'build/hotswap' , "class")
        compareAndSwap()
    }
}

remotes {
    vagrant {
        host = '127.0.0.1'
        port = 2222
        user = VAGRANT_USER
        password = VAGRANT_PASSWORD
        identity = NEW_VAG ? new File(RSA_PRIVATE_KEY_PATH) : null
    }

}

def gitLatest(){

}

def newEcoSystem(){
    //cleanTitan()
    backupDB() //and clean all
    //restoreDB() //restore latest
    createSchema()
    fillSchema()
    postCreate()
    startAll()
    //todo- conside updating from git
    updaterBEFull()
    updaterFE()
}
def importHeatTypes(){
   //todo- impl
}
def postCreate(){
    importNormative()
    importHeatTypes()
}
def fillSchema(){
    // add conformence level
}
def createSchemaPreStep(){
    //todo- DB up
}
def createSchemaPostStep(){
    ////todo- impl create amdocs dox
}
def createSchema(){
    createSchemaPreStep()
    //todo- create schema
    //todo- create titan
    createSchemaPostStep()
}

def cleanTitan(){
    execSafe{
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        ssh.run {
            session(remotes.vagrant) {
                execute "cqlsh -e 'DROP KEYSPACE titan;'"
                println "[MasterD][DB_DROP]-> Dropped 'titan' KEYSPACE."
            }
        }
    }
}
task cleanTitan {
    doLast{
        cleanTitan()
    }
}

task fetchE2EDB(){
    doLast{
        fetchE2EDB()
    }
}
def fetchE2EDB(){
    execSafe{
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        ssh.run {
            session(remotes.vagrant) {
                def tmp = '$CASSANDRA_HOME/backup/e2e'
                //execute 'mkdir $CASSANDRA_HOME/backup/e2e/'
                //execute 'wget http://135.76.210.202:8080/ETE_backup_files/latest_ETE_backup_file.zip -P /vagrant/db'
                println "[MasterD] download finished, unzipping.."
                execute "unzip -u $tmp/latest_ETE_backup_file.zip" //execute 'unzip -u /vagrant/db/latest_ETE_backup_file.zip'//'
                def folder = execute "cd $tmp; ls -d -- */"
                println "[MasterD] unzipping finished into -> $folder , untaring.."
                execute "tar zxf $tmp/$folder/* --strip 3 -C" +'$CASSANDRA_HOME/data | pv -l >/dev/null'
                println "[MasterD][E2E_DB]-> Downloaded & unzipped e2e data successfully."
            }
        }
    }
}
def copyExplodedBE() {
    execSafe{
        println "[MasterD][BackEnd] copying exploded war."
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        long started = System.currentTimeMillis()
        def dirPath = "${PROJECT_PATH}/catalog-be/target/catalog-be-1.1.0-SNAPSHOT"
        def dir = new File(dirPath);
        println "[MasterD][BackEnd] copying ${dir?.directorySize()/(1024*1024)} MB, from ${dir?.name} to $BE_REMOTE/webapps"
                ssh.run {
                    session(remotes.vagrant) {
                        execute "rm -R $BE_REMOTE/webapps/catalog-be-1.1.0-SNAPSHOT"
                        put from: dir?.absolutePath , into: "$BE_REMOTE/webapps"
                    }
                }
        println "[MasterD][BackEnd] Successfully copied exploded war in ${System.currentTimeMillis()-started}ms."
    }
}
task copyExplodedBE(){
    doLast{
        copyExplodedBE()
    }
}
def backupDB() {
    execSafe{
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        ssh.run {
            session(remotes.vagrant) {
                execute 'mkdir -p $CASSANDRA_HOME/backup'
                def res = execute 'mv $CASSANDRA_HOME/data $CASSANDRA_HOME/backup/data_$(date +\'%Y_%m_%d__%H:%M:%S\')'
                println "[MasterD][DB_BACKUP]-> snapshot DB finished. $res"
            }
        }
    }
}
task backupDB{
    doLast{
        backupDB()
    }
}

def restoreDB(){
    execSafe{
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        ssh.run {
            session(remotes.vagrant) {
                println "[MasterD]-> restoring DB"
                execute 'mkdir -p $CASSANDRA_HOME/data'
                def res = execute 'mv $CASSANDRA_HOME/backup/data_*/* $CASSANDRA_HOME/data'
                println "[MasterD]-> DB restore FINISHED!! $res"
            }
        }
    }
}
task restoreDB() {
    doLast {
        restoreDB()
    }
}

def vm( ){
    exec{
        if (VAGRANT_HOME){
            workingDir VAGRANT_HOME	//vagrant path
            println "*****************\nworking dir -> $VAGRANT_HOME"
            commandLine "cmd","/c", "vagrant up"
            //args = [ ]
        } else {
            println "[MasterD]--> please define windows enviroment variable VAG pointing to vagrant project"
        }
    }
}

task vm{
    doLast{
        vm()
    }
}

def copyFE() {
    println "[MasterD][FrontEnd] starting war copy."
    ssh.settings {
        knownHosts = allowAnyHosts
    }
    long started = System.currentTimeMillis()
    def target = "${PROJECT_PATH}/catalog-fe/target/"
    def files = GFileUtils.listFiles( new File(target) , ["war"] as String[] , false);
    files?.each{ File file ->
        if (!file?.name?.contains('classes')){
            println "[MasterD][FrontEnd] copying ${file.length()/(1024*1024)} MB, from ${file?.name} to $FE_REMOTE/webapps"
            ssh.run {
                session(remotes.vagrant) {
                    put from: file?.absolutePath , into: "$FE_REMOTE/webapps"
                }
            }
        }

    }
    println "[MasterD][FrontEnd] Successfully copied war in ${System.currentTimeMillis()-started}ms."
}

task deployFE{
    doLast {
        copyFE()
    }
}


def copyBE(){
    println "[MasterD][BackEnd] starting war copy."
    ssh.settings {
        knownHosts = allowAnyHosts
    }
    def target = "${PROJECT_PATH}/catalog-be/target/"
    def files = GFileUtils.listFiles( new File(target) , ["war"] as String[] , false);
    long started = System.currentTimeMillis()
    files?.each{ File file ->
        if (!file?.name?.contains('classes')){
            println "[MasterD][BackEnd] copying ${file.length()/(1024*1024)} MB, from ${file?.name} to $BE_REMOTE/webapps"
            ssh.run {
                session(remotes.vagrant) {
                    put from: file?.absolutePath , into: "$BE_REMOTE/webapps"
                }
            }
        }
    }
    println "[MasterD][BackEnd] SUCCESSFULY copied be war in ${System.currentTimeMillis()-started}ms."
}

task deployBE {
    doLast {
        copyBE()
    }
}
def compileFE(){
    exec{
        println "[MasterD][FE]--> compiling project at -> ${PROJECT_PATH}\\catalog-fe"
        workingDir "${PROJECT_PATH}"	//vagrant path
        commandLine 'cmd','/c','mvn -T 2 compile -pl catalog-fe,catalog-ui -am -Pcatalog -Dmaven.test.skip'
    }
}
task compileFE(){
    doLast{
        compileFE()
    }
}
def compileBE(){
    exec{
        println "[MasterD][BE]--> compiling project at -> ${PROJECT_PATH}\\catalog-be"
        workingDir "${PROJECT_PATH}"	//vagrant path
        commandLine 'cmd','/c','mvn -T 2 compile -pl catalog-be -Pcatalog -Dmaven.test.skip'
    }
}
task compileBE{
    doLast{
        compileBE()
    }
}

def compile(){
    exec{
        println "[MasterD]--> compiling project at -> ${PROJECT_PATH}"
        workingDir "${PROJECT_PATH}"	//vagrant path
        commandLine 'cmd','/c','mvn -T 2 compile -am -Pcatalog -Dmaven.test.skip'
    }
}

task compile{
    doLast{
        compile()
    }
}
def compileDependencies(){
    def cmd = IS_MVN_INSTALL ? 'install' : 'compile'
    exec{
        println "[MasterD]--> compiling BE dependencies  -> $BE_DEPENDENCIES [ SKIPPING TESTS!! ]"
        workingDir "${PROJECT_PATH}"	//vagrant path
        commandLine 'cmd','/c',"mvn $cmd -pl $BE_DEPENDENCIES -Pcatalog -Dmaven.test.skip" //commandLine 'cmd', '/c','mvn -T 1C package -pl catalog-model,catalog-dao,catalog-be -P catalog -Dmaven.test.skip'
    }
}
task compileDependencies {
    doLast{
        compileDependencies()
    }
}
def compileWar(){
    def cmd = IS_MVN_INSTALL ? 'install' : 'compile'
    exec{
        println "--> compiling project at -> ${PROJECT_PATH}\\catalog-be"
        workingDir "${PROJECT_PATH}"	//vagrant path
        commandLine 'cmd','/c',"mvn -T 1 $cmd war:war -pl catalog-be -Pcatalog -Dmaven.test.skip" //commandLine 'cmd', '/c','mvn -T 1C package -pl catalog-model,catalog-dao,catalog-be -P catalog -Dmaven.test.skip'
    }
}
task compileWar(){
    doLast{
        compileWar()
    }
}

//deprecated - use deployBE()
task be() {
    doLast{
        def started = System.currentTimeMillis();
        exec{
            println "[MasterD]--> copying be... [from $VAGRANT_HOME]"
            workingDir VAGRANT_HOME	//vagrant path
            commandLine 'cmd','/c', 'copy_war_be.bat','localhost' , "$PROJECT_PATH\\catalog-be\\target\\catalog-be*.war" , "$BE_REMOTE/webapps"
            //args = [ ]
        }
        println """
                ****    copying finished in -> ${System.currentTimeMillis() - started}ms         ****
                """
    }
}

task beConfig( ) {
    doLast{
        exec{
            workingDir "${System.env.VAG}"	//vagrant path
            commandLine 'cmd','/c','copy_war_be_with_configuration','localhost' , "$PROJECT_PATH\\catalog-be\\target\\catalog-be*.war" , "$BE_REMOTE/webapps"
            //args = [ ]
        }
    }

}
task feConfig( ) {
    doLast{
        exec{
            workingDir "${System.env.VAG}"	//vagrant path
            commandLine 'cmd','/c','copy_war_fe_with_configuration','localhost' , "$PROJECT_PATH\\catalog-fe\\target\\catalog-fe*.war" , "$FE_REMOTE/webapps"
            //args = [ ]
        }
    }

}

task fe() {
    doLast{
        exec {
            workingDir "${System.env.VAG}"    //vagrant path
            commandLine 'cmd','/c', 'copy_war_fe.bat', 'localhost', "$PROJECT_PATH\\catalog-fe\\target\\catalog-fe*.war", "$FE_REMOTE/webapps"
            //args = [ ]
        }
    }
}

def installAllProject(){
    exec{
        println "[MasterD]--> Compiling&Installing project at -> ${PROJECT_PATH}"
        workingDir "${PROJECT_PATH}"	//vagrant path
        commandLine 'cmd','/c','mvn -T 2 clean install -U -Pcatalog -Dmaven.test.skip'
    }
}
task installAllProject {
    doLast {
        installAllProject()
    }
}

task installAll {
    doLast{
        println '[MasterD]--> Finished!!'
    }
}
installAll.dependsOn { tasks.findAll { task -> task.name.startsWith('install_') } }

def install_BE(){
    exec {
            println '[MasterD][Install]--> Installing BE!!'
            workingDir "${PROJECT_PATH}"
            commandLine 'cmd','/c', 'mvn clean install -pl catalog-be -am -Pcatalog -Dmaven.test.skip'
            //args = [ ]
    }
}

task install_BE() {
    doLast{
        install_BE()
    }
}

def install_FE() {
    exec {
        workingDir "${PROJECT_PATH}"
        commandLine 'cmd','/c', 'mvn clean install -pl catalog-ui,catalog-fe -am -Pcatalog -Dmaven.test.skip'
    }
}
task install_FE() {
    doLast {
        install_FE()
    }
}

def updaterBERapid(){
    /* if ( ticket() > PREVIOUS_BUILD_VAR ){
     PREVIOUS_BUILD_VAR = ticket()*/
    def started = System.currentTimeMillis();
    println "[MasterD][Rapid]--> compiling changes using maven"
    compileWar()
    println "[MasterD][Rapid]--> copying war"
    copyBE() //use this if you want to deploy entire war //hotswap.execute()
    restartBackend()
    println msg(" redeploy finished in -> ${System.currentTimeMillis() - started}ms ")
}
task updaterBERapid(){
    doLast {
        updaterBERapid()
    }
}
def updaterBE(){
    def started = System.currentTimeMillis();
    IS_MVN_INSTALL = pomChanges() ? true :  false
    println "[MasterD]--> compiling changes using maven"
    compileDependencies()
    compileWar()
    println "[MasterD]--> copying war"
    IS_HOTSWAP ? copyExplodedBE() : copyBE() //execute() //use this if you want to deploy entire war //hotswap.execute()
    restartBackend()
    println msg("redeploy finished in -> ${System.currentTimeMillis() - started}ms ")
}
task updaterBE(){
    doLast {
        updaterBE()
    }
}
def copyBEConfiguration(){
/*    execSafe {
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        ssh.run {
            session(remotes.vagrant) {
                println msg("Stopping BackEnd Server")
                execute command[BACKEND][STOP]()
            }
        }
    }*/
}
def updaterBEFull(){
    def started = System.currentTimeMillis();
    compile()
    println "[MasterD]--> copying war"
    copyBE() //use this if you want to deploy entire war //hotswap.execute()
    copyBEConfiguration()
    println msg("redeploy finished in -> ${System.currentTimeMillis() - started}ms ")
}
task updaterBEFull(){
    doLast {
        updaterBEFull()
    }
}
def copyFEConfiguration(){
    //todo- implement
}
def updaterFE(){
    def started = System.currentTimeMillis();
    println "[MasterD]--> compiling changes using maven"
    compileFE()
    println "[MasterD]--> copying war"
    copyFE() //.execute() //use this if you want to deploy entire war //hotswap.execute()
    copyFEConfiguration()
    println msg("redeploy finished in -> ${System.currentTimeMillis() - started}ms ")
}
task updaterFE(){
    doLast {
      updaterFE()
    }
}
def stopBackend(){
    execSafe {
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        ssh.run {
            session(remotes.vagrant) {
                println msg("Stopping BackEnd Server")
                execute command[BACKEND][STOP]()
            }
        }
    }
}
task stopBackend(){
    doLast {
        stopBackend()
    }
}

def startBackend(){
    execSafe {
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        ssh.run {
            session(remotes.vagrant) {
                println msg("[MasterD] starting backend sever")

                execute command[BACKEND][START]()
            }
        }
    }
    println """[MasterD]->  finished !!
					    """
}
task startBackend(){
    doLast{
        startBackend()
    }
}

def restartBackend(){
    execSafe {
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        ssh.run {
            session(remotes.vagrant) {
                println msg("[MasterD] restarting backend sever")

                execute command[BACKEND][RESTART]()
            }
        }
    }
    println """[MasterD]->  finished !!
					    """
}
//todo- remove this if you want to auto-deploy on every file save
/*
compileJava.doFirst{
    updater?.execute()
}*/

enum STATUS { UP, DOWN , UNKNOWN , UNAVAILABLE }

task health(){
    doLast {
        prepareTray()
    }
}

def execSafe( closure){
   if (!lockObj) {
        [0..4].forEach( {println "Critical ERROR : lock object is not initialized\n\nCritical ERROR : cannot run tasks\n"}() )
        return;
   }
   synchronized (lockObj){
           boolean prev = isHaltHealth.get()
           try {
               isHaltHealth.set(true)
               closure()
           } catch (Exception e) {
               println e
           } finally {
               isHaltHealth.set(prev)
           }
   }
}

def fetchFiles( remote, local ){
    ssh.run {
        session(remotes.vagrant) {
            //execute "cd /home/vagrant/catalog-be/tmp ; ls -lt | grep catalog-be" //todo- use my dates to filter
            def f = get from: remote  , into: local
            println f?.name
            //return f
        }
        //println "fetched files in ${System.currentTimeMillis() - started} ms"
    }

    //return null
}


def killJava(){
    execSafe {
        def res
        ssh.run {
            session( remotes.vagrant ) {
                println """					 *-*-****************************-*-*
								killing all java proccesses
						*-*-****************************-*-*
					"""
                res = execute command[ALL][KILL]()
            }
        }
        println res?.toString()
    }
}

def importNormative(){
    execSafe {
        ssh.run {
            session(remotes.vagrant) {
                println """					 *-*-************************************-*-*
											importNormative
								*-*-************************************-*-*
							"""
                execute "python -v $BE_REMOTE/scripts/import/tosca/importNormativeAll.py"
            }
        }
    }
}

def startAll(){
    def startCassandra = """
                        #!/bin/bash
                        
                        cassandra&
                        elasticsearch -d
                        
                        #Wait until ES is up
                        until curl localhost:9200/_cluster/health;
                        do
                            printf "."
                            sleep 3
                        done
                        
                        # Create Elastic Mapping if not exist in ES
                        createESMapping.sh
                        """
    execSafe {
        ssh.run {
            session(remotes.vagrant) {
                println """					 *-*-************************************-*-*
								starting all SDC services(DB,BE,FE,Webseal)
							*-*-************************************-*-*
				"""
                if ( NEW_VAG ){
                    execute command[DB][START]()
                    Thread.sleep(5000)
                    execute command[CACHING][START]()
                }
                else
                    execute startCassandra
                //[0..4]?.forEach( Thread?.sleep(2000) )
                Thread?.sleep(10000)
                Thread?.sleep(10000)
                execute command[BACKEND][START]()
                execute command[FRONTEND][START]()
                execute command[SECURITY][START]()
            }
        }
    }
}


/*def clearLog(type: Delete){
    delete{
        delete 'C:/ProgramData/all.log'
        followSymlinks = true
    }
}*/
task clearLog(type: Delete){
    doLast{
        delete 'C:/ProgramData/all.log'
        followSymlinks = true
    }
}
def logBE(){
    try{
        println "\n*** logging BE all.log ***\n"

            ssh.run {
                session( remotes.vagrant ) {
                    //String now = execute 'echo \"\$(date +\'%Y_%m_%d\')\"'
                    //println "\n\n*******************************************************\n\n"+now?.toString()
                    clearLog?.execute() //todo- remove this .execute()
                    fetchFiles( '/home/vagrant/catalog-be/logs/SDC/SDC-BE/all.log' , 'C:/ProgramData') //"%USERPROFILE%\AppData\Local\")
                    //project.ext.set( "logFile" , 'C:/ProgramData/all.log' )

                    //				-f /home/vagrant/catalog-fe/logs/*$now.stderrout.log -f /home/vagrant/catalog-be/logs/*$now.stderrout.log -f /home/vagrant/catalog-be/logs/ASDC/ASDC-BE/debug.log*'
                }
            }

        parallel {
            exec {
                //if ( logFile ){
                String notepad = 'C:\\Program Files (x86)\\Notepad++\\notepad++.exe'
                println "logging $logFile to notepad++ [$notepad]"
                commandLine 'cmd','/c' , notepad ,logFile
            }
        }
    }catch(Exception e){
        println "cannot open logs!!!"
        e.printStackTrace()
    }
}
task logBE(){
    doLast{
        logBE()
    }
}

def toggleHealthPolling(){
    isHaltHealth.set(!isHaltHealth.get())
}
//converts predefined icon to Image
def Image convert( imageName ){
    String encodedimage = project.ext.get(imageName);
    byte[] byteImage = encodedimage?.split(',')[1]?.decodeBase64()
    Image image = ImageIO.read(new ByteArrayInputStream(byteImage));
}

def refreshMenu(String imageName){
    switch( imageName ) {
        case 'unavailableImg' : toggleHealthString = "Resume Health";  break;
        default : toggleHealthString = "Halt Health";
    }
    if (((MenuItem)toggleHealthItemView).getLabel() != toggleHealthString)
        ((MenuItem)toggleHealthItemView).setLabel(toggleHealthString);
}
def startDB(){
        println "[MasterD] Starting database.."
        execSafe {
            ssh.settings {
                knownHosts = allowAnyHosts
            }
            ssh.run {
                session(remotes.vagrant) {
                    execute command[DB][START]()
                }
            }
        }
}
task startDB(){
    doLast {
        startDB()
    }
}
def stopDB(){
    execSafe {
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        ssh.run {
            session(remotes.vagrant) {
                execute command[DB][STOP]()
            }
        }
    }
}
task stopDB(){
    doLast {
        stopDB()
    }
}
def startFE(){
    execSafe {
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        ssh.run {
            session(remotes.vagrant) {
                execute command[FRONTEND][START]()
            }
        }
    }
}
task startFE(){
    doLast {
        startFE()
    }
}
def stopFE(){
    execSafe {
        ssh.settings {
            knownHosts = allowAnyHosts
        }
        ssh.run {
            session(remotes.vagrant) {
                execute command[FRONTEND][STOP]()
            }
        }
    }
}
task stopFE(){
    doLast {
        stopFE()
    }
}

def ActionListener newListener( closure  ){
    ActionListener listener = new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            try {
                    closure()
            } catch (AWTException e1) {
                System.err.println(e1);
            }
        }
    }

    listener
}

ext.updateTray = { STATUS status ->
    lastStatus = status
    if (SystemTray.isSupported()) {
        // get the SystemTray instance
        SystemTray tray = SystemTray.getSystemTray();
        // load an image
        String imageName = status==STATUS.UP ? (Math.random()>0.5 ?'okImg1':'okImg2') : status==STATUS.UNAVAILABLE ? 'unavailableImg' : status==STATUS.DOWN ? 'errorImg' : 'warnImg'
        Image image = convert imageName
        if (trayIcon != null) {
            trayIcon.setImage(image)
            refreshMenu(imageName);
            return ;
        }
        //region  -> Menu UI
        // create a popup menu
        PopupMenu popup = new PopupMenu();
        // create menu item for the default action

        MenuItem hotswapItem = new MenuItem("===> WAR <===");
        hotswapItem.setFont(new Font("MONOSPACED" , Font.BOLD ,15f ))

        //region Multilevel Menus
        Menu deployMasterMenu = new Menu("DeployMaster");
        Menu backendMenu = new Menu("Backend");
        Menu frontendMenu = new Menu("Frontend");
        Menu dbMenu = new Menu("Database");
        try{
            deployMasterMenu.setFont(new Font("Cooper Black" ,Font.BOLD ,14f ))
            backendMenu.setFont(new Font("Cooper Black" ,Font.PLAIN ,13f ))
            frontendMenu.setFont(new Font("Cooper Black" ,Font.PLAIN ,13f ))
            dbMenu.setFont(new Font("Cooper Black" ,Font.PLAIN ,13f ))
        }catch(Exception e){
            println e
        }

        //DeployMaster Menu
        MenuItem updaterBeWithDependenciesItem = new MenuItem("[BE] Quick Compile -> Deploy");
        MenuItem updaterFullBeItem = new MenuItem("[BE] Full Install  -> Deploy");
        MenuItem updaterFeItem = new MenuItem("[FE] Quick Compile -> Deploy");
        MenuItem updaterFullFeItem = new MenuItem("[FE] Full Install -> Deploy");

        //Menu UI build

        deployMasterMenu.add(updaterFullBeItem);
        deployMasterMenu.add(updaterBeWithDependenciesItem);

        deployMasterMenu.addSeparator();
        deployMasterMenu.add(updaterFullFeItem);
        deployMasterMenu.add(updaterFeItem);


        //BE menu
        MenuItem startItem = new MenuItem("[BE] Start");
        MenuItem stopItem = new MenuItem("[BE] Stop BackEnd");
        MenuItem copyBeWarItem = new MenuItem("[BE] Copy War");
        backendMenu.add(startItem);
        backendMenu.add(stopItem);
        backendMenu.add(copyBeWarItem);

        //FE menu
        MenuItem startFEItem = new MenuItem("[FE] Start");
        MenuItem stopFEItem = new MenuItem("[FE] Stop");
        MenuItem copyFeWarItem = new MenuItem("[FE] Copy War");
        frontendMenu.add(startFEItem);
        frontendMenu.add(stopFEItem);
        frontendMenu.add(copyFeWarItem);

        //DB menu
        MenuItem startDBItem = new MenuItem("[DB] Start");
        MenuItem stopDBItem = new MenuItem("[DB] Stop");
        MenuItem backupDBItem = new MenuItem("[DB] Backup");
        MenuItem restoreDBItem = new MenuItem("[DB] Restore");
        dbMenu.add(startDBItem);
        dbMenu.add(stopDBItem);
        dbMenu.add(backupDBItem);
        dbMenu.add(restoreDBItem);
        //endregion


        MenuItem killItem = new MenuItem("Kill All");
        MenuItem startAllItem = new MenuItem("Start All");
        MenuItem importItem = new MenuItem("Import Normative");
        MenuItem healthInfoItem = new MenuItem("[Info] Health");
        MenuItem toggleHealthItem = new MenuItem(toggleHealthString);
        MenuItem logsItem = new MenuItem("Logs [Beta]");
        MenuItem exitItem = new MenuItem("Exit");

        toggleHealthItemView = toggleHealthItem;

        popup.add(hotswapItem);
        popup?.addSeparator();
        popup.add(deployMasterMenu);
        popup?.addSeparator();
        popup.add(backendMenu)
        popup.add(frontendMenu)
        popup.add(dbMenu)
        popup?.addSeparator();
        popup.add(startAllItem);
        popup.add(killItem);
        popup?.addSeparator();
        popup.add(toggleHealthItem);
        popup.add(healthInfoItem);
        popup?.addSeparator();
        popup.add(importItem);
        popup.add(logsItem);
        popup?.addSeparator();
        popup.add(exitItem);
        //endregion UI
        // construct a TrayIcon
        trayIcon = new TrayIcon(image, "HealthTray", popup);

        //region -> Button actions
        def listenerHotswap = newListener { project.ext.set("IS_HOTSWAP", !IS_HOTSWAP); hotswapItem?.setLabel( IS_HOTSWAP ? "==> HotSwap <==" : "===> WAR <===")   }
        // create a action listener to listen for default action executed on the tray icon
        def listenerFullBE = newListener { parallel { install_BE(); IS_HOTSWAP ? copyExplodedBE() : copyBE(); restartBackend() } }
        def listenerFullFE = newListener { parallel { install_FE(); copyFE() } }
        ActionListener listenerFE = newListener { parallel { updaterFE() } }
        ActionListener listenerBE = newListener { parallel { updaterBE() } }
        ActionListener exitListener = newListener {
                    executor?.isShutdown() ?: executor?.shutdown()
                    tray.remove(trayIcon);
                    project.ext.set("isStopHealthCheck", true)
                    println "Shutting down.. bye bye.."
                }
        ActionListener stopBackendListener = newListener { stopBackend() }
        ActionListener startBEListener = newListener { parallel { startBackend() } }
        ActionListener killJavaListener = newListener { killJava() }

        ActionListener startAllListener = newListener { parallel { startAll() } }

        ActionListener listener5 = new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                try {
                    parallel { importNormative() }
                } catch (AWTException e1) {
                    System.err.println(e1);
                }
            }
        };

        ActionListener listener6 = new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                try {
                    parallel { healthPopup() }
                } catch (AWTException e1) {
                    System.err.println(e1);
                }
            }
        };

        ActionListener listener7 = new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                try {
                    logBE()//tasks.logger.execute()
                } catch (AWTException e1) {
                    System.err.println(e1);
                }
            }
        };
        ActionListener listener8 = new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                try {
                    toggleHealthPolling()//tasks.logger.execute()
                } catch (AWTException e1) {
                    System.err.println(e1);
                }
            }
        };
        ActionListener copyBeWarListener = new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                try {
                    parallel { copyBE() }//.execute()//tasks.logger.execute()
                } catch (AWTException e1) {
                    System.err.println(e1);
                }
            }
        };

        ActionListener startDBListener = new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                try {
                    parallel {
                        startDB()
                    }//tasks.logger.execute()
                } catch (AWTException e1) {
                    System.err.println(e1);
                }
            }
        }

        ActionListener stopDBListener = new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                try {
                    stopDB()//tasks.logger.execute()
                } catch (AWTException e1) {
                    System.err.println(e1);
                }
            }
        }

        ActionListener dbBackupListener = new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                try {
                    parallel {
                        backupDB()//tasks.logger.execute()
                    }
                } catch (AWTException e1) {
                    System.err.println(e1);
                }
            }
        }

        ActionListener feStartListener = new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                try {
                    parallel {
                        startFE()
                    }//tasks.logger.execute()
                } catch (AWTException e1) {
                    System.err.println(e1);
                }
            }
        }

        ActionListener feStopListener = new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                try {
                    stopFE()//tasks.logger.execute()
                } catch (AWTException e1) {
                    System.err.println(e1);
                }
            }
        }

        ActionListener feCopyListener = new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                try {
                    parallel {
                        copyFE() //.execute()//tasks.logger.execute()
                    }
                } catch (AWTException e1) {
                    System.err.println(e1);
                }
            }
        }


        //def listenerFullModules = newListener { parallel { installAllProject() } }
        //region -> Button<=Listener
        hotswapItem.addActionListener(listenerHotswap)
        updaterFeItem.addActionListener(listenerFE)
        updaterFullBeItem.addActionListener( listenerFullBE )
        updaterBeWithDependenciesItem.addActionListener( listenerBE )
        updaterFullFeItem.addActionListener( listenerFullFE )
        stopItem.addActionListener(stopBackendListener)
        startItem.addActionListener(startBEListener)
        copyBeWarItem.addActionListener(copyBeWarListener);
        killItem.addActionListener(killJavaListener)
        startAllItem.addActionListener(startAllListener)
        importItem.addActionListener(listener5)
        healthInfoItem.addActionListener(listener6)
        toggleHealthItem.addActionListener(listener8)
        logsItem.addActionListener(listener7)
        exitItem.addActionListener(exitListener)

        startDBItem.addActionListener( startDBListener )
        stopDBItem.addActionListener( stopDBListener )
        backupDBItem.addActionListener( dbBackupListener )
        copyFeWarItem.addActionListener( feCopyListener )
        startFEItem.addActionListener( feStartListener )
        stopFEItem.addActionListener( feStopListener )
        //endregion
        //endregion
        // set the TrayIcon properties

        // ...
        // add the tray image
        try {
            tray.add(trayIcon);

        } catch (AWTException e) {
            System.err.println(e);
        }
        // ...
    } else {
        println "Java TrayIcon Option is not supported in your System, try enabling it. Bye Bye"
    }

}

def prepareTray(){
    long UPDATE_THRESHOLD = 3500
    float SCALAR = 1
    ssh.settings {
        knownHosts = allowAnyHosts
    }
    while(!isStopHealthCheck) {
        if (!isHaltHealth.get()) {    //if await or await is more then 60 second return health check
            ssh.run {
                session(remotes.vagrant) {
                    try {
                        def healthOutput = execute command[ALL][HEALTH]()
                        if (healthOutput?.contains("Failed command .* with status 7") || healthOutput?.contains("Problem accessing /sdc2/rest/healthCheck"))
                            updateTray(STATUS.DOWN)
                        def statusCollecion = healthOutput?.findAll "\"healthCheckStatus\": \".*\""
                        def upCount = statusCollecion?.count { it?.contains("UP") }
                        def downCount = statusCollecion?.count { it?.contains("DOWN") }
                        def uknownCount = (statusCollecion?.size() - upCount) - downCount
                        println " UP -> $upCount | downCount=$downCount | uknownCount=$uknownCount "
                        (uknownCount > 0 || (downCount > 0 && upCount > 0)) ? updateTray(STATUS.UNKNOWN) : ((upCount > 0) ? updateTray(STATUS.UP) : updateTray(STATUS.DOWN))
                        SCALAR = 1
                    } catch (Exception e) {
                        updateTray(STATUS.DOWN)
                        println e
                        SCALAR = Math.min(SCALAR * 1.1, 5) //slow down on errors
                    }
                    //green color effects
                    if (lastStatus && lastStatus == STATUS.UP) {
                        trayIcon.setImage(convert(Math.random() > 0.5 ? 'okImg1' : 'okImg2'))
                        //randomly green change color
                    }
                    Thread.yield()
                    Thread?.sleep((long) (UPDATE_THRESHOLD * SCALAR))
                }
            }
        }else{
            updateTray(STATUS.UNAVAILABLE)
            Thread.yield()
        }
    }
}

def healthPopup(){
    ssh.run {
        session(remotes.vagrant) {
            def healthOutput = execute command[ALL][HEALTH]()
            JOptionPane.showMessageDialog(null,
                    healthOutput,
                    "HEALTH",
                    JOptionPane.INFORMATION_MESSAGE);
        }
    }
}

project.ext.set("msg", { content -> """
                        ************************************************************************************************
                        ************************************************************************************************
                        *******                                                                                *********
                        **************                                                                  ****************
                                                $content      

                        ************************************************************************************************
                        ************************************************************************************************
                        """} )
d='n6149' href='#n6149'>6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355
///<reference path="../../../node_modules/cypress/types/index.d.ts"/>
import {JsonBuilder} from "../../support/jsonBuilders/jsonBuilder";
import {ServiceModel} from "../../support/jsonBuilders/models/service.model";

describe('Drawing board', function () {
  beforeEach(() => {
      cy.clearSessionStorage();
      cy.setReduxState();
      cy.preventErrorsOnLoading();
      cy.initAAIMock();
      cy.initVidMock();
      cy.initActiveNetworks();
      cy.login();
  });

  afterEach(() => {
    cy.screenshot();
  });

  describe('duplicate', () => {

    it('delete vf module reduce the number of vf modules ', function () {
      cy.readFile('cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
        cy.setReduxState(<any>res);
        cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
        cy.drawingBoardPressAddButtonByElementName('node-2017-488_PASQUALE-vPE 0').get('i').should('have.class', 'fa-plus-circle');
        cy.drawingBoardPressAddButtonByElementName('node-2017-488_PASQUALE-vPE 0').click({force: true});
        cy.fillVnfPopup().then(() => {
          cy.drawingBoardPressAddButtonByElementName('node-2017-488_PASQUALE-vPE 0').click({force: true});
          cy.fillVnfPopup().then(() => {
            cy.drawingBoardNumberOfExistingElementsShouldContains(2);
            cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0', 1)
              .drawingBoardTreeClickOnContextMenuOptionByName('Remove');
            cy.drawingBoardNumberOfExistingElementsShouldContains(1);
          });
        })
      });
    });

    it('create new  vf module  update the number of vf modules ', () => {
      cy.readFile('cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
        cy.setReduxState(<any>res);
        cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
        cy.drawingBoardPressAddButtonByElementName('node-2017-488_PASQUALE-vPE 0').get('i').should('have.class', 'fa-plus-circle');
        cy.drawingBoardPressAddButtonByElementName('node-2017-488_PASQUALE-vPE 0').click({force: true});
        cy.fillVnfPopup().then(() => {
          cy.drawingBoardPressAddButtonByElementName('node-2017-488_PASQUALE-vPE 0').click({force: true});
          cy.fillVnfPopup().then(() => {
            cy.drawingBoardPressAddButtonByElementName('node-2017-488_PASQUALE-vPE 0').click({force: true});
            cy.fillVnfPopup().then(() => {
              cy.drawingBoardNumberOfExistingElementsShouldContains(3);
            });
          });
        });
      });
    });

    it('duplicate vnf multi - should update number of vf modules on left side and disable duplicate when created max', () => {
      cy.readFile('cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
        cy.setReduxState(<any>res);
        cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
        cy.drawingBoardPressAddButtonByElementName('node-2017-488_PASQUALE-vPE 0').get('i').should('have.class', 'fa-plus-circle')
          .drawingBoardPressAddButtonByElementName('node-2017-488_PASQUALE-vPE 0').click({force: true});
        cy.fillVnfPopup().then(() => {
          cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0')
            .drawingBoardTreeClickOnContextMenuOptionByName('Duplicate')
            .get('.quantity-select option').should('have.length', 9)
            .getElementByDataTestsId('duplicate-amount-vfmodules').select('4')
            .getTagElementContainsText('button', 'Duplicate').click({force: true});
          cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0', 2)
            .drawingBoardTreeClickOnContextMenuOptionByName('Duplicate')
            .get('.quantity-select option').should('have.length', 5)
            .getElementByDataTestsId('duplicate-amount-vfmodules').select('5')
            .getTagElementContainsText('button', 'Duplicate').click({force: true});
          cy.getElementByDataTestsId('node-2017-488_PASQUALE-vPE 0').get("span").should('have.class', 'icon-v ng-star-inserted');
          cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0', 9)
            .get('ul.dropdown-menu li:nth-child(2)').should('have.class', 'disabled');
          // close menu
          cy.get('body').click();
          cy.drawingBoardNumberOfExistingElementsShouldContains(10);
          cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0', 1)
            .drawingBoardTreeClickOnContextMenuOptionByName('Remove');
          cy.drawingBoardNumberOfExistingElementsShouldContains(9);
          cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0', 3)
            .get('ul.dropdown-menu li:nth-child(2)').should('not.have.class', 'disabled');
        })
      });
    });

    it('cancel duplicate multi vnf - shouldn\'t duplicate', () => {
      let res = getReduxWithVNFS(true);
      cy.setReduxState(<any>res);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6e59c5de-f052-46fa-aa7e-2fca9d674c44');
      const vnfNode = 'node-d6557200-ecf2-4641-8094-5393ae3aae60-VF_vGeraldine 0';
      cy.getElementByDataTestsId(vnfNode).should('have.length', 1)
        .drawingBoardTreeOpenContextMenuByElementDataTestId(vnfNode)
        .drawingBoardTreeClickOnContextMenuOptionByName('Duplicate')
        .getElementByDataTestsId('duplicate-amount-vfmodules').select('5')
        .getTagElementContainsText('button', 'Cancel').click({force: true})
        .getElementByDataTestsId(vnfNode).should('have.length', 1);
    });

    it('service with 2 network - can add unlimited number of network instances', () => {
      let res = getReduxWith2Networks();
      cy.setReduxState(<any>res);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2ab1da67-39cc-425f-ba52-59a64d0ea04a');
      cy.get('drawing-board-tree tree-node-content').should('have.have.length', 1);

      addNetworkFromModel('node-SR-IOV Provider 2-1').then(() => {
      });
    });

    it('duplicate vnf macro', () => {
      let res = getReduxWithVNFS(true);
      cy.setReduxState(<any>res);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6e59c5de-f052-46fa-aa7e-2fca9d674c44');
      const vnfNode = 'node-d6557200-ecf2-4641-8094-5393ae3aae60-VF_vGeraldine 0';
      const vfModuleNode = 'node-522159d5-d6e0-4c2a-aa44-5a542a12a830-vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1';
      cy.duplicateVnf(vnfNode, 1);
      //edit the second vnf lineOfBusiness to be ECOMP
      editSecondVnf(vnfNode);
      assertEditvfModuleShowFile(vfModuleNode, "sample.json");
      //assert that each vnf has it's own lineOfBusiness
      cy.getReduxState().then((state) => {
        const serviceInstance = state.service.serviceInstance['6e59c5de-f052-46fa-aa7e-2fca9d674c44'];
        chai.expect(serviceInstance.vnfs['VF_vGeraldine 0'].lineOfBusiness).equal("zzz1");
        chai.expect(serviceInstance.vnfs['VF_vGeraldine 0:0001'].lineOfBusiness).equal("ONAP");
      });
    });

    it('delete duplicate vnf ', () => {
      let res = getReduxWith2VNFS();
      cy.setReduxState(<any>res);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
      cy.getElementByDataTestsId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_PASQUALE-vPE 0').should('have.length', 2);

      cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_PASQUALE-vPE 0', 1)
        .drawingBoardTreeClickOnContextMenuOptionByName('Duplicate')
        .getTagElementContainsText('button', 'Duplicate').click({force: true})
        .get('#drawing-board-tree .toggle-children').should('have.length', 1);

      cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_PASQUALE-vPE 0', 2)
        .drawingBoardTreeClickOnContextMenuOptionByName('Duplicate')
        .getElementByDataTestsId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_PASQUALE-vPE 0').should('have.length', 3);
    });

    it('check the instanceParams set to instance ', () => {
      let res = getReduxWith2VNFS();
      let instanceName = "InstanceName";
      cy.setReduxState(<any>res);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
      cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_PASQUALE-vPE 0', 1)
        .drawingBoardTreeClickOnContextMenuOptionByName('Edit')
        .getElementByDataTestsId('instanceName').type(instanceName)
        .genericFormSubmitForm();

      checkDynamicInputs();

      cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_PASQUALE-vPE 0', 1)
        .drawingBoardTreeClickOnContextMenuOptionByName('Edit');
      cy.getElementByDataTestsId('instanceName').should('have.value', instanceName);
      checkDynamicInputs();

    });

    it('delete duplicate vfModule ', () => {
      let res = getReduxWith2VNFS();
      cy.setReduxState(<any>res);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
      cy.getElementByDataTestsId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_PASQUALE-vPE 0').should('have.length', 2)
        .drawingBoardTreeOpenContextMenuByElementDataTestId('node-040e591e-5d30-4e0d-850f-7266e5a8e013-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0')
        .drawingBoardTreeClickOnContextMenuOptionByName('Remove')
        .getElementByDataTestsId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_PASQUALE-vPE 0').should('have.length', 2);
    });

    it('duplicate unique vnf ', () => {
      let res = getReduxWith2VNFS();
      cy.setReduxState(<any>res);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
      cy.getElementByDataTestsId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_PASQUALE-vPE 0').should('have.length', 2)
        .drawingBoardTreeOpenContextMenuByElementDataTestId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_PASQUALE-vPE 0', 1)
        .drawingBoardTreeClickOnContextMenuOptionByName('Duplicate')
        .getTagElementContainsText('button', 'Duplicate').click({force: true})
        .get('#drawing-board-tree .toggle-children').should('have.length', 1);
    });

    it('duplicate a-la-carte vnf + networks', () => {
      let res = getReduxWithVNFS(false);
      cy.setTestApiParamToGR();

      res.service.serviceHierarchy['6e59c5de-f052-46fa-aa7e-2fca9d674c44'].service.vidNotions.instantiationType = "ALaCarte";

      //remove VfModules since they are not fit to a-la-carte scenario
      delete res.service.serviceHierarchy['6e59c5de-f052-46fa-aa7e-2fca9d674c44'].vnfs['VF_vGeraldine 0'].vfModules;
      delete res.service.serviceInstance['6e59c5de-f052-46fa-aa7e-2fca9d674c44'].vnfs['VF_vGeraldine 0'].vfModules;

      res.service.serviceInstance['6e59c5de-f052-46fa-aa7e-2fca9d674c44'].vnfs['VF_vGeraldine 0'].instanceName = "VFvGeraldine00001";
      cy.setReduxState(<any>res);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6e59c5de-f052-46fa-aa7e-2fca9d674c44');
      const vnfNode = 'node-d6557200-ecf2-4641-8094-5393ae3aae60-VF_vGeraldine 0';
      cy.duplicateVnf(vnfNode, 1);

      //edit the second vnf lineOfBusiness to be ECOMP
      editSecondVnf(vnfNode);
      cy.drawingBoardPressAddButtonByElementName("node-ExtVL 0").click({force: true}).then(() => {
        cy.fillNetworkPopup();
      });

      // compare state with the json file
      cy.getReduxState().then((state) => {
        let serviceInstance = state.service.serviceInstance['6e59c5de-f052-46fa-aa7e-2fca9d674c44'];
        //assert that each vnf has it's own lineOfBusiness
        chai.expect(serviceInstance.vnfs['VF_vGeraldine 0'].lineOfBusiness).equal("zzz1");
        chai.expect(serviceInstance.vnfs['VF_vGeraldine 0:0001'].lineOfBusiness).equal("ONAP");
        cy.readFile('../vid-automation/src/test/resources/a-la-carte/redux-multiple-vnf-network.json').then((file) => {
          const vnfs = file.vnfs;
          var vnfNames = Object.keys(vnfs);

          for (var i: number = 0; i < vnfNames.length; i++) {
            chai.expect(serviceInstance.vnfs).to.have.any.keys(vnfNames[i]);
          }

          chai.expect(serviceInstance.vnfs['VF_vGeraldine 0'].lineOfBusiness).equal(vnfs['VF_vGeraldine 0'].lineOfBusiness);
          chai.expect(serviceInstance.vnfs['VF_vGeraldine 0'].instanceName).equal(vnfs['VF_vGeraldine 0'].instanceName);

          vnfs['VF_vGeraldine 0:0001'].trackById = serviceInstance.vnfs['VF_vGeraldine 0:0001'].trackById;

          cy.deepCompare(serviceInstance.vnfs['VF_vGeraldine 0:0001'], vnfs['VF_vGeraldine 0:0001']);
          cy.deepCompare(serviceInstance.vnfs['VF_vGeraldine 0'], vnfs['VF_vGeraldine 0']);

          const network = serviceInstance.networks['ExtVL 0'];

          file.networks['ExtVL 0'].trackById = network.trackById;
          cy.deepCompare(network, file.networks['ExtVL 0']);
        });
      });
    });

  });

  describe('multiple tests', () => {
    it('remove vfModule with missing data should update deploy button status', () => {
      let res = getReduxWithVFModuleMissingData();
      cy.setReduxState(<any>res);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
      cy.getElementByDataTestsId('node-040e591e-5d30-4e0d-850f-7266e5a8e013-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0-alert-icon').should('have.class', 'icon-alert')
        .drawingBoardTreeOpenContextMenuByElementDataTestId('node-040e591e-5d30-4e0d-850f-7266e5a8e013-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0')
        .drawingBoardTreeClickOnContextMenuOptionByName('Remove')
        .getElementByDataTestsId('deployBtn').should('not.have.attr', 'disabled');

      cy.updateServiceShouldNotOverrideChild();
    });

    it('remove VNF with missing data should update deploy button status ', () => {
      let res = getReduxWithVNFMissingData();
      cy.setReduxState(<any>res);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');

      cy.getElementByDataTestsId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_PASQUALE-vPE 0-alert-icon').should('have.class', 'icon-alert')
        .drawingBoardTreeOpenContextMenuByElementDataTestId('node-ea81d6f7-0861-44a7-b7d5-d173b562c350-2017-488_PASQUALE-vPE 0', 1)
        .drawingBoardTreeClickOnContextMenuOptionByName('Remove')
        .getTagElementContainsText('button', 'Remove VNF').click({force: true})
        .getElementByDataTestsId('deployBtn').should('not.have.attr', 'disabled');
      cy.updateServiceShouldNotOverrideChild();
    });

    xit('should display service model name', () => {
      cy.readFile('cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
        cy.setReduxState(<any>res);
        cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
        cy.get('#service-model-name').contains('action-data');
      });
    });

    it('should display icon and message if no vnf and vnfModules', () => {
      cy.readFile('cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
        res.global.drawingBoardStatus = "CREATE";
        cy.setReduxState(<any>res);
        cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
        cy.getElementByDataTestsId("text-title").contains("Please add objects (VNFs, network, modules etc.)");
        cy.getElementByDataTestsId("text-title2").contains("from the left tree to design the service instance");
        cy.getElementByDataTestsId("text-subtitle").contains("Once done, click Deploy to start instantiation");
        cy.get('#not-node-img-id').and('be.visible');
        cy.getElementByDataTestsId("no-content-icon").should('have.class', "no-content-icon");
        cy.getElementByDataTestsId("no-content-icon").should('have.class', "upload-icon-service-planing");
        cy.getElementByDataTestsId("no-content-icon").should('have.attr', "src", "./assets/img/UPLOAD.svg");
      });
    });

    it('should show alert on remove vnf with modules', () => {
      cy.readFile('cypress/support/jsonBuilders/mocks/jsons/serviceWithVnfAndVfModules.json').then((res) => {
        cy.setReduxState(<any>res);
        cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
        cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0');
        // assert vfModules are enabled
        cy.get('.tree-node-disabled div[data-tests-id="node-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1"]')
          .should('not.be.visible');
        cy.drawingBoardTreeClickOnContextMenuOptionByName('Remove');

        cy.get('.title').contains('Remove VNF');
        cy.get('.sdc-button').contains('Remove VNF').click();
        // assert vfModules are disabled after remove parent vnf
        cy.get('.tree-node-disabled div[data-tests-id="node-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1"]')
          .should('be.visible');
        cy.updateServiceShouldNotOverrideChild();
      });
    });

    it('should not show alert on remove vnf without modules', () => {
      cy.readFile('cypress/support/jsonBuilders/mocks/jsons/serviceWithVnfAndVfModules.json').then((res) => {
        cy.setReduxState(<any>res);
        cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
        cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-0903e1c0-8e03-4936-b5c2-260653b96413-2017-388_PASQUALE-vPE 1');
        cy.drawingBoardTreeClickOnContextMenuOptionByName('Remove')
      });
    });

    it('should show <Automatically Assigned> if ecomp is true', () => {
      cy.readFile('cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
        cy.setReduxState(<any>res);
        cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
        cy.drawingBoardPressAddButtonByElementName('node-2017-388_PASQUALE-vPE 0').click({force: true});

        cy.selectDropdownOptionByText('productFamily', 'ERICA');
        cy.selectDropdownOptionByText('lcpRegion', 'hvf6');
        cy.selectDropdownOptionByText('tenant', 'AIN Web Tool-15-D-testalexandria');
        cy.selectDropdownOptionByText('lineOfBusiness', 'ONAP');
        cy.selectDropdownOptionByText('platform', 'platform');
        cy.genericFormSubmitForm();

        cy.getElementByDataTestsId('node-afacccf6-397d-45d6-b5ae-94c39734b168-2017-388_PASQUALE-vPE 0').contains('<Automatically Assigned>');
        cy.updateServiceShouldNotOverrideChild();
      });
    });

    it('should show model name if ecomp is false', () => {
      const vnfModelKey: string = '2017-488_PASQUALE-vPE 0',
        vnfModelName: string = '2017-488_PASQUALE-vPE';
      cy.readFile('cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => {
        res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs[vnfModelKey].properties.ecomp_generated_naming = 'false';
        cy.setReduxState(<any>res);
        cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
        cy.drawingBoardPressAddButtonByElementName('node-2017-488_PASQUALE-vPE 0').click({force: true});

        cy.selectDropdownOptionByText('productFamily', 'ERICA');
        cy.selectDropdownOptionByText('lcpRegion', 'hvf6');
        cy.selectDropdownOptionByText('tenant', 'AIN Web Tool-15-D-testalexandria');
        cy.selectDropdownOptionByText('lineOfBusiness', 'ONAP');
        cy.selectDropdownOptionByText('platform', 'platform');
        cy.genericFormSubmitForm();

        cy.getElementByDataTestsId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0').contains(vnfModelName);
      });
    });

    describe('add instance open a popup', () => {

      it('should add vfModule with popup with empty required instance name', () => {
        cy.readFile('cypress/support/jsonBuilders/mocks/jsons/serviceWithVnfAndVfModules.json').then((res) => {
          res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_PASQUALE-vPE 0"].properties.ecomp_generated_naming = "false";
          res.service.serviceInstance["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_PASQUALE-vPE 0"].vfModules = [];
          cy.setReduxState(<any>res);
          cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
          cy.get('available-models-tree tree-node-expander').eq(2).click();
          cy.drawingBoardPressAddButtonByElementName('node-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1').click({force: true});
        });
      });

      it('should add vfModule with popup if empty required dynamic input', () => {
        cy.readFile('cypress/support/jsonBuilders/mocks/jsons/serviceWithVnfAndVfModules.json').then((res) => {
          res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_PASQUALE-vPE 0"].vfModules["2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1"].inputs["pasqualevpe0_bandwidth"].default = '';
          res.service.serviceInstance["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_PASQUALE-vPE 0"].vfModules = [];
          cy.setReduxState(<any>res);
          cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
          cy.get('available-models-tree tree-node-expander').eq(2).click();
          cy.drawingBoardPressAddButtonByElementName('node-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1').click({force: true});
          cy.get('#instance-popup').and('be.visible');
        });
      });

    });


    describe('show warning and disable deploy button on vnf missing data', () => {
      it('show warning on vnf, and disable button, remove warning and enable button after edit', () => {
        cy.readFile('cypress/support/jsonBuilders/mocks/jsons/serviceWithVnfAndVfModules.json').then((res) => {
          res.service.serviceInstance['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].existingVNFCounterMap['0903e1c0-8e03-4936-b5c2-260653b96413'] = 1;
          res.service.serviceInstance["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].validationCounter = 1;
          res.service.serviceInstance["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-388_PASQUALE-vPE 1"] = {
            "rollbackOnFailure": "false",
            "vfModules": {},
            "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
            "lcpCloudRegionId": "",
            "tenantId": "",
            "lineOfBusiness": "zzz1",
            "platformName": "platform",
            "isMissingData": true,
            "modelInfo": {
              "modelType": "service",
              "modelInvariantId": "00beb8f9-6d39-452f-816d-c709b9cbb87d",
              "modelVersionId": "0903e1c0-8e03-4936-b5c2-260653b96413",
              "modelName": "2017-388_PASQUALE-vPE",
              "modelVersion": "1.0",
              "modelCustomizationId": "280dec31-f16d-488b-9668-4aae55d6648a",
              "modelCustomizationName": "2017-388_PASQUALE-vPE 1"
            }
          };
          cy.setReduxState(<any>res);
          cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
          cy.getElementByDataTestsId("node-0903e1c0-8e03-4936-b5c2-260653b96413-2017-388_PASQUALE-vPE 1-alert-icon").and('be.visible');
          cy.isElementContainsAttr('deployBtn', 'disabled');
          cy.drawingBoardTreeOpenContextMenuByElementDataTestId('node-0903e1c0-8e03-4936-b5c2-260653b96413-2017-388_PASQUALE-vPE 1')
            .drawingBoardTreeClickOnContextMenuOptionByName('Edit')
          cy.selectDropdownOptionByText('lcpRegion', 'hvf6');
          cy.selectDropdownOptionByText('tenant', 'AIN Web Tool-15-D-testalexandria');
          cy.genericFormSubmitForm();
          cy.getElementByDataTestsId("node-0903e1c0-8e03-4936-b5c2-260653b96413-2017-388_PASQUALE-vPE 1-alert-icon").should('not.be.visible');
          cy.getElementByDataTestsId('deployBtn').should('not.have.attr', 'disabled');
          cy.updateServiceShouldNotOverrideChild();
        });
      });
    });

    describe('vnf should automatically displayed or not according its min value and its vf-modules min value', () => {

      it('vnf with min_instances value > 0 without required VF modules, should be created automatically without children', () => {
        cy.readFile('cypress/support/jsonBuilders/mocks/jsons/basicRedux.json').then((res) => {
          res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_PASQUALE-vPE 0"].properties['min_instances'] = 1;
          res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_PASQUALE-vPE 0"].vfModules["2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0"].properties['initialCount'] = 0;
          res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vfModules["2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0"].properties['initialCount'] = 0;
          cy.setReduxState(<any>res);
          cy.fillServicePopup().then(() => {
            cy.visit("welcome.htm").then(() => {
              cy.visit('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd').then(() => {
                cy.getElementByDataTestsId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0').should('exist');
                cy.getElementByDataTestsId('node-25284168-24bb-4698-8cb4-3f509146eca5-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1').should('not.exist');
                cy.getElementByDataTestsId('node-f8360508-3f17-4414-a2ed-6bc71161e8db-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0').should('not.exist');
              })
            })
          });
        });

      });

      it('vnf with min_instances value > 1 with required VF modules, should be created automatically with children only once', () => {
        cy.readFile('cypress/support/jsonBuilders/mocks/jsons/basicRedux.json').then((res) => {
          res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_PASQUALE-vPE 0"].properties['min_instances'] = 3;
          cy.setReduxState(<any>res);
          cy.fillServicePopup().then(() => {
            cy.visit("welcome.htm").then(() => {
              cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
              cy.getElementByDataTestsId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0').should('exist');
              cy.getElementByDataTestsId('node-f8360508-3f17-4414-a2ed-6bc71161e8db-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0').should('have.length', 1);

            });
          });
        });
      });


      it('vnf with min_instances value = 0 with required VF modules should be created automatically with its children', () => {
        cy.readFile('cypress/support/jsonBuilders/mocks/jsons/basicRedux.json').then((res) => {
          res.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].vnfs["2017-488_PASQUALE-vPE 0"].properties['min_instances'] = 0;
          cy.setReduxState(<any>res);
          cy.fillServicePopup().then(() => {
            cy.visit("welcome.htm").then(() => {
              cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
              cy.getElementByDataTestsId('node-69e09f68-8b63-4cc9-b9ff-860960b5db09-2017-488_PASQUALE-vPE 0').should('exist');
              cy.getElementByDataTestsId('node-f8360508-3f17-4414-a2ed-6bc71161e8db-2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0').should('exist');
              cy.updateServiceShouldNotOverrideChild();
            });
          });
        });

      });


      it('vnf without min_instances and without required VF modules, should not exist automatically in right side', () => {
        cy.readFile('cypress/support/jsonBuilders/mocks/jsons/basicRedux.json').then((res) => {
          cy.setReduxState(<any>res);
          cy.fillServicePopup().then(() => {
            cy.visit("welcome.htm").then(() => {
              cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd');
              cy.getElementByDataTestsId('node-afacccf6-397d-45d6-b5ae-94c39734b168-2017-388_PASQUALE-vPE 0').should('not.exist');
            });
          });
        });
      });
    });
  });

  describe('supplementary file', () => {
    it('delete file', () => {
      let res = getReduxWithVNFS(true);
      let instanceName = 'instanceName';
      cy.setReduxState(<any>res);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6e59c5de-f052-46fa-aa7e-2fca9d674c44');
      const vfModuleNode = 'node-522159d5-d6e0-4c2a-aa44-5a542a12a830-vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1';
      assertEditvfModuleShowFile(vfModuleNode, "sample.json");
      cy.getElementByDataTestsId('remove-uploaded-file').click({force: true});
      cy.getElementByDataTestsId('form-set').should('not.have.attr', 'disabled');
      cy.typeToInput('instanceName', instanceName);
      cy.genericFormSubmitForm();
      cy.getReduxState().then((state) => {
        const serviceInstance = state.service.serviceInstance['6e59c5de-f052-46fa-aa7e-2fca9d674c44'];
        const vfModuleInstance = serviceInstance.vnfs['VF_vGeraldine 0'].vfModules['vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1']['vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1dcudx'];
        chai.expect(vfModuleInstance.supplementaryFile_hidden).to.be.null;
        chai.expect(vfModuleInstance.supplementaryFile_hidden_content).to.be.null;
        chai.expect(vfModuleInstance.supplementaryFileContent).to.be.undefined;
        chai.expect(vfModuleInstance.supplementaryFileName).to.be.undefined;
      });
      cy.getElementByDataTestsId('node-d6557200-ecf2-4641-8094-5393ae3aae60-VF_vGeraldine 0').click();
      assertEditvfModuleShowFile(vfModuleNode, "Choose file");
      cy.getElementByDataTestsId('instanceName').should('have.value', instanceName);
    });
  });

  describe('component info', () => {

    var jsonBuilderAndMock: JsonBuilder<ServiceModel> = new JsonBuilder<ServiceModel>();

    const longText = 'Im a very long text for verify wrapping so please dont make me shorter';

    function testIfComponentInfoShown(flagState:boolean) {
      let res = getReduxWith2VNFS();
      res.global.flags.FLAG_1906_COMPONENT_INFO = flagState;
      res.service.serviceHierarchy["f4d84bb4-a416-4b4e-997e-0059973630b9"].service.serviceRole = longText;
      cy.setReduxState(<any>res);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=f4d84bb4-a416-4b4e-997e-0059973630b9');
      let conditionStr = flagState ? "" : "not.";
      cy.get('component-info').should(conditionStr+"be.visible");
      const otherComponentWidth = flagState ? 5 : 6;
      const otherComponentCss = 'col-md-'+otherComponentWidth ;
      cy.get('available-models-tree').should("have.class", otherComponentCss);
      cy.get('drawing-board-tree').should("have.class", otherComponentCss);
      if (flagState) {
        cy.get('component-info').should("have.class", 'col-md-2');
      }


    }

    it('component info is shown and relevant fields are shown', () => {
      testIfComponentInfoShown(true);

      let labelsAndValues = [
        ['Model version', '1.0'],
        ['Subscriber name', 'SILVIA ROBBINS'],
        ['Service type', 'TYLER SILVIA'],
        ['Service role', longText]
      ];
      const expectedTitle = 'Service Instance INFO';
      cy.assertComponentInfoTitleLabelsAndValues(expectedTitle, labelsAndValues);
      cy.getElementByDataTestsId('model-item-value-Service role').should('have.css', 'height', '32px'); //assert that long text is wrap
    });

  it('component info is not shown when feature flag is false', () => {
      testIfComponentInfoShown(false);
    });
  });

  function addNetworkFromModel(instanceName: string) {
    return cy.get('drawing-board-tree').find('tree-node-content').then((elemets) => {
      cy.get('drawing-board-tree tree-node-content').should('have.have.length', elemets.length);
      cy.drawingBoardPressAddButtonByElementName(instanceName).click({force: true}).then(() => {
        cy.fillNetworkPopup();
        cy.get('drawing-board-tree tree-node-content').should('have.have.length', (elemets.length + 1));
        cy.updateServiceShouldNotOverrideChild();
      });
    });
  }

  function getReduxWith2VNFS() {
    return {
      "global": {
        "name": null,
        "flags": {
          "FLAG_SHOW_ASSIGNMENTS": true,
          "FLAG_SHOW_VERIFY_SERVICE": false,
          "EMPTY_DRAWING_BOARD_TEST": false,
          "FLAG_ADD_MSO_TESTAPI_FIELD": true,
          "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
          "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
          "FLAG_SERVICE_MODEL_CACHE": true,
          "CREATE_INSTANCE_TEST": false,
          "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": false,
          "FLAG_1906_COMPONENT_INFO" : false
        },
        "type": "[FLAGS] Update"
      },
      "service": {
        "serviceHierarchy": {
          "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
            "service": {
              "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
              "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
              "name": "ComplexService",
              "version": "1.0",
              "toscaModelURL": null,
              "category": "Emanuel",
              "serviceType": "",
              "serviceRole": "",
              "description": "ComplexService",
              "serviceEcompNaming": "true",
              "instantiationType": "Macro",
              "vidNotions": {
                "instantiationType": "Macro"
              },
              "inputs": {}
            },
            "vnfs": {
              "VF_vGeraldine 0": {
                "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60",
                "invariantUuid": "4160458e-f648-4b30-a176-43881ffffe9e",
                "description": "VSP_vGeraldine",
                "name": "VF_vGeraldine",
                "version": "2.0",
                "customizationUuid": "91415b44-753d-494c-926a-456a9172bbb9",
                "inputs": {},
                "commands": {},
                "properties": {
                  "gpb2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-ipv6-egress_rule_application": "any",
                  "sctp-b-ipv6-egress_src_start_port": "0",
                  "Internal2_allow_transit": "true",
                  "sctp-b-IPv6_ethertype": "IPv6",
                  "ncb2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ingress_rule_protocol": "icmp",
                  "sctp-b-ingress_action": "pass",
                  "sctp-a-egress_rule_application": "any",
                  "sctp-b-ipv6-ingress-src_start_port": "0.0",
                  "ncb1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-egress_src_addresses": "local",
                  "fsb_volume_size_0": "320.0",
                  "sctp-a-ipv6-ingress-dst_start_port": "0",
                  "sctp-a-ipv6-ingress_ethertype": "IPv4",
                  "sctp-b-ipv6-ingress_rule_application": "any",
                  "domain_name": "default-domain",
                  "sctp-a-egress_src_addresses": "local",
                  "sctp-b-egress-src_start_port": "0.0",
                  "sctp-a-ingress_rule_protocol": "icmp",
                  "sctp-b-display_name": "epc-sctp-b-ipv4v6-sec-group",
                  "sctp-b-ipv6-ingress-dst_end_port": "65535",
                  "sctp-a-ingress_ethertype": "IPv4",
                  "sctp-a-egress-src_start_port": "0.0",
                  "sctp-b-dst_subnet_prefix_v6": "::",
                  "nf_naming": "{ecomp_generated_naming=false}",
                  "sctp-a-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
                  "sctp-b-egress-dst_start_port": "0.0",
                  "ncb_flavor_name": "nv.c20r64d1",
                  "sctp-b-egress_dst_subnet_prefix_len": "0.0",
                  "gpb1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "Internal2_net_cidr": "10.0.0.10",
                  "sctp-a-ingress-dst_start_port": "0.0",
                  "fsb1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-egress-dst_start_port": "0.0",
                  "sctp-a-egress_ethertype": "IPv4",
                  "vlc_st_service_mode": "in-network-nat",
                  "sctp-a-ipv6-egress_ethertype": "IPv4",
                  "sctp-a-egress-src_end_port": "65535.0",
                  "sctp-b-egress_action": "pass",
                  "sctp-b-ipv6-egress_rule_application": "any",
                  "sctp-a-ingress-src_subnet_prefix_len": "0.0",
                  "sctp-b-ipv6-ingress-src_end_port": "65535.0",
                  "sctp-a-ipv6-ingress-src_start_port": "0.0",
                  "fsb2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-name": "epc-sctp-b-ipv4v6-sec-group",
                  "sctp-b-ipv6-egress_ethertype": "IPv4",
                  "Internal1_net_cidr": "10.0.0.10",
                  "sctp-a-egress_dst_subnet_prefix": "0.0.0.0",
                  "fsb_flavor_name": "nv.c20r64d1",
                  "sctp_rule_protocol": "132",
                  "sctp-a-ipv6-ingress_rule_application": "any",
                  "sctp-b-ipv6-ingress_src_subnet_prefix_len": "0",
                  "ecomp_generated_naming": "false",
                  "sctp-a-IPv6_ethertype": "IPv6",
                  "vlc_st_virtualization_type": "virtual-machine",
                  "vlc2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ingress-dst_end_port": "65535.0",
                  "sctp-b-ingress-dst_start_port": "0.0",
                  "sctp-a-ipv6-ingress-src_end_port": "65535.0",
                  "sctp-a-display_name": "epc-sctp-a-ipv4v6-sec-group",
                  "sctp-b-ingress_rule_application": "any",
                  "vlc_flavor_name": "nd.c16r64d1",
                  "int2_sec_group_name": "int2-sec-group",
                  "sctp-b-ipv6-egress_src_addresses": "local",
                  "vlc_st_interface_type_int1": "other1",
                  "vlc_st_interface_type_int2": "other2",
                  "sctp-a-ipv6-egress-dst_start_port": "0",
                  "sctp-b-egress-src_end_port": "65535.0",
                  "sctp-a-ipv6-egress_dst_subnet_prefix_len": "0",
                  "Internal2_shared": "false",
                  "sctp-a-ipv6-egress_rule_protocol": "any",
                  "Internal2_rpf": "disable",
                  "vlc1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ipv6-egress_src_end_port": "65535",
                  "sctp-a-ipv6-egress_src_addresses": "local",
                  "sctp-a-ingress-dst_end_port": "65535.0",
                  "sctp-a-ipv6-egress_src_end_port": "65535",
                  "Internal1_forwarding_mode": "l2",
                  "Internal2_dhcp": "false",
                  "sctp-a-dst_subnet_prefix_v6": "::",
                  "pxe_image_name": "MME_PXE-Boot_16ACP04_GA.qcow2",
                  "vlc_st_interface_type_gtp": "other0",
                  "ncb1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-src_subnet_prefix_v6": "::",
                  "sctp-a-egress_dst_subnet_prefix_len": "0.0",
                  "int1_sec_group_name": "int1-sec-group",
                  "Internal1_dhcp": "false",
                  "fsb2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "Internal2_forwarding_mode": "l2",
                  "sctp-a-ipv6-egress_dst_end_port": "65535",
                  "sctp-b-egress_dst_subnet_prefix": "0.0.0.0",
                  "Internal1_net_cidr_len": "17",
                  "gpb2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-ingress_dst_addresses": "local",
                  "sctp-b-ingress-src_subnet_prefix_len": "0.0",
                  "sctp-a-egress_action": "pass",
                  "fsb_volume_type_0": "SF-Default-SSD",
                  "ncb2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_interface_type_sctp_a": "left",
                  "vlc_st_version": "2",
                  "sctp-a-src_subnet_prefix_v6": "::",
                  "vlc_st_interface_type_sctp_b": "right",
                  "sctp-a-ingress_rule_application": "any",
                  "sctp-b-egress_ethertype": "IPv4",
                  "sctp-a-ipv6-egress_src_start_port": "0",
                  "instance_ip_family_v6": "v6",
                  "gpb1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ingress-src_start_port": "0.0",
                  "fsb1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ingress_dst_addresses": "local",
                  "vlc_st_interface_type_oam": "management",
                  "multi_stage_design": "false",
                  "oam_sec_group_name": "oam-sec-group",
                  "Internal2_net_gateway": "10.0.0.10",
                  "sctp-a-ipv6-ingress-dst_end_port": "65535",
                  "Internal1_net_gateway": "10.0.0.10",
                  "sctp-b-ipv6-egress-dst_start_port": "0",
                  "sctp-b-ipv6-egress_rule_protocol": "any",
                  "gtp_sec_group_name": "gtp-sec-group",
                  "sctp-a-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
                  "sctp-a-ipv6-ingress_dst_addresses": "local",
                  "sctp-b-ipv6-egress_dst_subnet_prefix_len": "0",
                  "sctp-b-ipv6-egress_action": "pass",
                  "sctp-a-egress_rule_protocol": "icmp",
                  "sctp-a-ipv6-egress_action": "pass",
                  "Internal1_shared": "false",
                  "sctp-b-ipv6-ingress_rule_protocol": "any",
                  "Internal2_net_cidr_len": "17",
                  "sctp-a-name": "epc-sctp-a-ipv4v6-sec-group",
                  "sctp-a-ingress-src_end_port": "65535.0",
                  "sctp-b-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
                  "sctp-a-egress-dst_end_port": "65535.0",
                  "sctp-b-egress_rule_protocol": "icmp",
                  "sctp-a-ingress_action": "pass",
                  "sctp-b-ipv6-ingress_action": "pass",
                  "vlc_st_service_type": "firewall",
                  "sctp-b-ipv6-egress_dst_end_port": "65535",
                  "vlc2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ipv6-ingress-dst_start_port": "0",
                  "vlc_st_availability_zone": "true",
                  "sctp-b-ingress-src_subnet_prefix": "0.0.0.0",
                  "fsb_volume_image_name_1": "MME_FSB2_16ACP04_GA.qcow2",
                  "sctp-a-ipv6-ingress_src_subnet_prefix_len": "0",
                  "gpb_flavor_name": "nv.c20r64d1",
                  "Internal1_allow_transit": "true",
                  "availability_zone_max_count": "1",
                  "fsb_volume_image_name_0": "MME_FSB1_16ACP04_GA.qcow2",
                  "sctp-b-ipv6-ingress_dst_addresses": "local",
                  "sctp-b-ipv6-ingress_ethertype": "IPv4",
                  "sctp-b-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
                  "sctp-a-ingress-src_subnet_prefix": "0.0.0.0",
                  "vlc1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-ipv6-ingress_action": "pass",
                  "Internal1_rpf": "disable",
                  "sctp-b-ingress_ethertype": "IPv4",
                  "sctp-b-ingress-src_end_port": "65535.0",
                  "sctp-b-egress_rule_application": "any",
                  "sctp-a-ipv6-ingress_rule_protocol": "any",
                  "sctp-a-ingress-src_start_port": "0.0",
                  "sctp-b-egress-dst_end_port": "65535.0"
                },
                "type": "VF",
                "modelCustomizationName": "VF_vGeraldine 0",
                "vfModules": {
                  "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1": {
                    "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
                    "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
                    "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
                    "description": null,
                    "name": "VfVgeraldine..vflorence_vlc..module-1",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..vflorence_vlc..module-1",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "vflorence_vlc"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": false
                  },
                  "vf_vgeraldine0..VfVgeraldine..vflorence_gpb..module-2": {
                    "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
                    "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
                    "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
                    "description": null,
                    "name": "VfVgeraldine..vflorence_gpb..module-2",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..vflorence_gpb..module-2",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "vflorence_gpb"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": false
                  },
                  "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                    "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                    "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                    "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                    "description": null,
                    "name": "VfVgeraldine..base_vflorence..module-0",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                    "properties": {
                      "minCountInstances": 1,
                      "maxCountInstances": 1,
                      "initialCount": 1,
                      "vfModuleLabel": "base_vflorence"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": true
                  }
                },
                "volumeGroups": {
                  "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                    "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                    "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                    "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                    "description": null,
                    "name": "VfVgeraldine..base_vflorence..module-0",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                    "properties": {
                      "minCountInstances": 1,
                      "maxCountInstances": 1,
                      "initialCount": 1,
                      "vfModuleLabel": "base_vflorence"
                    },
                    "inputs": {}
                  }
                },
                "vfcInstanceGroups": {}
              }
            },
            "networks": {
              "ExtVL 0": {
                "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
                "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
                "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
                "name": "ExtVL",
                "version": "37.0",
                "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
                "inputs": {},
                "commands": {},
                "properties": {
                  "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}}",
                  "exVL_naming": "{ecomp_generated_naming=true}",
                  "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
                  "network_homing": "{ecomp_selected_instance_node_target=false}"
                },
                "type": "VL",
                "modelCustomizationName": "ExtVL 0"
              }
            },
            "collectionResources": {},
            "configurations": {
              "Port Mirroring Configuration By Policy 0": {
                "uuid": "b4398538-e89d-4f13-b33d-ca323434ba50",
                "invariantUuid": "6ef0ca40-f366-4897-951f-abd65d25f6f7",
                "description": "A port mirroring configuration by policy object",
                "name": "Port Mirroring Configuration By Policy",
                "version": "27.0",
                "customizationUuid": "3c3b7b8d-8669-4b3b-8664-61970041fad2",
                "inputs": {},
                "commands": {},
                "properties": {},
                "type": "Configuration",
                "modelCustomizationName": "Port Mirroring Configuration By Policy 0",
                "sourceNodes": [],
                "collectorNodes": null,
                "configurationByPolicy": false
              }
            },
            "serviceProxies": {},
            "vfModules": {
              "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1": {
                "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
                "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
                "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
                "description": null,
                "name": "VfVgeraldine..vflorence_vlc..module-1",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..vflorence_vlc..module-1",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "vflorence_vlc"
                },
                "inputs": {},
                "volumeGroupAllowed": false
              },
              "vf_vgeraldine0..VfVgeraldine..vflorence_gpb..module-2": {
                "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
                "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
                "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
                "description": null,
                "name": "VfVgeraldine..vflorence_gpb..module-2",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..vflorence_gpb..module-2",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "vflorence_gpb"
                },
                "inputs": {},
                "volumeGroupAllowed": false
              },
              "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                "description": null,
                "name": "VfVgeraldine..base_vflorence..module-0",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                "properties": {
                  "minCountInstances": 1,
                  "maxCountInstances": 1,
                  "initialCount": 1,
                  "vfModuleLabel": "base_vflorence"
                },
                "inputs": {},
                "volumeGroupAllowed": true
              }
            },
            "volumeGroups": {
              "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                "description": null,
                "name": "VfVgeraldine..base_vflorence..module-0",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                "properties": {
                  "minCountInstances": 1,
                  "maxCountInstances": 1,
                  "initialCount": 1,
                  "vfModuleLabel": "base_vflorence"
                },
                "inputs": {}
              }
            },
            "pnfs": {}
          },
          "f4d84bb4-a416-4b4e-997e-0059973630b9": {
            "service": {
              "uuid": "f4d84bb4-a416-4b4e-997e-0059973630b9",
              "invariantUuid": "598e3f9e-3244-4d8f-a8e0-0e5d7a29eda9",
              "name": "PASQUALE vMX vPE_BV Service 488",
              "version": "1.0",
              "toscaModelURL": null,
              "category": "Network L1-3",
              "serviceType": "",
              "serviceRole": "",
              "description": "PASQUALE vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM",
              "serviceEcompNaming": "true",
              "instantiationType": "Macro",
              "vidNotions": {
                "instantiationType": "Macro"
              },
              "inputs": {
                "2017488_pasqualevpe0_ASN": {
                  "type": "string",
                  "description": "AV/PE",
                  "entry_schema": null,
                  "inputProperties": null,
                  "constraints": [],
                  "required": true,
                  "default": "AV_vPE"
                }
              }
            },
            "vnfs": {
              "2017-488_PASQUALE-vPE 0": {
                "uuid": "ea81d6f7-0861-44a7-b7d5-d173b562c350",
                "invariantUuid": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
                "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",
                "name": "2017-488_PASQUALE-vPE",
                "version": "9.0",
                "customizationUuid": "41516cc6-5098-4b40-a619-f8d5f55fc4d8",
                "inputs": {
                  "vnf_config_template_version": {
                    "type": "string",
                    "description": "VPE Software Version",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "17.2"
                  },
                  "bandwidth_units": {
                    "type": "string",
                    "description": "Units of bandwidth",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "Gbps"
                  },
                  "bandwidth": {
                    "type": "string",
                    "description": "Requested VPE bandwidth",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "10"
                  },
                  "AIC_CLLI": {
                    "type": "string",
                    "description": "AIC Site CLLI",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "ATLMY8GA"
                  },
                  "availability_zone_0": {
                    "type": "string",
                    "description": "The Availability Zone to launch the instance.",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "mtpocfo-kvm-az01"
                  },
                  "ASN": {
                    "type": "string",
                    "description": "AV/PE",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "AV_vPE"
                  },
                  "vnf_instance_name": {
                    "type": "string",
                    "description": "The hostname assigned to the vpe.",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "mtnj309me6"
                  }
                },
                "commands": {
                  "vnf_config_template_version": {
                    "displayName": "vnf_config_template_version",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_vnf_config_template_version"
                  },
                  "bandwidth_units": {
                    "displayName": "bandwidth_units",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_bandwidth_units"
                  },
                  "bandwidth": {
                    "displayName": "bandwidth",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_bandwidth"
                  },
                  "AIC_CLLI": {
                    "displayName": "AIC_CLLI",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_AIC_CLLI"
                  },
                  "availability_zone_0": {
                    "displayName": "availability_zone_0",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_availability_zone_0"
                  },
                  "ASN": {
                    "displayName": "ASN",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_ASN"
                  },
                  "vnf_instance_name": {
                    "displayName": "vnf_instance_name",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_vnf_instance_name"
                  }
                },
                "properties": {
                  "max_instances": 10,
                  "min_instances": 1,
                  "vmxvre_retype": "RE-VMX",
                  "vnf_config_template_version": "get_input:2017488_pasqualevpe0_vnf_config_template_version",
                  "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
                  "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
                  "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
                  "int_ctl_net_name": "VMX-INTXI",
                  "vmx_int_ctl_prefix": "10.0.0.10",
                  "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
                  "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
                  "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
                  "nf_type": "ROUTER",
                  "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
                  "is_AVPN_service": "false",
                  "vmx_RSG_name": "vREXI-affinity",
                  "vmx_int_ctl_forwarding": "l2",
                  "vmxvre_oam_ip_0": "10.0.0.10",
                  "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
                  "vmxvpfe_sriov41_0_port_vlanstrip": "false",
                  "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
                  "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
                  "vmxvre_image_name_0": "vre172_nova_img",
                  "vmxvre_instance": "0",
                  "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
                  "vmxvre_flavor_name": "ns.c1r16d32.v5",
                  "vmxvpfe_volume_size_0": "40.0",
                  "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
                  "nf_naming": "{ecomp_generated_naming=true}",
                  "multi_stage_design": "false",
                  "nf_naming_code": "me6",
                  "vmxvre_name_0": "vREXI",
                  "vmxvpfe_sriov42_0_port_vlanstrip": "false",
                  "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
                  "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
                  "vmxvpfe_image_name_0": "vpfe172_nova_img",
                  "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
                  "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
                  "vmxvre_console": "vidconsole",
                  "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
                  "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
                  "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
                  "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
                  "vmxvpfe_sriov44_0_port_vlanstrip": "false",
                  "vf_module_id": "123",
                  "nf_function": "PASQUALE vPE",
                  "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
                  "vmxvre_int_ctl_ip_0": "10.0.0.10",
                  "ecomp_generated_naming": "true",
                  "AIC_CLLI": "get_input:2017488_pasqualevpe0_AIC_CLLI",
                  "vnf_name": "mtnj309me6vre",
                  "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
                  "vmxvre_volume_type_1": "HITACHI",
                  "vmxvpfe_sriov44_0_port_broadcastallow": "true",
                  "vmxvre_volume_type_0": "HITACHI",
                  "vmxvpfe_volume_type_0": "HITACHI",
                  "vmxvpfe_sriov43_0_port_broadcastallow": "true",
                  "bandwidth_units": "get_input:2017488_pasqualevpe0_bandwidth_units",
                  "vnf_id": "123",
                  "vmxvre_oam_prefix": "24",
                  "availability_zone_0": "get_input:2017488_pasqualevpe0_availability_zone_0",
                  "ASN": "get_input:2017488_pasqualevpe0_ASN",
                  "vmxvre_chassis_i2cid": "161",
                  "vmxvpfe_name_0": "vPFEXI",
                  "bandwidth": "get_input:2017488_pasqualevpe0_bandwidth",
                  "availability_zone_max_count": "1",
                  "vmxvre_volume_size_0": "45.0",
                  "vmxvre_volume_size_1": "50.0",
                  "vmxvpfe_sriov42_0_port_broadcastallow": "true",
                  "vmxvre_oam_gateway": "10.0.0.10",
                  "vmxvre_volume_name_1": "vREXI_FAVolume",
                  "vmxvre_ore_present": "0",
                  "vmxvre_volume_name_0": "vREXI_FBVolume",
                  "vmxvre_type": "0",
                  "vnf_instance_name": "get_input:2017488_pasqualevpe0_vnf_instance_name",
                  "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
                  "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
                  "vmx_int_ctl_len": "24",
                  "vmxvpfe_sriov43_0_port_vlanstrip": "false",
                  "vmxvpfe_sriov41_0_port_broadcastallow": "true",
                  "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
                  "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
                  "nf_role": "vPE",
                  "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
                  "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
                  "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
                },
                "type": "VF",
                "modelCustomizationName": "2017-488_PASQUALE-vPE 0",
                "vfModules": {
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                    "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
                    "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                    "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "version": "8",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "PASQUALE_vRE_BV"
                    },
                    "inputs": {
                      "2017488_pasqualevpe0_bandwidth_units": {
                        "type": "string",
                        "description": "Units of bandwidth",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "bandwidth_units"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "Gbps"
                      },
                      "2017488_pasqualevpe0_bandwidth": {
                        "type": "string",
                        "description": "Requested VPE bandwidth",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "bandwidth"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "10"
                      },
                      "2017488_pasqualevpe0_vnf_instance_name": {
                        "type": "string",
                        "description": "The hostname assigned to the vpe.",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "vnf_instance_name"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "mtnj309me6"
                      },
                      "2017488_pasqualevpe0_vnf_config_template_version": {
                        "type": "string",
                        "description": "VPE Software Version",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "vnf_config_template_version"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "17.2"
                      },
                      "2017488_pasqualevpe0_AIC_CLLI": {
                        "type": "string",
                        "description": "AIC Site CLLI",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "AIC_CLLI"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "ATLMY8GA"
                      }
                    },
                    "volumeGroupAllowed": true
                  },
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
                    "uuid": "040e591e-5d30-4e0d-850f-7266e5a8e013",
                    "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
                    "customizationUuid": "5c5f91f9-5e31-4120-b892-5536587ec258",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                    "version": "6",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                    "properties": {
                      "minCountInstances": 1,
                      "maxCountInstances": 1,
                      "initialCount": 1,
                      "vfModuleLabel": "PASQUALE_base_vPE_BV"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": false
                  },
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                    "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
                    "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                    "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                    "version": "8",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "PASQUALE_vPFE_BV"
                    },
                    "inputs": {
                      "2017488_pasqualevpe0_availability_zone_0": {
                        "type": "string",
                        "description": "The Availability Zone to launch the instance.",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vPFE_BV",
                          "paramName": "availability_zone_0"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "mtpocfo-kvm-az01"
                      }
                    },
                    "volumeGroupAllowed": true
                  }
                },
                "volumeGroups": {
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                    "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
                    "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                    "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "version": "8",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "PASQUALE_vRE_BV"
                    },
                    "inputs": {
                      "2017488_pasqualevpe0_bandwidth_units": {
                        "type": "string",
                        "description": "Units of bandwidth",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "bandwidth_units"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "Gbps"
                      },
                      "2017488_pasqualevpe0_bandwidth": {
                        "type": "string",
                        "description": "Requested VPE bandwidth",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "bandwidth"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "10"
                      },
                      "2017488_pasqualevpe0_vnf_instance_name": {
                        "type": "string",
                        "description": "The hostname assigned to the vpe.",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "vnf_instance_name"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "mtnj309me6"
                      },
                      "2017488_pasqualevpe0_vnf_config_template_version": {
                        "type": "string",
                        "description": "VPE Software Version",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "vnf_config_template_version"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "17.2"
                      },
                      "2017488_pasqualevpe0_AIC_CLLI": {
                        "type": "string",
                        "description": "AIC Site CLLI",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "AIC_CLLI"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "ATLMY8GA"
                      }
                    }
                  },
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                    "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
                    "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                    "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                    "version": "8",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "PASQUALE_vPFE_BV"
                    },
                    "inputs": {
                      "2017488_pasqualevpe0_availability_zone_0": {
                        "type": "string",
                        "description": "The Availability Zone to launch the instance.",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vPFE_BV",
                          "paramName": "availability_zone_0"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "mtpocfo-kvm-az01"
                      }
                    }
                  }
                },
                "vfcInstanceGroups": {}
              }
            },
            "networks": {},
            "collectionResources": {},
            "configurations": {},
            "serviceProxies": {},
            "vfModules": {
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
                "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "version": "8",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vRE_BV"
                },
                "inputs": {
                  "2017488_pasqualevpe0_bandwidth_units": {
                    "type": "string",
                    "description": "Units of bandwidth",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "bandwidth_units"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "Gbps"
                  },
                  "2017488_pasqualevpe0_bandwidth": {
                    "type": "string",
                    "description": "Requested VPE bandwidth",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "bandwidth"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "10"
                  },
                  "2017488_pasqualevpe0_vnf_instance_name": {
                    "type": "string",
                    "description": "The hostname assigned to the vpe.",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "vnf_instance_name"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "mtnj309me6"
                  },
                  "2017488_pasqualevpe0_vnf_config_template_version": {
                    "type": "string",
                    "description": "VPE Software Version",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "vnf_config_template_version"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "17.2"
                  },
                  "2017488_pasqualevpe0_AIC_CLLI": {
                    "type": "string",
                    "description": "AIC Site CLLI",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "AIC_CLLI"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "ATLMY8GA"
                  }
                },
                "volumeGroupAllowed": true
              },
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
                "uuid": "040e591e-5d30-4e0d-850f-7266e5a8e013",
                "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
                "customizationUuid": "5c5f91f9-5e31-4120-b892-5536587ec258",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                "version": "6",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                "properties": {
                  "minCountInstances": 1,
                  "maxCountInstances": 1,
                  "initialCount": 1,
                  "vfModuleLabel": "PASQUALE_base_vPE_BV"
                },
                "inputs": {},
                "volumeGroupAllowed": false
              },
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
                "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "version": "8",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vPFE_BV"
                },
                "inputs": {
                  "2017488_pasqualevpe0_availability_zone_0": {
                    "type": "string",
                    "description": "The Availability Zone to launch the instance.",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vPFE_BV",
                      "paramName": "availability_zone_0"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "mtpocfo-kvm-az01"
                  }
                },
                "volumeGroupAllowed": true
              }
            },
            "volumeGroups": {
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
                "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "version": "8",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vRE_BV"
                },
                "inputs": {
                  "2017488_pasqualevpe0_bandwidth_units": {
                    "type": "string",
                    "description": "Units of bandwidth",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "bandwidth_units"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "Gbps"
                  },
                  "2017488_pasqualevpe0_bandwidth": {
                    "type": "string",
                    "description": "Requested VPE bandwidth",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "bandwidth"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "10"
                  },
                  "2017488_pasqualevpe0_vnf_instance_name": {
                    "type": "string",
                    "description": "The hostname assigned to the vpe.",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "vnf_instance_name"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "mtnj309me6"
                  },
                  "2017488_pasqualevpe0_vnf_config_template_version": {
                    "type": "string",
                    "description": "VPE Software Version",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "vnf_config_template_version"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "17.2"
                  },
                  "2017488_pasqualevpe0_AIC_CLLI": {
                    "type": "string",
                    "description": "AIC Site CLLI",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "AIC_CLLI"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "ATLMY8GA"
                  }
                }
              },
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
                "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "version": "8",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vPFE_BV"
                },
                "inputs": {
                  "2017488_pasqualevpe0_availability_zone_0": {
                    "type": "string",
                    "description": "The Availability Zone to launch the instance.",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vPFE_BV",
                      "paramName": "availability_zone_0"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "mtpocfo-kvm-az01"
                  }
                }
              }
            },
            "pnfs": {}
          }
        },
        "serviceInstance": {
          "f4d84bb4-a416-4b4e-997e-0059973630b9": {
            "vnfs": {
              "2017-488_PASQUALE-vPE 0": {
                "rollbackOnFailure": "true",
                "vfModules": {
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
                    "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0eknhp": {
                      "modelInfo": {
                        "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
                        "modelVersionId": "040e591e-5d30-4e0d-850f-7266e5a8e013",
                        "modelName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                        "modelVersion": "6",
                        "modelCustomizationId": "5c5f91f9-5e31-4120-b892-5536587ec258",
                        "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0"
                      },
                      "isMissingData": false,
                      "instanceParams": [
                        {}
                      ]
                    }
                  }
                },
                "isMissingData": false,
                "originalName": null,
                "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
                "lcpCloudRegionId": "hvf6",
                "tenantId": "bae71557c5bb4d5aac6743a4e5f1d054",
                "lineOfBusiness": "ONAP",
                "platformName": "platform",
                "modelInfo": {
                  "modelInvariantId": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
                  "modelVersionId": "ea81d6f7-0861-44a7-b7d5-d173b562c350",
                  "modelName": "2017-488_PASQUALE-vPE",
                  "modelVersion": "9.0",
                  "modelCustomizationId": "41516cc6-5098-4b40-a619-f8d5f55fc4d8",
                  "modelCustomizationName": "2017-488_PASQUALE-vPE 0"
                }
              },
              "2017-488_PASQUALE-vPE 0:0001": {
                "rollbackOnFailure": "true",
                "vfModules": {},
                "isMissingData": false,
                "originalName": "2017-488_PASQUALE-vPE 0",
                "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
                "lcpCloudRegionId": "hvf6",
                "tenantId": "bae71557c5bb4d5aac6743a4e5f1d054",
                "lineOfBusiness": "ONAP",
                "platformName": "platform",
                "modelInfo": {
                  "modelInvariantId": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
                  "modelVersionId": "ea81d6f7-0861-44a7-b7d5-d173b562c350",
                  "modelName": "2017-488_PASQUALE-vPE",
                  "modelVersion": "9.0",
                  "modelCustomizationId": "41516cc6-5098-4b40-a619-f8d5f55fc4d8",
                  "modelCustomizationName": "2017-488_PASQUALE-vPE 0"
                }
              }
            },
            "instanceParams": [
              {
                "2017488_pasqualevpe0_ASN": "AV_vPE"
              }
            ],
            "validationCounter": 0,
            "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
            "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
            "subscriptionServiceType": "TYLER SILVIA",
            "lcpCloudRegionId": "AAIAIC25",
            "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
            "aicZoneId": "JAG1",
            "projectName": "x1",
            "owningEntityId": "aaa1",
            "rollbackOnFailure": "false",
            "bulkSize": 1,
            "modelInfo": {
              "modelInvariantId": "598e3f9e-3244-4d8f-a8e0-0e5d7a29eda9",
              "modelVersionId": "f4d84bb4-a416-4b4e-997e-0059973630b9",
              "modelName": "PASQUALE vMX vPE_BV Service 488",
              "modelVersion": "1.0"
            },
            "tenantName": "USP-SIP-IC-24335-T-01",
            "existingVNFCounterMap": {
              "41516cc6-5098-4b40-a619-f8d5f55fc4d8": 1
            },
            "existingNames": {},
            "aicZoneName": "YUDFJULP-JAG1"
          }
        },
        "lcpRegionsAndTenants": {
          "lcpRegionList": [
            {
              "id": "AAIAIC25",
              "name": "AAIAIC25",
              "isPermitted": true
            },
            {
              "id": "hvf6",
              "name": "hvf6",
              "isPermitted": true
            }
          ],
          "lcpRegionsTenantsMap": {
            "AAIAIC25": [
              {
                "id": "092eb9e8e4b7412e8787dd091bc58e86",
                "name": "USP-SIP-IC-24335-T-01",
                "isPermitted": true
              }
            ],
            "hvf6": [
              {
                "id": "bae71557c5bb4d5aac6743a4e5f1d054",
                "name": "AIN Web Tool-15-D-testalexandria",
                "isPermitted": true
              },
              {
                "id": "d0a3e3f2964542259d155a81c41aadc3",
                "name": "test-hvf6-09",
                "isPermitted": true
              },
              {
                "id": "fa45ca53c80b492fa8be5477cd84fc2b",
                "name": "ro-T112",
                "isPermitted": true
              },
              {
                "id": "cbb99fe4ada84631b7baf046b6fd2044",
                "name": "DN5242-Nov16-T3",
                "isPermitted": true
              }
            ]
          }
        },
        "subscribers": [
          {
            "id": "CAR_2020_ER",
            "name": "CAR_2020_ER",
            "isPermitted": true
          },
          {
            "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
            "name": "JULIO ERICKSON",
            "isPermitted": false
          },
          {
            "id": "DHV1707-TestSubscriber-2",
            "name": "DALE BRIDGES",
            "isPermitted": false
          },
          {
            "id": "DHV1707-TestSubscriber-1",
            "name": "LLOYD BRIDGES",
            "isPermitted": false
          },
          {
            "id": "jimmy-example",
            "name": "JimmyExampleCust-20161102",
            "isPermitted": false
          },
          {
            "id": "jimmy-example2",
            "name": "JimmyExampleCust-20161103",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-TestSub-PWT-102",
            "name": "ERICA5779-TestSub-PWT-102",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-TestSub-PWT-101",
            "name": "ERICA5779-TestSub-PWT-101",
            "isPermitted": false
          },
          {
            "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
            "name": "Emanuel",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-Subscriber-4",
            "name": "ERICA5779-Subscriber-5",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-TestSub-PWT-103",
            "name": "ERICA5779-TestSub-PWT-103",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-Subscriber-2",
            "name": "ERICA5779-Subscriber-2",
            "isPermitted": false
          },
          {
            "id": "e433710f-9217-458d-a79d-1c7aff376d89",
            "name": "SILVIA ROBBINS",
            "isPermitted": true
          },
          {
            "id": "ERICA5779-Subscriber-3",
            "name": "ERICA5779-Subscriber-3",
            "isPermitted": false
          },
          {
            "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
            "name": "CRAIG/ROBERTS",
            "isPermitted": false
          }
        ],
        "productFamilies": [
          {
            "id": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
            "name": "ERICA",
            "isPermitted": true
          },
          {
            "id": "17cc1042-527b-11e6-beb8-9e71128cae77",
            "name": "IGNACIO",
            "isPermitted": true
          },
          {
            "id": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
            "name": "Christie",
            "isPermitted": true
          },
          {
            "id": "a4f6f2ae-9bf5-4ed7-b904-06b2099c4bd7",
            "name": "Enhanced Services",
            "isPermitted": true
          },
          {
            "id": "vTerrance",
            "name": "vTerrance",
            "isPermitted": true
          },
          {
            "id": "323d69d9-2efe-4r45-ay0a-89ea7ard4e6f",
            "name": "vEsmeralda",
            "isPermitted": true
          },
          {
            "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
            "name": "Emanuel",
            "isPermitted": true
          },
          {
            "id": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
            "name": "BVOIP",
            "isPermitted": true
          },
          {
            "id": "db171b8f-115c-4992-a2e3-ee04cae357e0",
            "name": "LINDSEY",
            "isPermitted": true
          },
          {
            "id": "LRSI-OSPF",
            "name": "LRSI-OSPF",
            "isPermitted": true
          },
          {
            "id": "vRosemarie",
            "name": "HNGATEWAY",
            "isPermitted": true
          },
          {
            "id": "vHNPaas",
            "name": "WILKINS",
            "isPermitted": true
          },
          {
            "id": "e433710f-9217-458d-a79d-1c7aff376d89",
            "name": "TYLER SILVIA",
            "isPermitted": true
          },
          {
            "id": "b6a3f28c-eebf-494c-a900-055cc7c874ce",
            "name": "VROUTER",
            "isPermitted": true
          },
          {
            "id": "vMuriel",
            "name": "vMuriel",
            "isPermitted": true
          },
          {
            "id": "0ee8c1bc-7cbd-4b0a-a1ac-e9999255abc1",
            "name": "CARA Griffin",
            "isPermitted": true
          },
          {
            "id": "c7611ebe-c324-48f1-8085-94aef0c6ef3d",
            "name": "DARREN MCGEE",
            "isPermitted": true
          },
          {
            "id": "e30755dc-5673-4b6b-9dcf-9abdd96b93d1",
            "name": "Transport",
            "isPermitted": true
          },
          {
            "id": "vSalvatore",
            "name": "vSalvatore",
            "isPermitted": true
          },
          {
            "id": "d7bb0a21-66f2-4e6d-87d9-9ef3ced63ae4",
            "name": "JOSEFINA",
            "isPermitted": true
          },
          {
            "id": "vHubbard",
            "name": "vHubbard",
            "isPermitted": true
          },
          {
            "id": "12a96a9d-4b4c-4349-a950-fe1159602621",
            "name": "DARREN MCGEE",
            "isPermitted": true
          }
        ],
        "serviceTypes": {
          "e433710f-9217-458d-a79d-1c7aff376d89": [
            {
              "id": "0",
              "name": "vRichardson",
              "isPermitted": false
            },
            {
              "id": "1",
              "name": "TYLER SILVIA",
              "isPermitted": true
            },
            {
              "id": "2",
              "name": "Emanuel",
              "isPermitted": false
            },
            {
              "id": "3",
              "name": "vJamie",
              "isPermitted": false
            },
            {
              "id": "4",
              "name": "vVoiceMail",
              "isPermitted": false
            },
            {
              "id": "5",
              "name": "Kennedy",
              "isPermitted": false
            },
            {
              "id": "6",
              "name": "vPorfirio",
              "isPermitted": false
            },
            {
              "id": "7",
              "name": "vVM",
              "isPermitted": false
            },
            {
              "id": "8",
              "name": "vOTA",
              "isPermitted": false
            },
            {
              "id": "9",
              "name": "vFLORENCE",
              "isPermitted": false
            },
            {
              "id": "10",
              "name": "vMNS",
              "isPermitted": false
            },
            {
              "id": "11",
              "name": "vEsmeralda",
              "isPermitted": false
            },
            {
              "id": "12",
              "name": "VPMS",
              "isPermitted": false
            },
            {
              "id": "13",
              "name": "vWINIFRED",
              "isPermitted": false
            },
            {
              "id": "14",
              "name": "SSD",
              "isPermitted": false
            },
            {
              "id": "15",
              "name": "vMOG",
              "isPermitted": false
            },
            {
              "id": "16",
              "name": "LINDSEY",
              "isPermitted": false
            },
            {
              "id": "17",
              "name": "JOHANNA_SANTOS",
              "isPermitted": false
            },
            {
              "id": "18",
              "name": "vCarroll",
              "isPermitted": false
            }
          ]
        },
        "aicZones": [
          {
            "id": "NFT1",
            "name": "NFTJSSSS-NFT1"
          },
          {
            "id": "JAG1",
            "name": "YUDFJULP-JAG1"
          },
          {
            "id": "YYY1",
            "name": "UUUAIAAI-YYY1"
          },
          {
            "id": "AVT1",
            "name": "AVTRFLHD-AVT1"
          },
          {
            "id": "ATL34",
            "name": "ATLSANAI-ATL34"
          }
        ],
        "categoryParameters": {
          "owningEntityList": [
            {
              "id": "aaa1",
              "name": "aaa1"
            },
            {
              "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
              "name": "WayneHolland"
            },
            {
              "id": "Melissa",
              "name": "Melissa"
            }
          ],
          "projectList": [
            {
              "id": "WATKINS",
              "name": "WATKINS"
            },
            {
              "id": "x1",
              "name": "x1"
            },
            {
              "id": "yyy1",
              "name": "yyy1"
            }
          ],
          "lineOfBusinessList": [
            {
              "id": "ONAP",
              "name": "ONAP"
            },
            {
              "id": "zzz1",
              "name": "zzz1"
            }
          ],
          "platformList": [
            {
              "id": "platform",
              "name": "platform"
            },
            {
              "id": "xxx1",
              "name": "xxx1"
            }
          ]
        },
        "type": "[CATEGORY_PARAMETERS] Update"
      }
    }
  }

  function getReduxWithVNFMissingData() {
    return {
      "global": {
        "name": null,
        "flags": {
          "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
          "FLAG_SHOW_ASSIGNMENTS": true,
          "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
          "FLAG_SHOW_VERIFY_SERVICE": false,
          "FLAG_SERVICE_MODEL_CACHE": true,
          "CREATE_INSTANCE_TEST": false,
          "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": true,
          "EMPTY_DRAWING_BOARD_TEST": false,
          "FLAG_ADD_MSO_TESTAPI_FIELD": true
        },
        "type": "[FLAGS] Update"
      },
      "service": {
        "serviceHierarchy": {
          "f4d84bb4-a416-4b4e-997e-0059973630b9": {
            "service": {
              "uuid": "f4d84bb4-a416-4b4e-997e-0059973630b9",
              "invariantUuid": "598e3f9e-3244-4d8f-a8e0-0e5d7a29eda9",
              "name": "PASQUALE vMX vPE_BV Service 488",
              "version": "1.0",
              "toscaModelURL": null,
              "category": "Network L1-3",
              "serviceType": "",
              "serviceRole": "",
              "description": "PASQUALE vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM",
              "serviceEcompNaming": "true",
              "instantiationType": "Macro",
              "vidNotions": {
                "instantiationType": "Macro"
              },
              "inputs": {
                "2017488_pasqualevpe0_ASN": {
                  "type": "string",
                  "description": "AV/PE",
                  "entry_schema": null,
                  "inputProperties": null,
                  "constraints": [],
                  "required": true,
                  "default": "AV_vPE"
                }
              }
            },
            "vnfs": {
              "2017-488_PASQUALE-vPE 0": {
                "uuid": "ea81d6f7-0861-44a7-b7d5-d173b562c350",
                "invariantUuid": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
                "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",
                "name": "2017-488_PASQUALE-vPE",
                "version": "9.0",
                "customizationUuid": "41516cc6-5098-4b40-a619-f8d5f55fc4d8",
                "inputs": {
                  "vnf_config_template_version": {
                    "type": "string",
                    "description": "VPE Software Version",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "17.2"
                  },
                  "bandwidth_units": {
                    "type": "string",
                    "description": "Units of bandwidth",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "Gbps"
                  },
                  "bandwidth": {
                    "type": "string",
                    "description": "Requested VPE bandwidth",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "10"
                  },
                  "AIC_CLLI": {
                    "type": "string",
                    "description": "AIC Site CLLI",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "ATLMY8GA"
                  },
                  "availability_zone_0": {
                    "type": "string",
                    "description": "The Availability Zone to launch the instance.",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "mtpocfo-kvm-az01"
                  },
                  "ASN": {
                    "type": "string",
                    "description": "AV/PE",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "AV_vPE"
                  },
                  "vnf_instance_name": {
                    "type": "string",
                    "description": "The hostname assigned to the vpe.",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "mtnj309me6"
                  }
                },
                "commands": {
                  "vnf_config_template_version": {
                    "displayName": "vnf_config_template_version",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_vnf_config_template_version"
                  },
                  "bandwidth_units": {
                    "displayName": "bandwidth_units",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_bandwidth_units"
                  },
                  "bandwidth": {
                    "displayName": "bandwidth",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_bandwidth"
                  },
                  "AIC_CLLI": {
                    "displayName": "AIC_CLLI",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_AIC_CLLI"
                  },
                  "availability_zone_0": {
                    "displayName": "availability_zone_0",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_availability_zone_0"
                  },
                  "ASN": {
                    "displayName": "ASN",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_ASN"
                  },
                  "vnf_instance_name": {
                    "displayName": "vnf_instance_name",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_vnf_instance_name"
                  }
                },
                "properties": {
                  "vmxvre_retype": "RE-VMX",
                  "vnf_config_template_version": "get_input:2017488_pasqualevpe0_vnf_config_template_version",
                  "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
                  "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
                  "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
                  "int_ctl_net_name": "VMX-INTXI",
                  "vmx_int_ctl_prefix": "10.0.0.10",
                  "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
                  "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
                  "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
                  "nf_type": "ROUTER",
                  "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
                  "is_AVPN_service": "false",
                  "vmx_RSG_name": "vREXI-affinity",
                  "vmx_int_ctl_forwarding": "l2",
                  "vmxvre_oam_ip_0": "10.0.0.10",
                  "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
                  "vmxvpfe_sriov41_0_port_vlanstrip": "false",
                  "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
                  "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
                  "vmxvre_image_name_0": "vre172_nova_img",
                  "vmxvre_instance": "0",
                  "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
                  "vmxvre_flavor_name": "ns.c1r16d32.v5",
                  "vmxvpfe_volume_size_0": "40.0",
                  "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
                  "nf_naming": "{ecomp_generated_naming=true}",
                  "multi_stage_design": "false",
                  "nf_naming_code": "me6",
                  "vmxvre_name_0": "vREXI",
                  "vmxvpfe_sriov42_0_port_vlanstrip": "false",
                  "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
                  "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
                  "vmxvpfe_image_name_0": "vpfe172_nova_img",
                  "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
                  "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
                  "vmxvre_console": "vidconsole",
                  "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
                  "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
                  "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
                  "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
                  "vmxvpfe_sriov44_0_port_vlanstrip": "false",
                  "vf_module_id": "123",
                  "nf_function": "PASQUALE vPE",
                  "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
                  "vmxvre_int_ctl_ip_0": "10.0.0.10",
                  "ecomp_generated_naming": "true",
                  "AIC_CLLI": "get_input:2017488_pasqualevpe0_AIC_CLLI",
                  "vnf_name": "mtnj309me6vre",
                  "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
                  "vmxvre_volume_type_1": "HITACHI",
                  "vmxvpfe_sriov44_0_port_broadcastallow": "true",
                  "vmxvre_volume_type_0": "HITACHI",
                  "vmxvpfe_volume_type_0": "HITACHI",
                  "vmxvpfe_sriov43_0_port_broadcastallow": "true",
                  "bandwidth_units": "get_input:2017488_pasqualevpe0_bandwidth_units",
                  "vnf_id": "123",
                  "vmxvre_oam_prefix": "24",
                  "availability_zone_0": "get_input:2017488_pasqualevpe0_availability_zone_0",
                  "ASN": "get_input:2017488_pasqualevpe0_ASN",
                  "vmxvre_chassis_i2cid": "161",
                  "vmxvpfe_name_0": "vPFEXI",
                  "bandwidth": "get_input:2017488_pasqualevpe0_bandwidth",
                  "availability_zone_max_count": "1",
                  "vmxvre_volume_size_0": "45.0",
                  "vmxvre_volume_size_1": "50.0",
                  "vmxvpfe_sriov42_0_port_broadcastallow": "true",
                  "vmxvre_oam_gateway": "10.0.0.10",
                  "vmxvre_volume_name_1": "vREXI_FAVolume",
                  "vmxvre_ore_present": "0",
                  "vmxvre_volume_name_0": "vREXI_FBVolume",
                  "vmxvre_type": "0",
                  "vnf_instance_name": "get_input:2017488_pasqualevpe0_vnf_instance_name",
                  "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
                  "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
                  "vmx_int_ctl_len": "24",
                  "vmxvpfe_sriov43_0_port_vlanstrip": "false",
                  "vmxvpfe_sriov41_0_port_broadcastallow": "true",
                  "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
                  "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
                  "nf_role": "vPE",
                  "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
                  "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
                  "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
                },
                "type": "VF",
                "modelCustomizationName": "2017-488_PASQUALE-vPE 0",
                "vfModules": {
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                    "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
                    "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                    "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "version": "8",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "properties": {
                      "minCountInstances": 2,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "PASQUALE_vRE_BV"
                    },
                    "inputs": {
                      "2017488_pasqualevpe0_bandwidth_units": {
                        "type": "string",
                        "description": "Units of bandwidth",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "bandwidth_units"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "Gbps"
                      },
                      "2017488_pasqualevpe0_bandwidth": {
                        "type": "string",
                        "description": "Requested VPE bandwidth",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "bandwidth"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "10"
                      },
                      "2017488_pasqualevpe0_vnf_instance_name": {
                        "type": "string",
                        "description": "The hostname assigned to the vpe.",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "vnf_instance_name"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "mtnj309me6"
                      },
                      "2017488_pasqualevpe0_vnf_config_template_version": {
                        "type": "string",
                        "description": "VPE Software Version",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "vnf_config_template_version"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "17.2"
                      },
                      "2017488_pasqualevpe0_AIC_CLLI": {
                        "type": "string",
                        "description": "AIC Site CLLI",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "AIC_CLLI"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "ATLMY8GA"
                      }
                    },
                    "volumeGroupAllowed": true
                  },
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
                    "uuid": "040e591e-5d30-4e0d-850f-7266e5a8e013",
                    "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
                    "customizationUuid": "5c5f91f9-5e31-4120-b892-5536587ec258",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                    "version": "6",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                    "properties": {
                      "minCountInstances": 1,
                      "maxCountInstances": 1,
                      "initialCount": 1,
                      "vfModuleLabel": "PASQUALE_base_vPE_BV"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": false
                  },
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                    "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
                    "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                    "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                    "version": "8",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "PASQUALE_vPFE_BV"
                    },
                    "inputs": {
                      "2017488_pasqualevpe0_availability_zone_0": {
                        "type": "string",
                        "description": "The Availability Zone to launch the instance.",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vPFE_BV",
                          "paramName": "availability_zone_0"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "mtpocfo-kvm-az01"
                      }
                    },
                    "volumeGroupAllowed": true
                  }
                },
                "volumeGroups": {
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                    "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
                    "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                    "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "version": "8",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "PASQUALE_vRE_BV"
                    },
                    "inputs": {
                      "2017488_pasqualevpe0_bandwidth_units": {
                        "type": "string",
                        "description": "Units of bandwidth",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "bandwidth_units"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "Gbps"
                      },
                      "2017488_pasqualevpe0_bandwidth": {
                        "type": "string",
                        "description": "Requested VPE bandwidth",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "bandwidth"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "10"
                      },
                      "2017488_pasqualevpe0_vnf_instance_name": {
                        "type": "string",
                        "description": "The hostname assigned to the vpe.",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "vnf_instance_name"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "mtnj309me6"
                      },
                      "2017488_pasqualevpe0_vnf_config_template_version": {
                        "type": "string",
                        "description": "VPE Software Version",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "vnf_config_template_version"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "17.2"
                      },
                      "2017488_pasqualevpe0_AIC_CLLI": {
                        "type": "string",
                        "description": "AIC Site CLLI",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "AIC_CLLI"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "ATLMY8GA"
                      }
                    }
                  },
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                    "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
                    "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                    "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                    "version": "8",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "PASQUALE_vPFE_BV"
                    },
                    "inputs": {
                      "2017488_pasqualevpe0_availability_zone_0": {
                        "type": "string",
                        "description": "The Availability Zone to launch the instance.",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vPFE_BV",
                          "paramName": "availability_zone_0"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "mtpocfo-kvm-az01"
                      }
                    }
                  }
                },
                "vfcInstanceGroups": {}
              }
            },
            "networks": {},
            "collectionResources": {},
            "configurations": {},
            "serviceProxies": {},
            "vfModules": {
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
                "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "version": "8",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vRE_BV"
                },
                "inputs": {
                  "2017488_pasqualevpe0_bandwidth_units": {
                    "type": "string",
                    "description": "Units of bandwidth",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "bandwidth_units"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "Gbps"
                  },
                  "2017488_pasqualevpe0_bandwidth": {
                    "type": "string",
                    "description": "Requested VPE bandwidth",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "bandwidth"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "10"
                  },
                  "2017488_pasqualevpe0_vnf_instance_name": {
                    "type": "string",
                    "description": "The hostname assigned to the vpe.",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "vnf_instance_name"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "mtnj309me6"
                  },
                  "2017488_pasqualevpe0_vnf_config_template_version": {
                    "type": "string",
                    "description": "VPE Software Version",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "vnf_config_template_version"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "17.2"
                  },
                  "2017488_pasqualevpe0_AIC_CLLI": {
                    "type": "string",
                    "description": "AIC Site CLLI",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "AIC_CLLI"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "ATLMY8GA"
                  }
                },
                "volumeGroupAllowed": true
              },
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
                "uuid": "040e591e-5d30-4e0d-850f-7266e5a8e013",
                "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
                "customizationUuid": "5c5f91f9-5e31-4120-b892-5536587ec258",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                "version": "6",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                "properties": {
                  "minCountInstances": 1,
                  "maxCountInstances": 1,
                  "initialCount": 1,
                  "vfModuleLabel": "PASQUALE_base_vPE_BV"
                },
                "inputs": {},
                "volumeGroupAllowed": false
              },
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
                "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "version": "8",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vPFE_BV"
                },
                "inputs": {
                  "2017488_pasqualevpe0_availability_zone_0": {
                    "type": "string",
                    "description": "The Availability Zone to launch the instance.",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vPFE_BV",
                      "paramName": "availability_zone_0"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "mtpocfo-kvm-az01"
                  }
                },
                "volumeGroupAllowed": true
              }
            },
            "volumeGroups": {
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
                "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "version": "8",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vRE_BV"
                },
                "inputs": {
                  "2017488_pasqualevpe0_bandwidth_units": {
                    "type": "string",
                    "description": "Units of bandwidth",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "bandwidth_units"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "Gbps"
                  },
                  "2017488_pasqualevpe0_bandwidth": {
                    "type": "string",
                    "description": "Requested VPE bandwidth",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "bandwidth"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "10"
                  },
                  "2017488_pasqualevpe0_vnf_instance_name": {
                    "type": "string",
                    "description": "The hostname assigned to the vpe.",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "vnf_instance_name"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "mtnj309me6"
                  },
                  "2017488_pasqualevpe0_vnf_config_template_version": {
                    "type": "string",
                    "description": "VPE Software Version",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "vnf_config_template_version"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "17.2"
                  },
                  "2017488_pasqualevpe0_AIC_CLLI": {
                    "type": "string",
                    "description": "AIC Site CLLI",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "AIC_CLLI"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "ATLMY8GA"
                  }
                }
              },
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
                "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "version": "8",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vPFE_BV"
                },
                "inputs": {
                  "2017488_pasqualevpe0_availability_zone_0": {
                    "type": "string",
                    "description": "The Availability Zone to launch the instance.",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vPFE_BV",
                      "paramName": "availability_zone_0"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "mtpocfo-kvm-az01"
                  }
                }
              }
            },
            "pnfs": {}
          },
          "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
            "service": {
              "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
              "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
              "name": "ComplexService",
              "version": "1.0",
              "toscaModelURL": null,
              "category": "Emanuel",
              "serviceType": "",
              "serviceRole": "",
              "description": "ComplexService",
              "serviceEcompNaming": "true",
              "instantiationType": "Macro",
              "vidNotions": {
                "instantiationType": "Macro"
              },
              "inputs": {}
            },
            "vnfs": {
              "VF_vGeraldine 0": {
                "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60",
                "invariantUuid": "4160458e-f648-4b30-a176-43881ffffe9e",
                "description": "VSP_vGeraldine",
                "name": "VF_vGeraldine",
                "version": "2.0",
                "customizationUuid": "91415b44-753d-494c-926a-456a9172bbb9",
                "inputs": {},
                "commands": {},
                "properties": {
                  "gpb2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ipv6-egress_src_start_port": "0",
                  "sctp-a-ipv6-egress_rule_application": "any",
                  "Internal2_allow_transit": "true",
                  "sctp-b-IPv6_ethertype": "IPv6",
                  "sctp-a-egress_rule_application": "any",
                  "sctp-b-ingress_action": "pass",
                  "sctp-b-ingress_rule_protocol": "icmp",
                  "ncb2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ipv6-ingress-src_start_port": "0.0",
                  "ncb1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "fsb_volume_size_0": "320.0",
                  "sctp-b-egress_src_addresses": "local",
                  "sctp-a-ipv6-ingress_ethertype": "IPv4",
                  "sctp-a-ipv6-ingress-dst_start_port": "0",
                  "sctp-b-ipv6-ingress_rule_application": "any",
                  "domain_name": "default-domain",
                  "sctp-a-ingress_rule_protocol": "icmp",
                  "sctp-b-egress-src_start_port": "0.0",
                  "sctp-a-egress_src_addresses": "local",
                  "sctp-b-display_name": "epc-sctp-b-ipv4v6-sec-group",
                  "sctp-a-egress-src_start_port": "0.0",
                  "sctp-a-ingress_ethertype": "IPv4",
                  "sctp-b-ipv6-ingress-dst_end_port": "65535",
                  "sctp-b-dst_subnet_prefix_v6": "::",
                  "nf_naming": "{ecomp_generated_naming=true}",
                  "sctp-a-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
                  "sctp-b-egress-dst_start_port": "0.0",
                  "ncb_flavor_name": "nv.c20r64d1",
                  "gpb1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-egress_dst_subnet_prefix_len": "0.0",
                  "Internal2_net_cidr": "10.0.0.10",
                  "sctp-a-ingress-dst_start_port": "0.0",
                  "sctp-a-egress-dst_start_port": "0.0",
                  "fsb1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-egress_ethertype": "IPv4",
                  "vlc_st_service_mode": "in-network-nat",
                  "sctp-a-ipv6-egress_ethertype": "IPv4",
                  "sctp-a-egress-src_end_port": "65535.0",
                  "sctp-b-ipv6-egress_rule_application": "any",
                  "sctp-b-egress_action": "pass",
                  "sctp-a-ingress-src_subnet_prefix_len": "0.0",
                  "sctp-b-ipv6-ingress-src_end_port": "65535.0",
                  "sctp-b-name": "epc-sctp-b-ipv4v6-sec-group",
                  "fsb2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-ipv6-ingress-src_start_port": "0.0",
                  "sctp-b-ipv6-egress_ethertype": "IPv4",
                  "Internal1_net_cidr": "10.0.0.10",
                  "sctp-a-egress_dst_subnet_prefix": "0.0.0.0",
                  "fsb_flavor_name": "nv.c20r64d1",
                  "sctp_rule_protocol": "132",
                  "sctp-b-ipv6-ingress_src_subnet_prefix_len": "0",
                  "sctp-a-ipv6-ingress_rule_application": "any",
                  "ecomp_generated_naming": "true",
                  "sctp-a-IPv6_ethertype": "IPv6",
                  "vlc2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_virtualization_type": "virtual-machine",
                  "sctp-b-ingress-dst_start_port": "0.0",
                  "sctp-b-ingress-dst_end_port": "65535.0",
                  "sctp-a-ipv6-ingress-src_end_port": "65535.0",
                  "sctp-a-display_name": "epc-sctp-a-ipv4v6-sec-group",
                  "sctp-b-ingress_rule_application": "any",
                  "int2_sec_group_name": "int2-sec-group",
                  "vlc_flavor_name": "nd.c16r64d1",
                  "sctp-b-ipv6-egress_src_addresses": "local",
                  "vlc_st_interface_type_int1": "other1",
                  "sctp-b-egress-src_end_port": "65535.0",
                  "sctp-a-ipv6-egress-dst_start_port": "0",
                  "vlc_st_interface_type_int2": "other2",
                  "sctp-a-ipv6-egress_rule_protocol": "any",
                  "Internal2_shared": "false",
                  "sctp-a-ipv6-egress_dst_subnet_prefix_len": "0",
                  "Internal2_rpf": "disable",
                  "vlc1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ipv6-egress_src_end_port": "65535",
                  "sctp-a-ipv6-egress_src_addresses": "local",
                  "sctp-a-ingress-dst_end_port": "65535.0",
                  "sctp-a-ipv6-egress_src_end_port": "65535",
                  "Internal1_forwarding_mode": "l2",
                  "Internal2_dhcp": "false",
                  "sctp-a-dst_subnet_prefix_v6": "::",
                  "pxe_image_name": "MME_PXE-Boot_16ACP04_GA.qcow2",
                  "vlc_st_interface_type_gtp": "other0",
                  "ncb1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-src_subnet_prefix_v6": "::",
                  "sctp-a-egress_dst_subnet_prefix_len": "0.0",
                  "int1_sec_group_name": "int1-sec-group",
                  "Internal1_dhcp": "false",
                  "sctp-a-ipv6-egress_dst_end_port": "65535",
                  "Internal2_forwarding_mode": "l2",
                  "fsb2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-egress_dst_subnet_prefix": "0.0.0.0",
                  "Internal1_net_cidr_len": "17",
                  "gpb2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ingress-src_subnet_prefix_len": "0.0",
                  "sctp-a-ingress_dst_addresses": "local",
                  "sctp-a-egress_action": "pass",
                  "fsb_volume_type_0": "SF-Default-SSD",
                  "ncb2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_interface_type_sctp_a": "left",
                  "vlc_st_interface_type_sctp_b": "right",
                  "sctp-a-src_subnet_prefix_v6": "::",
                  "vlc_st_version": "2",
                  "sctp-b-egress_ethertype": "IPv4",
                  "sctp-a-ingress_rule_application": "any",
                  "gpb1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "instance_ip_family_v6": "v6",
                  "sctp-a-ipv6-egress_src_start_port": "0",
                  "sctp-b-ingress-src_start_port": "0.0",
                  "sctp-b-ingress_dst_addresses": "local",
                  "fsb1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_interface_type_oam": "management",
                  "multi_stage_design": "false",
                  "oam_sec_group_name": "oam-sec-group",
                  "Internal2_net_gateway": "10.0.0.10",
                  "sctp-a-ipv6-ingress-dst_end_port": "65535",
                  "sctp-b-ipv6-egress-dst_start_port": "0",
                  "Internal1_net_gateway": "10.0.0.10",
                  "sctp-b-ipv6-egress_rule_protocol": "any",
                  "gtp_sec_group_name": "gtp-sec-group",
                  "sctp-a-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
                  "sctp-b-ipv6-egress_dst_subnet_prefix_len": "0",
                  "sctp-a-ipv6-ingress_dst_addresses": "local",
                  "sctp-a-egress_rule_protocol": "icmp",
                  "sctp-b-ipv6-egress_action": "pass",
                  "sctp-a-ipv6-egress_action": "pass",
                  "Internal1_shared": "false",
                  "sctp-b-ipv6-ingress_rule_protocol": "any",
                  "Internal2_net_cidr_len": "17",
                  "sctp-a-name": "epc-sctp-a-ipv4v6-sec-group",
                  "sctp-a-ingress-src_end_port": "65535.0",
                  "sctp-b-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
                  "sctp-a-egress-dst_end_port": "65535.0",
                  "sctp-a-ingress_action": "pass",
                  "sctp-b-egress_rule_protocol": "icmp",
                  "sctp-b-ipv6-ingress_action": "pass",
                  "vlc_st_service_type": "firewall",
                  "sctp-b-ipv6-egress_dst_end_port": "65535",
                  "sctp-b-ipv6-ingress-dst_start_port": "0",
                  "vlc2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_availability_zone": "true",
                  "fsb_volume_image_name_1": "MME_FSB2_16ACP04_GA.qcow2",
                  "sctp-b-ingress-src_subnet_prefix": "0.0.0.0",
                  "sctp-a-ipv6-ingress_src_subnet_prefix_len": "0",
                  "Internal1_allow_transit": "true",
                  "gpb_flavor_name": "nv.c20r64d1",
                  "availability_zone_max_count": "1",
                  "fsb_volume_image_name_0": "MME_FSB1_16ACP04_GA.qcow2",
                  "sctp-b-ipv6-ingress_dst_addresses": "local",
                  "sctp-b-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
                  "sctp-b-ipv6-ingress_ethertype": "IPv4",
                  "vlc1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-ingress-src_subnet_prefix": "0.0.0.0",
                  "sctp-a-ipv6-ingress_action": "pass",
                  "Internal1_rpf": "disable",
                  "sctp-b-ingress_ethertype": "IPv4",
                  "sctp-b-egress_rule_application": "any",
                  "sctp-b-ingress-src_end_port": "65535.0",
                  "sctp-a-ipv6-ingress_rule_protocol": "any",
                  "sctp-a-ingress-src_start_port": "0.0",
                  "sctp-b-egress-dst_end_port": "65535.0"
                },
                "type": "VF",
                "modelCustomizationName": "VF_vGeraldine 0",
                "vfModules": {
                  "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1": {
                    "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
                    "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
                    "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
                    "description": null,
                    "name": "VfVgeraldine..vflorence_vlc..module-1",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..vflorence_vlc..module-1",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "vflorence_vlc"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": false
                  },
                  "vf_vgeraldine0..VfVgeraldine..vflorence_gpb..module-2": {
                    "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
                    "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
                    "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
                    "description": null,
                    "name": "VfVgeraldine..vflorence_gpb..module-2",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..vflorence_gpb..module-2",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "vflorence_gpb"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": false
                  },
                  "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                    "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                    "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                    "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                    "description": null,
                    "name": "VfVgeraldine..base_vflorence..module-0",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                    "properties": {
                      "minCountInstances": 1,
                      "maxCountInstances": 1,
                      "initialCount": 1,
                      "vfModuleLabel": "base_vflorence"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": true
                  }
                },
                "volumeGroups": {
                  "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                    "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                    "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                    "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                    "description": null,
                    "name": "VfVgeraldine..base_vflorence..module-0",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                    "properties": {
                      "minCountInstances": 1,
                      "maxCountInstances": 1,
                      "initialCount": 1,
                      "vfModuleLabel": "base_vflorence"
                    },
                    "inputs": {}
                  }
                },
                "vfcInstanceGroups": {}
              }
            },
            "networks": {
              "ExtVL 0": {
                "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
                "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
                "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
                "name": "ExtVL",
                "version": "37.0",
                "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
                "inputs": {},
                "commands": {},
                "properties": {
                  "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}}",
                  "exVL_naming": "{ecomp_generated_naming=true}",
                  "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
                  "network_homing": "{ecomp_selected_instance_node_target=false}"
                },
                "type": "VL",
                "modelCustomizationName": "ExtVL 0"
              }
            },
            "collectionResources": {},
            "configurations": {
              "Port Mirroring Configuration By Policy 0": {
                "uuid": "b4398538-e89d-4f13-b33d-ca323434ba50",
                "invariantUuid": "6ef0ca40-f366-4897-951f-abd65d25f6f7",
                "description": "A port mirroring configuration by policy object",
                "name": "Port Mirroring Configuration By Policy",
                "version": "27.0",
                "customizationUuid": "3c3b7b8d-8669-4b3b-8664-61970041fad2",
                "inputs": {},
                "commands": {},
                "properties": {},
                "type": "Configuration",
                "modelCustomizationName": "Port Mirroring Configuration By Policy 0",
                "sourceNodes": [],
                "collectorNodes": null,
                "configurationByPolicy": false
              }
            },
            "serviceProxies": {},
            "vfModules": {
              "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1": {
                "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
                "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
                "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
                "description": null,
                "name": "VfVgeraldine..vflorence_vlc..module-1",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..vflorence_vlc..module-1",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "vflorence_vlc"
                },
                "inputs": {},
                "volumeGroupAllowed": false
              },
              "vf_vgeraldine0..VfVgeraldine..vflorence_gpb..module-2": {
                "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
                "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
                "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
                "description": null,
                "name": "VfVgeraldine..vflorence_gpb..module-2",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..vflorence_gpb..module-2",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "vflorence_gpb"
                },
                "inputs": {},
                "volumeGroupAllowed": false
              },
              "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                "description": null,
                "name": "VfVgeraldine..base_vflorence..module-0",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                "properties": {
                  "minCountInstances": 1,
                  "maxCountInstances": 1,
                  "initialCount": 1,
                  "vfModuleLabel": "base_vflorence"
                },
                "inputs": {},
                "volumeGroupAllowed": true
              }
            },
            "volumeGroups": {
              "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                "description": null,
                "name": "VfVgeraldine..base_vflorence..module-0",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                "properties": {
                  "minCountInstances": 1,
                  "maxCountInstances": 1,
                  "initialCount": 1,
                  "vfModuleLabel": "base_vflorence"
                },
                "inputs": {}
              }
            },
            "pnfs": {}
          }
        },
        "serviceInstance": {
          "f4d84bb4-a416-4b4e-997e-0059973630b9": {
            "vnfs": {
              "2017-488_PASQUALE-vPE 0": {
                "rollbackOnFailure": "true",
                "vfModules": {
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
                    "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0jkyqv": {
                      "isMissingData": false,
                      "sdncPreReload": null,
                      "modelInfo": {
                        "modelType": "VFmodule",
                        "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
                        "modelVersionId": "040e591e-5d30-4e0d-850f-7266e5a8e013",
                        "modelName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                        "modelVersion": "6",
                        "modelCustomizationId": "5c5f91f9-5e31-4120-b892-5536587ec258",
                        "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0"
                      },
                      "instanceParams": [
                        {}
                      ],
                      "trackById": "n2ydptuy9lj"
                    }
                  }
                },
                "isMissingData": false,
                "originalName": null,
                "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
                "lcpCloudRegionId": null,
                "tenantId": null,
                "lineOfBusiness": null,
                "platformName": null,
                "modelInfo": {
                  "modelType": "VF",
                  "modelInvariantId": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
                  "modelVersionId": "f4d84bb4-a416-4b4e-997e-0059973630b9",
                  "modelName": "2017-488_PASQUALE-vPE",
                  "modelVersion": "9.0",
                  "modelCustomizationName": "2017-488_PASQUALE-vPE 0"
                },
                "trackById": "iapflwk8bip"
              },
              "2017-488_PASQUALE-vPE 0:0001": {
                "rollbackOnFailure": "true",
                "vfModules": {
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
                    "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0jkyqv": {
                      "isMissingData": false,
                      "sdncPreReload": null,
                      "modelInfo": {
                        "modelType": "VFmodule",
                        "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
                        "modelVersionId": "040e591e-5d30-4e0d-850f-7266e5a8e013",
                        "modelName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                        "modelVersion": "6",
                        "modelCustomizationId": "5c5f91f9-5e31-4120-b892-5536587ec258",
                        "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0"
                      },
                      "instanceParams": [
                        {}
                      ],
                      "trackById": "wh18xgy0dc"
                    }
                  }
                },
                "isMissingData": true,
                "originalName": "2017-488_PASQUALE-vPE 0",
                "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
                "lcpCloudRegionId": null,
                "tenantId": null,
                "lineOfBusiness": null,
                "platformName": null,
                "modelInfo": {
                  "modelType": "VF",
                  "modelInvariantId": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
                  "modelVersionId": "f4d84bb4-a416-4b4e-997e-0059973630b9",
                  "modelName": "2017-488_PASQUALE-vPE",
                  "modelVersion": "9.0",
                  "modelCustomizationName": "2017-488_PASQUALE-vPE 0"
                },
                "trackById": "iapflwk8bip"
              }
            },
            "instanceParams": [
              {
                "2017488_pasqualevpe0_ASN": "AV_vPE"
              }
            ],
            "validationCounter": 1,
            "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
            "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
            "subscriptionServiceType": "TYLER SILVIA",
            "lcpCloudRegionId": "AAIAIC25",
            "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
            "aicZoneId": "JAG1",
            "projectName": "x1",
            "owningEntityId": "aaa1",
            "rollbackOnFailure": "true",
            "bulkSize": 1,
            "modelInfo": {
              "modelInvariantId": "598e3f9e-3244-4d8f-a8e0-0e5d7a29eda9",
              "modelVersionId": "f4d84bb4-a416-4b4e-997e-0059973630b9",
              "modelName": "PASQUALE vMX vPE_BV Service 488",
              "modelVersion": "1.0"
            },
            "existingVNFCounterMap": {
              "91415b44-753d-494c-926a-456a9172bbb9": 1
            },
            "existingNetworksCounterMap": {},
            "tenantName": "USP-SIP-IC-24335-T-01",
            "aicZoneName": "YUDFJULP-JAG1"
          }
        },
        "lcpRegionsAndTenants": {
          "lcpRegionList": [
            {
              "id": "AAIAIC25",
              "name": "AAIAIC25",
              "isPermitted": true
            },
            {
              "id": "hvf6",
              "name": "hvf6",
              "isPermitted": true
            }
          ],
          "lcpRegionsTenantsMap": {
            "AAIAIC25": [
              {
                "id": "092eb9e8e4b7412e8787dd091bc58e86",
                "name": "USP-SIP-IC-24335-T-01",
                "isPermitted": true
              }
            ],
            "hvf6": [
              {
                "id": "bae71557c5bb4d5aac6743a4e5f1d054",
                "name": "AIN Web Tool-15-D-testalexandria",
                "isPermitted": true
              },
              {
                "id": "d0a3e3f2964542259d155a81c41aadc3",
                "name": "test-hvf6-09",
                "isPermitted": true
              },
              {
                "id": "fa45ca53c80b492fa8be5477cd84fc2b",
                "name": "ro-T112",
                "isPermitted": true
              },
              {
                "id": "cbb99fe4ada84631b7baf046b6fd2044",
                "name": "DN5242-Nov16-T3",
                "isPermitted": true
              }
            ]
          }
        },
        "subscribers": [
          {
            "id": "CAR_2020_ER",
            "name": "CAR_2020_ER",
            "isPermitted": true
          },
          {
            "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
            "name": "JULIO ERICKSON",
            "isPermitted": false
          },
          {
            "id": "DHV1707-TestSubscriber-2",
            "name": "DALE BRIDGES",
            "isPermitted": false
          },
          {
            "id": "DHV1707-TestSubscriber-1",
            "name": "LLOYD BRIDGES",
            "isPermitted": false
          },
          {
            "id": "jimmy-example",
            "name": "JimmyExampleCust-20161102",
            "isPermitted": false
          },
          {
            "id": "jimmy-example2",
            "name": "JimmyExampleCust-20161103",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-TestSub-PWT-102",
            "name": "ERICA5779-TestSub-PWT-102",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-TestSub-PWT-101",
            "name": "ERICA5779-TestSub-PWT-101",
            "isPermitted": false
          },
          {
            "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
            "name": "Emanuel",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-Subscriber-4",
            "name": "ERICA5779-Subscriber-5",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-TestSub-PWT-103",
            "name": "ERICA5779-TestSub-PWT-103",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-Subscriber-2",
            "name": "ERICA5779-Subscriber-2",
            "isPermitted": false
          },
          {
            "id": "e433710f-9217-458d-a79d-1c7aff376d89",
            "name": "SILVIA ROBBINS",
            "isPermitted": true
          },
          {
            "id": "ERICA5779-Subscriber-3",
            "name": "ERICA5779-Subscriber-3",
            "isPermitted": false
          },
          {
            "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
            "name": "CRAIG/ROBERTS",
            "isPermitted": false
          }
        ],
        "productFamilies": [
          {
            "id": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
            "name": "ERICA",
            "isPermitted": true
          },
          {
            "id": "17cc1042-527b-11e6-beb8-9e71128cae77",
            "name": "IGNACIO",
            "isPermitted": true
          },
          {
            "id": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
            "name": "Christie",
            "isPermitted": true
          },
          {
            "id": "a4f6f2ae-9bf5-4ed7-b904-06b2099c4bd7",
            "name": "Enhanced Services",
            "isPermitted": true
          },
          {
            "id": "vTerrance",
            "name": "vTerrance",
            "isPermitted": true
          },
          {
            "id": "323d69d9-2efe-4r45-ay0a-89ea7ard4e6f",
            "name": "vEsmeralda",
            "isPermitted": true
          },
          {
            "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
            "name": "Emanuel",
            "isPermitted": true
          },
          {
            "id": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
            "name": "BVOIP",
            "isPermitted": true
          },
          {
            "id": "db171b8f-115c-4992-a2e3-ee04cae357e0",
            "name": "LINDSEY",
            "isPermitted": true
          },
          {
            "id": "LRSI-OSPF",
            "name": "LRSI-OSPF",
            "isPermitted": true
          },
          {
            "id": "vRosemarie",
            "name": "HNGATEWAY",
            "isPermitted": true
          },
          {
            "id": "vHNPaas",
            "name": "WILKINS",
            "isPermitted": true
          },
          {
            "id": "e433710f-9217-458d-a79d-1c7aff376d89",
            "name": "TYLER SILVIA",
            "isPermitted": true
          },
          {
            "id": "b6a3f28c-eebf-494c-a900-055cc7c874ce",
            "name": "VROUTER",
            "isPermitted": true
          },
          {
            "id": "vMuriel",
            "name": "vMuriel",
            "isPermitted": true
          },
          {
            "id": "0ee8c1bc-7cbd-4b0a-a1ac-e9999255abc1",
            "name": "CARA Griffin",
            "isPermitted": true
          },
          {
            "id": "c7611ebe-c324-48f1-8085-94aef0c6ef3d",
            "name": "DARREN MCGEE",
            "isPermitted": true
          },
          {
            "id": "e30755dc-5673-4b6b-9dcf-9abdd96b93d1",
            "name": "Transport",
            "isPermitted": true
          },
          {
            "id": "vSalvatore",
            "name": "vSalvatore",
            "isPermitted": true
          },
          {
            "id": "d7bb0a21-66f2-4e6d-87d9-9ef3ced63ae4",
            "name": "JOSEFINA",
            "isPermitted": true
          },
          {
            "id": "vHubbard",
            "name": "vHubbard",
            "isPermitted": true
          },
          {
            "id": "12a96a9d-4b4c-4349-a950-fe1159602621",
            "name": "DARREN MCGEE",
            "isPermitted": true
          }
        ],
        "serviceTypes": {
          "e433710f-9217-458d-a79d-1c7aff376d89": [
            {
              "id": "0",
              "name": "vRichardson",
              "isPermitted": false
            },
            {
              "id": "1",
              "name": "TYLER SILVIA",
              "isPermitted": true
            },
            {
              "id": "2",
              "name": "Emanuel",
              "isPermitted": false
            },
            {
              "id": "3",
              "name": "vJamie",
              "isPermitted": false
            },
            {
              "id": "4",
              "name": "vVoiceMail",
              "isPermitted": false
            },
            {
              "id": "5",
              "name": "Kennedy",
              "isPermitted": false
            },
            {
              "id": "6",
              "name": "vPorfirio",
              "isPermitted": false
            },
            {
              "id": "7",
              "name": "vVM",
              "isPermitted": false
            },
            {
              "id": "8",
              "name": "vOTA",
              "isPermitted": false
            },
            {
              "id": "9",
              "name": "vFLORENCE",
              "isPermitted": false
            },
            {
              "id": "10",
              "name": "vMNS",
              "isPermitted": false
            },
            {
              "id": "11",
              "name": "vEsmeralda",
              "isPermitted": false
            },
            {
              "id": "12",
              "name": "VPMS",
              "isPermitted": false
            },
            {
              "id": "13",
              "name": "vWINIFRED",
              "isPermitted": false
            },
            {
              "id": "14",
              "name": "SSD",
              "isPermitted": false
            },
            {
              "id": "15",
              "name": "vMOG",
              "isPermitted": false
            },
            {
              "id": "16",
              "name": "LINDSEY",
              "isPermitted": false
            },
            {
              "id": "17",
              "name": "JOHANNA_SANTOS",
              "isPermitted": false
            },
            {
              "id": "18",
              "name": "vCarroll",
              "isPermitted": false
            }
          ]
        },
        "aicZones": [
          {
            "id": "NFT1",
            "name": "NFTJSSSS-NFT1"
          },
          {
            "id": "JAG1",
            "name": "YUDFJULP-JAG1"
          },
          {
            "id": "YYY1",
            "name": "UUUAIAAI-YYY1"
          },
          {
            "id": "AVT1",
            "name": "AVTRFLHD-AVT1"
          },
          {
            "id": "ATL34",
            "name": "ATLSANAI-ATL34"
          }
        ],
        "categoryParameters": {
          "owningEntityList": [
            {
              "id": "aaa1",
              "name": "aaa1"
            },
            {
              "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
              "name": "WayneHolland"
            },
            {
              "id": "Melissa",
              "name": "Melissa"
            }
          ],
          "projectList": [
            {
              "id": "WATKINS",
              "name": "WATKINS"
            },
            {
              "id": "x1",
              "name": "x1"
            },
            {
              "id": "yyy1",
              "name": "yyy1"
            }
          ],
          "lineOfBusinessList": [
            {
              "id": "ONAP",
              "name": "ONAP"
            },
            {
              "id": "zzz1",
              "name": "zzz1"
            }
          ],
          "platformList": [
            {
              "id": "platform",
              "name": "platform"
            },
            {
              "id": "xxx1",
              "name": "xxx1"
            }
          ]
        },
        "type": "[LCP_REGIONS_AND_TENANTS] Update"
      }
    }
  }

  function getReduxWithVFModuleMissingData() {
    return {
      "global": {
        "name": null,
        "flags": {
          "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
          "FLAG_SHOW_ASSIGNMENTS": true,
          "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
          "FLAG_SHOW_VERIFY_SERVICE": false,
          "FLAG_SERVICE_MODEL_CACHE": true,
          "CREATE_INSTANCE_TEST": false,
          "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": true,
          "EMPTY_DRAWING_BOARD_TEST": false,
          "FLAG_ADD_MSO_TESTAPI_FIELD": true
        },
        "type": "[FLAGS] Update"
      },
      "service": {
        "serviceHierarchy": {
          "f4d84bb4-a416-4b4e-997e-0059973630b9": {
            "service": {
              "uuid": "f4d84bb4-a416-4b4e-997e-0059973630b9",
              "invariantUuid": "598e3f9e-3244-4d8f-a8e0-0e5d7a29eda9",
              "name": "PASQUALE vMX vPE_BV Service 488",
              "version": "1.0",
              "toscaModelURL": null,
              "category": "Network L1-3",
              "serviceType": "",
              "serviceRole": "",
              "description": "PASQUALE vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM",
              "serviceEcompNaming": "true",
              "instantiationType": "Macro",
              "vidNotions": {
                "instantiationType": "Macro"
              },
              "inputs": {
                "2017488_pasqualevpe0_ASN": {
                  "type": "string",
                  "description": "AV/PE",
                  "entry_schema": null,
                  "inputProperties": null,
                  "constraints": [],
                  "required": true,
                  "default": "AV_vPE"
                }
              }
            },
            "vnfs": {
              "2017-488_PASQUALE-vPE 0": {
                "uuid": "ea81d6f7-0861-44a7-b7d5-d173b562c350",
                "invariantUuid": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
                "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",
                "name": "2017-488_PASQUALE-vPE",
                "version": "9.0",
                "customizationUuid": "41516cc6-5098-4b40-a619-f8d5f55fc4d8",
                "inputs": {
                  "vnf_config_template_version": {
                    "type": "string",
                    "description": "VPE Software Version",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "17.2"
                  },
                  "bandwidth_units": {
                    "type": "string",
                    "description": "Units of bandwidth",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "Gbps"
                  },
                  "bandwidth": {
                    "type": "string",
                    "description": "Requested VPE bandwidth",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "10"
                  },
                  "AIC_CLLI": {
                    "type": "string",
                    "description": "AIC Site CLLI",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "ATLMY8GA"
                  },
                  "availability_zone_0": {
                    "type": "string",
                    "description": "The Availability Zone to launch the instance.",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "mtpocfo-kvm-az01"
                  },
                  "ASN": {
                    "type": "string",
                    "description": "AV/PE",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "AV_vPE"
                  },
                  "vnf_instance_name": {
                    "type": "string",
                    "description": "The hostname assigned to the vpe.",
                    "entry_schema": null,
                    "inputProperties": null,
                    "constraints": [],
                    "required": true,
                    "default": "mtnj309me6"
                  }
                },
                "commands": {
                  "vnf_config_template_version": {
                    "displayName": "vnf_config_template_version",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_vnf_config_template_version"
                  },
                  "bandwidth_units": {
                    "displayName": "bandwidth_units",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_bandwidth_units"
                  },
                  "bandwidth": {
                    "displayName": "bandwidth",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_bandwidth"
                  },
                  "AIC_CLLI": {
                    "displayName": "AIC_CLLI",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_AIC_CLLI"
                  },
                  "availability_zone_0": {
                    "displayName": "availability_zone_0",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_availability_zone_0"
                  },
                  "ASN": {
                    "displayName": "ASN",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_ASN"
                  },
                  "vnf_instance_name": {
                    "displayName": "vnf_instance_name",
                    "command": "get_input",
                    "inputName": "2017488_pasqualevpe0_vnf_instance_name"
                  }
                },
                "properties": {
                  "vmxvre_retype": "RE-VMX",
                  "vnf_config_template_version": "get_input:2017488_pasqualevpe0_vnf_config_template_version",
                  "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
                  "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
                  "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
                  "int_ctl_net_name": "VMX-INTXI",
                  "vmx_int_ctl_prefix": "10.0.0.10",
                  "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
                  "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
                  "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
                  "nf_type": "ROUTER",
                  "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
                  "is_AVPN_service": "false",
                  "vmx_RSG_name": "vREXI-affinity",
                  "vmx_int_ctl_forwarding": "l2",
                  "vmxvre_oam_ip_0": "10.0.0.10",
                  "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
                  "vmxvpfe_sriov41_0_port_vlanstrip": "false",
                  "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
                  "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
                  "vmxvre_image_name_0": "vre172_nova_img",
                  "vmxvre_instance": "0",
                  "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
                  "vmxvre_flavor_name": "ns.c1r16d32.v5",
                  "vmxvpfe_volume_size_0": "40.0",
                  "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
                  "nf_naming": "{ecomp_generated_naming=true}",
                  "multi_stage_design": "false",
                  "nf_naming_code": "me6",
                  "vmxvre_name_0": "vREXI",
                  "vmxvpfe_sriov42_0_port_vlanstrip": "false",
                  "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
                  "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
                  "vmxvpfe_image_name_0": "vpfe172_nova_img",
                  "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
                  "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
                  "vmxvre_console": "vidconsole",
                  "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
                  "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
                  "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
                  "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
                  "vmxvpfe_sriov44_0_port_vlanstrip": "false",
                  "vf_module_id": "123",
                  "nf_function": "PASQUALE vPE",
                  "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
                  "vmxvre_int_ctl_ip_0": "10.0.0.10",
                  "ecomp_generated_naming": "true",
                  "AIC_CLLI": "get_input:2017488_pasqualevpe0_AIC_CLLI",
                  "vnf_name": "mtnj309me6vre",
                  "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
                  "vmxvre_volume_type_1": "HITACHI",
                  "vmxvpfe_sriov44_0_port_broadcastallow": "true",
                  "vmxvre_volume_type_0": "HITACHI",
                  "vmxvpfe_volume_type_0": "HITACHI",
                  "vmxvpfe_sriov43_0_port_broadcastallow": "true",
                  "bandwidth_units": "get_input:2017488_pasqualevpe0_bandwidth_units",
                  "vnf_id": "123",
                  "vmxvre_oam_prefix": "24",
                  "availability_zone_0": "get_input:2017488_pasqualevpe0_availability_zone_0",
                  "ASN": "get_input:2017488_pasqualevpe0_ASN",
                  "vmxvre_chassis_i2cid": "161",
                  "vmxvpfe_name_0": "vPFEXI",
                  "bandwidth": "get_input:2017488_pasqualevpe0_bandwidth",
                  "availability_zone_max_count": "1",
                  "vmxvre_volume_size_0": "45.0",
                  "vmxvre_volume_size_1": "50.0",
                  "vmxvpfe_sriov42_0_port_broadcastallow": "true",
                  "vmxvre_oam_gateway": "10.0.0.10",
                  "vmxvre_volume_name_1": "vREXI_FAVolume",
                  "vmxvre_ore_present": "0",
                  "vmxvre_volume_name_0": "vREXI_FBVolume",
                  "vmxvre_type": "0",
                  "vnf_instance_name": "get_input:2017488_pasqualevpe0_vnf_instance_name",
                  "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
                  "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
                  "vmx_int_ctl_len": "24",
                  "vmxvpfe_sriov43_0_port_vlanstrip": "false",
                  "vmxvpfe_sriov41_0_port_broadcastallow": "true",
                  "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
                  "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
                  "nf_role": "vPE",
                  "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
                  "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
                  "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
                },
                "type": "VF",
                "modelCustomizationName": "2017-488_PASQUALE-vPE 0",
                "vfModules": {
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                    "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
                    "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                    "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "version": "8",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "properties": {
                      "minCountInstances": 2,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "PASQUALE_vRE_BV"
                    },
                    "inputs": {
                      "2017488_pasqualevpe0_bandwidth_units": {
                        "type": "string",
                        "description": "Units of bandwidth",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "bandwidth_units"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "Gbps"
                      },
                      "2017488_pasqualevpe0_bandwidth": {
                        "type": "string",
                        "description": "Requested VPE bandwidth",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "bandwidth"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "10"
                      },
                      "2017488_pasqualevpe0_vnf_instance_name": {
                        "type": "string",
                        "description": "The hostname assigned to the vpe.",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "vnf_instance_name"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "mtnj309me6"
                      },
                      "2017488_pasqualevpe0_vnf_config_template_version": {
                        "type": "string",
                        "description": "VPE Software Version",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "vnf_config_template_version"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "17.2"
                      },
                      "2017488_pasqualevpe0_AIC_CLLI": {
                        "type": "string",
                        "description": "AIC Site CLLI",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "AIC_CLLI"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "ATLMY8GA"
                      }
                    },
                    "volumeGroupAllowed": true
                  },
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
                    "uuid": "040e591e-5d30-4e0d-850f-7266e5a8e013",
                    "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
                    "customizationUuid": "5c5f91f9-5e31-4120-b892-5536587ec258",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                    "version": "6",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                    "properties": {
                      "minCountInstances": 1,
                      "maxCountInstances": 1,
                      "initialCount": 1,
                      "vfModuleLabel": "PASQUALE_base_vPE_BV"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": false
                  },
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                    "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
                    "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                    "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                    "version": "8",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "PASQUALE_vPFE_BV"
                    },
                    "inputs": {
                      "2017488_pasqualevpe0_availability_zone_0": {
                        "type": "string",
                        "description": "The Availability Zone to launch the instance.",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vPFE_BV",
                          "paramName": "availability_zone_0"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "mtpocfo-kvm-az01"
                      }
                    },
                    "volumeGroupAllowed": true
                  }
                },
                "volumeGroups": {
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                    "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
                    "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                    "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "version": "8",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "PASQUALE_vRE_BV"
                    },
                    "inputs": {
                      "2017488_pasqualevpe0_bandwidth_units": {
                        "type": "string",
                        "description": "Units of bandwidth",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "bandwidth_units"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "Gbps"
                      },
                      "2017488_pasqualevpe0_bandwidth": {
                        "type": "string",
                        "description": "Requested VPE bandwidth",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "bandwidth"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "10"
                      },
                      "2017488_pasqualevpe0_vnf_instance_name": {
                        "type": "string",
                        "description": "The hostname assigned to the vpe.",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "vnf_instance_name"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "mtnj309me6"
                      },
                      "2017488_pasqualevpe0_vnf_config_template_version": {
                        "type": "string",
                        "description": "VPE Software Version",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "vnf_config_template_version"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "17.2"
                      },
                      "2017488_pasqualevpe0_AIC_CLLI": {
                        "type": "string",
                        "description": "AIC Site CLLI",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vRE_BV",
                          "paramName": "AIC_CLLI"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "ATLMY8GA"
                      }
                    }
                  },
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                    "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
                    "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                    "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
                    "description": null,
                    "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                    "version": "8",
                    "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "PASQUALE_vPFE_BV"
                    },
                    "inputs": {
                      "2017488_pasqualevpe0_availability_zone_0": {
                        "type": "string",
                        "description": "The Availability Zone to launch the instance.",
                        "entry_schema": null,
                        "inputProperties": {
                          "sourceType": "HEAT",
                          "vfModuleLabel": "PASQUALE_vPFE_BV",
                          "paramName": "availability_zone_0"
                        },
                        "constraints": null,
                        "required": true,
                        "default": "mtpocfo-kvm-az01"
                      }
                    }
                  }
                },
                "vfcInstanceGroups": {}
              }
            },
            "networks": {},
            "collectionResources": {},
            "configurations": {},
            "serviceProxies": {},
            "vfModules": {
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
                "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "version": "8",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vRE_BV"
                },
                "inputs": {
                  "2017488_pasqualevpe0_bandwidth_units": {
                    "type": "string",
                    "description": "Units of bandwidth",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "bandwidth_units"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "Gbps"
                  },
                  "2017488_pasqualevpe0_bandwidth": {
                    "type": "string",
                    "description": "Requested VPE bandwidth",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "bandwidth"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "10"
                  },
                  "2017488_pasqualevpe0_vnf_instance_name": {
                    "type": "string",
                    "description": "The hostname assigned to the vpe.",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "vnf_instance_name"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "mtnj309me6"
                  },
                  "2017488_pasqualevpe0_vnf_config_template_version": {
                    "type": "string",
                    "description": "VPE Software Version",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "vnf_config_template_version"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "17.2"
                  },
                  "2017488_pasqualevpe0_AIC_CLLI": {
                    "type": "string",
                    "description": "AIC Site CLLI",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "AIC_CLLI"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "ATLMY8GA"
                  }
                },
                "volumeGroupAllowed": true
              },
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
                "uuid": "040e591e-5d30-4e0d-850f-7266e5a8e013",
                "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
                "customizationUuid": "5c5f91f9-5e31-4120-b892-5536587ec258",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                "version": "6",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                "properties": {
                  "minCountInstances": 1,
                  "maxCountInstances": 1,
                  "initialCount": 1,
                  "vfModuleLabel": "PASQUALE_base_vPE_BV"
                },
                "inputs": {},
                "volumeGroupAllowed": false
              },
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
                "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "version": "8",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vPFE_BV"
                },
                "inputs": {
                  "2017488_pasqualevpe0_availability_zone_0": {
                    "type": "string",
                    "description": "The Availability Zone to launch the instance.",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vPFE_BV",
                      "paramName": "availability_zone_0"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "mtpocfo-kvm-az01"
                  }
                },
                "volumeGroupAllowed": true
              }
            },
            "volumeGroups": {
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                "uuid": "a5d8df05-11cb-4351-96e0-b6d4168ea4df",
                "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                "customizationUuid": "f3d97417-0c8d-424e-8ff7-b2eb4fbcecc3",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "version": "8",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vRE_BV"
                },
                "inputs": {
                  "2017488_pasqualevpe0_bandwidth_units": {
                    "type": "string",
                    "description": "Units of bandwidth",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "bandwidth_units"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "Gbps"
                  },
                  "2017488_pasqualevpe0_bandwidth": {
                    "type": "string",
                    "description": "Requested VPE bandwidth",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "bandwidth"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "10"
                  },
                  "2017488_pasqualevpe0_vnf_instance_name": {
                    "type": "string",
                    "description": "The hostname assigned to the vpe.",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "vnf_instance_name"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "mtnj309me6"
                  },
                  "2017488_pasqualevpe0_vnf_config_template_version": {
                    "type": "string",
                    "description": "VPE Software Version",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "vnf_config_template_version"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "17.2"
                  },
                  "2017488_pasqualevpe0_AIC_CLLI": {
                    "type": "string",
                    "description": "AIC Site CLLI",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vRE_BV",
                      "paramName": "AIC_CLLI"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "ATLMY8GA"
                  }
                }
              },
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                "uuid": "b3e8b26e-cff0-49fc-a4e6-f3e16c8440fe",
                "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                "customizationUuid": "6e410843-257c-46d9-ba8a-8d94e1362452",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "version": "8",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vPFE_BV"
                },
                "inputs": {
                  "2017488_pasqualevpe0_availability_zone_0": {
                    "type": "string",
                    "description": "The Availability Zone to launch the instance.",
                    "entry_schema": null,
                    "inputProperties": {
                      "sourceType": "HEAT",
                      "vfModuleLabel": "PASQUALE_vPFE_BV",
                      "paramName": "availability_zone_0"
                    },
                    "constraints": null,
                    "required": true,
                    "default": "mtpocfo-kvm-az01"
                  }
                }
              }
            },
            "pnfs": {}
          },
          "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
            "service": {
              "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
              "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
              "name": "ComplexService",
              "version": "1.0",
              "toscaModelURL": null,
              "category": "Emanuel",
              "serviceType": "",
              "serviceRole": "",
              "description": "ComplexService",
              "serviceEcompNaming": "true",
              "instantiationType": "Macro",
              "vidNotions": {
                "instantiationType": "Macro"
              },
              "inputs": {}
            },
            "vnfs": {
              "VF_vGeraldine 0": {
                "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60",
                "invariantUuid": "4160458e-f648-4b30-a176-43881ffffe9e",
                "description": "VSP_vGeraldine",
                "name": "VF_vGeraldine",
                "version": "2.0",
                "customizationUuid": "91415b44-753d-494c-926a-456a9172bbb9",
                "inputs": {},
                "commands": {},
                "properties": {
                  "gpb2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ipv6-egress_src_start_port": "0",
                  "sctp-a-ipv6-egress_rule_application": "any",
                  "Internal2_allow_transit": "true",
                  "sctp-b-IPv6_ethertype": "IPv6",
                  "sctp-a-egress_rule_application": "any",
                  "sctp-b-ingress_action": "pass",
                  "sctp-b-ingress_rule_protocol": "icmp",
                  "ncb2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ipv6-ingress-src_start_port": "0.0",
                  "ncb1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "fsb_volume_size_0": "320.0",
                  "sctp-b-egress_src_addresses": "local",
                  "sctp-a-ipv6-ingress_ethertype": "IPv4",
                  "sctp-a-ipv6-ingress-dst_start_port": "0",
                  "sctp-b-ipv6-ingress_rule_application": "any",
                  "domain_name": "default-domain",
                  "sctp-a-ingress_rule_protocol": "icmp",
                  "sctp-b-egress-src_start_port": "0.0",
                  "sctp-a-egress_src_addresses": "local",
                  "sctp-b-display_name": "epc-sctp-b-ipv4v6-sec-group",
                  "sctp-a-egress-src_start_port": "0.0",
                  "sctp-a-ingress_ethertype": "IPv4",
                  "sctp-b-ipv6-ingress-dst_end_port": "65535",
                  "sctp-b-dst_subnet_prefix_v6": "::",
                  "nf_naming": "{ecomp_generated_naming=true}",
                  "sctp-a-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
                  "sctp-b-egress-dst_start_port": "0.0",
                  "ncb_flavor_name": "nv.c20r64d1",
                  "gpb1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-egress_dst_subnet_prefix_len": "0.0",
                  "Internal2_net_cidr": "10.0.0.10",
                  "sctp-a-ingress-dst_start_port": "0.0",
                  "sctp-a-egress-dst_start_port": "0.0",
                  "fsb1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-egress_ethertype": "IPv4",
                  "vlc_st_service_mode": "in-network-nat",
                  "sctp-a-ipv6-egress_ethertype": "IPv4",
                  "sctp-a-egress-src_end_port": "65535.0",
                  "sctp-b-ipv6-egress_rule_application": "any",
                  "sctp-b-egress_action": "pass",
                  "sctp-a-ingress-src_subnet_prefix_len": "0.0",
                  "sctp-b-ipv6-ingress-src_end_port": "65535.0",
                  "sctp-b-name": "epc-sctp-b-ipv4v6-sec-group",
                  "fsb2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-ipv6-ingress-src_start_port": "0.0",
                  "sctp-b-ipv6-egress_ethertype": "IPv4",
                  "Internal1_net_cidr": "10.0.0.10",
                  "sctp-a-egress_dst_subnet_prefix": "0.0.0.0",
                  "fsb_flavor_name": "nv.c20r64d1",
                  "sctp_rule_protocol": "132",
                  "sctp-b-ipv6-ingress_src_subnet_prefix_len": "0",
                  "sctp-a-ipv6-ingress_rule_application": "any",
                  "ecomp_generated_naming": "true",
                  "sctp-a-IPv6_ethertype": "IPv6",
                  "vlc2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_virtualization_type": "virtual-machine",
                  "sctp-b-ingress-dst_start_port": "0.0",
                  "sctp-b-ingress-dst_end_port": "65535.0",
                  "sctp-a-ipv6-ingress-src_end_port": "65535.0",
                  "sctp-a-display_name": "epc-sctp-a-ipv4v6-sec-group",
                  "sctp-b-ingress_rule_application": "any",
                  "int2_sec_group_name": "int2-sec-group",
                  "vlc_flavor_name": "nd.c16r64d1",
                  "sctp-b-ipv6-egress_src_addresses": "local",
                  "vlc_st_interface_type_int1": "other1",
                  "sctp-b-egress-src_end_port": "65535.0",
                  "sctp-a-ipv6-egress-dst_start_port": "0",
                  "vlc_st_interface_type_int2": "other2",
                  "sctp-a-ipv6-egress_rule_protocol": "any",
                  "Internal2_shared": "false",
                  "sctp-a-ipv6-egress_dst_subnet_prefix_len": "0",
                  "Internal2_rpf": "disable",
                  "vlc1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ipv6-egress_src_end_port": "65535",
                  "sctp-a-ipv6-egress_src_addresses": "local",
                  "sctp-a-ingress-dst_end_port": "65535.0",
                  "sctp-a-ipv6-egress_src_end_port": "65535",
                  "Internal1_forwarding_mode": "l2",
                  "Internal2_dhcp": "false",
                  "sctp-a-dst_subnet_prefix_v6": "::",
                  "pxe_image_name": "MME_PXE-Boot_16ACP04_GA.qcow2",
                  "vlc_st_interface_type_gtp": "other0",
                  "ncb1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-src_subnet_prefix_v6": "::",
                  "sctp-a-egress_dst_subnet_prefix_len": "0.0",
                  "int1_sec_group_name": "int1-sec-group",
                  "Internal1_dhcp": "false",
                  "sctp-a-ipv6-egress_dst_end_port": "65535",
                  "Internal2_forwarding_mode": "l2",
                  "fsb2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-egress_dst_subnet_prefix": "0.0.0.0",
                  "Internal1_net_cidr_len": "17",
                  "gpb2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ingress-src_subnet_prefix_len": "0.0",
                  "sctp-a-ingress_dst_addresses": "local",
                  "sctp-a-egress_action": "pass",
                  "fsb_volume_type_0": "SF-Default-SSD",
                  "ncb2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_interface_type_sctp_a": "left",
                  "vlc_st_interface_type_sctp_b": "right",
                  "sctp-a-src_subnet_prefix_v6": "::",
                  "vlc_st_version": "2",
                  "sctp-b-egress_ethertype": "IPv4",
                  "sctp-a-ingress_rule_application": "any",
                  "gpb1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "instance_ip_family_v6": "v6",
                  "sctp-a-ipv6-egress_src_start_port": "0",
                  "sctp-b-ingress-src_start_port": "0.0",
                  "sctp-b-ingress_dst_addresses": "local",
                  "fsb1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_interface_type_oam": "management",
                  "multi_stage_design": "false",
                  "oam_sec_group_name": "oam-sec-group",
                  "Internal2_net_gateway": "10.0.0.10",
                  "sctp-a-ipv6-ingress-dst_end_port": "65535",
                  "sctp-b-ipv6-egress-dst_start_port": "0",
                  "Internal1_net_gateway": "10.0.0.10",
                  "sctp-b-ipv6-egress_rule_protocol": "any",
                  "gtp_sec_group_name": "gtp-sec-group",
                  "sctp-a-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
                  "sctp-b-ipv6-egress_dst_subnet_prefix_len": "0",
                  "sctp-a-ipv6-ingress_dst_addresses": "local",
                  "sctp-a-egress_rule_protocol": "icmp",
                  "sctp-b-ipv6-egress_action": "pass",
                  "sctp-a-ipv6-egress_action": "pass",
                  "Internal1_shared": "false",
                  "sctp-b-ipv6-ingress_rule_protocol": "any",
                  "Internal2_net_cidr_len": "17",
                  "sctp-a-name": "epc-sctp-a-ipv4v6-sec-group",
                  "sctp-a-ingress-src_end_port": "65535.0",
                  "sctp-b-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
                  "sctp-a-egress-dst_end_port": "65535.0",
                  "sctp-a-ingress_action": "pass",
                  "sctp-b-egress_rule_protocol": "icmp",
                  "sctp-b-ipv6-ingress_action": "pass",
                  "vlc_st_service_type": "firewall",
                  "sctp-b-ipv6-egress_dst_end_port": "65535",
                  "sctp-b-ipv6-ingress-dst_start_port": "0",
                  "vlc2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_availability_zone": "true",
                  "fsb_volume_image_name_1": "MME_FSB2_16ACP04_GA.qcow2",
                  "sctp-b-ingress-src_subnet_prefix": "0.0.0.0",
                  "sctp-a-ipv6-ingress_src_subnet_prefix_len": "0",
                  "Internal1_allow_transit": "true",
                  "gpb_flavor_name": "nv.c20r64d1",
                  "availability_zone_max_count": "1",
                  "fsb_volume_image_name_0": "MME_FSB1_16ACP04_GA.qcow2",
                  "sctp-b-ipv6-ingress_dst_addresses": "local",
                  "sctp-b-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
                  "sctp-b-ipv6-ingress_ethertype": "IPv4",
                  "vlc1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-ingress-src_subnet_prefix": "0.0.0.0",
                  "sctp-a-ipv6-ingress_action": "pass",
                  "Internal1_rpf": "disable",
                  "sctp-b-ingress_ethertype": "IPv4",
                  "sctp-b-egress_rule_application": "any",
                  "sctp-b-ingress-src_end_port": "65535.0",
                  "sctp-a-ipv6-ingress_rule_protocol": "any",
                  "sctp-a-ingress-src_start_port": "0.0",
                  "sctp-b-egress-dst_end_port": "65535.0"
                },
                "type": "VF",
                "modelCustomizationName": "VF_vGeraldine 0",
                "vfModules": {
                  "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1": {
                    "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
                    "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
                    "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
                    "description": null,
                    "name": "VfVgeraldine..vflorence_vlc..module-1",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..vflorence_vlc..module-1",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "vflorence_vlc"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": false
                  },
                  "vf_vgeraldine0..VfVgeraldine..vflorence_gpb..module-2": {
                    "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
                    "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
                    "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
                    "description": null,
                    "name": "VfVgeraldine..vflorence_gpb..module-2",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..vflorence_gpb..module-2",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "vflorence_gpb"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": false
                  },
                  "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                    "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                    "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                    "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                    "description": null,
                    "name": "VfVgeraldine..base_vflorence..module-0",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                    "properties": {
                      "minCountInstances": 1,
                      "maxCountInstances": 1,
                      "initialCount": 1,
                      "vfModuleLabel": "base_vflorence"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": true
                  }
                },
                "volumeGroups": {
                  "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                    "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                    "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                    "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                    "description": null,
                    "name": "VfVgeraldine..base_vflorence..module-0",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                    "properties": {
                      "minCountInstances": 1,
                      "maxCountInstances": 1,
                      "initialCount": 1,
                      "vfModuleLabel": "base_vflorence"
                    },
                    "inputs": {}
                  }
                },
                "vfcInstanceGroups": {}
              }
            },
            "networks": {
              "ExtVL 0": {
                "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
                "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
                "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
                "name": "ExtVL",
                "version": "37.0",
                "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
                "inputs": {},
                "commands": {},
                "properties": {
                  "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}}",
                  "exVL_naming": "{ecomp_generated_naming=true}",
                  "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
                  "network_homing": "{ecomp_selected_instance_node_target=false}"
                },
                "type": "VL",
                "modelCustomizationName": "ExtVL 0"
              }
            },
            "collectionResources": {},
            "configurations": {
              "Port Mirroring Configuration By Policy 0": {
                "uuid": "b4398538-e89d-4f13-b33d-ca323434ba50",
                "invariantUuid": "6ef0ca40-f366-4897-951f-abd65d25f6f7",
                "description": "A port mirroring configuration by policy object",
                "name": "Port Mirroring Configuration By Policy",
                "version": "27.0",
                "customizationUuid": "3c3b7b8d-8669-4b3b-8664-61970041fad2",
                "inputs": {},
                "commands": {},
                "properties": {},
                "type": "Configuration",
                "modelCustomizationName": "Port Mirroring Configuration By Policy 0",
                "sourceNodes": [],
                "collectorNodes": null,
                "configurationByPolicy": false
              }
            },
            "serviceProxies": {},
            "vfModules": {
              "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1": {
                "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
                "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
                "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
                "description": null,
                "name": "VfVgeraldine..vflorence_vlc..module-1",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..vflorence_vlc..module-1",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "vflorence_vlc"
                },
                "inputs": {},
                "volumeGroupAllowed": false
              },
              "vf_vgeraldine0..VfVgeraldine..vflorence_gpb..module-2": {
                "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
                "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
                "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
                "description": null,
                "name": "VfVgeraldine..vflorence_gpb..module-2",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..vflorence_gpb..module-2",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "vflorence_gpb"
                },
                "inputs": {},
                "volumeGroupAllowed": false
              },
              "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                "description": null,
                "name": "VfVgeraldine..base_vflorence..module-0",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                "properties": {
                  "minCountInstances": 1,
                  "maxCountInstances": 1,
                  "initialCount": 1,
                  "vfModuleLabel": "base_vflorence"
                },
                "inputs": {},
                "volumeGroupAllowed": true
              }
            },
            "volumeGroups": {
              "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                "description": null,
                "name": "VfVgeraldine..base_vflorence..module-0",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                "properties": {
                  "minCountInstances": 1,
                  "maxCountInstances": 1,
                  "initialCount": 1,
                  "vfModuleLabel": "base_vflorence"
                },
                "inputs": {}
              }
            },
            "pnfs": {}
          }
        },
        "serviceInstance": {
          "f4d84bb4-a416-4b4e-997e-0059973630b9": {
            "vnfs": {
              "2017-488_PASQUALE-vPE 0": {
                "rollbackOnFailure": "true",
                "vfModules": {
                  "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
                    "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0jkyqv": {
                      "isMissingData": true,
                      "sdncPreReload": null,
                      "modelInfo": {
                        "modelType": "VFmodule",
                        "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091",
                        "modelVersionId": "040e591e-5d30-4e0d-850f-7266e5a8e013",
                        "modelName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                        "modelVersion": "6",
                        "modelCustomizationId": "5c5f91f9-5e31-4120-b892-5536587ec258",
                        "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0"
                      },
                      "instanceParams": [
                        {}
                      ],
                      "trackById": "n2ydptuy9lj"
                    }
                  }
                },
                "isMissingData": false,
                "originalName": "2017-488_PASQUALE-vPE 0",
                "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
                "lcpCloudRegionId": null,
                "tenantId": null,
                "lineOfBusiness": null,
                "platformName": null,
                "modelInfo": {
                  "modelType": "VF",
                  "modelInvariantId": "5be7e99e-8eb2-4d97-be63-8081ff3cd10e",
                  "modelVersionId": "f4d84bb4-a416-4b4e-997e-0059973630b9",
                  "modelName": "2017-488_PASQUALE-vPE",
                  "modelVersion": "9.0",
                  "modelCustomizationName": "2017-488_PASQUALE-vPE 0"
                },
                "trackById": "iapflwk8bip"
              }
            },
            "instanceParams": [
              {
                "2017488_pasqualevpe0_ASN": "AV_vPE"
              }
            ],
            "validationCounter": 1,
            "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
            "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
            "subscriptionServiceType": "TYLER SILVIA",
            "lcpCloudRegionId": "AAIAIC25",
            "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
            "aicZoneId": "JAG1",
            "projectName": "x1",
            "owningEntityId": "aaa1",
            "rollbackOnFailure": "true",
            "bulkSize": 1,
            "modelInfo": {
              "modelInvariantId": "598e3f9e-3244-4d8f-a8e0-0e5d7a29eda9",
              "modelVersionId": "f4d84bb4-a416-4b4e-997e-0059973630b9",
              "modelName": "PASQUALE vMX vPE_BV Service 488",
              "modelVersion": "1.0"
            },
            "existingVNFCounterMap": {
              "41516cc6-5098-4b40-a619-f8d5f55fc4d8": 1
            },
            "existingNetworksCounterMap": {},
            "tenantName": "USP-SIP-IC-24335-T-01",
            "aicZoneName": "YUDFJULP-JAG1"
          }
        },
        "lcpRegionsAndTenants": {
          "lcpRegionList": [
            {
              "id": "AAIAIC25",
              "name": "AAIAIC25",
              "isPermitted": true
            },
            {
              "id": "hvf6",
              "name": "hvf6",
              "isPermitted": true
            }
          ],
          "lcpRegionsTenantsMap": {
            "AAIAIC25": [
              {
                "id": "092eb9e8e4b7412e8787dd091bc58e86",
                "name": "USP-SIP-IC-24335-T-01",
                "isPermitted": true
              }
            ],
            "hvf6": [
              {
                "id": "bae71557c5bb4d5aac6743a4e5f1d054",
                "name": "AIN Web Tool-15-D-testalexandria",
                "isPermitted": true
              },
              {
                "id": "229bcdc6eaeb4ca59d55221141d01f8e",
                "name": "AIN Web Tool-15-D-STTest2",
                "isPermitted": true
              },
              {
                "id": "1178612d2b394be4834ad77f567c0af2",
                "name": "AIN Web Tool-15-D-SSPtestcustome",
                "isPermitted": true
              },
              {
                "id": "19c5ade915eb461e8af52fb2fd8cd1f2",
                "name": "AIN Web Tool-15-D-UncheckedEcopm",
                "isPermitted": true
              },
              {
                "id": "de007636e25249238447264a988a927b",
                "name": "AIN Web Tool-15-D-dfsdf",
                "isPermitted": true
              },
              {
                "id": "62f29b3613634ca6a3065cbe0e020c44",
                "name": "AIN/SMS-16-D-Multiservices1",
                "isPermitted": true
              },
              {
                "id": "649289e30d3244e0b48098114d63c2aa",
                "name": "AIN Web Tool-15-D-SSPST66",
                "isPermitted": true
              },
              {
                "id": "3f21eeea6c2c486bba31dab816c05a32",
                "name": "AIN Web Tool-15-D-ASSPST47",
                "isPermitted": true
              },
              {
                "id": "f60ce21d3ee6427586cff0d22b03b773",
                "name": "CESAR-100-D-sspjg67246",
                "isPermitted": true
              },
              {
                "id": "8774659e425f479895ae091bb5d46560",
                "name": "CESAR-100-D-sspjg68359",
                "isPermitted": true
              },
              {
                "id": "624eb554b0d147c19ff8885341760481",
                "name": "AINWebTool-15-D-iftach",
                "isPermitted": true
              },
              {
                "id": "214f55f5fc414c678059c383b03e4962",
                "name": "CESAR-100-D-sspjg612401",
                "isPermitted": true
              },
              {
                "id": "c90666c291664841bb98e4d981ff1db5",
                "name": "CESAR-100-D-sspjg621340",
                "isPermitted": true
              },
              {
                "id": "ce5b6bc5c7b348e1bf4b91ac9a174278",
                "name": "sspjg621351cloned",
                "isPermitted": true
              },
              {
                "id": "b386b768a3f24c8e953abbe0b3488c02",
                "name": "AINWebTool-15-D-eteancomp",
                "isPermitted": true
              },
              {
                "id": "dc6c4dbfd225474e9deaadd34968646c",
                "name": "AINWebTool-15-T-SPFET",
                "isPermitted": true
              },
              {
                "id": "02cb5030e9914aa4be120bd9ed1e19eb",
                "name": "AINWebTool-15-X-eeweww",
                "isPermitted": true
              },
              {
                "id": "f2f3830e4c984d45bcd00e1a04158a79",
                "name": "CESAR-100-D-spjg61909",
                "isPermitted": true
              },
              {
                "id": "05b91bd5137f4929878edd965755c06d",
                "name": "CESAR-100-D-sspjg621512cloned",
                "isPermitted": true
              },
              {
                "id": "7002fbe8482d4a989ddf445b1ce336e0",
                "name": "AINWebTool-15-X-vdr",
                "isPermitted": true
              },
              {
                "id": "4008522be43741dcb1f5422022a2aa0b",
                "name": "AINWebTool-15-D-ssasa",
                "isPermitted": true
              },
              {
                "id": "f44e2e96a1b6476abfda2fa407b00169",
                "name": "AINWebTool-15-D-PFNPT",
                "isPermitted": true
              },
              {
                "id": "b69a52bec8a84669a37a1e8b72708be7",
                "name": "AINWebTool-15-X-vdre",
                "isPermitted": true
              },
              {
                "id": "fac7d9fd56154caeb9332202dcf2969f",
                "name": "AINWebTool-15-X-NONPODECOMP",
                "isPermitted": true
              },
              {
                "id": "2d34d8396e194eb49969fd61ffbff961",
                "name": "DN5242-Nov16-T5",
                "isPermitted": true
              },
              {
                "id": "cb42a77ff45b48a8b8deb83bb64acc74",
                "name": "ro-T11",
                "isPermitted": true
              },
              {
                "id": "fa45ca53c80b492fa8be5477cd84fc2b",
                "name": "ro-T112",
                "isPermitted": true
              },
              {
                "id": "4914ab0ab3a743e58f0eefdacc1dde77",
                "name": "DN5242-Nov21-T1",
                "isPermitted": true
              },
              {
                "id": "d0a3e3f2964542259d155a81c41aadc3",
                "name": "test-hvf6-09",
                "isPermitted": true
              },
              {
                "id": "cbb99fe4ada84631b7baf046b6fd2044",
                "name": "DN5242-Nov16-T3",
                "isPermitted": true
              }
            ]
          }
        },
        "subscribers": [
          {
            "id": "CAR_2020_ER",
            "name": "CAR_2020_ER",
            "isPermitted": true
          },
          {
            "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
            "name": "JULIO ERICKSON",
            "isPermitted": false
          },
          {
            "id": "DHV1707-TestSubscriber-2",
            "name": "DALE BRIDGES",
            "isPermitted": false
          },
          {
            "id": "DHV1707-TestSubscriber-1",
            "name": "LLOYD BRIDGES",
            "isPermitted": false
          },
          {
            "id": "jimmy-example",
            "name": "JimmyExampleCust-20161102",
            "isPermitted": false
          },
          {
            "id": "jimmy-example2",
            "name": "JimmyExampleCust-20161103",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-TestSub-PWT-102",
            "name": "ERICA5779-TestSub-PWT-102",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-TestSub-PWT-101",
            "name": "ERICA5779-TestSub-PWT-101",
            "isPermitted": false
          },
          {
            "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
            "name": "Emanuel",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-Subscriber-4",
            "name": "ERICA5779-Subscriber-5",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-TestSub-PWT-103",
            "name": "ERICA5779-TestSub-PWT-103",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-Subscriber-2",
            "name": "ERICA5779-Subscriber-2",
            "isPermitted": false
          },
          {
            "id": "e433710f-9217-458d-a79d-1c7aff376d89",
            "name": "SILVIA ROBBINS",
            "isPermitted": true
          },
          {
            "id": "ERICA5779-Subscriber-3",
            "name": "ERICA5779-Subscriber-3",
            "isPermitted": false
          },
          {
            "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
            "name": "CRAIG/ROBERTS",
            "isPermitted": false
          }
        ],
        "productFamilies": [
          {
            "id": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
            "name": "ERICA",
            "isPermitted": true
          },
          {
            "id": "17cc1042-527b-11e6-beb8-9e71128cae77",
            "name": "IGNACIO",
            "isPermitted": true
          },
          {
            "id": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
            "name": "Christie",
            "isPermitted": true
          },
          {
            "id": "a4f6f2ae-9bf5-4ed7-b904-06b2099c4bd7",
            "name": "Enhanced Services",
            "isPermitted": true
          },
          {
            "id": "vTerrance",
            "name": "vTerrance",
            "isPermitted": true
          },
          {
            "id": "323d69d9-2efe-4r45-ay0a-89ea7ard4e6f",
            "name": "vEsmeralda",
            "isPermitted": true
          },
          {
            "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
            "name": "Emanuel",
            "isPermitted": true
          },
          {
            "id": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
            "name": "BVOIP",
            "isPermitted": true
          },
          {
            "id": "db171b8f-115c-4992-a2e3-ee04cae357e0",
            "name": "LINDSEY",
            "isPermitted": true
          },
          {
            "id": "LRSI-OSPF",
            "name": "LRSI-OSPF",
            "isPermitted": true
          },
          {
            "id": "vRosemarie",
            "name": "HNGATEWAY",
            "isPermitted": true
          },
          {
            "id": "vHNPaas",
            "name": "WILKINS",
            "isPermitted": true
          },
          {
            "id": "e433710f-9217-458d-a79d-1c7aff376d89",
            "name": "TYLER SILVIA",
            "isPermitted": true
          },
          {
            "id": "b6a3f28c-eebf-494c-a900-055cc7c874ce",
            "name": "VROUTER",
            "isPermitted": true
          },
          {
            "id": "vMuriel",
            "name": "vMuriel",
            "isPermitted": true
          },
          {
            "id": "0ee8c1bc-7cbd-4b0a-a1ac-e9999255abc1",
            "name": "CARA Griffin",
            "isPermitted": true
          },
          {
            "id": "c7611ebe-c324-48f1-8085-94aef0c6ef3d",
            "name": "DARREN MCGEE",
            "isPermitted": true
          },
          {
            "id": "e30755dc-5673-4b6b-9dcf-9abdd96b93d1",
            "name": "Transport",
            "isPermitted": true
          },
          {
            "id": "vSalvatore",
            "name": "vSalvatore",
            "isPermitted": true
          },
          {
            "id": "d7bb0a21-66f2-4e6d-87d9-9ef3ced63ae4",
            "name": "JOSEFINA",
            "isPermitted": true
          },
          {
            "id": "vHubbard",
            "name": "vHubbard",
            "isPermitted": true
          },
          {
            "id": "12a96a9d-4b4c-4349-a950-fe1159602621",
            "name": "DARREN MCGEE",
            "isPermitted": true
          }
        ],
        "serviceTypes": {
          "e433710f-9217-458d-a79d-1c7aff376d89": [
            {
              "id": "0",
              "name": "vRichardson",
              "isPermitted": false
            },
            {
              "id": "1",
              "name": "TYLER SILVIA",
              "isPermitted": true
            },
            {
              "id": "2",
              "name": "Emanuel",
              "isPermitted": false
            },
            {
              "id": "3",
              "name": "vJamie",
              "isPermitted": false
            },
            {
              "id": "4",
              "name": "vVoiceMail",
              "isPermitted": false
            },
            {
              "id": "5",
              "name": "Kennedy",
              "isPermitted": false
            },
            {
              "id": "6",
              "name": "vPorfirio",
              "isPermitted": false
            },
            {
              "id": "7",
              "name": "vVM",
              "isPermitted": false
            },
            {
              "id": "8",
              "name": "vOTA",
              "isPermitted": false
            },
            {
              "id": "9",
              "name": "vFLORENCE",
              "isPermitted": false
            },
            {
              "id": "10",
              "name": "vMNS",
              "isPermitted": false
            },
            {
              "id": "11",
              "name": "vEsmeralda",
              "isPermitted": false
            },
            {
              "id": "12",
              "name": "VPMS",
              "isPermitted": false
            },
            {
              "id": "13",
              "name": "vWINIFRED",
              "isPermitted": false
            },
            {
              "id": "14",
              "name": "SSD",
              "isPermitted": false
            },
            {
              "id": "15",
              "name": "vMOG",
              "isPermitted": false
            },
            {
              "id": "16",
              "name": "LINDSEY",
              "isPermitted": false
            },
            {
              "id": "17",
              "name": "JOHANNA_SANTOS",
              "isPermitted": false
            },
            {
              "id": "18",
              "name": "vCarroll",
              "isPermitted": false
            }
          ]
        },
        "aicZones": [
          {
            "id": "NFT1",
            "name": "NFTJSSSS-NFT1"
          },
          {
            "id": "JAG1",
            "name": "YUDFJULP-JAG1"
          },
          {
            "id": "YYY1",
            "name": "UUUAIAAI-YYY1"
          },
          {
            "id": "AVT1",
            "name": "AVTRFLHD-AVT1"
          },
          {
            "id": "ATL34",
            "name": "ATLSANAI-ATL34"
          }
        ],
        "categoryParameters": {
          "owningEntityList": [
            {
              "id": "aaa1",
              "name": "aaa1"
            },
            {
              "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
              "name": "WayneHolland"
            },
            {
              "id": "Melissa",
              "name": "Melissa"
            }
          ],
          "projectList": [
            {
              "id": "WATKINS",
              "name": "WATKINS"
            },
            {
              "id": "x1",
              "name": "x1"
            },
            {
              "id": "yyy1",
              "name": "yyy1"
            }
          ],
          "lineOfBusinessList": [
            {
              "id": "ONAP",
              "name": "ONAP"
            },
            {
              "id": "zzz1",
              "name": "zzz1"
            }
          ],
          "platformList": [
            {
              "id": "platform",
              "name": "platform"
            },
            {
              "id": "xxx1",
              "name": "xxx1"
            }
          ]
        },
        "type": "[LCP_REGIONS_AND_TENANTS] Update"
      }
    }
  }

  function getReduxWith2Networks() {
    return {
      "global": {
        "name": null,
        "type": "UPDATE_DRAWING_BOARD_STATUS",
        "flags": {
          "CREATE_INSTANCE_TEST": false,
          "EMPTY_DRAWING_BOARD_TEST": false,
          "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
          "FLAG_ADD_MSO_TESTAPI_FIELD": true,
          "FLAG_SERVICE_MODEL_CACHE": true,
          "FLAG_SHOW_ASSIGNMENTS": true,
          "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
          "FLAG_DEFAULT_VNF": true,
          "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": true,
          "FLAG_A_LA_CARTE_AUDIT_INFO": true,
          "FLAG_1810_CR_ADD_CLOUD_OWNER_TO_MSO_REQUEST": true,
          "FLAG_PRESENT_PROVIDER_NETWORKS_ASSOCIATIONS": true,
          "FLAG_1810_CR_SOFT_DELETE_ALACARTE_VF_MODULE": false,
          "FLAG_1902_NEW_VIEW_EDIT": false,
          "FLAG_1810_IDENTIFY_SERVICE_FOR_NEW_UI": false,
          "FLAG_1902_VNF_GROUPING": false,
          "FLAG_SHOW_VERIFY_SERVICE": false,
          "FLAG_ASYNC_ALACARTE_VFMODULE": true,
          "FLAG_ASYNC_ALACARTE_VNF": true,
          "FLAG_1810_AAI_LOCAL_CACHE": true,
          "FLAG_EXP_USE_DEFAULT_HOST_NAME_VERIFIER": false,
          "FLAG_EXP_ANY_ALACARTE_NEW_INSTANTIATION_UI": false,
          "FLAG_SUPPLEMENTARY_FILE": true,
          "FLAG_5G_IN_NEW_INSTANTIATION_UI": true,
          "FLAG_RESTRICTED_SELECT": false,
          "FLAG_1810_CR_LET_SELECTING_COLLECTOR_TYPE_UNCONDITIONALLY": true
        },
        "drawingBoardStatus": "CREATE"
      },
      "service": {
        "serviceHierarchy": {
          "2ab1da67-39cc-425f-ba52-59a64d0ea04a": {
            "service": {
              "uuid": "2ab1da67-39cc-425f-ba52-59a64d0ea04a",
              "invariantUuid": "712b3447-f096-42f6-ae4c-4bdc8988feb6",
              "name": "sgi_direct_net NC SRIOV network",
              "version": "1.0",
              "toscaModelURL": null,
              "category": "Network Service",
              "serviceType": "INFRASTRUCTURE",
              "serviceRole": "PROVIDER-NETWORK",
              "description": "SRIOV network model for NC 1.0, VLAN ID 103",
              "serviceEcompNaming": "false",
              "instantiationType": "A-La-Carte",
              "inputs": {},
              "vidNotions": {
                "instantiationUI": "networkWithPropertyNetworkTechnologyEqualsStandardSriovOrOvs",
                "modelCategory": "5G Provider Network",
                "viewEditUI": "legacy",
                "instantiationType": "ALaCarte"
              }
            },
            "vnfs": {},
            "networks": {
              "SR-IOV Provider 2-1": {
                "uuid": "01f4c475-3f89-4f00-a2f4-39a873dba0ae",
                "invariantUuid": "ffb9e45c-e674-4289-aad3-00040ad746e4",
                "description": "NETWORK_CLOUD_PROVIDER_NETWORK",
                "name": "NETWORK_CLOUD_PROVIDER_NETWORK",
                "version": "1.0",
                "customizationUuid": "42551d11-b8d1-460d-8795-3e1363ad7736",
                "inputs": {},
                "commands": {},
                "properties": {
                  "network_role": "sgi_direct_net_1",
                  "network_assignments": "{is_external_network=false, is_shared_network=true, is_trunked=false, ipv4_subnet_default_assignment={dhcp_enabled=false, ip_version=4, min_subnets_count=1, use_ipv4=true}, ecomp_generated_network_assignment=false, ipv6_subnet_default_assignment={dhcp_enabled=false, use_ipv6=true, ip_version=6, min_subnets_count=1}, related_networks=[{related_network_role=sgi_direct_net_1_tenant}]}",
                  "exVL_naming": "{ecomp_generated_naming=false}",
                  "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
                  "network_scope": "GLOBAL",
                  "ecomp_generated_naming": "false",
                  "network_type": "SR-IOV-PROVIDER2-1",
                  "provider_network": "{physical_network_name=sriovnet1, is_provider_network=true}",
                  "network_technology": "STANDARD-SR-IOV",
                  "network_homing": "{ecomp_selected_instance_node_target=false}"
                },
                "type": "VL",
                "modelCustomizationName": "SR-IOV Provider 2-1"
              },
              "SR-IOV Provider 2-2": {
                "uuid": "01f4c475-3f89-4f00-a2f4-39a873dba0ae",
                "invariantUuid": "ffb9e45c-e674-4289-aad3-00040ad746e4",
                "description": "NETWORK_CLOUD_PROVIDER_NETWORK",
                "name": "NETWORK_CLOUD_PROVIDER_NETWORK",
                "version": "1.0",
                "customizationUuid": "14d2dc2b-4e85-4ef5-b4da-fe996e2a5d33",
                "inputs": {},
                "commands": {},
                "properties": {
                  "network_role": "sgi_direct_net_2",
                  "network_assignments": "{is_external_network=false, is_shared_network=true, is_trunked=false, ipv4_subnet_default_assignment={dhcp_enabled=false, ip_version=4, min_subnets_count=1, use_ipv4=true}, ecomp_generated_network_assignment=false, ipv6_subnet_default_assignment={dhcp_enabled=false, use_ipv6=true, ip_version=6, min_subnets_count=1}, related_networks=[{related_network_role=sgi_direct_net_2_tenant}]}",
                  "exVL_naming": "{ecomp_generated_naming=false}",
                  "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
                  "network_scope": "GLOBAL",
                  "ecomp_generated_naming": "false",
                  "network_type": "SR-IOV-PROVIDER2-2",
                  "provider_network": "{physical_network_name=sriovnet2, is_provider_network=true}",
                  "network_technology": "STANDARD-SR-IOV",
                  "network_homing": "{ecomp_selected_instance_node_target=false}"
                },
                "type": "VL",
                "modelCustomizationName": "SR-IOV Provider 2-2"
              }
            },
            "collectionResources": {},
            "configurations": {},
            "fabricConfigurations": {},
            "serviceProxies": {},
            "vfModules": {},
            "volumeGroups": {},
            "pnfs": {},
            "vnfGroups": {}
          }
        },
        "serviceInstance": {
          "2ab1da67-39cc-425f-ba52-59a64d0ea04a": {
            "action": "Create",
            "isDirty": false,
            "vnfs": {},
            "instanceParams": [
              {}
            ],
            "validationCounter": 0,
            "existingNames": {
              "myname": ""
            },
            "existingVNFCounterMap": {},
            "existingVnfGroupCounterMap": {},
            "existingNetworksCounterMap": {
              "01f4c475-3f89-4f00-a2f4-39a873dba0ae": 1
            },
            "optionalGroupMembersMap": {},
            "networks": {
              "SR-IOV Provider 2-2": {
                "action": "Create",
                "inMaint": false,
                "rollbackOnFailure": "true",
                "originalName": "SR-IOV Provider 2-2",
                "isMissingData": false,
                "trackById": "83ad9rv48px",
                "networkStoreKey": "SR-IOV Provider 2-2",
                "instanceName": "NETWORK_CLOUD_PROVIDER_NETWORK",
                "productFamilyId": null,
                "lcpCloudRegionId": "olson5b",
                "tenantId": "db1818f7f2e34862b378bfb2cc520f91",
                "platformName": "APPLICATIONS-SERVICES",
                "lineOfBusiness": null,
                "instanceParams": [
                  {}
                ],
                "modelInfo": {
                  "modelInvariantId": "ffb9e45c-e674-4289-aad3-00040ad746e4",
                  "modelVersionId": "01f4c475-3f89-4f00-a2f4-39a873dba0ae",
                  "modelName": "NETWORK_CLOUD_PROVIDER_NETWORK",
                  "modelVersion": "1.0",
                  "modelCustomizationId": "14d2dc2b-4e85-4ef5-b4da-fe996e2a5d33",
                  "modelCustomizationName": "SR-IOV Provider 2-2",
                  "uuid": "01f4c475-3f89-4f00-a2f4-39a873dba0ae"
                },
                "uuid": "01f4c475-3f89-4f00-a2f4-39a873dba0ae"
              }
            },
            "vnfGroups": {},
            "bulkSize": 1,
            "instanceName": "myname",
            "globalSubscriberId": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
            "subscriptionServiceType": "LINDSEY",
            "owningEntityId": "2d097967-10d4-4c7f-b23c-89978249ae17",
            "projectName": null,
            "rollbackOnFailure": "true",
            "aicZoneName": null,
            "owningEntityName": "CRAIG-ROBERTSELLANEOUS",
            "testApi": "VNF_API",
            "tenantName": null,
            "modelInfo": {
              "modelInvariantId": "712b3447-f096-42f6-ae4c-4bdc8988feb6",
              "modelVersionId": "2ab1da67-39cc-425f-ba52-59a64d0ea04a",
              "modelName": "sgi_direct_net NC SRIOV network",
              "modelVersion": "1.0",
              "uuid": "2ab1da67-39cc-425f-ba52-59a64d0ea04a"
            },
            "isALaCarte": true,
            "name": "sgi_direct_net NC SRIOV network",
            "version": "1.0",
            "description": "SRIOV network model for NC 1.0, VLAN ID 103",
            "category": "Network Service",
            "uuid": "2ab1da67-39cc-425f-ba52-59a64d0ea04a",
            "invariantUuid": "712b3447-f096-42f6-ae4c-4bdc8988feb6",
            "serviceType": "INFRASTRUCTURE",
            "serviceRole": "PROVIDER-NETWORK",
            "vidNotions": {
              "instantiationUI": "networkWithPropertyNetworkTechnologyEqualsStandardSriovOrOvs",
              "modelCategory": "5G Provider Network",
              "viewEditUI": "legacy"
            },
            "isEcompGeneratedNaming": false,
            "isMultiStepDesign": false
          }
        },
        "lcpRegionsAndTenants": {
          "lcpRegionList": [
            {
              "id": "olson5a",
              "name": "olson5a (AIC)",
              "isPermitted": true,
              "cloudOwner": "irma-aic"
            },
            {
              "id": "olson5b",
              "name": "olson5b (AIC)",
              "isPermitted": true,
              "cloudOwner": "irma-aic"
            },
            {
              "id": "olson6a",
              "name": "olson6a (AIC)",
              "isPermitted": true,
              "cloudOwner": "irma-aic"
            }
          ],
          "lcpRegionsTenantsMap": {
            "olson5a": [
              {
                "id": "51e7dc5db9bb4c7b94766aacb8a3e72f",
                "name": "Mobitools-FN-27099-T-01",
                "isPermitted": true,
                "cloudOwner": "irma-aic"
              },
              {
                "id": "d5b3c05cffa645dd9951bf2dd9ef5416",
                "name": "Mobisupport-FN-27099-T-01",
                "isPermitted": true,
                "cloudOwner": "irma-aic"
              }
            ],
            "olson5b": [
              {
                "id": "db1818f7f2e34862b378bfb2cc520f91",
                "name": "Mobisupport-FN-27099-T-02",
                "isPermitted": true,
                "cloudOwner": "irma-aic"
              }
            ],
            "olson6a": [
              {
                "id": "1dcd712850414fbd91f8a9fc9cca7fd4",
                "name": "FNvEPC-27099-T-MS-olson6A",
                "isPermitted": true,
                "cloudOwner": "irma-aic"
              },
              {
                "id": "26af9ed85a004932822a607d5e9973d5",
                "name": "ssf-28239-T-olson6A",
                "isPermitted": true,
                "cloudOwner": "irma-aic"
              }
            ]
          }
        },
        "subscribers": [
          {
            "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
            "name": "CRAIG/ROBERTS",
            "isPermitted": false
          },
          {
            "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
            "name": "Emanuel",
            "isPermitted": true
          },
          {
            "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
            "name": "JULIO ERICKSON",
            "isPermitted": false
          },
          {
            "id": "e433710f-9217-458d-a79d-1c7aff376d89",
            "name": "SILVIA ROBBINS",
            "isPermitted": false
          },
          {
            "id": "VidE2ETest",
            "name": "VidTest20161020",
            "isPermitted": false
          }
        ],
        "productFamilies": null,
        "serviceTypes": {
          "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb": [
            {
              "id": "22",
              "name": "JOHANNA_SANTOS",
              "isPermitted": true
            },
            {
              "id": "11",
              "name": "RAMSEY",
              "isPermitted": false
            },
            {
              "id": "3",
              "name": "LINDSEY",
              "isPermitted": true
            },
            {
              "id": "6",
              "name": "INFRASTRUCTURE",
              "isPermitted": false
            },
            {
              "id": "4",
              "name": "BROOKE-RODRIQUEZ",
              "isPermitted": false
            },
            {
              "id": "0",
              "name": "Emanuel",
              "isPermitted": true
            },
            {
              "id": "15",
              "name": "Kennedy",
              "isPermitted": true
            },
            {
              "id": "21",
              "name": "SSD",
              "isPermitted": true
            },
            {
              "id": "18",
              "name": "VPMS",
              "isPermitted": true
            },
            {
              "id": "1",
              "name": "vJamie",
              "isPermitted": true
            },
            {
              "id": "27",
              "name": "vEPDG",
              "isPermitted": false
            },
            {
              "id": "23",
              "name": "vRichardson",
              "isPermitted": true
            },
            {
              "id": "7",
              "name": "vGDF",
              "isPermitted": false
            },
            {
              "id": "2",
              "name": "vCarroll",
              "isPermitted": true
            },
            {
              "id": "17",
              "name": "vMGCF",
              "isPermitted": false
            },
            {
              "id": "9",
              "name": "vFLORENCE",
              "isPermitted": true
            },
            {
              "id": "25",
              "name": "vWINIFRED",
              "isPermitted": true
            },
            {
              "id": "8",
              "name": "vMNS",
              "isPermitted": true
            },
            {
              "id": "14",
              "name": "vMOG",
              "isPermitted": true
            },
            {
              "id": "10",
              "name": "vOTA",
              "isPermitted": true
            },
            {
              "id": "16",
              "name": "vEsmeralda",
              "isPermitted": true
            },
            {
              "id": "24",
              "name": "vPorfirio",
              "isPermitted": true
            },
            {
              "id": "12",
              "name": "vSILB",
              "isPermitted": false
            },
            {
              "id": "19",
              "name": "vSON",
              "isPermitted": false
            },
            {
              "id": "13",
              "name": "vSSF",
              "isPermitted": false
            },
            {
              "id": "26",
              "name": "vUDR",
              "isPermitted": false
            },
            {
              "id": "20",
              "name": "vVM",
              "isPermitted": true
            },
            {
              "id": "5",
              "name": "vVoiceMail",
              "isPermitted": true
            }
          ]
        },
        "aicZones": null,
        "categoryParameters": {
          "owningEntityList": [
            {
              "id": "1ae27f5e-c0b3-4daf-8561-b25fc1c716e4",
              "name": "AIC-ECOMP"
            },
            {
              "id": "2e51ed6c-1fac-43d4-8f84-9ec405eb7f35",
              "name": "ENTERTAINMENT-VIDEO"
            },
            {
              "id": "2d097967-10d4-4c7f-b23c-89978249ae17",
              "name": "CRAIG-ROBERTSELLANEOUS"
            },
            {
              "id": "aedf37e2-acda-4976-b89b-fd6d4ddffbc6",
              "name": "IP-COMMUNICATIONS"
            },
            {
              "id": "9463675f-6a75-4cc8-8054-c6cb2e67ad51",
              "name": "METRO-JULIO-ERICKSON"
            },
            {
              "id": "92ddf9af-acae-484c-a786-ad7e9c0da26f",
              "name": "EMANUEL-ACCESS"
            },
            {
              "id": "10c645f5-9924-4b89-bec0-b17cf49d3cad",
              "name": "EMANUEL-CORE"
            },
            {
              "id": "048eb6e7-fa94-4f3b-ae03-3175a750dc57",
              "name": "OPTICAL-TRANSPORT"
            },
            {
              "id": "0efc70be-d674-4777-a0fa-329eae187ca0",
              "name": "JULIO-ERICKSON"
            },
            {
              "id": "0463287b-b133-46ef-a0f5-9ce62be3a053",
              "name": "PREMISES"
            },
            {
              "id": "ae4505ad-2961-4395-8659-df2253af4fa8",
              "name": "WIRELINE-ACCESS"
            }
          ],
          "projectList": [
            {
              "id": "G.FAST",
              "name": "G.FAST"
            },
            {
              "id": "GigaPower",
              "name": "GigaPower"
            },
            {
              "id": "Kennedy",
              "name": "Kennedy"
            },
            {
              "id": "Trinity",
              "name": "Trinity"
            },
            {
              "id": "USP",
              "name": "USP"
            }
          ],
          "lineOfBusinessList": [
            {
              "id": "",
              "name": ""
            },
            {
              "id": "ADI",
              "name": "ADI"
            },
            {
              "id": "ADIG",
              "name": "ADIG"
            },
            {
              "id": "PASQUALE",
              "name": "PASQUALE"
            },
            {
              "id": "AT&TLEGACYDATASERVICES",
              "name": "AT&TLEGACYDATASERVICES"
            },
            {
              "id": "AT&TSWITCHEDETHERNET",
              "name": "AT&TSWITCHEDETHERNET"
            },
            {
              "id": "AVPN",
              "name": "AVPN"
            },
            {
              "id": "AVPN-MOW",
              "name": "AVPN-MOW"
            },
            {
              "id": "CALEA",
              "name": "CALEA"
            },
            {
              "id": "COLLABORATE",
              "name": "COLLABORATE"
            },
            {
              "id": "DIRECT-TV",
              "name": "DIRECT-TV"
            },
            {
              "id": "LINDSEY",
              "name": "LINDSEY"
            },
            {
              "id": "FLEXWARE",
              "name": "FLEXWARE"
            },
            {
              "id": "INFRASTRUCTURE",
              "name": "INFRASTRUCTURE"
            },
            {
              "id": "IOT",
              "name": "IOT"
            },
            {
              "id": "IP-FLEXIBLE-REACH",
              "name": "IP-FLEXIBLE-REACH"
            },
            {
              "id": "IP-TOLL-FREE",
              "name": "IP-TOLL-FREE"
            },
            {
              "id": "EMANUEL-ABS",
              "name": "EMANUEL-ABS"
            },
            {
              "id": "EMANUEL-CONSUMER",
              "name": "EMANUEL-CONSUMER"
            },
            {
              "id": "EMANUEL-RESELLER",
              "name": "EMANUEL-RESELLER"
            },
            {
              "id": "NETBOND",
              "name": "NETBOND"
            },
            {
              "id": "SD-WAN",
              "name": "SD-WAN"
            },
            {
              "id": "UVERSE",
              "name": "UVERSE"
            },
            {
              "id": "UVERSE-VOICE",
              "name": "UVERSE-VOICE"
            },
            {
              "id": "VIRTUAL-EDGE",
              "name": "VIRTUAL-EDGE"
            },
            {
              "id": "VOLTE",
              "name": "VOLTE"
            }
          ],
          "platformList": [
            {
              "id": "3rdPartyCloud",
              "name": "3rdPartyCloud"
            },
            {
              "id": "ACCESS",
              "name": "ACCESS"
            },
            {
              "id": "AIC",
              "name": "AIC"
            },
            {
              "id": "APPLICATIONS-SERVICES",
              "name": "APPLICATIONS-SERVICES"
            },
            {
              "id": "BVOIP",
              "name": "BVOIP"
            },
            {
              "id": "CALEA-DEDICATED",
              "name": "CALEA-DEDICATED"
            },
            {
              "id": "CBB-MPLS-CORE",
              "name": "CBB-MPLS-CORE"
            },
            {
              "id": "D1",
              "name": "D1"
            },
            {
              "id": "D1.5",
              "name": "D1.5"
            },
            {
              "id": "EPC",
              "name": "EPC"
            },
            {
              "id": "FIRSTNET-DEDICATED",
              "name": "FIRSTNET-DEDICATED"
            },
            {
              "id": "IMS-USP",
              "name": "IMS-USP"
            },
            {
              "id": "IPAG",
              "name": "IPAG"
            },
            {
              "id": "MNS",
              "name": "MNS"
            },
            {
              "id": "NETWORK-CLOUD",
              "name": "NETWORK-CLOUD"
            },
            {
              "id": "RADIO-WIRELESSENGINEERING",
              "name": "RADIO-WIRELESSENGINEERING"
            },
            {
              "id": "RAN",
              "name": "RAN"
            },
            {
              "id": "UCPE",
              "name": "UCPE"
            },
            {
              "id": "VNI",
              "name": "VNI"
            }
          ]
        },
        "type": "UPDATE_LCP_REGIONS_AND_TENANTS"
      }
    }
  }

  function getReduxWithVNFS(isEcompGeneratedNaming: boolean) {
    return {
      "global": {
        "name": null,
        "flags": {
          "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
          "FLAG_SHOW_ASSIGNMENTS": true,
          "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
          "FLAG_SHOW_VERIFY_SERVICE": false,
          "FLAG_SERVICE_MODEL_CACHE": true,
          "CREATE_INSTANCE_TEST": false,
          "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": false,
          "EMPTY_DRAWING_BOARD_TEST": false,
          "FLAG_ADD_MSO_TESTAPI_FIELD": true,
          "FLAG_SUPPLEMENTARY_FILE": true
        },
        "type": "[FLAGS] Update"
      },
      "service": {
        "serviceHierarchy": {
          "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
            "service": {
              "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
              "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
              "name": "ComplexService",
              "version": "1.0",
              "toscaModelURL": null,
              "category": "Emanuel",
              "serviceType": "",
              "serviceRole": "",
              "description": "ComplexService",
              "serviceEcompNaming": "true",
              "instantiationType": "Macro",
              "vidNotions": {
                "instantiationType": "Macro"
              },
              "inputs": {}
            },
            "vnfs": {
              "VF_vGeraldine 0": {
                "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60",
                "invariantUuid": "4160458e-f648-4b30-a176-43881ffffe9e",
                "description": "VSP_vGeraldine",
                "name": "VF_vGeraldine",
                "version": "2.0",
                "customizationUuid": "91415b44-753d-494c-926a-456a9172bbb9",
                "inputs": {},
                "commands": {},
                "properties": {
                  "max_instances": 10,
                  "min_instances": 1,
                  "gpb2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ipv6-egress_src_start_port": "0",
                  "sctp-a-ipv6-egress_rule_application": "any",
                  "Internal2_allow_transit": "true",
                  "sctp-b-IPv6_ethertype": "IPv6",
                  "sctp-a-egress_rule_application": "any",
                  "sctp-b-ingress_action": "pass",
                  "sctp-b-ingress_rule_protocol": "icmp",
                  "ncb2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ipv6-ingress-src_start_port": "0.0",
                  "ncb1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "fsb_volume_size_0": "320.0",
                  "sctp-b-egress_src_addresses": "local",
                  "sctp-a-ipv6-ingress_ethertype": "IPv4",
                  "sctp-a-ipv6-ingress-dst_start_port": "0",
                  "sctp-b-ipv6-ingress_rule_application": "any",
                  "domain_name": "default-domain",
                  "sctp-a-ingress_rule_protocol": "icmp",
                  "sctp-b-egress-src_start_port": "0.0",
                  "sctp-a-egress_src_addresses": "local",
                  "sctp-b-display_name": "epc-sctp-b-ipv4v6-sec-group",
                  "sctp-a-egress-src_start_port": "0.0",
                  "sctp-a-ingress_ethertype": "IPv4",
                  "sctp-b-ipv6-ingress-dst_end_port": "65535",
                  "sctp-b-dst_subnet_prefix_v6": "::",
                  "nf_naming": "{ecomp_generated_naming=true}",
                  "sctp-a-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
                  "sctp-b-egress-dst_start_port": "0.0",
                  "ncb_flavor_name": "nv.c20r64d1",
                  "gpb1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-egress_dst_subnet_prefix_len": "0.0",
                  "Internal2_net_cidr": "10.0.0.10",
                  "sctp-a-ingress-dst_start_port": "0.0",
                  "sctp-a-egress-dst_start_port": "0.0",
                  "fsb1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-egress_ethertype": "IPv4",
                  "vlc_st_service_mode": "in-network-nat",
                  "sctp-a-ipv6-egress_ethertype": "IPv4",
                  "sctp-a-egress-src_end_port": "65535.0",
                  "sctp-b-ipv6-egress_rule_application": "any",
                  "sctp-b-egress_action": "pass",
                  "sctp-a-ingress-src_subnet_prefix_len": "0.0",
                  "sctp-b-ipv6-ingress-src_end_port": "65535.0",
                  "sctp-b-name": "epc-sctp-b-ipv4v6-sec-group",
                  "fsb2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-ipv6-ingress-src_start_port": "0.0",
                  "sctp-b-ipv6-egress_ethertype": "IPv4",
                  "Internal1_net_cidr": "10.0.0.10",
                  "sctp-a-egress_dst_subnet_prefix": "0.0.0.0",
                  "fsb_flavor_name": "nv.c20r64d1",
                  "sctp_rule_protocol": "132",
                  "sctp-b-ipv6-ingress_src_subnet_prefix_len": "0",
                  "sctp-a-ipv6-ingress_rule_application": "any",
                  "ecomp_generated_naming": isEcompGeneratedNaming.toString(),
                  "sctp-a-IPv6_ethertype": "IPv6",
                  "vlc2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_virtualization_type": "virtual-machine",
                  "sctp-b-ingress-dst_start_port": "0.0",
                  "sctp-b-ingress-dst_end_port": "65535.0",
                  "sctp-a-ipv6-ingress-src_end_port": "65535.0",
                  "sctp-a-display_name": "epc-sctp-a-ipv4v6-sec-group",
                  "sctp-b-ingress_rule_application": "any",
                  "int2_sec_group_name": "int2-sec-group",
                  "vlc_flavor_name": "nd.c16r64d1",
                  "sctp-b-ipv6-egress_src_addresses": "local",
                  "vlc_st_interface_type_int1": "other1",
                  "sctp-b-egress-src_end_port": "65535.0",
                  "sctp-a-ipv6-egress-dst_start_port": "0",
                  "vlc_st_interface_type_int2": "other2",
                  "sctp-a-ipv6-egress_rule_protocol": "any",
                  "Internal2_shared": "false",
                  "sctp-a-ipv6-egress_dst_subnet_prefix_len": "0",
                  "Internal2_rpf": "disable",
                  "vlc1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ipv6-egress_src_end_port": "65535",
                  "sctp-a-ipv6-egress_src_addresses": "local",
                  "sctp-a-ingress-dst_end_port": "65535.0",
                  "sctp-a-ipv6-egress_src_end_port": "65535",
                  "Internal1_forwarding_mode": "l2",
                  "Internal2_dhcp": "false",
                  "sctp-a-dst_subnet_prefix_v6": "::",
                  "pxe_image_name": "MME_PXE-Boot_16ACP04_GA.qcow2",
                  "vlc_st_interface_type_gtp": "other0",
                  "ncb1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-src_subnet_prefix_v6": "::",
                  "sctp-a-egress_dst_subnet_prefix_len": "0.0",
                  "int1_sec_group_name": "int1-sec-group",
                  "Internal1_dhcp": "false",
                  "sctp-a-ipv6-egress_dst_end_port": "65535",
                  "Internal2_forwarding_mode": "l2",
                  "fsb2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-egress_dst_subnet_prefix": "0.0.0.0",
                  "Internal1_net_cidr_len": "17",
                  "gpb2_Internal1_mac": "00:11:22:EF:AC:DF",
                  "sctp-b-ingress-src_subnet_prefix_len": "0.0",
                  "sctp-a-ingress_dst_addresses": "local",
                  "sctp-a-egress_action": "pass",
                  "fsb_volume_type_0": "SF-Default-SSD",
                  "ncb2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_interface_type_sctp_a": "left",
                  "vlc_st_interface_type_sctp_b": "right",
                  "sctp-a-src_subnet_prefix_v6": "::",
                  "vlc_st_version": "2",
                  "sctp-b-egress_ethertype": "IPv4",
                  "sctp-a-ingress_rule_application": "any",
                  "gpb1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "instance_ip_family_v6": "v6",
                  "sctp-a-ipv6-egress_src_start_port": "0",
                  "sctp-b-ingress-src_start_port": "0.0",
                  "sctp-b-ingress_dst_addresses": "local",
                  "fsb1_Internal1_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_interface_type_oam": "management",
                  "multi_stage_design": "false",
                  "oam_sec_group_name": "oam-sec-group",
                  "Internal2_net_gateway": "10.0.0.10",
                  "sctp-a-ipv6-ingress-dst_end_port": "65535",
                  "sctp-b-ipv6-egress-dst_start_port": "0",
                  "Internal1_net_gateway": "10.0.0.10",
                  "sctp-b-ipv6-egress_rule_protocol": "any",
                  "gtp_sec_group_name": "gtp-sec-group",
                  "sctp-a-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
                  "sctp-b-ipv6-egress_dst_subnet_prefix_len": "0",
                  "sctp-a-ipv6-ingress_dst_addresses": "local",
                  "sctp-a-egress_rule_protocol": "icmp",
                  "sctp-b-ipv6-egress_action": "pass",
                  "sctp-a-ipv6-egress_action": "pass",
                  "Internal1_shared": "false",
                  "sctp-b-ipv6-ingress_rule_protocol": "any",
                  "Internal2_net_cidr_len": "17",
                  "sctp-a-name": "epc-sctp-a-ipv4v6-sec-group",
                  "sctp-a-ingress-src_end_port": "65535.0",
                  "sctp-b-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
                  "sctp-a-egress-dst_end_port": "65535.0",
                  "sctp-a-ingress_action": "pass",
                  "sctp-b-egress_rule_protocol": "icmp",
                  "sctp-b-ipv6-ingress_action": "pass",
                  "vlc_st_service_type": "firewall",
                  "sctp-b-ipv6-egress_dst_end_port": "65535",
                  "sctp-b-ipv6-ingress-dst_start_port": "0",
                  "vlc2_Internal2_mac": "00:11:22:EF:AC:DF",
                  "vlc_st_availability_zone": "true",
                  "fsb_volume_image_name_1": "MME_FSB2_16ACP04_GA.qcow2",
                  "sctp-b-ingress-src_subnet_prefix": "0.0.0.0",
                  "sctp-a-ipv6-ingress_src_subnet_prefix_len": "0",
                  "Internal1_allow_transit": "true",
                  "gpb_flavor_name": "nv.c20r64d1",
                  "availability_zone_max_count": "1",
                  "fsb_volume_image_name_0": "MME_FSB1_16ACP04_GA.qcow2",
                  "sctp-b-ipv6-ingress_dst_addresses": "local",
                  "sctp-b-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
                  "sctp-b-ipv6-ingress_ethertype": "IPv4",
                  "vlc1_Internal2_mac": "00:11:22:EF:AC:DF",
                  "sctp-a-ingress-src_subnet_prefix": "0.0.0.0",
                  "sctp-a-ipv6-ingress_action": "pass",
                  "Internal1_rpf": "disable",
                  "sctp-b-ingress_ethertype": "IPv4",
                  "sctp-b-egress_rule_application": "any",
                  "sctp-b-ingress-src_end_port": "65535.0",
                  "sctp-a-ipv6-ingress_rule_protocol": "any",
                  "sctp-a-ingress-src_start_port": "0.0",
                  "sctp-b-egress-dst_end_port": "65535.0"
                },
                "type": "VF",
                "modelCustomizationName": "VF_vGeraldine 0",
                "vfModules": {
                  "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1": {
                    "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
                    "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
                    "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
                    "description": null,
                    "name": "VfVgeraldine..vflorence_vlc..module-1",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..vflorence_vlc..module-1",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "vflorence_vlc"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": false
                  },
                  "vf_vgeraldine0..VfVgeraldine..vflorence_gpb..module-2": {
                    "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
                    "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
                    "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
                    "description": null,
                    "name": "VfVgeraldine..vflorence_gpb..module-2",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..vflorence_gpb..module-2",
                    "properties": {
                      "minCountInstances": 0,
                      "maxCountInstances": null,
                      "initialCount": 0,
                      "vfModuleLabel": "vflorence_gpb"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": false
                  },
                  "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                    "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                    "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                    "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                    "description": null,
                    "name": "VfVgeraldine..base_vflorence..module-0",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                    "properties": {
                      "minCountInstances": 1,
                      "maxCountInstances": 1,
                      "initialCount": 1,
                      "vfModuleLabel": "base_vflorence"
                    },
                    "inputs": {},
                    "volumeGroupAllowed": true
                  }
                },
                "volumeGroups": {
                  "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                    "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                    "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                    "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                    "description": null,
                    "name": "VfVgeraldine..base_vflorence..module-0",
                    "version": "2",
                    "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                    "properties": {
                      "minCountInstances": 1,
                      "maxCountInstances": 1,
                      "initialCount": 1,
                      "vfModuleLabel": "base_vflorence"
                    },
                    "inputs": {}
                  }
                },
                "vfcInstanceGroups": {}
              }
            },
            "networks": {
              "ExtVL 0": {
                "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
                "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
                "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
                "name": "ExtVL",
                "version": "37.0",
                "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
                "inputs": {},
                "commands": {},
                "properties": {
                  "ecomp_generated_naming": "false",
                  "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}}",
                  "exVL_naming": "{ecomp_generated_naming=true}",
                  "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
                  "network_homing": "{ecomp_selected_instance_node_target=false}"
                },
                "type": "VL",
                "modelCustomizationName": "ExtVL 0"
              }
            },
            "collectionResources": {},
            "configurations": {
              "Port Mirroring Configuration By Policy 0": {
                "uuid": "b4398538-e89d-4f13-b33d-ca323434ba50",
                "invariantUuid": "6ef0ca40-f366-4897-951f-abd65d25f6f7",
                "description": "A port mirroring configuration by policy object",
                "name": "Port Mirroring Configuration By Policy",
                "version": "27.0",
                "customizationUuid": "3c3b7b8d-8669-4b3b-8664-61970041fad2",
                "inputs": {},
                "commands": {},
                "properties": {},
                "type": "Configuration",
                "modelCustomizationName": "Port Mirroring Configuration By Policy 0",
                "sourceNodes": [],
                "collectorNodes": null,
                "configurationByPolicy": false
              }
            },
            "serviceProxies": {},
            "vfModules": {
              "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1": {
                "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
                "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
                "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
                "description": null,
                "name": "VfVgeraldine..vflorence_vlc..module-1",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..vflorence_vlc..module-1",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "vflorence_vlc"
                },
                "inputs": {},
                "volumeGroupAllowed": false
              },
              "vf_vgeraldine0..VfVgeraldine..vflorence_gpb..module-2": {
                "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
                "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
                "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
                "description": null,
                "name": "VfVgeraldine..vflorence_gpb..module-2",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..vflorence_gpb..module-2",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "vflorence_gpb"
                },
                "inputs": {},
                "volumeGroupAllowed": false
              },
              "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                "description": null,
                "name": "VfVgeraldine..base_vflorence..module-0",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                "properties": {
                  "minCountInstances": 1,
                  "maxCountInstances": 1,
                  "initialCount": 1,
                  "vfModuleLabel": "base_vflorence"
                },
                "inputs": {},
                "volumeGroupAllowed": true
              }
            },
            "volumeGroups": {
              "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                "description": null,
                "name": "VfVgeraldine..base_vflorence..module-0",
                "version": "2",
                "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0",
                "properties": {
                  "minCountInstances": 1,
                  "maxCountInstances": 1,
                  "initialCount": 1,
                  "vfModuleLabel": "base_vflorence"
                },
                "inputs": {}
              }
            },
            "pnfs": {}
          }
        },
        "serviceInstance": {
          "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
            "vnfs": {
              "VF_vGeraldine 0": {
                "originalName": "VF_vGeraldine 0",
                "rollbackOnFailure": "true",
                "instanceName": "",
                "vfModules": {
                  "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1": {
                    "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1dcudx": {
                      "modelInfo": {
                        "modelInvariantId": "98a7c88b-b577-476a-90e4-e25a5871e02b",
                        "modelVersionId": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
                        "modelName": "VfVgeraldine..vflorence_vlc..module-1",
                        "modelVersion": "2",
                        "modelCustomizationId": "55b1be94-671a-403e-a26c-667e9c47d091",
                        "modelCustomizationName": "VfVgeraldine..vflorence_vlc..module-1"
                      },
                      "isMissingData": false,
                      "supplementaryFile": "C:\\fakepath\\sample.json",
                      "supplementaryFile_hidden": {},
                      "supplementaryFile_hidden_content": "{\r\n  \"name\": \"a\",\r\n  \"value\": \"32\"\r\n}",
                      "supplementaryFileContent": {
                        "name": "a",
                          "value": "32"
                      },
                      "supplementaryFileName": "sample.json",
                      "instanceParams": [
                        {}
                      ]
                    }
                  }
                },
                "isMissingData": false,
                "modelName": "VF_vGeraldine 0",
                "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
                "lcpCloudRegionId": "hvf6",
                "tenantId": "bae71557c5bb4d5aac6743a4e5f1d054",
                "lineOfBusiness": "zzz1",
                "platformName": "platform",
                "modelInfo": {
                  "modelInvariantId": "4160458e-f648-4b30-a176-43881ffffe9e",
                  "modelVersionId": "d6557200-ecf2-4641-8094-5393ae3aae60",
                  "modelName": "VF_vGeraldine",
                  "modelVersion": "2.0",
                  "modelCustomizationId": "91415b44-753d-494c-926a-456a9172bbb9",
                  "modelCustomizationName": "VF_vGeraldine 0"
                },
                "legacyRegion": null
              }
            },
            "networks": {},
            "instanceParams": [
              {}
            ],
            "validationCounter": 0,
            "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
            "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
            "subscriptionServiceType": "TYLER SILVIA",
            "lcpCloudRegionId": "hvf6",
            "tenantId": "1178612d2b394be4834ad77f567c0af2",
            "aicZoneId": "YYY1",
            "projectName": "yyy1",
            "owningEntityId": "aaa1",
            "owningEntityName": "aaa1",
            "rollbackOnFailure": "true",
            "isALaCarte": false,
            "bulkSize": 1,
            "modelInfo": {
              "modelInvariantId": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
              "modelVersionId": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
              "modelName": "ComplexService",
              "modelVersion": "1.0"
            },
            "instanceName": "",
            "existingNames": {
              "serviceinstancename": "",
              "vfvgeraldine00001": ""
            },
            "existingVNFCounterMap": {
              "91415b44-753d-494c-926a-456a9172bbb9": 1
            },
            "existingNetworksCounterMap": {},
            "tenantName": "AIN Web Tool-15-D-SSPtestcustome",
            "aicZoneName": "UUUAIAAI-YYY1"
          }
        },
        "lcpRegionsAndTenants": {
          "lcpRegionList": [
            {
              "id": "AAIAIC25",
              "name": "AAIAIC25",
              "isPermitted": true
            },
            {
              "id": "hvf6",
              "name": "hvf6",
              "isPermitted": true
            }
          ],
          "lcpRegionsTenantsMap": {
            "AAIAIC25": [
              {
                "id": "092eb9e8e4b7412e8787dd091bc58e86",
                "name": "USP-SIP-IC-24335-T-01",
                "isPermitted": true
              }
            ],
            "hvf6": [
              {
                "id": "bae71557c5bb4d5aac6743a4e5f1d054",
                "name": "AIN Web Tool-15-D-testalexandria",
                "isPermitted": true
              },
              {
                "id": "229bcdc6eaeb4ca59d55221141d01f8e",
                "name": "AIN Web Tool-15-D-STTest2",
                "isPermitted": true
              },
              {
                "id": "1178612d2b394be4834ad77f567c0af2",
                "name": "AIN Web Tool-15-D-SSPtestcustome",
                "isPermitted": true
              },
              {
                "id": "19c5ade915eb461e8af52fb2fd8cd1f2",
                "name": "AIN Web Tool-15-D-UncheckedEcopm",
                "isPermitted": true
              },
              {
                "id": "de007636e25249238447264a988a927b",
                "name": "AIN Web Tool-15-D-dfsdf",
                "isPermitted": true
              },
              {
                "id": "62f29b3613634ca6a3065cbe0e020c44",
                "name": "AIN/SMS-16-D-Multiservices1",
                "isPermitted": true
              },
              {
                "id": "649289e30d3244e0b48098114d63c2aa",
                "name": "AIN Web Tool-15-D-SSPST66",
                "isPermitted": true
              },
              {
                "id": "3f21eeea6c2c486bba31dab816c05a32",
                "name": "AIN Web Tool-15-D-ASSPST47",
                "isPermitted": true
              },
              {
                "id": "f60ce21d3ee6427586cff0d22b03b773",
                "name": "CESAR-100-D-sspjg67246",
                "isPermitted": true
              },
              {
                "id": "8774659e425f479895ae091bb5d46560",
                "name": "CESAR-100-D-sspjg68359",
                "isPermitted": true
              },
              {
                "id": "624eb554b0d147c19ff8885341760481",
                "name": "AINWebTool-15-D-iftach",
                "isPermitted": true
              },
              {
                "id": "214f55f5fc414c678059c383b03e4962",
                "name": "CESAR-100-D-sspjg612401",
                "isPermitted": true
              },
              {
                "id": "c90666c291664841bb98e4d981ff1db5",
                "name": "CESAR-100-D-sspjg621340",
                "isPermitted": true
              },
              {
                "id": "ce5b6bc5c7b348e1bf4b91ac9a174278",
                "name": "sspjg621351cloned",
                "isPermitted": true
              },
              {
                "id": "b386b768a3f24c8e953abbe0b3488c02",
                "name": "AINWebTool-15-D-eteancomp",
                "isPermitted": true
              },
              {
                "id": "dc6c4dbfd225474e9deaadd34968646c",
                "name": "AINWebTool-15-T-SPFET",
                "isPermitted": true
              },
              {
                "id": "02cb5030e9914aa4be120bd9ed1e19eb",
                "name": "AINWebTool-15-X-eeweww",
                "isPermitted": true
              },
              {
                "id": "f2f3830e4c984d45bcd00e1a04158a79",
                "name": "CESAR-100-D-spjg61909",
                "isPermitted": true
              },
              {
                "id": "05b91bd5137f4929878edd965755c06d",
                "name": "CESAR-100-D-sspjg621512cloned",
                "isPermitted": true
              },
              {
                "id": "7002fbe8482d4a989ddf445b1ce336e0",
                "name": "AINWebTool-15-X-vdr",
                "isPermitted": true
              },
              {
                "id": "4008522be43741dcb1f5422022a2aa0b",
                "name": "AINWebTool-15-D-ssasa",
                "isPermitted": true
              },
              {
                "id": "f44e2e96a1b6476abfda2fa407b00169",
                "name": "AINWebTool-15-D-PFNPT",
                "isPermitted": true
              },
              {
                "id": "b69a52bec8a84669a37a1e8b72708be7",
                "name": "AINWebTool-15-X-vdre",
                "isPermitted": true
              },
              {
                "id": "fac7d9fd56154caeb9332202dcf2969f",
                "name": "AINWebTool-15-X-NONPODECOMP",
                "isPermitted": true
              },
              {
                "id": "2d34d8396e194eb49969fd61ffbff961",
                "name": "DN5242-Nov16-T5",
                "isPermitted": true
              },
              {
                "id": "cb42a77ff45b48a8b8deb83bb64acc74",
                "name": "ro-T11",
                "isPermitted": true
              },
              {
                "id": "fa45ca53c80b492fa8be5477cd84fc2b",
                "name": "ro-T112",
                "isPermitted": true
              },
              {
                "id": "4914ab0ab3a743e58f0eefdacc1dde77",
                "name": "DN5242-Nov21-T1",
                "isPermitted": true
              },
              {
                "id": "d0a3e3f2964542259d155a81c41aadc3",
                "name": "test-hvf6-09",
                "isPermitted": true
              },
              {
                "id": "cbb99fe4ada84631b7baf046b6fd2044",
                "name": "DN5242-Nov16-T3",
                "isPermitted": true
              }
            ]
          }
        },
        "subscribers": [
          {
            "id": "CAR_2020_ER",
            "name": "CAR_2020_ER",
            "isPermitted": true
          },
          {
            "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
            "name": "JULIO ERICKSON",
            "isPermitted": false
          },
          {
            "id": "DHV1707-TestSubscriber-2",
            "name": "DALE BRIDGES",
            "isPermitted": false
          },
          {
            "id": "DHV1707-TestSubscriber-1",
            "name": "LLOYD BRIDGES",
            "isPermitted": false
          },
          {
            "id": "jimmy-example",
            "name": "JimmyExampleCust-20161102",
            "isPermitted": false
          },
          {
            "id": "jimmy-example2",
            "name": "JimmyExampleCust-20161103",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-TestSub-PWT-102",
            "name": "ERICA5779-TestSub-PWT-102",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-TestSub-PWT-101",
            "name": "ERICA5779-TestSub-PWT-101",
            "isPermitted": false
          },
          {
            "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
            "name": "Emanuel",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-Subscriber-4",
            "name": "ERICA5779-Subscriber-5",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-TestSub-PWT-103",
            "name": "ERICA5779-TestSub-PWT-103",
            "isPermitted": false
          },
          {
            "id": "ERICA5779-Subscriber-2",
            "name": "ERICA5779-Subscriber-2",
            "isPermitted": false
          },
          {
            "id": "e433710f-9217-458d-a79d-1c7aff376d89",
            "name": "SILVIA ROBBINS",
            "isPermitted": true
          },
          {
            "id": "ERICA5779-Subscriber-3",
            "name": "ERICA5779-Subscriber-3",
            "isPermitted": false
          },
          {
            "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
            "name": "CRAIG/ROBERTS",
            "isPermitted": false
          }
        ],
        "productFamilies": [
          {
            "id": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
            "name": "ERICA",
            "isPermitted": true
          },
          {
            "id": "17cc1042-527b-11e6-beb8-9e71128cae77",
            "name": "IGNACIO",
            "isPermitted": true
          },
          {
            "id": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
            "name": "Christie",
            "isPermitted": true
          },
          {
            "id": "a4f6f2ae-9bf5-4ed7-b904-06b2099c4bd7",
            "name": "Enhanced Services",
            "isPermitted": true
          },
          {
            "id": "vTerrance",
            "name": "vTerrance",
            "isPermitted": true
          },
          {
            "id": "323d69d9-2efe-4r45-ay0a-89ea7ard4e6f",
            "name": "vEsmeralda",
            "isPermitted": true
          },
          {
            "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
            "name": "Emanuel",
            "isPermitted": true
          },
          {
            "id": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
            "name": "BVOIP",
            "isPermitted": true
          },
          {
            "id": "db171b8f-115c-4992-a2e3-ee04cae357e0",
            "name": "LINDSEY",
            "isPermitted": true
          },
          {
            "id": "LRSI-OSPF",
            "name": "LRSI-OSPF",
            "isPermitted": true
          },
          {
            "id": "vRosemarie",
            "name": "HNGATEWAY",
            "isPermitted": true
          },
          {
            "id": "vHNPaas",
            "name": "WILKINS",
            "isPermitted": true
          },
          {
            "id": "e433710f-9217-458d-a79d-1c7aff376d89",
            "name": "TYLER SILVIA",
            "isPermitted": true
          },
          {
            "id": "b6a3f28c-eebf-494c-a900-055cc7c874ce",
            "name": "VROUTER",
            "isPermitted": true
          },
          {
            "id": "vMuriel",
            "name": "vMuriel",
            "isPermitted": true
          },
          {
            "id": "0ee8c1bc-7cbd-4b0a-a1ac-e9999255abc1",
            "name": "CARA Griffin",
            "isPermitted": true
          },
          {
            "id": "c7611ebe-c324-48f1-8085-94aef0c6ef3d",
            "name": "DARREN MCGEE",
            "isPermitted": true
          },
          {
            "id": "e30755dc-5673-4b6b-9dcf-9abdd96b93d1",
            "name": "Transport",
            "isPermitted": true
          },
          {
            "id": "vSalvatore",
            "name": "vSalvatore",
            "isPermitted": true
          },
          {
            "id": "d7bb0a21-66f2-4e6d-87d9-9ef3ced63ae4",
            "name": "JOSEFINA",
            "isPermitted": true
          },
          {
            "id": "vHubbard",
            "name": "vHubbard",
            "isPermitted": true
          },
          {
            "id": "12a96a9d-4b4c-4349-a950-fe1159602621",
            "name": "DARREN MCGEE",
            "isPermitted": true
          }
        ],
        "serviceTypes": {
          "e433710f-9217-458d-a79d-1c7aff376d89": [
            {
              "id": "0",
              "name": "vRichardson",
              "isPermitted": false
            },
            {
              "id": "1",
              "name": "TYLER SILVIA",
              "isPermitted": true
            },
            {
              "id": "2",
              "name": "Emanuel",
              "isPermitted": false
            },
            {
              "id": "3",
              "name": "vJamie",
              "isPermitted": false
            },
            {
              "id": "4",
              "name": "vVoiceMail",
              "isPermitted": false
            },
            {
              "id": "5",
              "name": "Kennedy",
              "isPermitted": false
            },
            {
              "id": "6",
              "name": "vPorfirio",
              "isPermitted": false
            },
            {
              "id": "7",
              "name": "vVM",
              "isPermitted": false
            },
            {
              "id": "8",
              "name": "vOTA",
              "isPermitted": false
            },
            {
              "id": "9",
              "name": "vFLORENCE",
              "isPermitted": false
            },
            {
              "id": "10",
              "name": "vMNS",
              "isPermitted": false
            },
            {
              "id": "11",
              "name": "vEsmeralda",
              "isPermitted": false
            },
            {
              "id": "12",
              "name": "VPMS",
              "isPermitted": false
            },
            {
              "id": "13",
              "name": "vWINIFRED",
              "isPermitted": false
            },
            {
              "id": "14",
              "name": "SSD",
              "isPermitted": false
            },
            {
              "id": "15",
              "name": "vMOG",
              "isPermitted": false
            },
            {
              "id": "16",
              "name": "LINDSEY",
              "isPermitted": false
            },
            {
              "id": "17",
              "name": "JOHANNA_SANTOS",
              "isPermitted": false
            },
            {
              "id": "18",
              "name": "vCarroll",
              "isPermitted": false
            }
          ]
        },
        "aicZones": [
          {
            "id": "NFT1",
            "name": "NFTJSSSS-NFT1"
          },
          {
            "id": "JAG1",
            "name": "YUDFJULP-JAG1"
          },
          {
            "id": "YYY1",
            "name": "UUUAIAAI-YYY1"
          },
          {
            "id": "AVT1",
            "name": "AVTRFLHD-AVT1"
          },
          {
            "id": "ATL34",
            "name": "ATLSANAI-ATL34"
          }
        ],
        "categoryParameters": {
          "owningEntityList": [
            {
              "id": "aaa1",
              "name": "aaa1"
            },
            {
              "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
              "name": "WayneHolland"
            },
            {
              "id": "Melissa",
              "name": "Melissa"
            }
          ],
          "projectList": [
            {
              "id": "WATKINS",
              "name": "WATKINS"
            },
            {
              "id": "x1",
              "name": "x1"
            },
            {
              "id": "yyy1",
              "name": "yyy1"
            }
          ],
          "lineOfBusinessList": [
            {
              "id": "ONAP",
              "name": "ONAP"
            },
            {
              "id": "zzz1",
              "name": "zzz1"
            }
          ],
          "platformList": [
            {
              "id": "platform",
              "name": "platform"
            },
            {
              "id": "xxx1",
              "name": "xxx1"
            }
          ]
        },
        "type": "[PRODUCT_FAMILIES] Update"
      }
    }
  }

  function editSecondVnf(vnfNode: string) {
    cy.drawingBoardTreeOpenContextMenuByElementDataTestId(vnfNode, 1)
      .drawingBoardTreeClickOnContextMenuOptionByName('Edit');
    cy.selectDropdownOptionByText('lineOfBusiness', 'ONAP');
    cy.genericFormSubmitForm();
  }

  function checkDynamicInputs() {
    cy.getReduxState().then((state) => {
      let dynamicInputs = state.service.serviceHierarchy['f4d84bb4-a416-4b4e-997e-0059973630b9'].vnfs['2017-488_PASQUALE-vPE 0'].inputs;

      chai.expect(dynamicInputs.vnf_config_template_version.description).equal("VPE Software Version");
      chai.expect(dynamicInputs.bandwidth_units.description).equal("Units of bandwidth");
      chai.expect(dynamicInputs.bandwidth.description).equal("Requested VPE bandwidth");
      chai.expect(dynamicInputs.AIC_CLLI.description).equal("AIC Site CLLI");
      chai.expect(dynamicInputs.availability_zone_0.description).equal("The Availability Zone to launch the instance.")
      chai.expect(dynamicInputs.ASN.description).equal("AV/PE");
      chai.expect(dynamicInputs.vnf_instance_name.description).equal("The hostname assigned to the vpe.");

    });
  }

  function assertEditvfModuleShowFile(vfModuleNode: string, content: string) {
    cy.drawingBoardTreeOpenContextMenuByElementDataTestId(vfModuleNode)
      .drawingBoardTreeClickOnContextMenuOptionByName('Edit');
    cy.get(".file-name").contains(content);

  }
});