diff options
author | dekstroza <dejan.kitic@ericsson.com> | 2018-05-18 15:23:12 +0100 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2018-05-27 23:13:27 +0300 |
commit | cb72310ab92091c47502f7e3c1bf2162884dca83 (patch) | |
tree | cfd6fbf0abf585c35f16dd72380a703cbdc13e8b /catalog-be/src/main/resources/scripts | |
parent | a4d6b57e6b8babca1007680fa51fa38f2eccf536 (diff) |
R2 model updates
All model verification changes and updated in single patch.
Change-Id: Ie794dc141400490bf1a858a8d6c9d1c45e5b9443
Issue-ID: SDC-1253
Signed-off-by: Michael Lando <ml636r@att.com>
Diffstat (limited to 'catalog-be/src/main/resources/scripts')
-rw-r--r-- | catalog-be/src/main/resources/scripts/import/tosca/importNfvTypes.py | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/catalog-be/src/main/resources/scripts/import/tosca/importNfvTypes.py b/catalog-be/src/main/resources/scripts/import/tosca/importNfvTypes.py index 019067b849..8e63d86140 100644 --- a/catalog-be/src/main/resources/scripts/import/tosca/importNfvTypes.py +++ b/catalog-be/src/main/resources/scripts/import/tosca/importNfvTypes.py @@ -22,21 +22,24 @@ import importCommon def importNfvTypes(scheme, beHost, bePort, adminUser, fileDir, updateversion): nfvTypes = [ "underlayVpn", - "overlayTunnel", - "genericNeutronNet", - "allottedResource", - "extImageFile", - "extLocalStorage", - "extZteCP", - "extZteVDU", - "extZteVL", - "NSD", - "VDU", - "vduCompute", - "vduCpd", - "vduVirtualStorage", - "vnfVirtualLinkDesc" - ] + "overlayTunnel", + "genericNeutronNet", + "allottedResource", + "extImageFile", + "extLocalStorage", + "extZteCP", + "extZteVDU", + "extZteVL", + "NSD", + "VDU", + "vduCompute", + "Cp", + "vduVirtualStorage", + "vnfVirtualLinkDesc", + "vnfVirtualLink", + "vduCp", + "VNF" + ] responseCodes = [200, 201] |