TLS sdc-be-init: truststore & keystore handling
[sdc.git] / catalog-be / src / main / resources / scripts / sdcBePy / tosca / imports / runNormativeType.py
index ee4e05b..b5e2f34 100644 (file)
@@ -4,17 +4,18 @@ import sys
 
 from sdcBePy.common.normative.toscaTypes import process_and_create_normative_types
 from sdcBePy.tosca.main import get_args, usage
-from sdcBePy.tosca.models.normativeTypesList import get_normative, get_heat, get_nfv, get_onap, get_sol
+from sdcBePy.tosca.models.normativeTypesList import get_normative, get_heat, get_nfv, get_nfv_2_7_1, get_nfv_3_3_1, get_nfv_4_1_1, get_onap, get_sol
 
 
 def run(candidate, exit_on_success=True):
-    scheme, be_host, be_port, admin_user, update_version, debug = get_args()
+    scheme, be_host, be_port, admin_user, update_version, debug, tls_cert, tls_key, tls_key_pw, ca_cert = get_args()
     try:
         process_and_create_normative_types(candidate,
                                            scheme,
                                            be_host,
                                            be_port,
                                            admin_user,
+                                           tls_cert, tls_key, tls_key_pw, ca_cert,
                                            update_version=update_version,
                                            debug=debug,
                                            exit_on_success=exit_on_success)
@@ -37,6 +38,17 @@ def run_import_nfv():
     nfv_candidate = get_nfv()
     run(nfv_candidate)
 
+def run_import_nfv_2_7_1():
+    nfv_candidate = get_nfv_2_7_1()
+    run(nfv_candidate)
+
+def run_import_nfv_3_3_1():
+    nfv_candidate = get_nfv_3_3_1()
+    run(nfv_candidate)
+
+def run_import_nfv_4_1_1():
+    nfv_candidate = get_nfv_4_1_1()
+    run(nfv_candidate)
 
 def run_import_onap():
     onap_candidate = get_onap()