aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/cypress/integration/iFrames/network.popup.e2e.ts
blob: a1744313518be8b17dd1de3105851e8c1a3d002a (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
<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>

    <name>openecomp-sdc-vendor-license-api</name>
    <artifactId>openecomp-sdc-vendor-license-api</artifactId>
    <parent>
        <groupId>org.openecomp.sdc</groupId>
        <artifactId>openecomp-sdc-lib</artifactId>
        <version>1.5.1-SNAPSHOT</version>
        <relativePath>../..</relativePath>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.openecomp.sdc.core</groupId>
            <artifactId>openecomp-facade-core</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.openecomp.sdc</groupId>
            <artifactId>openecomp-sdc-versioning-core</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.openecomp.sdc.core</groupId>
            <artifactId>openecomp-nosqldb-core</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>javax.el</groupId>
            <artifactId>javax.el-api</artifactId>
            <version>${javax.el-api.version}</version>
        </dependency>
        <dependency>
            <groupId>org.glassfish.web</groupId>
            <artifactId>javax.el</artifactId>
            <version>${javax.el.version}</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
            <version>${jackson.annotations.version}</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.dataformat</groupId>
            <artifactId>jackson-dataformat-xml</artifactId>
            <version>${jackson.dataformat.version}</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.woodstox</groupId>
            <artifactId>woodstox-core-asl</artifactId>
            <version>${woodstox.version}</version>
        </dependency>
    </dependencies>
</project>
d='n543' href='#n543'>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 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 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204
///<reference path="../../../node_modules/cypress/types/index.d.ts"/>

import {JsonBuilder} from "../../support/jsonBuilders/jsonBuilder";
import {ServiceModel} from "../../support/jsonBuilders/models/service.model";

describe('Network popup', function () {

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

  beforeEach(() => {
      cy.clearSessionStorage();
      cy.setReduxState();
      cy.preventErrorsOnLoading();
      cy.permissionVidMock();
      cy.setTestApiParamToGR();
      cy.initAAIMock();
      cy.initVidMock();
      cy.login();
  });

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

  describe('basic UI tests', () => {

    it('Network(A-La-Carte) - create / edit / duplicate / delete', function () {
      let redux = getReduxWithVNFSAndNetwork();
      redux.service.serviceHierarchy['6b528779-44a3-4472-bdff-9cd15ec93450'].service.vidNotions.instantiationType = 'ALaCarte';

      cy.setReduxState(<any>redux);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6b528779-44a3-4472-bdff-9cd15ec93450');
      //create
      cy.getElementByDataTestsId('node-ExtVL 0-add-btn').click({force: true}).then(() => {


        verifyServiceModelNameInModelInfo();
        cy.fillNetworkPopup();
      });
    });

    it('Network (Macro) - create / edit / duplicate / delete', function () {

      cy.setReduxState(<any>getReduxWithVNFSAndNetwork());
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6b528779-44a3-4472-bdff-9cd15ec93450');
      //create
      cy.getElementByDataTestsId('node-ExtVL 0-add-btn').click({force: true}).then(() => {
        verifyServiceModelNameInModelInfo();
        cy.fillNetworkPopup().then(()=>{
          cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0').should('be.visible');
          cy.getElementByDataTestsId('numberButton').contains('1');

          //Edit
          cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0-menu-btn').click({force: true})
            .getElementByDataTestsId('context-menu-edit').click({force: true}).then(() => {
            cy.checkIsOptionSelected('productFamily', 'a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb');
            cy.checkIsOptionSelected('lcpRegion', 'hvf6');
            cy.checkIsOptionSelected('tenant', '229bcdc6eaeb4ca59d55221141d01f8e');
            cy.checkIsOptionSelected('lineOfBusiness', 'zzz1');
            cy.checkPlatformValue('xxx1');
            //change platform value
            cy.selectPlatformValue('platform');
            cy.getElementByDataTestsId('form-set').click({force: true}).then(() => {
              cy.getElementByDataTestsId('numberButton').contains('1');
              cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0-menu-btn').click({force: true})
                .getElementByDataTestsId('context-menu-edit').click({force: true}).then(() => {
                cy.checkPlatformValue( 'platform');
                // cancel button should close the dialog
                cy.getElementByDataTestsId('cancelButton').click({force: true}).then(() => {
                  // duplicate network
                  cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0-menu-btn').click({force: true})
                    .getElementByDataTestsId('context-menu-duplicate').click({force: true}).then(() => {
                    cy.getTagElementContainsText('button', 'Duplicate').click({force: true});
                    cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0').should('have.length', 2);
                    cy.getElementByDataTestsId('numberButton').contains('2');
                    //delete
                    cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0-menu-btn').eq(1).click({force: true})
                    cy.getElementByDataTestsId('context-menu-remove').click({force: true}).then(()=>{
                      cy.getElementByDataTestsId('numberButton').contains('1');
                      cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0').should('have.length', 1);

                    })

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

    });

    it('Network dynamic inputs', function () {
      let redux = getReduxWithVNFSAndNetwork();
      redux.service.serviceHierarchy['6b528779-44a3-4472-bdff-9cd15ec93450'].networks['ExtVL 0'].inputs = <any>{
        "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": false,
          "default": "Gbps"
        }
      };
      cy.setReduxState(<any>redux);
      cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6b528779-44a3-4472-bdff-9cd15ec93450');

      cy.getElementByDataTestsId('node-ExtVL 0-add-btn').click({force: true}).then(() => {
        //check if dynamic inputs exist
        cy.getElementByDataTestsId('vnf_config_template_version');
        cy.getElementByDataTestsId('bandwidth_units');

        //check if required icon exists
        cy.get('label').contains('VNF config template version:').should('have.class', 'required');
        cy.get('label').contains('Bandwidth units:').should('not.have.class', 'required');

        //set button should be disabled when some dynamic inputs not valid
        cy.selectDropdownOptionByText('productFamily', 'Emanuel');
        cy.selectDropdownOptionByText('lcpRegion', 'hvf6');
        cy.selectDropdownOptionByText('tenant', 'AIN Web Tool-15-D-STTest2');
        cy.selectDropdownOptionByText('lineOfBusiness', 'zzz1');
        cy.selectPlatformValue('xxx1');
        cy.getElementByDataTestsId('form-set').should('not.have.attr', 'disabled');

        // clear required dynamic input.
        cy.getElementByDataTestsId('vnf_config_template_version').clear();
        cy.getElementByDataTestsId('form-set').should('have.attr', 'disabled');

      });
    });

    it('Edit service with network - delete 1 create 1', function () {
      const SUBSCRIBER_ID: string = "e433710f-9217-458d-a79d-1c7aff376d89";
      const SERVICE_TYPE: string = "TYLER SILVIA";
      const SERVICE_INSTANCE_ID: string = "f8791436-8d55-4fde-b4d5-72dd2cf13cfb";
      const SERVICE_MODEL_ID: string = '6b528779-44a3-4472-bdff-9cd15ec93450';

      cy.readFile('cypress/support/jsonBuilders/mocks/jsons/basicNetworkModel.json').then((res) => {
        jsonBuilderAndMock.basicJson(res,
          Cypress.config('baseUrl') + '/rest/models/services/6b528779-44a3-4472-bdff-9cd15ec93450',
          200,
          0,
          'initServiceModel');
      });

      cy.readFile('cypress/support/jsonBuilders/mocks/jsons/basicNetworkInstance.json').then((res) => {
        jsonBuilderAndMock.basicJson(
          res,
          Cypress.config('baseUrl') + "/aai_get_service_instance_topology/e433710f-9217-458d-a79d-1c7aff376d89/TYLER SILVIA/f8791436-8d55-4fde-b4d5-72dd2cf13cfb",
          200, 0,
          "initServiceInstanceTopology"
        )
      });

      cy.server().route({
        url: Cypress.config('baseUrl') + '/asyncInstantiation/bulk',
        method: 'POST',
        status: 200,
        response: "[]",
      }).as("expectedPostAsyncInstantiation");

      cy.openIframe(`app/ui/#/servicePlanning/EDIT?serviceModelId=${SERVICE_MODEL_ID}&subscriberId=${SUBSCRIBER_ID}&serviceType=${SERVICE_TYPE}&serviceInstanceId=${SERVICE_INSTANCE_ID}`);

      //add one network
      cy.getElementByDataTestsId('node-ExtVL 0-add-btn').click({force: true}).then(() => {
        verifyServiceModelNameInModelInfo();
        cy.fillNetworkPopup(true);
      });


      const networkNodeToDelete = "node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0";
      cy.getElementByDataTestsId(`${networkNodeToDelete}-menu-btn`).eq(0).click({force: true})
        .getElementByDataTestsId('context-menu-delete').click();

      //click update
      cy.getElementByDataTestsId('deployBtn').should('have.text', 'UPDATE').click();

      cy.getReduxState().then((state) => {
        const network = state.service.serviceInstance[SERVICE_MODEL_ID].networks["ExtVL 0_1"];
        cy.wait('@expectedPostAsyncInstantiation').then(xhr => {
          cy.readFile('../vid-automation/src/test/resources/asyncInstantiation/vidRequestDelete1Create1Network.json').then((expectedResult) => {
            expectedResult.networks["ExtVL 0_1"].trackById = network.trackById;
            cy.deepCompare(xhr.request.body, expectedResult);
          });
        });
      });

    });

    function verifyServiceModelNameInModelInfo() {
      cy.getElementByDataTestsId('model-item-label-serviceModelName').contains('Service Name');
      cy.getElementByDataTestsId('model-item-value-serviceModelName').contains('action-data');
    }

    function getReduxWithVNFSAndNetwork() {
      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,
            "FLAG_ADVANCED_PORTS_FILTER": true,
            "FLAG_REGION_ID_FROM_REMOTE": true,
            "FLAG_ADD_MSO_TESTAPI_FIELD": true,
            "FLAG_2006_NETWORK_PLATFORM_MULTI_SELECT": 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": "false",
                "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": "false",
                    "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": "true",
                    "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": true
                    },
                    "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": true
                },
                "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": {}
            },
            "6b528779-44a3-4472-bdff-9cd15ec93450": {
              "service": {
                "uuid": "6b528779-44a3-4472-bdff-9cd15ec93450",
                "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
                "name": "action-data",
                "version": "1.0",
                "toscaModelURL": null,
                "category": "",
                "serviceType": "",
                "serviceRole": "",
                "description": "",
                "serviceEcompNaming": "false",
                "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": {
                    "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"
                    },
                    "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": "pasqualevpe0_bandwidth_units"
                    },
                    "bandwidth": {
                      "displayName": "bandwidth",
                      "command": "get_input",
                      "inputName": "pasqualevpe0_bandwidth"
                    },
                    "AIC_CLLI": {
                      "displayName": "AIC_CLLI",
                      "command": "get_input",
                      "inputName": "2017488_pasqualevpe0_AIC_CLLI"
                    },
                    "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": "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=false}",
                    "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": "false",
                    "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": {
                    "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"
                    },
                    "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": "pasqualevpe0_bandwidth_units"
                    },
                    "bandwidth": {
                      "displayName": "bandwidth",
                      "command": "get_input",
                      "inputName": "pasqualevpe0_bandwidth"
                    },
                    "AIC_CLLI": {
                      "displayName": "AIC_CLLI",
                      "command": "get_input",
                      "inputName": "2017488_pasqualevpe0_AIC_CLLI"
                    },
                    "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": "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=false}",
                    "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",
                    "min_instances": "1",
                    "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": "false",
                    "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": {
                    "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"
                    },
                    "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": "pasqualevpe0_bandwidth_units"
                    },
                    "bandwidth": {
                      "displayName": "bandwidth",
                      "command": "get_input",
                      "inputName": "pasqualevpe0_bandwidth"
                    },
                    "AIC_CLLI": {
                      "displayName": "AIC_CLLI",
                      "command": "get_input",
                      "inputName": "2017488_pasqualevpe0_AIC_CLLI"
                    },
                    "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": "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=false}",
                    "nf_naming_code": "Navneet",
                    "vmxvre_name_0": "vREXI",
                    "vmxvpfe_sriov42_0_port_vlanstrip": "false",
                    "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
                    "max_instances": "3",
                    "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",
                    "min_instances": "1",
                    "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": "false",
                    "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": {
                "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": {
                    "min_instances": 1,
                    "max_instances": 10,
                    "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": {},
              "fabricConfigurations": {},
              "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": {
            "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
              "vnfs": {
                "VF_vGeraldine 0": {
                  "rollbackOnFailure": "true",
                  "vfModules": {
                    "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": {
                      "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0vmvzo": {
                        "isMissingData": false,
                        "sdncPreReload": null,
                        "modelInfo": {
                          "modelType": "VFmodule",
                          "modelInvariantId": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
                          "modelVersionId": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
                          "modelName": "VfVgeraldine..base_vflorence..module-0",
                          "modelVersion": "2",
                          "modelCustomizationId": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
                          "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0"
                        },
                        "instanceParams": [
                          {}
                        ],
                        "trackById": "wmtm6sy2uj"
                      }
                    }
                  },
                  "isMissingData": true,
                  "originalName": "VF_vGeraldine 0",
                  "vnfStoreKey": "VF_vGeraldine 0",
                  "trackById": "p3wk448m5do",
                  "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60",
                  "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
                  "lcpCloudRegionId": null,
                  "tenantId": null,
                  "lineOfBusiness": null,
                  "platformName": null,
                  "modelInfo": {
                    "modelType": "VF",
                    "modelInvariantId": "4160458e-f648-4b30-a176-43881ffffe9e",
                    "modelVersionId": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
                    "modelName": "VF_vGeraldine",
                    "modelVersion": "2.0",
                    "modelCustomizationName": "VF_vGeraldine 0"
                  }
                }
              },
              "networks": {},
              "instanceParams": [
                {}
              ],
              "validationCounter": 1,
              "existingNames": {},
              "existingVNFCounterMap": {
                "d91415b44-753d-494c-926a-456a9172bbb9": 1
              },
              "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
              "subscriptionServiceType": "TYLER SILVIA",
              "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
              "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
              "lcpCloudRegionId": "hvf6",
              "tenantId": "229bcdc6eaeb4ca59d55221141d01f8e",
              "aicZoneId": "JAG1",
              "projectName": "x1",
              "rollbackOnFailure": "true",
              "bulkSize": 1,
              "modelInfo": {
                "modelInvariantId": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
                "modelVersionId": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
                "modelName": "ComplexService",
                "modelVersion": "1.0",
                "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44"
              },
              "isALaCarte": false,
              "name": "ComplexService",
              "version": "1.0",
              "description": "ComplexService",
              "category": "Emanuel",
              "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
              "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
              "serviceType": "",
              "serviceRole": "",
              "isMultiStepDesign": false
            },
            "6b528779-44a3-4472-bdff-9cd15ec93450": {
              "networks": {},
              "vnfs": {},
              "instanceParams": [
                {
                  "2017488_pasqualevpe0_ASN": "AV_vPE"
                }
              ],
              "validationCounter": 0,
              "existingNames": {
                "123": "",
                "instancename": "",
                "yoav": ""
              },
              "existingVNFCounterMap": {},
              "existingNetworksCounterMap": {},
              "instanceName": "InstanceName",
              "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
              "subscriptionServiceType": "TYLER SILVIA",
              "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
              "productFamilyId": "17cc1042-527b-11e6-beb8-9e71128cae77",
              "lcpCloudRegionId": "AAIAIC25",
              "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
              "aicZoneId": "JAG1",
              "projectName": null,
              "rollbackOnFailure": "true",
              "aicZoneName": "YUDFJULP-JAG1",
              "owningEntityName": "WayneHolland",
              "testApi": "GR_API",
              "tenantName": "USP-SIP-IC-24335-T-01",
              "bulkSize": 1,
              "modelInfo": {
                "modelInvariantId": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
                "modelVersionId": "6b528779-44a3-4472-bdff-9cd15ec93450",
                "modelName": "action-data",
                "modelVersion": "1.0",
                "uuid": "6b528779-44a3-4472-bdff-9cd15ec93450"
              },
              "isALaCarte": false,
              "name": "action-data",
              "version": "1.0",
              "description": "",
              "category": "",
              "uuid": "6b528779-44a3-4472-bdff-9cd15ec93450",
              "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
              "serviceType": "",
              "serviceRole": "",
              "isMultiStepDesign": false
            }
          },
          "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
                }
              ]
            }
          },
          "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",
          "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
            }
          ]
        }
      }
    }

  });
});