summaryrefslogtreecommitdiffstats
path: root/sliapi/installer/pom.xml
blob: 5a60f1b0964c6c4c43d473e80aa045b78a883260 (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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>org.onap.ccsdk.parent</groupId>
		<artifactId>odlparent-lite</artifactId>
		<version>1.1.0</version>
		<relativePath/>
	</parent>

	<groupId>org.onap.ccsdk.sli.core</groupId>
	<artifactId>sliapi-installer</artifactId>
	<version>0.3.1-SNAPSHOT</version>
	<packaging>pom</packaging>

	<name>ccsdk-sli-core :: sliapi :: ${project.artifactId}</name>

	<properties>
		<application.name>ccsdk-sliapi</application.name>
		<features.boot>${application.name}</features.boot>
        <features.repositories>mvn:org.onap.ccsdk.sli.core/${features.boot}/${project.version}/xml/features</features.repositories>
		<include.transitive.dependencies>false</include.transitive.dependencies>
	</properties>
	<dependencyManagement>
		<dependencies>
		
			<dependency>
				<groupId>org.onap.ccsdk.sli.core</groupId>
				<artifactId>sli-common</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.onap.ccsdk.sli.core</groupId>
				<artifactId>sli-provider</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.onap.ccsdk.sli.core</groupId>
				<artifactId>dblib-provider</artifactId>
				<version>${project.version}</version>
			</dependency>
		</dependencies>
	</dependencyManagement>
	
	<dependencies>

		<dependency>
			<groupId>org.onap.ccsdk.sli.core</groupId>
			<artifactId>${application.name}</artifactId>
			<version>${project.version}</version>
			<type>xml</type>
			<classifier>features</classifier>
			<exclusions>
				<exclusion>
					<groupId>*</groupId>
					<artifactId>*</artifactId>
				</exclusion>
			</exclusions>
		</dependency>

		<dependency>
			<groupId>org.onap.ccsdk.sli.core</groupId>
			<artifactId>sliapi-provider</artifactId>
			<version>${project.version}</version>
		</dependency>


	</dependencies>

	<build>
		<plugins>
			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
				<executions>
					<execution>
						<id>maven-repo-zip</id>
						<goals>
							<goal>single</goal>
						</goals>
						<phase>package</phase>
						<configuration>
							<attach>true</attach>
							<finalName>stage/${application.name}-${project.version}</finalName>
							<descriptors>
								<descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
							</descriptors>
							<appendAssemblyId>true</appendAssemblyId>
						</configuration>
					</execution>
					<execution>
						<id>installer-zip</id>
						<goals>
							<goal>single</goal>
						</goals>
						<phase>package</phase>
						<configuration>
							<attach>true</attach>
							<finalName>${application.name}-${project.version}-installer</finalName>
							<descriptors>
								<descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
							</descriptors>
							<appendAssemblyId>false</appendAssemblyId>
						</configuration>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-dependency-plugin</artifactId>
				<executions>
					<execution>
						<id>copy-dependencies</id>
						<goals>
							<goal>copy-dependencies</goal>
						</goals>
						<phase>prepare-package</phase>
						<configuration>
							<transitive>false</transitive>
							<outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
							<overWriteReleases>false</overWriteReleases>
							<overWriteSnapshots>true</overWriteSnapshots>
							<overWriteIfNewer>true</overWriteIfNewer>
							<useRepositoryLayout>true</useRepositoryLayout>
							<addParentPoms>false</addParentPoms>
							<copyPom>false</copyPom>
							<includeArtifactIds>sliapi-model,sliapi-provider,ccsdk-sliapi,features-sliapi</includeArtifactIds>
							<scope>provided</scope>
						</configuration>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<artifactId>maven-resources-plugin</artifactId>
				<version>2.6</version>
				<executions>
					<execution>
						<id>copy-version</id>
						<goals>
							<goal>copy-resources</goal>
						</goals><!-- here the phase you need -->
						<phase>validate</phase>
						<configuration>
							<outputDirectory>${basedir}/target/stage</outputDirectory>
							<resources>
								<resource>
									<directory>src/main/resources/scripts</directory>
									<includes>
										<include>install-feature.sh</include>
									</includes>
									<filtering>true</filtering>
								</resource>
							</resources>
						</configuration>
					</execution>

				</executions>
			</plugin>

		</plugins>
	</build>
</project>
/a> 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 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
{
  "global": {
    "name": null
  },
  "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": {},
            "commands": {},
            "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": 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": {}
      },
      "2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd": {
        "service": {
          "uuid": "2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
          "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
          "name": "action-data",
          "version": "1.0",
          "toscaModelURL": null,
          "category": "",
          "serviceType": "",
          "serviceRole": "",
          "description": "",
          "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-388_PASQUALE-vPE 1": {
            "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413",
            "invariantUuid": "00beb8f9-6d39-452f-816d-c709b9cbb87d",
            "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-388_PASQUALE-vPE",
            "version": "1.0",
            "customizationUuid": "280dec31-f16d-488b-9668-4aae55d6648a",
            "inputs": {},
            "commands": {},
            "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": "vPE",
              "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": "VRE-ENGINE_17.2-S2.1.qcow2",
              "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}",
              "nf_naming_code": "Navneet",
              "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": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
              "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": "JAI",
              "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:pasqualevpe0_bandwidth_units",
              "vnf_id": "123",
              "vmxvre_oam_prefix": "24",
              "availability_zone_0": "mtpocfo-kvm-az01",
              "ASN": "get_input:2017488_pasqualevpe0_ASN",
              "vmxvre_chassis_i2cid": "161",
              "vmxvpfe_name_0": "vPFEXI",
              "bandwidth": "get_input: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": "Testing",
              "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-388_PASQUALE-vPE 1",
            "vfModules": {},
            "volumeGroups": {},
            "vfcInstanceGroups": {}
          },
          "2017-388_PASQUALE-vPE 0": {
            "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168",
            "invariantUuid": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
            "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-388_PASQUALE-vPE",
            "version": "4.0",
            "customizationUuid": "b3c76f73-eeb5-4fb6-9d31-72a889f1811c",
            "inputs": {},
            "commands": {},
            "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": "vPE",
              "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": "VRE-ENGINE_17.2-S2.1.qcow2",
              "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}",
              "nf_naming_code": "Navneet",
              "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": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
              "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": "JAI",
              "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:pasqualevpe0_bandwidth_units",
              "vnf_id": "123",
              "vmxvre_oam_prefix": "24",
              "availability_zone_0": "mtpocfo-kvm-az01",
              "ASN": "get_input:2017488_pasqualevpe0_ASN",
              "vmxvre_chassis_i2cid": "161",
              "vmxvpfe_name_0": "vPFEXI",
              "bandwidth": "get_input: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": "Testing",
              "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-388_PASQUALE-vPE 0",
            "vfModules": {},
            "volumeGroups": {},
            "vfcInstanceGroups": {}
          },
          "2017-488_PASQUALE-vPE 0": {
            "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
            "invariantUuid": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
            "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": "5.0",
            "customizationUuid": "1da7b585-5e61-4993-b95e-8e6606c81e45",
            "inputs": {},
            "commands": {},
            "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": "vPE",
              "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": "VRE-ENGINE_17.2-S2.1.qcow2",
              "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}",
              "nf_naming_code": "Navneet",
              "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": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
              "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": "JAI",
              "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:pasqualevpe0_bandwidth_units",
              "vnf_id": "123",
              "vmxvre_oam_prefix": "24",
              "availability_zone_0": "mtpocfo-kvm-az01",
              "ASN": "get_input:2017488_pasqualevpe0_ASN",
              "vmxvre_chassis_i2cid": "161",
              "vmxvpfe_name_0": "vPFEXI",
              "bandwidth": "get_input: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": "Testing",
              "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": "25284168-24bb-4698-8cb4-3f509146eca5",
                "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "version": "6",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vRE_BV"
                },
                "inputs": {
                  "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"
                  },
                  "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"
                  }
                },
                "volumeGroupAllowed": true
              },
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
                "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
                "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
                "customizationUuid": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
                "version": "5",
                "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": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
                "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "version": "6",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vPFE_BV"
                },
                "inputs": {},
                "volumeGroupAllowed": true
              }
            },
            "volumeGroups": {
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
                "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "version": "6",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vRE_BV"
                },
                "inputs": {
                  "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"
                  },
                  "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..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
                "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
                "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
                "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
                "description": null,
                "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "version": "6",
                "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
                "properties": {
                  "minCountInstances": 0,
                  "maxCountInstances": null,
                  "initialCount": 0,
                  "vfModuleLabel": "PASQUALE_vPFE_BV"
                },
                "inputs": {}
              }
            },
            "vfcInstanceGroups": {}
          }
        },
        "networks": {},
        "collectionResources": {},
        "configurations": {},
        "serviceProxies": {},
        "vfModules": {
          "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
            "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
            "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
            "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
            "description": null,
            "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
            "version": "6",
            "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
            "properties": {
              "minCountInstances": 0,
              "maxCountInstances": null,
              "initialCount": 0,
              "vfModuleLabel": "PASQUALE_vRE_BV"
            },
            "inputs": {
              "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"
              },
              "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"
              }
            },
            "volumeGroupAllowed": true
          },
          "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0": {
            "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
            "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
            "customizationUuid": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
            "description": null,
            "name": "2017488PasqualeVpe..PASQUALE_base_vPE_BV..module-0",
            "version": "5",
            "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": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
            "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
            "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
            "description": null,
            "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
            "version": "6",
            "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
            "properties": {
              "minCountInstances": 0,
              "maxCountInstances": null,
              "initialCount": 0,
              "vfModuleLabel": "PASQUALE_vPFE_BV"
            },
            "inputs": {},
            "volumeGroupAllowed": true
          }
        },
        "volumeGroups": {
          "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
            "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
            "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
            "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
            "description": null,
            "name": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
            "version": "6",
            "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
            "properties": {
              "minCountInstances": 0,
              "maxCountInstances": null,
              "initialCount": 0,
              "vfModuleLabel": "PASQUALE_vRE_BV"
            },
            "inputs": {
              "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"
              },
              "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..2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2": {
            "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
            "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
            "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
            "description": null,
            "name": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
            "version": "6",
            "modelCustomizationName": "2017488PasqualeVpe..PASQUALE_vPFE_BV..module-2",
            "properties": {
              "minCountInstances": 0,
              "maxCountInstances": null,
              "initialCount": 0,
              "vfModuleLabel": "PASQUALE_vPFE_BV"
            },
            "inputs": {}
          }
        },
        "pnfs": {}
      }
    },
    "serviceInstance": {
      "2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd": {
        "existingVNFCounterMap": {
          "280dec31-f16d-488b-9668-4aae55d6648a": 1,
          "1da7b585-5e61-4993-b95e-8e6606c81e45": 1
        },
        "vnfs": {
          "2017-388_PASQUALE-vPE 1": {
            "rollbackOnFailure": "false",
            "vfModules": {},
            "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
            "lcpCloudRegionId": "hvf6",
            "tenantId": "229bcdc6eaeb4ca59d55221141d01f8e",
            "lineOfBusiness": "zzz1",
            "platformName": "platform",
            "originalName": "2017-388_PASQUALE-vPE 1",
            "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"
            }
          },
          "2017-488_PASQUALE-vPE 0": {
            "rollbackOnFailure": "false",
            "originalName": "2017-488_PASQUALE-vPE 0",
            "vfModules": {
              "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                "2017488_pasqualevpe0..2017488PasqualeVpe..PASQUALE_vRE_BV..module-1": {
                  "rollbackOnFailure": true,
                  "modelInfo": {
                    "modelType": "service",
                    "modelInvariantId": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
                    "modelVersionId": "25284168-24bb-4698-8cb4-3f509146eca5",
                    "modelName": "2017488PasqualeVpe..PASQUALE_vRE_BV..module-1",
                    "modelVersion": "6"
                  },
                  "instanceParams": [
                    {
                      "pasqualevpe0_bandwidth": "10",
                      "2017488_pasqualevpe0_vnf_instance_name": "mtnj309me6",
                      "2017488_pasqualevpe0_vnf_config_template_version": "17.2",
                      "2017488_pasqualevpe0_AIC_CLLI": "ATLMY8GA",
                      "pasqualevpe0_bandwidth_units": "Gbps"
                    }
                  ]
                }
              }
            },
            "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
            "lcpCloudRegionId": "hvf6",
            "tenantId": "229bcdc6eaeb4ca59d55221141d01f8e",
            "lineOfBusiness": "ONAP",
            "platformName": "platform",
            "modelInfo": {
              "modelType": "service",
              "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
              "modelVersionId": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
              "modelName": "2017-488_PASQUALE-vPE",
              "modelVersion": "5.0",
              "modelCustomizationId": "1da7b585-5e61-4993-b95e-8e6606c81e45",
              "modelCustomizationName": "2017-488_PASQUALE-vPE 0"
            }
          }
        },
        "instanceParams": [
          {
            "2017488_pasqualevpe0_ASN": "AV_vPE"
          }
        ],
        "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
        "productFamilyId": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
        "subscriptionServiceType": "TYLER SILVIA",
        "lcpCloudRegionId": "AAIAIC25",
        "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
        "aicZoneId": "JAG1",
        "projectName": "WATKINS",
        "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
        "bulkSize": 1,
        "modelInfo": {
          "modelType": "service",
          "modelInvariantId": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
          "modelVersionId": "2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd",
          "modelName": "action-data",
          "modelVersion": "1.0"
        },
        "vidNotions": {
          "instantiationType": "Macro"
        },
        "isEcompGeneratedNaming": true,
        "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": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
        "name": "Emanuel",
        "isPermitted": false
      },
      {
        "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fc",
        "name": "JULIO ERICKSON",
        "isPermitted": false
      },
      {
        "id": "e433710f-9217-458d-a79d-1c7aff376d89",
        "name": "SILVIA ROBBINS",
        "isPermitted": true
      }
    ],
    "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"
  }
}