Update DGs and Playbooks for PNF SW Upgrade 32/102132/2
authorEnbo Wang <wangenbo@huawei.com>
Fri, 21 Feb 2020 09:28:53 +0000 (17:28 +0800)
committerEnbo Wang <wangenbo@huawei.com>
Fri, 21 Feb 2020 09:35:35 +0000 (17:35 +0800)
Change-Id: Iecc84ca6f794fe9947e81da3d95ceaad00f2861d
Issue-ID: SDNC-1079
Signed-off-by: Enbo Wang <wangenbo@huawei.com>
Former-commit-id: e2915384cc7523e93c2e154d4a84920fd093146d

12 files changed:
installation/ansible-server/src/main/Playbooks/ansible_huawei_activatenesw@0.00.yml
installation/ansible-server/src/main/Playbooks/ansible_huawei_downloadnesw@0.00.yml
installation/ansible-server/src/main/Playbooks/ansible_huawei_postcheck@0.01.yml
installation/ansible-server/src/main/Playbooks/ansible_huawei_precheck@0.01.yml
platform-logic/lcm/src/main/json/LCM_activate-n-e-sw.json
platform-logic/lcm/src/main/json/LCM_download-n-e-sw.json
platform-logic/lcm/src/main/json/LCM_upgrade-post-check.json
platform-logic/lcm/src/main/json/LCM_upgrade-pre-check.json
platform-logic/lcm/src/main/xml/LCM_activate-n-e-sw.xml
platform-logic/lcm/src/main/xml/LCM_download-n-e-sw.xml
platform-logic/lcm/src/main/xml/LCM_upgrade-post-check.xml
platform-logic/lcm/src/main/xml/LCM_upgrade-pre-check.xml

index e25d2e6..1ce873a 100644 (file)
       ne_identifier: "{{neIdentifier}}"\r
     when: neIdentifier is defined\r
 \r
-  - name: compatible with parameter pnfId\r
+  - name: compatible with parameter pnfName\r
     set_fact:\r
-      ne_identifier: "{{pnfId}}"\r
-    when: neIdentifier is not defined and pnfId is defined\r
+      ne_identifier: "{{pnfName}}"\r
+    when: neIdentifier is not defined and pnfName is defined\r
 \r
   - name: execute activateNESw operation\r
     shell: ./swm/activateNESw --swVersionToBeActivated {{sw_version_to_be_activated}} --neIdentifier {{ne_identifier}}\r
index 10e25b3..47359f5 100644 (file)
       ne_identifier: "{{neIdentifier}}"\r
     when: neIdentifier is defined\r
 \r
-  - name: compatible with parameter pnfId\r
+  - name: compatible with parameter pnfName\r
     set_fact:\r
-      ne_identifier: "{{pnfId}}"\r
-    when: neIdentifier is not defined and pnfId is defined\r
+      ne_identifier: "{{pnfName}}"\r
+    when: neIdentifier is not defined and pnfName is defined\r
 \r
   - name: execute downloadNESw operation\r
     shell: ./swm/downloadNESw --swToBeDownloaded {{sw_to_be_downloaded}} --neIdentifier {{ne_identifier}}\r
index b9b1ab8..cc867c1 100644 (file)
@@ -1,16 +1,29 @@
 ---\r
 - hosts: all\r
   tasks:\r
+\r
+  - name: parameter neIdentifier\r
+    set_fact:\r
+      ne_identifier: "{{neIdentifier}}"\r
+    when: neIdentifier is defined\r
+\r
+  - name: compatible with parameter pnfName\r
+    set_fact:\r
+      ne_identifier: "{{pnfName}}"\r
+    when: neIdentifier is not defined and pnfName is defined\r
+\r
   - name: create a temporary file for additional data\r
-    file: \r
-      path: /tmp/tmp-{{Id}}\r
-      state: touch\r
+    tempfile: \r
+      state: file\r
+    register: additional_data_file\r
 \r
   - name: prepare additional data\r
-    shell: echo {{additionalData}} > /tmp/tmp-{{Id}}\r
+    copy:\r
+      content: "{{additionalData}}"\r
+      dest: "{{additional_data_file.path}}"\r
 \r
   - name: execute post-check operation\r
-    shell: ./swm/upgrade-post-check {{pnfId}} {{oldSwVersion}} {{targetSwVersion}} {{ruleName}} /tmp/tmp-{{Id}}\r
+    shell: ./swm/upgrade-post-check {{ne_identifier}} {{oldSwVersion}} {{targetSwVersion}} {{ruleName}} {{additional_data_file.path}}\r
     ignore_errors: yes\r
     register: postcheck_result\r
 \r
@@ -20,8 +33,9 @@
 \r
   - name: remove the temporary file\r
     file:\r
-      path: /tmp/tmp-{{Id}}\r
+      path: "{{additional_data_file.path}}"\r
       state: absent\r
+    when: additional_data_file.path is defined\r
 \r
   - name: build error message\r
     set_fact:\r
index dcb6f6a..32de4b3 100644 (file)
@@ -1,16 +1,29 @@
 ---\r
 - hosts: all\r
   tasks:\r
+\r
+  - name: parameter neIdentifier\r
+    set_fact:\r
+      ne_identifier: "{{neIdentifier}}"\r
+    when: neIdentifier is defined\r
+\r
+  - name: compatible with parameter pnfName\r
+    set_fact:\r
+      ne_identifier: "{{pnfName}}"\r
+    when: neIdentifier is not defined and pnfName is defined\r
+\r
   - name: create a temporary file for additional data\r
-    file: \r
-      path: /tmp/tmp-{{Id}}\r
-      state: touch\r
+    tempfile: \r
+      state: file\r
+    register: additional_data_file\r
 \r
   - name: prepare additional data\r
-    shell: echo {{additionalData}} > /tmp/tmp-{{Id}}\r
+    copy:\r
+      content: "{{additionalData}}"\r
+      dest: "{{additional_data_file.path}}"\r
 \r
   - name: execute pre-check operation\r
-    shell: ./swm/upgrade-pre-check {{pnfId}} {{oldSwVersion}} {{targetSwVersion}} {{ruleName}} /tmp/tmp-{{Id}}\r
+    shell: ./swm/upgrade-pre-check {{ne_identifier}} {{oldSwVersion}} {{targetSwVersion}} {{ruleName}} {{additional_data_file.path}}\r
     ignore_errors: yes\r
     register: precheck_result\r
 \r
@@ -20,8 +33,9 @@
 \r
   - name: remove the temporary file\r
     file:\r
-      path: /tmp/tmp-{{Id}}\r
+      path: "{{additional_data_file.path}}"\r
       state: absent\r
+    when: additional_data_file.path is defined\r
 \r
   - name: build error message\r
     set_fact:\r
index 1483ceb..bb7e434 100644 (file)
@@ -1,22 +1,22 @@
 [\r
     {\r
-        "id": "7a48a318.a0c2cc",\r
+        "id": "bf535237.4809",\r
         "type": "method",\r
         "name": "activate-n-e-sw",\r
         "xml": "<method rpc='activate-n-e-sw' mode='sync'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 526.75,\r
-        "y": 59.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 527.2500610351562,\r
+        "y": 28.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "43527cfb.50e584"\r
+                "37dfcf3b.f289c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "d50afa5f.773ec8",\r
+        "id": "abaeb654.ecf048",\r
         "type": "service-logic",\r
         "name": "LCM ${project.version}",\r
         "module": "LCM",\r
         "comments": "",\r
         "xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='LCM' version='${project.version}'>",\r
         "outputs": 1,\r
-        "x": 314.74993896484375,\r
-        "y": 60.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 315.25,\r
+        "y": 29.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "7a48a318.a0c2cc"\r
+                "bf535237.4809"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "af9cc402.0df8d8",\r
+        "id": "4ca554b1.64cfac",\r
         "type": "execute",\r
         "name": "execute AnsibleA.reqExec",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.adaptors.ansible.AnsibleAdapter' method='reqExec' >\n<parameter name='AgentUrl' value='`$prop.ansible.agenturl`'/>\n<parameter name='User' value='`$prop.ansible.user`'/>\n<parameter name='Password' value='`$prop.ansible.password`'/>\n<parameter name='LocalParameters' value='`$prop.ansible.lcm.localparameters`'/>\n<parameter name='EnvParameters' value='`$activate-n-e-sw-input.payload`'/>\n<parameter name='NodeList' value=\"`$nodelist`\"/>\n<parameter name='Timeout' value='`$prop.ansible.timeout`'/>\n<parameter name='Version' value='`$prop.ansible.version`'/>\n<parameter name='Id' value='`$activate-n-e-sw-input.common-header.request-id`'/>\n<parameter name='PlaybookName' value='`$playbookname`'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 428.75001525878906,\r
-        "y": 706.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 429.2500762939453,\r
+        "y": 675.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "bc344e40.d001e",\r
-                "6111417c.2bcf1",\r
-                "a9afb547.0ddf48"\r
+                "41993dbd.510e94",\r
+                "eb0cf86.0ae1308",\r
+                "6d276eae.f7933"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "7ec1fa09.313064",\r
+        "id": "cda0d255.88e57",\r
         "type": "switchNode",\r
         "name": "switch",\r
         "xml": "<switch test=\"`$org.onap.appc.adapter.ansible.result.code`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 828.7499389648438,\r
-        "y": 814.7500305175781,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 829.25,\r
+        "y": 783.7500307559967,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "def0741f.7b54c8",\r
-                "21b40503.ea026a",\r
-                "8c342d0e.01d56"\r
+                "d3ad30a5.7e40b",\r
+                "5d5c8e87.4569f",\r
+                "e91d746f.ee24d8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "def0741f.7b54c8",\r
+        "id": "d3ad30a5.7e40b",\r
         "type": "other",\r
         "name": "outcome 500",\r
         "xml": "<outcome value='500'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 973.7499389648438,\r
-        "y": 812.7500381469727,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 974.25,\r
+        "y": 781.7500383853912,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "975bc56b.8da928"\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "21b40503.ea026a",\r
+        "id": "5d5c8e87.4569f",\r
         "type": "other",\r
         "name": "outcome 100",\r
         "xml": "<outcome value='100'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 970.7499389648438,\r
-        "y": 869.7500305175781,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 971.25,\r
+        "y": 838.7500307559967,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "fd635a04.514608"\r
+                "9160ee3f.90cdf"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "fd635a04.514608",\r
+        "id": "9160ee3f.90cdf",\r
         "type": "execute",\r
         "name": "execute reqExecResult",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.adaptors.ansible.AnsibleAdapter' method='reqExecResult' >\n    <parameter name='AgentUrl' value='`$prop.ansible.agenturl`'/>\n\t<parameter name='User' value='`$prop.ansible.user`'/>\n\t<parameter name='Password' value='`$prop.ansible.password`'/>\n\t<parameter name='Id' value='`$org.onap.appc.adapter.ansible.Id`'/>\n\t<parameter name='PlaybookName' value='`$playbookname`'/>\n\t\n\n\n\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1158.7499389648438,\r
-        "y": 868.7500305175781,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1159.25,\r
+        "y": 837.7500307559967,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "b6c762d8.0d3f4",\r
-                "78593085.dc6ad"\r
+                "9f6f87a0.ed34a8",\r
+                "40d1e66e.058b58"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "6111417c.2bcf1",\r
+        "id": "eb0cf86.0ae1308",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 687.7499389648438,\r
-        "y": 727.7500915527344,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 688.25,\r
+        "y": 696.750091791153,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "975bc56b.8da928"\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "bc344e40.d001e",\r
+        "id": "41993dbd.510e94",\r
         "type": "other",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 689.7499389648438,\r
-        "y": 779.7500610351562,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 690.25,\r
+        "y": 748.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "7ec1fa09.313064"\r
+                "cda0d255.88e57"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "b6c762d8.0d3f4",\r
+        "id": "9f6f87a0.ed34a8",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1327.7498779296875,\r
-        "y": 850.7500610351562,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1328.2499389648438,\r
+        "y": 819.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "c84dc161.1f07e"\r
+                "3cabde61.b46412"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "8c342d0e.01d56",\r
+        "id": "e91d746f.ee24d8",\r
         "type": "other",\r
         "name": "outcome 101",\r
         "xml": "<outcome value='101'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 970.7499389648438,\r
-        "y": 770.7500686645508,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 971.25,\r
+        "y": 739.7500689029694,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "975bc56b.8da928"\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "78593085.dc6ad",\r
+        "id": "40d1e66e.058b58",\r
         "type": "success",\r
         "name": "success",\r
         "xml": "<outcome value='success'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1331.7498779296875,\r
-        "y": 894.7501220703125,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1332.2499389648438,\r
+        "y": 863.7501223087311,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "c84dc161.1f07e"\r
+                "3cabde61.b46412"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "46414f65.12103",\r
+        "id": "ea9b4886.c48198",\r
         "type": "dgstart",\r
         "name": "DGSTART",\r
         "outputs": 1,\r
-        "x": 129.75,\r
-        "y": 59.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 130.25006103515625,\r
+        "y": 28.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "d50afa5f.773ec8"\r
+                "abaeb654.ecf048"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "43527cfb.50e584",\r
+        "id": "37dfcf3b.f289c",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 174.66669082641602,\r
-        "y": 210.83334636688232,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 175.16675186157227,\r
+        "y": 179.8333466053009,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "af9cc402.0df8d8",\r
-                "d87b0bba.f7fa68",\r
-                "b68ece2.1e4193",\r
-                "8345e48f.70abe8",\r
-                "f8b2fbc0.6518d8",\r
-                "f46185cf.a1ee68",\r
-                "3c8e8586.56a77a",\r
-                "2f85a60c.ee77ca"\r
+                "4ca554b1.64cfac",\r
+                "b98c2ec9.d8038",\r
+                "c8196d34.a400d",\r
+                "a485bdb7.2ebc2",\r
+                "3a91a794.6c88c8",\r
+                "abab4d63.1772e",\r
+                "457d8530.6d929c",\r
+                "f1e5bbf5.b3f958"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "d87b0bba.f7fa68",\r
+        "id": "b98c2ec9.d8038",\r
         "type": "execute",\r
         "name": "execute Properties",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >\n    <parameter name='fileName' value='%SDNC_CONFIG_DIR%/lcm-dg.properties' />\n    <parameter name='contextPrefix' value='prop' />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 472.7500305175781,\r
-        "y": 170.83334350585938,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 475.2500915527344,\r
+        "y": 126.83334374427795,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "54ac459f.b652ac",\r
+        "id": "337a6d7b.201ca2",\r
         "type": "execute",\r
         "name": "execute DmaapMsg",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n    <parameter name='templateFileName' value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.lcm.dmaap.publish.templatefile`\" />\n    <parameter name='restapiUrl' value='`$prop.lcm.dmaap.url`' />\n    <parameter name='restapiUser' value='`$prop.lcm.dmaap.user`' />\n    <parameter name='restapiPassword' value='`$prop.lcm.dmaap.password`' />\n    <parameter name='format' value='json' />\n    <parameter name='httpMethod' value='POST' />\n    <parameter name='contentType' value='application/json' />\n    <parameter name=\"responsePrefix\" value=\"lcm\" />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1639.7498779296875,\r
-        "y": 676.8334045410156,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1640.2499389648438,\r
+        "y": 645.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "766513f5.edd23c"\r
+                "96c73638.cb9ab8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "766513f5.edd23c",\r
+        "id": "96c73638.cb9ab8",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1809.7498168945312,\r
-        "y": 675.8334045410156,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1810.2498779296875,\r
+        "y": 644.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "a502c1d2.11bac"\r
+                "84cae955.c44a18"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "975bc56b.8da928",\r
+        "id": "83b77a4c.913068",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1442.7498168945312,\r
-        "y": 700.8334045410156,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1443.2498779296875,\r
+        "y": 669.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "54ac459f.b652ac",\r
-                "830eb37b.9f264",\r
-                "7ffa87f6.e152c8"\r
+                "337a6d7b.201ca2",\r
+                "f844550d.858858",\r
+                "71d833e9.bcb87c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "d644ce6f.1e8bc",\r
+        "id": "d45e1182.8850c",\r
         "type": "execute",\r
         "name": "execute DmaapMsg",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n    <parameter name='templateFileName' value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.lcm.dmaap.publish.templatefile`\" />\n    <parameter name='restapiUrl' value='`$prop.lcm.dmaap.url`' />\n    <parameter name='restapiUser' value='`$prop.lcm.dmaap.user`' />\n    <parameter name='restapiPassword' value='`$prop.lcm.dmaap.password`' />\n    <parameter name='format' value='json' />\n    <parameter name='httpMethod' value='POST' />\n    <parameter name='contentType' value='application/json' />\n    <parameter name=\"responsePrefix\" value=\"lcm\" />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1675.2498779296875,\r
-        "y": 942.8333740234375,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1675.7499389648438,\r
+        "y": 911.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "9b9d77b5.691a98"\r
+                "fa30655b.b81a38"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "9b9d77b5.691a98",\r
+        "id": "fa30655b.b81a38",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1860.2498779296875,\r
-        "y": 942.8333740234375,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1860.7499389648438,\r
+        "y": 911.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "7c4d044.899ebfc"\r
+                "7d0b6c03.8ed0d4"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "a502c1d2.11bac",\r
+        "id": "84cae955.c44a18",\r
         "type": "record",\r
         "name": "record",\r
         "xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.Slf4jRecorder\"> \n\t<parameter name=\"logger\" value=\"message-log\"/> \n\t<parameter name=\"field1\" value='Failed to Publish to DMaap'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1929.7498779296875,\r
-        "y": 674.8333740234375,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1930.2499389648438,\r
+        "y": 643.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "830eb37b.9f264",\r
+        "id": "f844550d.858858",\r
         "type": "returnFailure",\r
         "name": "return failure",\r
         "xml": "<return status='failure'>\n<parameter name='status.code' value='401' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`' />\n",\r
         "comments": "",\r
-        "x": 1621.66650390625,\r
-        "y": 727.8334045410156,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1622.1665649414062,\r
+        "y": 696.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "7c4d044.899ebfc",\r
+        "id": "7d0b6c03.8ed0d4",\r
         "type": "record",\r
         "name": "record",\r
         "xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.Slf4jRecorder\"> \n\t<parameter name=\"logger\" value=\"message-log\"/> \n\t<parameter name=\"field1\" value='Failed to Publish to DMaap'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1992.6666259765625,\r
-        "y": 942.8333740234375,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1993.1666870117188,\r
+        "y": 911.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "7ffa87f6.e152c8",\r
+        "id": "71d833e9.bcb87c",\r
         "type": "set",\r
         "name": "set DmaapReq",\r
         "xml": "<set>\n<parameter name='lcm-dmaap.version' value='`$prop.lcm.dmaap.version`'/>\n<parameter name='lcm-dmaap.correlation-id' value=\"`$activate-n-e-sw-input.common-header.request-id + '-' + $activate-n-e-sw-input.common-header.sub-request-id`\"/>\n<parameter name='lcm-dmaap.partition' value='`$prop.lcm.dmaap.partition`'/>\n<parameter name='lcm-dmaap.rpc-name' value='activate-n-e-sw'/>\n<parameter name='lcm-dmaap.type' value='`$prop.lcm.dmaap.type`'/>\n<parameter name='lcm-dmaap.timestamp' value='`$activate-n-e-sw-input.common-header.timestamp`'/>\n<parameter name='lcm-dmaap.api-ver' value='`$activate-n-e-sw-input.common-header.api-ver`'/>\n<parameter name='lcm-dmaap.originator-id' value='`$activate-n-e-sw-input.common-header.originator-id`'/>\n<parameter name='lcm-dmaap.request-id' value='`$activate-n-e-sw-input.common-header.request-id`'/>\n<parameter name='lcm-dmaap.sub-request-id' value='`$activate-n-e-sw-input.common-header.sub-request-id`'/>\n<parameter name='lcm-dmaap.flags.mode' value='`$activate-n-e-sw-input.common-header.flags.mode`'/>\n<parameter name='lcm-dmaap.flags.force' value='`$activate-n-e-sw-input.common-header.flags.force`'/>\n<parameter name='lcm-dmaap.flags.ttl' value='`$activate-n-e-sw-input.common-header.flags.ttl`'/>\n<parameter name='lcm-dmaap.status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='lcm-dmaap.status.message' value='`$org.onap.appc.adapter.ansible.message`'/>\n",\r
         "comments": "",\r
-        "x": 1626.7498779296875,\r
-        "y": 623.8333740234375,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1627.2499389648438,\r
+        "y": 592.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "c84dc161.1f07e",\r
+        "id": "3cabde61.b46412",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1463.7498779296875,\r
-        "y": 869.8333740234375,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1464.2499389648438,\r
+        "y": 838.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "d644ce6f.1e8bc",\r
-                "e02d564.53570a8",\r
-                "8a07c86f.108db8",\r
-                "ad3c8533.605f78",\r
-                "630cb023.71cae",\r
-                "c2b9b6ea.5a9d68"\r
+                "d45e1182.8850c",\r
+                "1d4663f2.97eacc",\r
+                "a1b67568.88c2a8",\r
+                "b0abd019.0685d",\r
+                "cea269d5.6aca98",\r
+                "6bef098.93b85f8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "c2b9b6ea.5a9d68",\r
+        "id": "6bef098.93b85f8",\r
         "type": "set",\r
         "name": "set DmaapReq",\r
         "xml": "<set>\n<parameter name='lcm-dmaap.version' value='`$prop.lcm.dmaap.version`'/>\n<parameter name='lcm-dmaap.correlation-id' value=\"`$activate-n-e-sw-input.common-header.request-id + '-' + $activate-n-e-sw-input.common-header.sub-request-id`\"/>\n<parameter name='lcm-dmaap.partition' value='`$prop.lcm.dmaap.partition`'/>\n<parameter name='lcm-dmaap.rpc-name' value='activate-n-e-sw'/>\n<parameter name='lcm-dmaap.type' value='`$prop.lcm.dmaap.type`'/>\n<parameter name='lcm-dmaap.timestamp' value='`$activate-n-e-sw-input.common-header.timestamp`'/>\n<parameter name='lcm-dmaap.api-ver' value='`$activate-n-e-sw-input.common-header.api-ver`'/>\n<parameter name='lcm-dmaap.originator-id' value='`$activate-n-e-sw-input.common-header.originator-id`'/>\n<parameter name='lcm-dmaap.request-id' value='`$activate-n-e-sw-input.common-header.request-id`'/>\n<parameter name='lcm-dmaap.sub-request-id' value='`$activate-n-e-sw-input.common-header.sub-request-id`'/>\n<parameter name='lcm-dmaap.flags.mode' value='`$activate-n-e-sw-input.common-header.flags.mode`'/>\n<parameter name='lcm-dmaap.flags.force' value='`$activate-n-e-sw-input.common-header.flags.force`'/>\n<parameter name='lcm-dmaap.flags.ttl' value='`$activate-n-e-sw-input.common-header.flags.ttl`'/>\n<parameter name='lcm-dmaap.status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='lcm-dmaap.status.message' value='`$org.onap.appc.adapter.ansible.message`'/>\n",\r
         "comments": "",\r
-        "x": 1661.9166564941406,\r
-        "y": 856.5833864212036,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1662.4167175292969,\r
+        "y": 825.5833866596222,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "a9afb547.0ddf48",\r
+        "id": "6d276eae.f7933",\r
         "type": "not-found",\r
         "name": "not-found",\r
         "xml": "<outcome value='not-found'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 696.7499389648438,\r
-        "y": 679.7500610351562,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 697.25,\r
+        "y": 648.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "f0c42ba4.b67c68"\r
+                "9564527e.7b80c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "8b382fc0.d0fb6",\r
+        "id": "c74b1b59.de1648",\r
         "type": "set",\r
         "name": "set Defaults",\r
         "xml": "<set>\n<parameter name='org.onap.appc.adapter.ansible.result.code' value='401'/>\n<parameter name='org.onap.appc.adapter.ansible.message' value='Ansible Adapter was not found'/>\n",\r
         "comments": "",\r
-        "x": 987.7499389648438,\r
-        "y": 638.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 988.25,\r
+        "y": 607.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "f0c42ba4.b67c68",\r
+        "id": "9564527e.7b80c",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 833.7499389648438,\r
-        "y": 673.7500610351562,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 834.25,\r
+        "y": 642.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "8b382fc0.d0fb6",\r
-                "975bc56b.8da928"\r
+                "c74b1b59.de1648",\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "b68ece2.1e4193",\r
+        "id": "c8196d34.a400d",\r
         "type": "set",\r
         "name": "set default values",\r
         "xml": "<set>\n<parameter name='status.code' value='200' />\n<parameter name='status.message' value='unexpected return from DG' />\n<parameter name='quote' value=\"'\" />\n<parameter name='outputPayloadField' value='.Output' />\n",\r
         "comments": "",\r
-        "x": 465.75,\r
-        "y": 217.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 471.25006103515625,\r
+        "y": 182.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "da55f644.1843a8",\r
+        "id": "649bb274.68abac",\r
         "type": "get-resource",\r
         "name": "get aai.generic-vnf ",\r
         "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"generic-vnf\" \n\t\tkey=\"generic-vnf.vnf-id = $activate-n-e-sw-input.action-identifiers.vnf-id\" \n\t\tlocal-only=\"false\" \n\t\tpfx='aai.generic-vnf'>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1005.75,\r
-        "y": 446.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1004.5000762939453,\r
+        "y": 268.25000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "241297eb.3bb928"\r
+                "b63fd635.c47e78"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "241297eb.3bb928",\r
+        "id": "b63fd635.c47e78",\r
         "type": "success",\r
         "name": "success",\r
         "xml": "<outcome value='success'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1164.1407470703125,\r
-        "y": 445.03399658203125,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1185.3908882141113,\r
+        "y": 267.7840003967285,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "cfa2f0b.fb44f1"\r
+                "ed79a97b.65e818"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "3c8e8586.56a77a",\r
+        "id": "457d8530.6d929c",\r
         "type": "record",\r
         "name": "record",\r
         "xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.Slf4jRecorder\"> \n\t<parameter name=\"logger\" value=\"message-log\"/> \n\t<parameter name=\"field1\" value='`$playbookname`'/>\n\t<parameter name=\"field2\" value='`$nodelist`'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 394.7498779296875,\r
-        "y": 634.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 395.24993896484375,\r
+        "y": 603.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "f8b2fbc0.6518d8",\r
+        "id": "3a91a794.6c88c8",\r
         "type": "switchNode",\r
-        "name": "switch pnf-flag",\r
-        "xml": "<switch test='`$payloadJson.pnf-flag`'>\n",\r
+        "name": "switch pnf-name",\r
+        "xml": "<switch test=\"`$activate-n-e-sw-input.action-identifiers.pnf-name`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 451.50000762939453,\r
-        "y": 365.5000057220459,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 469.0000686645508,\r
+        "y": 314.2500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "46ff267a.c90aa8",\r
-                "bde8f6f0.e6c498"\r
+                "ec14cee4.1522f",\r
+                "91fc3db3.48d8e"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "8345e48f.70abe8",\r
+        "id": "a485bdb7.2ebc2",\r
         "type": "execute",\r
         "name": "execute jsonStringToCtx",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='jsonStringToCtx'>\n\t<parameter name='source' value='activate-n-e-sw-input.payload' />\n\t<parameter name='outputPath' value='payloadJson' />\n\t<parameter name='isEscaped' value='true' />",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 479.75,\r
-        "y": 264.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 480.0000686645508,\r
+        "y": 242.00000286102295,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "46ff267a.c90aa8",\r
+        "id": "ec14cee4.1522f",\r
         "type": "outcome",\r
-        "name": "true",\r
-        "xml": "<outcome value='true'>\n",\r
+        "name": "other",\r
+        "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 636.0000076293945,\r
-        "y": 309.5000057220459,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 674.750072479248,\r
+        "y": 385.7500054836273,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "f3966cc8.0da64"\r
+                "e0ea6cf2.aa805"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "bde8f6f0.e6c498",\r
+        "id": "91fc3db3.48d8e",\r
         "type": "outcome",\r
-        "name": "other",\r
-        "xml": "<outcome value='Other'>\n",\r
+        "name": "null",\r
+        "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 638.4999465942383,\r
-        "y": 417.2500057220459,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 679.0000114440918,\r
+        "y": 240.50001907348633,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "d3bb6a51.85d388"\r
+                "50ddaf2.c52105"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "d3bb6a51.85d388",\r
+        "id": "50ddaf2.c52105",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 792.7499504089355,\r
-        "y": 418.2500057220459,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 816.7500114440918,\r
+        "y": 240.75001907348633,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "da55f644.1843a8",\r
-                "45bfd380.dd46ec"\r
+                "649bb274.68abac",\r
+                "1e906a40.6f9a16"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "56157871.379218",\r
+        "id": "45aa522.51b58ac",\r
         "type": "set",\r
         "name": "set AnsibleReq",\r
         "xml": "<set>\n<parameter name='nodelist' value=\"`'[' + $quote + $payloadJson.ipaddress-v4-oam +  $quote + ']'`\"/>\n<parameter name='outputPayloadField' value=\"`'.' + $payloadJson.ipaddress-v4-oam + '.Output'`\"/>\n",\r
         "comments": "",\r
-        "x": 963.2500152587891,\r
-        "y": 217.50000381469727,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 993.2500762939453,\r
+        "y": 328.5000047683716,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "45bfd380.dd46ec",\r
+        "id": "1e906a40.6f9a16",\r
         "type": "execute",\r
         "name": "set playbookname",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\n\t<parameter name='outputPath' value='playbookname' />\n\t<parameter name='source' value=\"`'prop.lcm.' + $payloadJson.nf-naming-code + '.activate-n-e-sw.playbookname'`\" />\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1014.75,\r
-        "y": 390.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1004.7500762939453,\r
+        "y": 203.50000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "f46185cf.a1ee68",\r
+        "id": "abab4d63.1772e",\r
         "type": "switchNode",\r
         "name": "switch playbookname",\r
         "xml": "<switch test='`$playbookname`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 444.75,\r
-        "y": 502.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 445.25006103515625,\r
+        "y": 471.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "5a90bdd7.42d5d4"\r
+                "f88b349b.6807a8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "5a90bdd7.42d5d4",\r
+        "id": "f88b349b.6807a8",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 615.75,\r
-        "y": 503.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 616.2500610351562,\r
+        "y": 472.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "731bf1bc.6221a"\r
+                "f3bc6541.44adb8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "731bf1bc.6221a",\r
+        "id": "f3bc6541.44adb8",\r
         "type": "set",\r
         "name": "set playbookname",\r
         "xml": "<set>\n<parameter name='playbookname' value='`$prop.lcm.activate-n-e-sw.playbookname`'/>",\r
         "comments": "",\r
-        "x": 805.75,\r
-        "y": 502.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 806.2500610351562,\r
+        "y": 471.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "2f85a60c.ee77ca",\r
+        "id": "f1e5bbf5.b3f958",\r
         "type": "switchNode",\r
         "name": "switch nodelist",\r
         "xml": "<switch test='`$nodelist`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 434.75,\r
-        "y": 561.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 422.7500686645508,\r
+        "y": 532.0000076293945,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "9d065183.934a9",\r
-                "192e9813.2964f8"\r
+                "a1739b46.b31628",\r
+                "62d7e3df.33dd5c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "9d065183.934a9",\r
+        "id": "a1739b46.b31628",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 614.75,\r
-        "y": 554.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 615.2500610351562,\r
+        "y": 523.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "8d09887f.874398"\r
+                "2cef64f9.c5e8ec"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "8d09887f.874398",\r
+        "id": "2cef64f9.c5e8ec",\r
         "type": "set",\r
         "name": "set nodelist",\r
         "xml": "<set>\n<parameter name='nodelist' value=\"`$prop.ansible.nodelist`\"/>",\r
         "comments": "",\r
-        "x": 771.75,\r
-        "y": 568.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 772.2500610351562,\r
+        "y": 537.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "192e9813.2964f8",\r
+        "id": "62d7e3df.33dd5c",\r
         "type": "outcome",\r
         "name": "empty",\r
         "xml": "<outcome value=\"['']\">\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 613.75,\r
-        "y": 598.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 614.2500610351562,\r
+        "y": 567.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "8d09887f.874398"\r
+                "2cef64f9.c5e8ec"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "9162780a.f8e268",\r
+        "id": "7427e274.ca5cbc",\r
         "type": "switchNode",\r
         "name": "switch playbookname",\r
         "xml": "<switch test='`$playbookname`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1489.75,\r
-        "y": 433.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1512.250144958496,\r
+        "y": 229.00000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "81b68614.728d88"\r
+                "db001d9c.052e8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "81b68614.728d88",\r
+        "id": "db001d9c.052e8",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1667.75,\r
-        "y": 433.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1696.5001487731934,\r
+        "y": 228.75000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "b348096f.426488"\r
+                "8e520dd.9047df"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "8c8f231.2f3fce",\r
+        "id": "8bd02c4a.6337d",\r
         "type": "set",\r
         "name": "set nodelist",\r
         "xml": "<set>\n<parameter name='nodelist' value=\"`'[' + $quote + $aai.generic-vnf.ipv4-oam-address +  $quote + ']'`\"/>\n",\r
         "comments": "",\r
-        "x": 1462.75,\r
-        "y": 486.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1482.5000686645508,\r
+        "y": 302.00000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "cfa2f0b.fb44f1",\r
+        "id": "ed79a97b.65e818",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1292.75,\r
-        "y": 443.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1320.250144958496,\r
+        "y": 268.00000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "9162780a.f8e268",\r
-                "8c8f231.2f3fce"\r
+                "7427e274.ca5cbc",\r
+                "8bd02c4a.6337d"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "b348096f.426488",\r
+        "id": "8e520dd.9047df",\r
         "type": "execute",\r
         "name": "set playbookname",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\n\t<parameter name='outputPath' value='playbookname' />\n\t<parameter name='source' value=\"`'prop.lcm.' + $aai.generic-vnf.nf-naming-code + '.activate-n-e-sw.playbookname'`\" />\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1839.75,\r
-        "y": 431.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1877.2501487731934,\r
+        "y": 229.25000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "e02d564.53570a8",\r
+        "id": "1d4663f2.97eacc",\r
         "type": "execute",\r
         "name": "execute jsonStringToCtx",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='jsonStringToCtx'>\n\t<parameter name='source' value='org.onap.appc.adapter.ansible.results' />\n\t<parameter name='outputPath' value='resultsJson' />\n\t<parameter name='isEscaped' value='false' />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1689.75,\r
-        "y": 775.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1690.2500610351562,\r
+        "y": 744.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "8a07c86f.108db8",\r
+        "id": "a1b67568.88c2a8",\r
         "type": "execute",\r
         "name": "execute getAttributeValue",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\n\t<parameter name='source' value=\"`'resultsJson' + $outputPayloadField`\" />\n\t<parameter name='outputPath' value='outputPayload' />",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1695.75,\r
-        "y": 820.75,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1696.2500610351562,\r
+        "y": 789.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "ad3c8533.605f78",\r
+        "id": "b0abd019.0685d",\r
         "type": "switchNode",\r
         "name": "switch outputPayload",\r
         "xml": "<switch test='`$outputPayload`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1681.7500228881836,\r
-        "y": 896.5000133514404,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1682.2500839233398,\r
+        "y": 865.500013589859,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "2f6e08da.3db698"\r
+                "94c5870c.1b9028"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "2f6e08da.3db698",\r
+        "id": "94c5870c.1b9028",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1855.7500267028809,\r
-        "y": 896.7500133514404,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1856.250087738037,\r
+        "y": 865.750013589859,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "fb256275.6342b"\r
+                "f297c7ae.006d88"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "fb256275.6342b",\r
+        "id": "f297c7ae.006d88",\r
         "type": "set",\r
         "name": "set DmaapReq with payload",\r
         "xml": "<set>\n<parameter name='lcm-dmaap.payload' value='`$outputPayload`'/>",\r
         "comments": "",\r
-        "x": 2054.000030517578,\r
-        "y": 897.2500133514404,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 2054.5000915527344,\r
+        "y": 866.250013589859,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "6841a778.ad0de8",\r
+        "id": "84168fc5.05e25",\r
         "type": "returnSuccess",\r
         "name": "return success",\r
         "xml": "<return status='success'>\n<parameter name='status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`'/>",\r
         "comments": "",\r
-        "x": 2392.75,\r
-        "y": 978.7499389648438,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 2393.2500610351562,\r
+        "y": 947.7499392032623,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "f60442ca.cb989",\r
+        "id": "7ba95e1a.d4b0c",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1858.750244140625,\r
-        "y": 1000.7498779296875,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1859.2503051757812,\r
+        "y": 969.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "2e5e9fe5.78981"\r
+                "9599f2eb.e4f97"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "8462a034.c9b29",\r
+        "id": "5f979340.f0e31c",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1857.750244140625,\r
-        "y": 1076.7498779296875,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1858.2503051757812,\r
+        "y": 1045.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "bf2e605d.23ecf"\r
+                "1f06dd95.403012"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "630cb023.71cae",\r
+        "id": "cea269d5.6aca98",\r
         "type": "switchNode",\r
         "name": "switch outputPayload",\r
         "xml": "<switch test='`$outputPayload`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1675.750244140625,\r
-        "y": 1036.7498779296875,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1676.2503051757812,\r
+        "y": 1005.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "f60442ca.cb989",\r
-                "8462a034.c9b29"\r
+                "7ba95e1a.d4b0c",\r
+                "5f979340.f0e31c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "bf013ab1.1fb0d8",\r
+        "id": "7d7bfbd9.1f17c4",\r
         "type": "returnSuccess",\r
         "name": "return success with payload",\r
         "xml": "<return status='success'>\n<parameter name='status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`'/>\n<parameter name='payload' value='`$outputPayload`'/>",\r
         "comments": "",\r
-        "x": 2433.750244140625,\r
-        "y": 1060.7498779296875,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 2434.2503051757812,\r
+        "y": 1029.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "2e5e9fe5.78981",\r
+        "id": "9599f2eb.e4f97",\r
         "type": "switchNode",\r
         "name": "switch result code",\r
         "xml": "<switch test=\"`$org.onap.appc.adapter.ansible.result.code`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2028.750244140625,\r
-        "y": 1000.7498779296875,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 2029.2503051757812,\r
+        "y": 969.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "be7efeac.4cf1",\r
-                "42860b2a.714e44"\r
+                "6b0748c.2505bb8",\r
+                "408c7b86.5c50a4"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "bf2e605d.23ecf",\r
+        "id": "1f06dd95.403012",\r
         "type": "switchNode",\r
         "name": "switch result code",\r
         "xml": "<switch test=\"`$org.onap.appc.adapter.ansible.result.code`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2028.750244140625,\r
-        "y": 1076.7498779296875,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 2029.2503051757812,\r
+        "y": 1045.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "8746a2f7.f50b9",\r
-                "10d01bab.10d144"\r
+                "284a16dd.c42b9a",\r
+                "b1e583b2.95cf8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "805a4622.d587c8",\r
+        "id": "c7d7ae9a.c9b1a",\r
         "type": "returnFailure",\r
         "name": "return failure",\r
         "xml": "<return status='failure'>\n<parameter name='status.code' value='401' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`' />\n",\r
         "comments": "",\r
-        "x": 2386.750244140625,\r
-        "y": 1016.7498779296875,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 2387.2503051757812,\r
+        "y": 985.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "682174af.42791c",\r
+        "id": "84f220b8.c18db",\r
         "type": "returnFailure",\r
         "name": "return failure with payload",\r
         "xml": "<return status='failure'>\n<parameter name='status.code' value='401' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`' />\n<parameter name='payload' value='`$outputPayload`'/>",\r
         "comments": "",\r
-        "x": 2429.750244140625,\r
-        "y": 1098.7498779296875,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 2430.2503051757812,\r
+        "y": 1067.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "be7efeac.4cf1",\r
+        "id": "6b0748c.2505bb8",\r
         "type": "other",\r
         "name": "outcome 400",\r
         "xml": "<outcome value='400'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2216.750244140625,\r
-        "y": 978.7498779296875,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 2217.2503051757812,\r
+        "y": 947.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "6841a778.ad0de8"\r
+                "84168fc5.05e25"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "42860b2a.714e44",\r
+        "id": "408c7b86.5c50a4",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2197.750244140625,\r
-        "y": 1016.7498779296875,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 2198.2503051757812,\r
+        "y": 985.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "805a4622.d587c8"\r
+                "c7d7ae9a.c9b1a"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "8746a2f7.f50b9",\r
+        "id": "284a16dd.c42b9a",\r
         "type": "other",\r
         "name": "outcome 400",\r
         "xml": "<outcome value='400'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2217.750244140625,\r
-        "y": 1060.7498779296875,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 2218.2503051757812,\r
+        "y": 1029.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "bf013ab1.1fb0d8"\r
+                "7d7bfbd9.1f17c4"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "10d01bab.10d144",\r
+        "id": "b1e583b2.95cf8",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2199.750244140625,\r
-        "y": 1098.7498779296875,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 2200.2503051757812,\r
+        "y": 1067.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "682174af.42791c"\r
+                "84f220b8.c18db"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "f3966cc8.0da64",\r
+        "id": "e0ea6cf2.aa805",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 795.0000114440918,\r
-        "y": 268.00000381469727,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 806.750072479248,\r
+        "y": 385.25000524520874,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "56157871.379218",\r
-                "9e4ffafa.75a808"\r
+                "45aa522.51b58ac",\r
+                "71c4da42.247694",\r
+                "c3246832.b79218"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "9e4ffafa.75a808",\r
+        "id": "71c4da42.247694",\r
         "type": "switchNode",\r
         "name": "switch playbook-name in req",\r
         "xml": "<switch test='`$payloadJson.playbook-name`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1001.2500133514404,\r
-        "y": 312.50000381469727,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1035.2500762939453,\r
+        "y": 381.2500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "ba1ac3af.ccabe",\r
-                "2e2bb815.cefac8"\r
+                "47ca03ae.82311c",\r
+                "3d9f5c17.e59e74"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "ba1ac3af.ccabe",\r
+        "id": "47ca03ae.82311c",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1208.7500190734863,\r
-        "y": 276.25000381469727,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1247.7501411437988,\r
+        "y": 352.5000057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "c5a71ca3.66b2f"\r
+                "af284dab.4b361"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "2e2bb815.cefac8",\r
+        "id": "3d9f5c17.e59e74",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1207.5000228881836,\r
-        "y": 341.25000381469727,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1247.2501411437988,\r
+        "y": 408.2500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "bcca1cae.d0d1b"\r
+                "753113cf.9764ec"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "c5a71ca3.66b2f",\r
+        "id": "af284dab.4b361",\r
         "type": "set",\r
         "name": "set playbookname from prop",\r
         "xml": "<set>\n<parameter name='playbookname' value='`$prop.lcm.pnf.activate-n-e-sw.playbookname`'/>\n",\r
         "comments": "",\r
-        "x": 1411.2500228881836,\r
-        "y": 276.25000381469727,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1454.750144958496,\r
+        "y": 352.7500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "bcca1cae.d0d1b",\r
+        "id": "753113cf.9764ec",\r
         "type": "set",\r
         "name": "set playbookname from req",\r
         "xml": "<set>\n<parameter name='playbookname' value='`$payloadJson.playbook-name`'/>\n",\r
         "comments": "",\r
-        "x": 1406.2500228881836,\r
-        "y": 341.25000381469727,\r
-        "z": "80e400ee.d5d12",\r
+        "x": 1457.250144958496,\r
+        "y": 407.7500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
+    },\r
+    {\r
+        "id": "c3246832.b79218",\r
+        "type": "execute",\r
+        "name": "execute updateJsonObjectString",\r
+        "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='updateJsonObjectString'>\n\t<parameter name='source' value='activate-n-e-sw-input.payload' />\n\t<parameter name='outputPath' value='activate-n-e-sw-input.payload' />\n\t<parameter name='add.pnf-flag' value='true' />\n\t<parameter name='add.pnfName' value=\"`$activate-n-e-sw-input.action-identifiers.pnf-name`\" />\n\t<parameter name='delete.ipaddress-v4-oam' value=\"\" />\n\t<parameter name='delete.playbook-name' value=\"\" />",\r
+        "comments": "",\r
+        "outputs": 1,\r
+        "x": 1047.5000762939453,\r
+        "y": 440.7500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
+        "wires": [\r
+            []\r
+        ]\r
     }\r
 ]\r
index c8c37de..4d96f91 100644 (file)
@@ -1,22 +1,22 @@
 [\r
     {\r
-        "id": "55ea77c7.c7aaf8",\r
+        "id": "bf535237.4809",\r
         "type": "method",\r
         "name": "download-n-e-sw",\r
         "xml": "<method rpc='download-n-e-sw' mode='sync'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 517.5,\r
-        "y": 82.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 527.2500610351562,\r
+        "y": 28.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "2b509841.1bb1b8"\r
+                "37dfcf3b.f289c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "f860454e.516f68",\r
+        "id": "abaeb654.ecf048",\r
         "type": "service-logic",\r
         "name": "LCM ${project.version}",\r
         "module": "LCM",\r
         "comments": "",\r
         "xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='LCM' version='${project.version}'>",\r
         "outputs": 1,\r
-        "x": 305.49993896484375,\r
-        "y": 83.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 315.25,\r
+        "y": 29.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "55ea77c7.c7aaf8"\r
+                "bf535237.4809"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "3c12dd23.f55fc2",\r
+        "id": "4ca554b1.64cfac",\r
         "type": "execute",\r
         "name": "execute AnsibleA.reqExec",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.adaptors.ansible.AnsibleAdapter' method='reqExec' >\n<parameter name='AgentUrl' value='`$prop.ansible.agenturl`'/>\n<parameter name='User' value='`$prop.ansible.user`'/>\n<parameter name='Password' value='`$prop.ansible.password`'/>\n<parameter name='LocalParameters' value='`$prop.ansible.lcm.localparameters`'/>\n<parameter name='EnvParameters' value='`$download-n-e-sw-input.payload`'/>\n<parameter name='NodeList' value=\"`$nodelist`\"/>\n<parameter name='Timeout' value='`$prop.ansible.timeout`'/>\n<parameter name='Version' value='`$prop.ansible.version`'/>\n<parameter name='Id' value='`$download-n-e-sw-input.common-header.request-id`'/>\n<parameter name='PlaybookName' value='`$playbookname`'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 419.50001525878906,\r
-        "y": 729.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 429.2500762939453,\r
+        "y": 675.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "702a1f7c.b1656",\r
-                "3466714f.c34fee",\r
-                "723fe3bb.3ebb6c"\r
+                "41993dbd.510e94",\r
+                "eb0cf86.0ae1308",\r
+                "6d276eae.f7933"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "1fbe29b8.79e9a6",\r
+        "id": "cda0d255.88e57",\r
         "type": "switchNode",\r
         "name": "switch",\r
         "xml": "<switch test=\"`$org.onap.appc.adapter.ansible.result.code`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 819.4999389648438,\r
-        "y": 837.5000305175781,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 829.25,\r
+        "y": 783.7500307559967,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "e21bdb83.8c61a8",\r
-                "69412d2a.6002b4",\r
-                "e6c8aa89.6ba308"\r
+                "d3ad30a5.7e40b",\r
+                "5d5c8e87.4569f",\r
+                "e91d746f.ee24d8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "e21bdb83.8c61a8",\r
+        "id": "d3ad30a5.7e40b",\r
         "type": "other",\r
         "name": "outcome 500",\r
         "xml": "<outcome value='500'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 964.4999389648438,\r
-        "y": 835.5000381469727,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 974.25,\r
+        "y": 781.7500383853912,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "6d845856.14a2d8"\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "69412d2a.6002b4",\r
+        "id": "5d5c8e87.4569f",\r
         "type": "other",\r
         "name": "outcome 100",\r
         "xml": "<outcome value='100'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 961.4999389648438,\r
-        "y": 892.5000305175781,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 971.25,\r
+        "y": 838.7500307559967,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "fa5ccee2.129f2"\r
+                "9160ee3f.90cdf"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "fa5ccee2.129f2",\r
+        "id": "9160ee3f.90cdf",\r
         "type": "execute",\r
         "name": "execute reqExecResult",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.adaptors.ansible.AnsibleAdapter' method='reqExecResult' >\n    <parameter name='AgentUrl' value='`$prop.ansible.agenturl`'/>\n\t<parameter name='User' value='`$prop.ansible.user`'/>\n\t<parameter name='Password' value='`$prop.ansible.password`'/>\n\t<parameter name='Id' value='`$org.onap.appc.adapter.ansible.Id`'/>\n\t<parameter name='PlaybookName' value='`$playbookname`'/>\n\t\n\n\n\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1149.4999389648438,\r
-        "y": 891.5000305175781,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1159.25,\r
+        "y": 837.7500307559967,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "d24bd12c.3cee7",\r
-                "a5a12b22.9ef4c8"\r
+                "9f6f87a0.ed34a8",\r
+                "40d1e66e.058b58"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "3466714f.c34fee",\r
+        "id": "eb0cf86.0ae1308",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 678.4999389648438,\r
-        "y": 750.5000915527344,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 688.25,\r
+        "y": 696.750091791153,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "6d845856.14a2d8"\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "702a1f7c.b1656",\r
+        "id": "41993dbd.510e94",\r
         "type": "other",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 680.4999389648438,\r
-        "y": 802.5000610351562,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 690.25,\r
+        "y": 748.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "1fbe29b8.79e9a6"\r
+                "cda0d255.88e57"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "d24bd12c.3cee7",\r
+        "id": "9f6f87a0.ed34a8",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1318.4998779296875,\r
-        "y": 873.5000610351562,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1328.2499389648438,\r
+        "y": 819.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "5c41d4da.af8bdc"\r
+                "3cabde61.b46412"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "e6c8aa89.6ba308",\r
+        "id": "e91d746f.ee24d8",\r
         "type": "other",\r
         "name": "outcome 101",\r
         "xml": "<outcome value='101'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 961.4999389648438,\r
-        "y": 793.5000686645508,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 971.25,\r
+        "y": 739.7500689029694,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "6d845856.14a2d8"\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "a5a12b22.9ef4c8",\r
+        "id": "40d1e66e.058b58",\r
         "type": "success",\r
         "name": "success",\r
         "xml": "<outcome value='success'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1322.4998779296875,\r
-        "y": 917.5001220703125,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1332.2499389648438,\r
+        "y": 863.7501223087311,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "5c41d4da.af8bdc"\r
+                "3cabde61.b46412"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "aed237db.c85d98",\r
+        "id": "ea9b4886.c48198",\r
         "type": "dgstart",\r
         "name": "DGSTART",\r
         "outputs": 1,\r
-        "x": 120.5,\r
-        "y": 82.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 130.25006103515625,\r
+        "y": 28.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "f860454e.516f68"\r
+                "abaeb654.ecf048"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "2b509841.1bb1b8",\r
+        "id": "37dfcf3b.f289c",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 165.41669082641602,\r
-        "y": 233.58334636688232,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 175.16675186157227,\r
+        "y": 179.8333466053009,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "3c12dd23.f55fc2",\r
-                "d8d13cba.ced29",\r
-                "d57bc3f1.44367",\r
-                "b01a324f.c5221",\r
-                "ef479112.da0ef",\r
-                "abcb3779.7bf4c8",\r
-                "78e77692.545348",\r
-                "3d9fed7.7ae0b12"\r
+                "4ca554b1.64cfac",\r
+                "b98c2ec9.d8038",\r
+                "c8196d34.a400d",\r
+                "a485bdb7.2ebc2",\r
+                "3a91a794.6c88c8",\r
+                "abab4d63.1772e",\r
+                "457d8530.6d929c",\r
+                "f1e5bbf5.b3f958"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "d8d13cba.ced29",\r
+        "id": "b98c2ec9.d8038",\r
         "type": "execute",\r
         "name": "execute Properties",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >\n    <parameter name='fileName' value='%SDNC_CONFIG_DIR%/lcm-dg.properties' />\n    <parameter name='contextPrefix' value='prop' />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 463.5000305175781,\r
-        "y": 193.58334350585938,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 475.2500915527344,\r
+        "y": 126.83334374427795,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "59c76955.33a148",\r
+        "id": "337a6d7b.201ca2",\r
         "type": "execute",\r
         "name": "execute DmaapMsg",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n    <parameter name='templateFileName' value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.lcm.dmaap.publish.templatefile`\" />\n    <parameter name='restapiUrl' value='`$prop.lcm.dmaap.url`' />\n    <parameter name='restapiUser' value='`$prop.lcm.dmaap.user`' />\n    <parameter name='restapiPassword' value='`$prop.lcm.dmaap.password`' />\n    <parameter name='format' value='json' />\n    <parameter name='httpMethod' value='POST' />\n    <parameter name='contentType' value='application/json' />\n    <parameter name=\"responsePrefix\" value=\"lcm\" />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1630.4998779296875,\r
-        "y": 699.5834045410156,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1640.2499389648438,\r
+        "y": 645.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "1e820140.09a68f"\r
+                "96c73638.cb9ab8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "1e820140.09a68f",\r
+        "id": "96c73638.cb9ab8",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1800.4998168945312,\r
-        "y": 698.5834045410156,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1810.2498779296875,\r
+        "y": 644.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "5d139413.0e125c"\r
+                "84cae955.c44a18"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "6d845856.14a2d8",\r
+        "id": "83b77a4c.913068",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1433.4998168945312,\r
-        "y": 723.5834045410156,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1443.2498779296875,\r
+        "y": 669.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "59c76955.33a148",\r
-                "f23fc981.deb168",\r
-                "ef1fd87.e819d28"\r
+                "337a6d7b.201ca2",\r
+                "f844550d.858858",\r
+                "71d833e9.bcb87c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "3be21092.8cfeb",\r
+        "id": "d45e1182.8850c",\r
         "type": "execute",\r
         "name": "execute DmaapMsg",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n    <parameter name='templateFileName' value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.lcm.dmaap.publish.templatefile`\" />\n    <parameter name='restapiUrl' value='`$prop.lcm.dmaap.url`' />\n    <parameter name='restapiUser' value='`$prop.lcm.dmaap.user`' />\n    <parameter name='restapiPassword' value='`$prop.lcm.dmaap.password`' />\n    <parameter name='format' value='json' />\n    <parameter name='httpMethod' value='POST' />\n    <parameter name='contentType' value='application/json' />\n    <parameter name=\"responsePrefix\" value=\"lcm\" />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1665.9998779296875,\r
-        "y": 965.5833740234375,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1675.7499389648438,\r
+        "y": 911.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "6fc43c73.d4fad4"\r
+                "fa30655b.b81a38"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "6fc43c73.d4fad4",\r
+        "id": "fa30655b.b81a38",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1850.9998779296875,\r
-        "y": 965.5833740234375,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1860.7499389648438,\r
+        "y": 911.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "3fb5d721.f40458"\r
+                "7d0b6c03.8ed0d4"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "5d139413.0e125c",\r
+        "id": "84cae955.c44a18",\r
         "type": "record",\r
         "name": "record",\r
         "xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.Slf4jRecorder\"> \n\t<parameter name=\"logger\" value=\"message-log\"/> \n\t<parameter name=\"field1\" value='Failed to Publish to DMaap'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1920.4998779296875,\r
-        "y": 697.5833740234375,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1930.2499389648438,\r
+        "y": 643.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "f23fc981.deb168",\r
+        "id": "f844550d.858858",\r
         "type": "returnFailure",\r
         "name": "return failure",\r
         "xml": "<return status='failure'>\n<parameter name='status.code' value='401' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`' />\n",\r
         "comments": "",\r
-        "x": 1612.41650390625,\r
-        "y": 750.5834045410156,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1622.1665649414062,\r
+        "y": 696.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "3fb5d721.f40458",\r
+        "id": "7d0b6c03.8ed0d4",\r
         "type": "record",\r
         "name": "record",\r
         "xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.Slf4jRecorder\"> \n\t<parameter name=\"logger\" value=\"message-log\"/> \n\t<parameter name=\"field1\" value='Failed to Publish to DMaap'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1983.4166259765625,\r
-        "y": 965.5833740234375,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1993.1666870117188,\r
+        "y": 911.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "ef1fd87.e819d28",\r
+        "id": "71d833e9.bcb87c",\r
         "type": "set",\r
         "name": "set DmaapReq",\r
         "xml": "<set>\n<parameter name='lcm-dmaap.version' value='`$prop.lcm.dmaap.version`'/>\n<parameter name='lcm-dmaap.correlation-id' value=\"`$download-n-e-sw-input.common-header.request-id + '-' + $download-n-e-sw-input.common-header.sub-request-id`\"/>\n<parameter name='lcm-dmaap.partition' value='`$prop.lcm.dmaap.partition`'/>\n<parameter name='lcm-dmaap.rpc-name' value='download-n-e-sw'/>\n<parameter name='lcm-dmaap.type' value='`$prop.lcm.dmaap.type`'/>\n<parameter name='lcm-dmaap.timestamp' value='`$download-n-e-sw-input.common-header.timestamp`'/>\n<parameter name='lcm-dmaap.api-ver' value='`$download-n-e-sw-input.common-header.api-ver`'/>\n<parameter name='lcm-dmaap.originator-id' value='`$download-n-e-sw-input.common-header.originator-id`'/>\n<parameter name='lcm-dmaap.request-id' value='`$download-n-e-sw-input.common-header.request-id`'/>\n<parameter name='lcm-dmaap.sub-request-id' value='`$download-n-e-sw-input.common-header.sub-request-id`'/>\n<parameter name='lcm-dmaap.flags.mode' value='`$download-n-e-sw-input.common-header.flags.mode`'/>\n<parameter name='lcm-dmaap.flags.force' value='`$download-n-e-sw-input.common-header.flags.force`'/>\n<parameter name='lcm-dmaap.flags.ttl' value='`$download-n-e-sw-input.common-header.flags.ttl`'/>\n<parameter name='lcm-dmaap.status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='lcm-dmaap.status.message' value='`$org.onap.appc.adapter.ansible.message`'/>\n",\r
         "comments": "",\r
-        "x": 1617.4998779296875,\r
-        "y": 646.5833740234375,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1627.2499389648438,\r
+        "y": 592.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "5c41d4da.af8bdc",\r
+        "id": "3cabde61.b46412",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1454.4998779296875,\r
-        "y": 892.5833740234375,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1464.2499389648438,\r
+        "y": 838.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "3be21092.8cfeb",\r
-                "a47cc713.5015a8",\r
-                "f12f37dc.2169f8",\r
-                "bdc86fd1.79a2a",\r
-                "c109396a.17fb38",\r
-                "f3261d43.39148"\r
+                "d45e1182.8850c",\r
+                "1d4663f2.97eacc",\r
+                "a1b67568.88c2a8",\r
+                "b0abd019.0685d",\r
+                "cea269d5.6aca98",\r
+                "6bef098.93b85f8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "f3261d43.39148",\r
+        "id": "6bef098.93b85f8",\r
         "type": "set",\r
         "name": "set DmaapReq",\r
         "xml": "<set>\n<parameter name='lcm-dmaap.version' value='`$prop.lcm.dmaap.version`'/>\n<parameter name='lcm-dmaap.correlation-id' value=\"`$download-n-e-sw-input.common-header.request-id + '-' + $download-n-e-sw-input.common-header.sub-request-id`\"/>\n<parameter name='lcm-dmaap.partition' value='`$prop.lcm.dmaap.partition`'/>\n<parameter name='lcm-dmaap.rpc-name' value='download-n-e-sw'/>\n<parameter name='lcm-dmaap.type' value='`$prop.lcm.dmaap.type`'/>\n<parameter name='lcm-dmaap.timestamp' value='`$download-n-e-sw-input.common-header.timestamp`'/>\n<parameter name='lcm-dmaap.api-ver' value='`$download-n-e-sw-input.common-header.api-ver`'/>\n<parameter name='lcm-dmaap.originator-id' value='`$download-n-e-sw-input.common-header.originator-id`'/>\n<parameter name='lcm-dmaap.request-id' value='`$download-n-e-sw-input.common-header.request-id`'/>\n<parameter name='lcm-dmaap.sub-request-id' value='`$download-n-e-sw-input.common-header.sub-request-id`'/>\n<parameter name='lcm-dmaap.flags.mode' value='`$download-n-e-sw-input.common-header.flags.mode`'/>\n<parameter name='lcm-dmaap.flags.force' value='`$download-n-e-sw-input.common-header.flags.force`'/>\n<parameter name='lcm-dmaap.flags.ttl' value='`$download-n-e-sw-input.common-header.flags.ttl`'/>\n<parameter name='lcm-dmaap.status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='lcm-dmaap.status.message' value='`$org.onap.appc.adapter.ansible.message`'/>\n",\r
         "comments": "",\r
-        "x": 1652.6666564941406,\r
-        "y": 879.3333864212036,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1662.4167175292969,\r
+        "y": 825.5833866596222,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "723fe3bb.3ebb6c",\r
+        "id": "6d276eae.f7933",\r
         "type": "not-found",\r
         "name": "not-found",\r
         "xml": "<outcome value='not-found'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 687.4999389648438,\r
-        "y": 702.5000610351562,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 697.25,\r
+        "y": 648.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "e40ab4bf.ad59c8"\r
+                "9564527e.7b80c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "c9fdb891.fe1038",\r
+        "id": "c74b1b59.de1648",\r
         "type": "set",\r
         "name": "set Defaults",\r
         "xml": "<set>\n<parameter name='org.onap.appc.adapter.ansible.result.code' value='401'/>\n<parameter name='org.onap.appc.adapter.ansible.message' value='Ansible Adapter was not found'/>\n",\r
         "comments": "",\r
-        "x": 978.4999389648438,\r
-        "y": 661.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 988.25,\r
+        "y": 607.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "e40ab4bf.ad59c8",\r
+        "id": "9564527e.7b80c",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 824.4999389648438,\r
-        "y": 696.5000610351562,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 834.25,\r
+        "y": 642.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "c9fdb891.fe1038",\r
-                "6d845856.14a2d8"\r
+                "c74b1b59.de1648",\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "d57bc3f1.44367",\r
+        "id": "c8196d34.a400d",\r
         "type": "set",\r
         "name": "set default values",\r
         "xml": "<set>\n<parameter name='status.code' value='200' />\n<parameter name='status.message' value='unexpected return from DG' />\n<parameter name='quote' value=\"'\" />\n<parameter name='outputPayloadField' value='.Output' />\n",\r
         "comments": "",\r
-        "x": 456.5,\r
-        "y": 240.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 471.25006103515625,\r
+        "y": 182.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "2ec58c40.3b0264",\r
+        "id": "649bb274.68abac",\r
         "type": "get-resource",\r
         "name": "get aai.generic-vnf ",\r
         "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"generic-vnf\" \n\t\tkey=\"generic-vnf.vnf-id = $download-n-e-sw-input.action-identifiers.vnf-id\" \n\t\tlocal-only=\"false\" \n\t\tpfx='aai.generic-vnf'>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 996.5,\r
-        "y": 469.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1004.5000762939453,\r
+        "y": 268.25000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "1ec47fcb.d5d72"\r
+                "b63fd635.c47e78"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "1ec47fcb.d5d72",\r
+        "id": "b63fd635.c47e78",\r
         "type": "success",\r
         "name": "success",\r
         "xml": "<outcome value='success'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1154.8907470703125,\r
-        "y": 467.78399658203125,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1185.3908882141113,\r
+        "y": 267.7840003967285,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "965c2b6a.d85768"\r
+                "ed79a97b.65e818"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "78e77692.545348",\r
+        "id": "457d8530.6d929c",\r
         "type": "record",\r
         "name": "record",\r
         "xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.Slf4jRecorder\"> \n\t<parameter name=\"logger\" value=\"message-log\"/> \n\t<parameter name=\"field1\" value='`$playbookname`'/>\n\t<parameter name=\"field2\" value='`$nodelist`'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 385.4998779296875,\r
-        "y": 657.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 395.24993896484375,\r
+        "y": 603.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "ef479112.da0ef",\r
+        "id": "3a91a794.6c88c8",\r
         "type": "switchNode",\r
-        "name": "switch pnf-flag",\r
-        "xml": "<switch test='`$payloadJson.pnf-flag`'>\n",\r
+        "name": "switch pnf-name",\r
+        "xml": "<switch test=\"`$download-n-e-sw-input.action-identifiers.pnf-name`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 442.25000762939453,\r
-        "y": 388.2500057220459,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 469.0000686645508,\r
+        "y": 314.2500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "4b54c828.c73518",\r
-                "a6d6b0bb.89982"\r
+                "ec14cee4.1522f",\r
+                "91fc3db3.48d8e"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "b01a324f.c5221",\r
+        "id": "a485bdb7.2ebc2",\r
         "type": "execute",\r
         "name": "execute jsonStringToCtx",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='jsonStringToCtx'>\n\t<parameter name='source' value='download-n-e-sw-input.payload' />\n\t<parameter name='outputPath' value='payloadJson' />\n\t<parameter name='isEscaped' value='true' />",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 470.5,\r
-        "y": 287.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 480.0000686645508,\r
+        "y": 242.00000286102295,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "4b54c828.c73518",\r
+        "id": "ec14cee4.1522f",\r
         "type": "outcome",\r
-        "name": "true",\r
-        "xml": "<outcome value='true'>\n",\r
+        "name": "other",\r
+        "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 626.7500076293945,\r
-        "y": 332.2500057220459,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 674.750072479248,\r
+        "y": 385.7500054836273,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "a7c85df0.70769"\r
+                "e0ea6cf2.aa805"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "a6d6b0bb.89982",\r
+        "id": "91fc3db3.48d8e",\r
         "type": "outcome",\r
-        "name": "other",\r
-        "xml": "<outcome value='Other'>\n",\r
+        "name": "null",\r
+        "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 629.2499465942383,\r
-        "y": 440.0000057220459,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 679.0000114440918,\r
+        "y": 240.50001907348633,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "66a07516.de565c"\r
+                "50ddaf2.c52105"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "66a07516.de565c",\r
+        "id": "50ddaf2.c52105",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 783.4999504089355,\r
-        "y": 441.0000057220459,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 816.7500114440918,\r
+        "y": 240.75001907348633,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "2ec58c40.3b0264",\r
-                "413ce905.d63568"\r
+                "649bb274.68abac",\r
+                "1e906a40.6f9a16"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "a51744cb.1eab38",\r
+        "id": "45aa522.51b58ac",\r
         "type": "set",\r
         "name": "set AnsibleReq",\r
         "xml": "<set>\n<parameter name='nodelist' value=\"`'[' + $quote + $payloadJson.ipaddress-v4-oam +  $quote + ']'`\"/>\n<parameter name='outputPayloadField' value=\"`'.' + $payloadJson.ipaddress-v4-oam + '.Output'`\"/>\n",\r
         "comments": "",\r
-        "x": 954.0000152587891,\r
-        "y": 240.25000381469727,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 993.2500762939453,\r
+        "y": 328.5000047683716,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "413ce905.d63568",\r
+        "id": "1e906a40.6f9a16",\r
         "type": "execute",\r
         "name": "set playbookname",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\n\t<parameter name='outputPath' value='playbookname' />\n\t<parameter name='source' value=\"`'prop.lcm.' + $payloadJson.nf-naming-code + '.download-n-e-sw.playbookname'`\" />\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1005.5,\r
-        "y": 413.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1004.7500762939453,\r
+        "y": 203.50000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "abcb3779.7bf4c8",\r
+        "id": "abab4d63.1772e",\r
         "type": "switchNode",\r
         "name": "switch playbookname",\r
         "xml": "<switch test='`$playbookname`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 435.5,\r
-        "y": 525.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 445.25006103515625,\r
+        "y": 471.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "e39a2e5d.f73e8"\r
+                "f88b349b.6807a8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "e39a2e5d.f73e8",\r
+        "id": "f88b349b.6807a8",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 606.5,\r
-        "y": 526.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 616.2500610351562,\r
+        "y": 472.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "8b7cb986.cf8ca8"\r
+                "f3bc6541.44adb8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "8b7cb986.cf8ca8",\r
+        "id": "f3bc6541.44adb8",\r
         "type": "set",\r
         "name": "set playbookname",\r
         "xml": "<set>\n<parameter name='playbookname' value='`$prop.lcm.download-n-e-sw.playbookname`'/>",\r
         "comments": "",\r
-        "x": 796.5,\r
-        "y": 525.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 806.2500610351562,\r
+        "y": 471.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "3d9fed7.7ae0b12",\r
+        "id": "f1e5bbf5.b3f958",\r
         "type": "switchNode",\r
         "name": "switch nodelist",\r
         "xml": "<switch test='`$nodelist`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 425.5,\r
-        "y": 584.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 422.7500686645508,\r
+        "y": 532.0000076293945,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "59f5a5a3.47579c",\r
-                "4921ac90.8db2d4"\r
+                "a1739b46.b31628",\r
+                "62d7e3df.33dd5c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "59f5a5a3.47579c",\r
+        "id": "a1739b46.b31628",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 605.5,\r
-        "y": 577.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 615.2500610351562,\r
+        "y": 523.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "573f641a.cee56c"\r
+                "2cef64f9.c5e8ec"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "573f641a.cee56c",\r
+        "id": "2cef64f9.c5e8ec",\r
         "type": "set",\r
         "name": "set nodelist",\r
         "xml": "<set>\n<parameter name='nodelist' value=\"`$prop.ansible.nodelist`\"/>",\r
         "comments": "",\r
-        "x": 762.5,\r
-        "y": 591.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 772.2500610351562,\r
+        "y": 537.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "4921ac90.8db2d4",\r
+        "id": "62d7e3df.33dd5c",\r
         "type": "outcome",\r
         "name": "empty",\r
         "xml": "<outcome value=\"['']\">\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 604.5,\r
-        "y": 621.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 614.2500610351562,\r
+        "y": 567.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "573f641a.cee56c"\r
+                "2cef64f9.c5e8ec"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "1d44a807.979a68",\r
+        "id": "7427e274.ca5cbc",\r
         "type": "switchNode",\r
         "name": "switch playbookname",\r
         "xml": "<switch test='`$playbookname`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1480.5,\r
-        "y": 456.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1512.250144958496,\r
+        "y": 229.00000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "fa1ad15d.05e4f"\r
+                "db001d9c.052e8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "fa1ad15d.05e4f",\r
+        "id": "db001d9c.052e8",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1658.5,\r
-        "y": 456.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1696.5001487731934,\r
+        "y": 228.75000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "bb5ab3e9.32bfe"\r
+                "8e520dd.9047df"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "d971b27c.85ffb",\r
+        "id": "8bd02c4a.6337d",\r
         "type": "set",\r
         "name": "set nodelist",\r
         "xml": "<set>\n<parameter name='nodelist' value=\"`'[' + $quote + $aai.generic-vnf.ipv4-oam-address +  $quote + ']'`\"/>\n",\r
         "comments": "",\r
-        "x": 1453.5,\r
-        "y": 509.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1482.5000686645508,\r
+        "y": 302.00000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "965c2b6a.d85768",\r
+        "id": "ed79a97b.65e818",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1283.5,\r
-        "y": 466.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1320.250144958496,\r
+        "y": 268.00000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "1d44a807.979a68",\r
-                "d971b27c.85ffb"\r
+                "7427e274.ca5cbc",\r
+                "8bd02c4a.6337d"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "bb5ab3e9.32bfe",\r
+        "id": "8e520dd.9047df",\r
         "type": "execute",\r
         "name": "set playbookname",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\n\t<parameter name='outputPath' value='playbookname' />\n\t<parameter name='source' value=\"`'prop.lcm.' + $aai.generic-vnf.nf-naming-code + '.download-n-e-sw.playbookname'`\" />\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1830.5,\r
-        "y": 454.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1877.2501487731934,\r
+        "y": 229.25000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "a47cc713.5015a8",\r
+        "id": "1d4663f2.97eacc",\r
         "type": "execute",\r
         "name": "execute jsonStringToCtx",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='jsonStringToCtx'>\n\t<parameter name='source' value='org.onap.appc.adapter.ansible.results' />\n\t<parameter name='outputPath' value='resultsJson' />\n\t<parameter name='isEscaped' value='false' />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1680.5,\r
-        "y": 798.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1690.2500610351562,\r
+        "y": 744.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "f12f37dc.2169f8",\r
+        "id": "a1b67568.88c2a8",\r
         "type": "execute",\r
         "name": "execute getAttributeValue",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\n\t<parameter name='source' value=\"`'resultsJson' + $outputPayloadField`\" />\n\t<parameter name='outputPath' value='outputPayload' />",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1686.5,\r
-        "y": 843.5,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1696.2500610351562,\r
+        "y": 789.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "bdc86fd1.79a2a",\r
+        "id": "b0abd019.0685d",\r
         "type": "switchNode",\r
         "name": "switch outputPayload",\r
         "xml": "<switch test='`$outputPayload`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1672.5000228881836,\r
-        "y": 919.2500133514404,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1682.2500839233398,\r
+        "y": 865.500013589859,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "2f36dec8.740a42"\r
+                "94c5870c.1b9028"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "2f36dec8.740a42",\r
+        "id": "94c5870c.1b9028",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1846.5000267028809,\r
-        "y": 919.5000133514404,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1856.250087738037,\r
+        "y": 865.750013589859,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "853dae30.016ee"\r
+                "f297c7ae.006d88"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "853dae30.016ee",\r
+        "id": "f297c7ae.006d88",\r
         "type": "set",\r
         "name": "set DmaapReq with payload",\r
         "xml": "<set>\n<parameter name='lcm-dmaap.payload' value='`$outputPayload`'/>",\r
         "comments": "",\r
-        "x": 2044.7500305175781,\r
-        "y": 920.0000133514404,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 2054.5000915527344,\r
+        "y": 866.250013589859,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "5c7715ed.9be92c",\r
+        "id": "84168fc5.05e25",\r
         "type": "returnSuccess",\r
         "name": "return success",\r
         "xml": "<return status='success'>\n<parameter name='status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`'/>",\r
         "comments": "",\r
-        "x": 2383.5,\r
-        "y": 1001.4999389648438,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 2393.2500610351562,\r
+        "y": 947.7499392032623,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "28c68fe3.efea9",\r
+        "id": "7ba95e1a.d4b0c",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1849.500244140625,\r
-        "y": 1023.4998779296875,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1859.2503051757812,\r
+        "y": 969.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "a9a9fe09.b61e3"\r
+                "9599f2eb.e4f97"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "5d230e53.c839",\r
+        "id": "5f979340.f0e31c",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1848.500244140625,\r
-        "y": 1099.4998779296875,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1858.2503051757812,\r
+        "y": 1045.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "dfd73a35.03cf08"\r
+                "1f06dd95.403012"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "c109396a.17fb38",\r
+        "id": "cea269d5.6aca98",\r
         "type": "switchNode",\r
         "name": "switch outputPayload",\r
         "xml": "<switch test='`$outputPayload`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1666.500244140625,\r
-        "y": 1059.4998779296875,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1676.2503051757812,\r
+        "y": 1005.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "28c68fe3.efea9",\r
-                "5d230e53.c839"\r
+                "7ba95e1a.d4b0c",\r
+                "5f979340.f0e31c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "6c0f75e0.de0a7c",\r
+        "id": "7d7bfbd9.1f17c4",\r
         "type": "returnSuccess",\r
         "name": "return success with payload",\r
         "xml": "<return status='success'>\n<parameter name='status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`'/>\n<parameter name='payload' value='`$outputPayload`'/>",\r
         "comments": "",\r
-        "x": 2424.500244140625,\r
-        "y": 1083.4998779296875,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 2434.2503051757812,\r
+        "y": 1029.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "a9a9fe09.b61e3",\r
+        "id": "9599f2eb.e4f97",\r
         "type": "switchNode",\r
         "name": "switch result code",\r
         "xml": "<switch test=\"`$org.onap.appc.adapter.ansible.result.code`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2019.500244140625,\r
-        "y": 1023.4998779296875,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 2029.2503051757812,\r
+        "y": 969.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "2a0478da.0a2cd8",\r
-                "75baaadd.3d42e4"\r
+                "6b0748c.2505bb8",\r
+                "408c7b86.5c50a4"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "dfd73a35.03cf08",\r
+        "id": "1f06dd95.403012",\r
         "type": "switchNode",\r
         "name": "switch result code",\r
         "xml": "<switch test=\"`$org.onap.appc.adapter.ansible.result.code`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2019.500244140625,\r
-        "y": 1099.4998779296875,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 2029.2503051757812,\r
+        "y": 1045.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "d0213f1f.6f647",\r
-                "8fe55255.6d458"\r
+                "284a16dd.c42b9a",\r
+                "b1e583b2.95cf8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "7779e202.96c07c",\r
+        "id": "c7d7ae9a.c9b1a",\r
         "type": "returnFailure",\r
         "name": "return failure",\r
         "xml": "<return status='failure'>\n<parameter name='status.code' value='401' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`' />\n",\r
         "comments": "",\r
-        "x": 2377.500244140625,\r
-        "y": 1039.4998779296875,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 2387.2503051757812,\r
+        "y": 985.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "31e7a133.6072ee",\r
+        "id": "84f220b8.c18db",\r
         "type": "returnFailure",\r
         "name": "return failure with payload",\r
         "xml": "<return status='failure'>\n<parameter name='status.code' value='401' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`' />\n<parameter name='payload' value='`$outputPayload`'/>",\r
         "comments": "",\r
-        "x": 2420.500244140625,\r
-        "y": 1121.4998779296875,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 2430.2503051757812,\r
+        "y": 1067.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "2a0478da.0a2cd8",\r
+        "id": "6b0748c.2505bb8",\r
         "type": "other",\r
         "name": "outcome 400",\r
         "xml": "<outcome value='400'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2207.500244140625,\r
-        "y": 1001.4998779296875,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 2217.2503051757812,\r
+        "y": 947.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "5c7715ed.9be92c"\r
+                "84168fc5.05e25"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "75baaadd.3d42e4",\r
+        "id": "408c7b86.5c50a4",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2188.500244140625,\r
-        "y": 1039.4998779296875,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 2198.2503051757812,\r
+        "y": 985.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "7779e202.96c07c"\r
+                "c7d7ae9a.c9b1a"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "d0213f1f.6f647",\r
+        "id": "284a16dd.c42b9a",\r
         "type": "other",\r
         "name": "outcome 400",\r
         "xml": "<outcome value='400'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2208.500244140625,\r
-        "y": 1083.4998779296875,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 2218.2503051757812,\r
+        "y": 1029.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "6c0f75e0.de0a7c"\r
+                "7d7bfbd9.1f17c4"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "8fe55255.6d458",\r
+        "id": "b1e583b2.95cf8",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2190.500244140625,\r
-        "y": 1121.4998779296875,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 2200.2503051757812,\r
+        "y": 1067.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "31e7a133.6072ee"\r
+                "84f220b8.c18db"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "a7c85df0.70769",\r
+        "id": "e0ea6cf2.aa805",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 785.7500114440918,\r
-        "y": 290.75000381469727,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 806.750072479248,\r
+        "y": 385.25000524520874,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "a51744cb.1eab38",\r
-                "43f4bcd8.6f59d4"\r
+                "45aa522.51b58ac",\r
+                "71c4da42.247694",\r
+                "c3246832.b79218"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "43f4bcd8.6f59d4",\r
+        "id": "71c4da42.247694",\r
         "type": "switchNode",\r
         "name": "switch playbook-name in req",\r
         "xml": "<switch test='`$payloadJson.playbook-name`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 992.0000133514404,\r
-        "y": 335.25000381469727,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1035.2500762939453,\r
+        "y": 381.2500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "8524b6c2.ab2718",\r
-                "c8dfea1c.562698"\r
+                "47ca03ae.82311c",\r
+                "3d9f5c17.e59e74"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "8524b6c2.ab2718",\r
+        "id": "47ca03ae.82311c",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1199.5000190734863,\r
-        "y": 299.00000381469727,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1247.7501411437988,\r
+        "y": 352.5000057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "85b8a591.020658"\r
+                "af284dab.4b361"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "c8dfea1c.562698",\r
+        "id": "3d9f5c17.e59e74",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1198.2500228881836,\r
-        "y": 364.00000381469727,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1247.2501411437988,\r
+        "y": 408.2500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "33ec26fd.e2b39a"\r
+                "753113cf.9764ec"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "85b8a591.020658",\r
+        "id": "af284dab.4b361",\r
         "type": "set",\r
         "name": "set playbookname from prop",\r
         "xml": "<set>\n<parameter name='playbookname' value='`$prop.lcm.pnf.download-n-e-sw.playbookname`'/>\n",\r
         "comments": "",\r
-        "x": 1402.0000228881836,\r
-        "y": 299.00000381469727,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1454.750144958496,\r
+        "y": 352.7500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "33ec26fd.e2b39a",\r
+        "id": "753113cf.9764ec",\r
         "type": "set",\r
         "name": "set playbookname from req",\r
         "xml": "<set>\n<parameter name='playbookname' value='`$payloadJson.playbook-name`'/>\n",\r
         "comments": "",\r
-        "x": 1397.0000228881836,\r
-        "y": 364.00000381469727,\r
-        "z": "aaefae8.7cdde5",\r
+        "x": 1457.250144958496,\r
+        "y": 407.7500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
+    },\r
+    {\r
+        "id": "c3246832.b79218",\r
+        "type": "execute",\r
+        "name": "execute updateJsonObjectString",\r
+        "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='updateJsonObjectString'>\n\t<parameter name='source' value='download-n-e-sw-input.payload' />\n\t<parameter name='outputPath' value='download-n-e-sw-input.payload' />\n\t<parameter name='add.pnf-flag' value='true' />\n\t<parameter name='add.pnfName' value=\"`$download-n-e-sw-input.action-identifiers.pnf-name`\" />\n\t<parameter name='delete.ipaddress-v4-oam' value=\"\" />\n\t<parameter name='delete.playbook-name' value=\"\" />",\r
+        "comments": "",\r
+        "outputs": 1,\r
+        "x": 1047.5000762939453,\r
+        "y": 440.7500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
+        "wires": [\r
+            []\r
+        ]\r
     }\r
-]\r
+]
\ No newline at end of file
index a17cdf7..0b40990 100644 (file)
@@ -1,22 +1,22 @@
 [\r
     {\r
-        "id": "c2e43cb1.7f88d",\r
+        "id": "bf535237.4809",\r
         "type": "method",\r
         "name": "upgrade-post-check",\r
         "xml": "<method rpc='upgrade-post-check' mode='sync'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 521.25,\r
-        "y": 45,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 527.2500610351562,\r
+        "y": 28.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "7a82a4e1.74051c"\r
+                "37dfcf3b.f289c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "c7c3a05a.217d3",\r
+        "id": "abaeb654.ecf048",\r
         "type": "service-logic",\r
         "name": "LCM ${project.version}",\r
         "module": "LCM",\r
         "comments": "",\r
         "xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='LCM' version='${project.version}'>",\r
         "outputs": 1,\r
-        "x": 309.24993896484375,\r
-        "y": 46,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 315.25,\r
+        "y": 29.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "c2e43cb1.7f88d"\r
+                "bf535237.4809"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "4aa2e04.16b662",\r
+        "id": "4ca554b1.64cfac",\r
         "type": "execute",\r
         "name": "execute AnsibleA.reqExec",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.adaptors.ansible.AnsibleAdapter' method='reqExec' >\n<parameter name='AgentUrl' value='`$prop.ansible.agenturl`'/>\n<parameter name='User' value='`$prop.ansible.user`'/>\n<parameter name='Password' value='`$prop.ansible.password`'/>\n<parameter name='LocalParameters' value='`$prop.ansible.lcm.localparameters`'/>\n<parameter name='EnvParameters' value='`$upgrade-post-check-input.payload`'/>\n<parameter name='NodeList' value=\"`$nodelist`\"/>\n<parameter name='Timeout' value='`$prop.ansible.timeout`'/>\n<parameter name='Version' value='`$prop.ansible.version`'/>\n<parameter name='Id' value='`$upgrade-post-check-input.common-header.request-id`'/>\n<parameter name='PlaybookName' value='`$playbookname`'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 423.25001525878906,\r
-        "y": 692,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 429.2500762939453,\r
+        "y": 675.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "dfb73c1.130adc",\r
-                "ba520b63.5fbad8",\r
-                "37993504.393d8a"\r
+                "41993dbd.510e94",\r
+                "eb0cf86.0ae1308",\r
+                "6d276eae.f7933"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "22e681c3.fbf5ce",\r
+        "id": "cda0d255.88e57",\r
         "type": "switchNode",\r
         "name": "switch",\r
         "xml": "<switch test=\"`$org.onap.appc.adapter.ansible.result.code`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 823.2499389648438,\r
-        "y": 800.0000305175781,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 829.25,\r
+        "y": 783.7500307559967,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "a39e090c.01cdb8",\r
-                "5c6685ba.e0353c",\r
-                "875ad319.3c857"\r
+                "d3ad30a5.7e40b",\r
+                "5d5c8e87.4569f",\r
+                "e91d746f.ee24d8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "a39e090c.01cdb8",\r
+        "id": "d3ad30a5.7e40b",\r
         "type": "other",\r
         "name": "outcome 500",\r
         "xml": "<outcome value='500'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 968.2499389648438,\r
-        "y": 798.0000381469727,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 974.25,\r
+        "y": 781.7500383853912,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "35d55016.e4b95"\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "5c6685ba.e0353c",\r
+        "id": "5d5c8e87.4569f",\r
         "type": "other",\r
         "name": "outcome 100",\r
         "xml": "<outcome value='100'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 965.2499389648438,\r
-        "y": 855.0000305175781,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 971.25,\r
+        "y": 838.7500307559967,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "57b98d51.2b4284"\r
+                "9160ee3f.90cdf"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "57b98d51.2b4284",\r
+        "id": "9160ee3f.90cdf",\r
         "type": "execute",\r
         "name": "execute reqExecResult",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.adaptors.ansible.AnsibleAdapter' method='reqExecResult' >\n    <parameter name='AgentUrl' value='`$prop.ansible.agenturl`'/>\n\t<parameter name='User' value='`$prop.ansible.user`'/>\n\t<parameter name='Password' value='`$prop.ansible.password`'/>\n\t<parameter name='Id' value='`$org.onap.appc.adapter.ansible.Id`'/>\n\t<parameter name='PlaybookName' value='`$playbookname`'/>\n\t\n\n\n\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1153.2499389648438,\r
-        "y": 854.0000305175781,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1159.25,\r
+        "y": 837.7500307559967,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "6c05563.cc2bca8",\r
-                "37d17f6d.5fa27"\r
+                "9f6f87a0.ed34a8",\r
+                "40d1e66e.058b58"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "ba520b63.5fbad8",\r
+        "id": "eb0cf86.0ae1308",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 682.2499389648438,\r
-        "y": 713.0000915527344,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 688.25,\r
+        "y": 696.750091791153,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "35d55016.e4b95"\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "dfb73c1.130adc",\r
+        "id": "41993dbd.510e94",\r
         "type": "other",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 684.2499389648438,\r
-        "y": 765.0000610351562,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 690.25,\r
+        "y": 748.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "22e681c3.fbf5ce"\r
+                "cda0d255.88e57"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "6c05563.cc2bca8",\r
+        "id": "9f6f87a0.ed34a8",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1322.2498779296875,\r
-        "y": 836.0000610351562,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1328.2499389648438,\r
+        "y": 819.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "9c19d3c7.c09df"\r
+                "3cabde61.b46412"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "875ad319.3c857",\r
+        "id": "e91d746f.ee24d8",\r
         "type": "other",\r
         "name": "outcome 101",\r
         "xml": "<outcome value='101'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 965.2499389648438,\r
-        "y": 756.0000686645508,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 971.25,\r
+        "y": 739.7500689029694,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "35d55016.e4b95"\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "37d17f6d.5fa27",\r
+        "id": "40d1e66e.058b58",\r
         "type": "success",\r
         "name": "success",\r
         "xml": "<outcome value='success'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1326.2498779296875,\r
-        "y": 880.0001220703125,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1332.2499389648438,\r
+        "y": 863.7501223087311,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "9c19d3c7.c09df"\r
+                "3cabde61.b46412"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "3d249d1c.21ada2",\r
+        "id": "ea9b4886.c48198",\r
         "type": "dgstart",\r
         "name": "DGSTART",\r
         "outputs": 1,\r
-        "x": 124.25,\r
-        "y": 45,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 130.25006103515625,\r
+        "y": 28.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "c7c3a05a.217d3"\r
+                "abaeb654.ecf048"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "7a82a4e1.74051c",\r
+        "id": "37dfcf3b.f289c",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 169.16669082641602,\r
-        "y": 196.08334636688232,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 175.16675186157227,\r
+        "y": 179.8333466053009,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "4aa2e04.16b662",\r
-                "b3d629e9.2c9188",\r
-                "ab162f45.fae5a",\r
-                "f7de272b.bbcd78",\r
-                "3899b5e2.384a4a",\r
-                "72e148f.bd2b1b8",\r
-                "5a9e7617.91c178",\r
-                "6cd92845.9c27d8"\r
+                "4ca554b1.64cfac",\r
+                "b98c2ec9.d8038",\r
+                "c8196d34.a400d",\r
+                "a485bdb7.2ebc2",\r
+                "3a91a794.6c88c8",\r
+                "abab4d63.1772e",\r
+                "457d8530.6d929c",\r
+                "f1e5bbf5.b3f958"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "b3d629e9.2c9188",\r
+        "id": "b98c2ec9.d8038",\r
         "type": "execute",\r
         "name": "execute Properties",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >\n    <parameter name='fileName' value='%SDNC_CONFIG_DIR%/lcm-dg.properties' />\n    <parameter name='contextPrefix' value='prop' />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 467.2500305175781,\r
-        "y": 156.08334350585938,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 475.2500915527344,\r
+        "y": 126.83334374427795,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "5f58bf2c.b9548",\r
+        "id": "337a6d7b.201ca2",\r
         "type": "execute",\r
         "name": "execute DmaapMsg",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n    <parameter name='templateFileName' value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.lcm.dmaap.publish.templatefile`\" />\n    <parameter name='restapiUrl' value='`$prop.lcm.dmaap.url`' />\n    <parameter name='restapiUser' value='`$prop.lcm.dmaap.user`' />\n    <parameter name='restapiPassword' value='`$prop.lcm.dmaap.password`' />\n    <parameter name='format' value='json' />\n    <parameter name='httpMethod' value='POST' />\n    <parameter name='contentType' value='application/json' />\n    <parameter name=\"responsePrefix\" value=\"lcm\" />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1634.2498779296875,\r
-        "y": 662.0834045410156,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1640.2499389648438,\r
+        "y": 645.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "6180b71a.bb2e58"\r
+                "96c73638.cb9ab8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "6180b71a.bb2e58",\r
+        "id": "96c73638.cb9ab8",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1804.2498168945312,\r
-        "y": 661.0834045410156,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1810.2498779296875,\r
+        "y": 644.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "b7860b2.f448af8"\r
+                "84cae955.c44a18"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "35d55016.e4b95",\r
+        "id": "83b77a4c.913068",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1437.2498168945312,\r
-        "y": 686.0834045410156,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1443.2498779296875,\r
+        "y": 669.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "5f58bf2c.b9548",\r
-                "da507cbc.1345a",\r
-                "e8bf8d4b.e71c5"\r
+                "337a6d7b.201ca2",\r
+                "f844550d.858858",\r
+                "71d833e9.bcb87c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "df593d16.3a873",\r
+        "id": "d45e1182.8850c",\r
         "type": "execute",\r
         "name": "execute DmaapMsg",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n    <parameter name='templateFileName' value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.lcm.dmaap.publish.templatefile`\" />\n    <parameter name='restapiUrl' value='`$prop.lcm.dmaap.url`' />\n    <parameter name='restapiUser' value='`$prop.lcm.dmaap.user`' />\n    <parameter name='restapiPassword' value='`$prop.lcm.dmaap.password`' />\n    <parameter name='format' value='json' />\n    <parameter name='httpMethod' value='POST' />\n    <parameter name='contentType' value='application/json' />\n    <parameter name=\"responsePrefix\" value=\"lcm\" />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1669.7498779296875,\r
-        "y": 928.0833740234375,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1675.7499389648438,\r
+        "y": 911.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "8cde94cd.183ad8"\r
+                "fa30655b.b81a38"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "8cde94cd.183ad8",\r
+        "id": "fa30655b.b81a38",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1854.7498779296875,\r
-        "y": 928.0833740234375,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1860.7499389648438,\r
+        "y": 911.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "97083a8c.a99408"\r
+                "7d0b6c03.8ed0d4"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "b7860b2.f448af8",\r
+        "id": "84cae955.c44a18",\r
         "type": "record",\r
         "name": "record",\r
         "xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.Slf4jRecorder\"> \n\t<parameter name=\"logger\" value=\"message-log\"/> \n\t<parameter name=\"field1\" value='Failed to Publish to DMaap'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1924.2498779296875,\r
-        "y": 660.0833740234375,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1930.2499389648438,\r
+        "y": 643.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "da507cbc.1345a",\r
+        "id": "f844550d.858858",\r
         "type": "returnFailure",\r
         "name": "return failure",\r
         "xml": "<return status='failure'>\n<parameter name='status.code' value='401' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`' />\n",\r
         "comments": "",\r
-        "x": 1616.16650390625,\r
-        "y": 713.0834045410156,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1622.1665649414062,\r
+        "y": 696.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "97083a8c.a99408",\r
+        "id": "7d0b6c03.8ed0d4",\r
         "type": "record",\r
         "name": "record",\r
         "xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.Slf4jRecorder\"> \n\t<parameter name=\"logger\" value=\"message-log\"/> \n\t<parameter name=\"field1\" value='Failed to Publish to DMaap'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1987.1666259765625,\r
-        "y": 928.0833740234375,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1993.1666870117188,\r
+        "y": 911.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "e8bf8d4b.e71c5",\r
+        "id": "71d833e9.bcb87c",\r
         "type": "set",\r
         "name": "set DmaapReq",\r
         "xml": "<set>\n<parameter name='lcm-dmaap.version' value='`$prop.lcm.dmaap.version`'/>\n<parameter name='lcm-dmaap.correlation-id' value=\"`$upgrade-post-check-input.common-header.request-id + '-' + $upgrade-post-check-input.common-header.sub-request-id`\"/>\n<parameter name='lcm-dmaap.partition' value='`$prop.lcm.dmaap.partition`'/>\n<parameter name='lcm-dmaap.rpc-name' value='upgrade-post-check'/>\n<parameter name='lcm-dmaap.type' value='`$prop.lcm.dmaap.type`'/>\n<parameter name='lcm-dmaap.timestamp' value='`$upgrade-post-check-input.common-header.timestamp`'/>\n<parameter name='lcm-dmaap.api-ver' value='`$upgrade-post-check-input.common-header.api-ver`'/>\n<parameter name='lcm-dmaap.originator-id' value='`$upgrade-post-check-input.common-header.originator-id`'/>\n<parameter name='lcm-dmaap.request-id' value='`$upgrade-post-check-input.common-header.request-id`'/>\n<parameter name='lcm-dmaap.sub-request-id' value='`$upgrade-post-check-input.common-header.sub-request-id`'/>\n<parameter name='lcm-dmaap.flags.mode' value='`$upgrade-post-check-input.common-header.flags.mode`'/>\n<parameter name='lcm-dmaap.flags.force' value='`$upgrade-post-check-input.common-header.flags.force`'/>\n<parameter name='lcm-dmaap.flags.ttl' value='`$upgrade-post-check-input.common-header.flags.ttl`'/>\n<parameter name='lcm-dmaap.status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='lcm-dmaap.status.message' value='`$org.onap.appc.adapter.ansible.message`'/>\n",\r
         "comments": "",\r
-        "x": 1621.2498779296875,\r
-        "y": 609.0833740234375,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1627.2499389648438,\r
+        "y": 592.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "9c19d3c7.c09df",\r
+        "id": "3cabde61.b46412",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1458.2498779296875,\r
-        "y": 855.0833740234375,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1464.2499389648438,\r
+        "y": 838.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "df593d16.3a873",\r
-                "60d331ee.302dd",\r
-                "89d6b5d0.08f888",\r
-                "35e221ba.99c04e",\r
-                "25b31875.8826d8",\r
-                "2a38d6be.132baa"\r
+                "d45e1182.8850c",\r
+                "1d4663f2.97eacc",\r
+                "a1b67568.88c2a8",\r
+                "b0abd019.0685d",\r
+                "cea269d5.6aca98",\r
+                "6bef098.93b85f8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "2a38d6be.132baa",\r
+        "id": "6bef098.93b85f8",\r
         "type": "set",\r
         "name": "set DmaapReq",\r
         "xml": "<set>\n<parameter name='lcm-dmaap.version' value='`$prop.lcm.dmaap.version`'/>\n<parameter name='lcm-dmaap.correlation-id' value=\"`$upgrade-post-check-input.common-header.request-id + '-' + $upgrade-post-check-input.common-header.sub-request-id`\"/>\n<parameter name='lcm-dmaap.partition' value='`$prop.lcm.dmaap.partition`'/>\n<parameter name='lcm-dmaap.rpc-name' value='upgrade-post-check'/>\n<parameter name='lcm-dmaap.type' value='`$prop.lcm.dmaap.type`'/>\n<parameter name='lcm-dmaap.timestamp' value='`$upgrade-post-check-input.common-header.timestamp`'/>\n<parameter name='lcm-dmaap.api-ver' value='`$upgrade-post-check-input.common-header.api-ver`'/>\n<parameter name='lcm-dmaap.originator-id' value='`$upgrade-post-check-input.common-header.originator-id`'/>\n<parameter name='lcm-dmaap.request-id' value='`$upgrade-post-check-input.common-header.request-id`'/>\n<parameter name='lcm-dmaap.sub-request-id' value='`$upgrade-post-check-input.common-header.sub-request-id`'/>\n<parameter name='lcm-dmaap.flags.mode' value='`$upgrade-post-check-input.common-header.flags.mode`'/>\n<parameter name='lcm-dmaap.flags.force' value='`$upgrade-post-check-input.common-header.flags.force`'/>\n<parameter name='lcm-dmaap.flags.ttl' value='`$upgrade-post-check-input.common-header.flags.ttl`'/>\n<parameter name='lcm-dmaap.status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='lcm-dmaap.status.message' value='`$org.onap.appc.adapter.ansible.message`'/>\n",\r
         "comments": "",\r
-        "x": 1656.4166564941406,\r
-        "y": 841.8333864212036,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1662.4167175292969,\r
+        "y": 825.5833866596222,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "37993504.393d8a",\r
+        "id": "6d276eae.f7933",\r
         "type": "not-found",\r
         "name": "not-found",\r
         "xml": "<outcome value='not-found'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 691.2499389648438,\r
-        "y": 665.0000610351562,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 697.25,\r
+        "y": 648.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "d005c7d.aef5638"\r
+                "9564527e.7b80c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "4c48a33.c60a15c",\r
+        "id": "c74b1b59.de1648",\r
         "type": "set",\r
         "name": "set Defaults",\r
         "xml": "<set>\n<parameter name='org.onap.appc.adapter.ansible.result.code' value='401'/>\n<parameter name='org.onap.appc.adapter.ansible.message' value='Ansible Adapter was not found'/>\n",\r
         "comments": "",\r
-        "x": 982.2499389648438,\r
-        "y": 624,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 988.25,\r
+        "y": 607.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "d005c7d.aef5638",\r
+        "id": "9564527e.7b80c",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 828.2499389648438,\r
-        "y": 659.0000610351562,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 834.25,\r
+        "y": 642.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "4c48a33.c60a15c",\r
-                "35d55016.e4b95"\r
+                "c74b1b59.de1648",\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "ab162f45.fae5a",\r
+        "id": "c8196d34.a400d",\r
         "type": "set",\r
         "name": "set default values",\r
         "xml": "<set>\n<parameter name='status.code' value='200' />\n<parameter name='status.message' value='unexpected return from DG' />\n<parameter name='quote' value=\"'\" />\n<parameter name='outputPayloadField' value='.Output' />\n",\r
         "comments": "",\r
-        "x": 460.25,\r
-        "y": 203,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 471.25006103515625,\r
+        "y": 182.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "c357a4ca.bfb1f8",\r
+        "id": "649bb274.68abac",\r
         "type": "get-resource",\r
         "name": "get aai.generic-vnf ",\r
         "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"generic-vnf\" \n\t\tkey=\"generic-vnf.vnf-id = $upgrade-post-check-input.action-identifiers.vnf-id\" \n\t\tlocal-only=\"false\" \n\t\tpfx='aai.generic-vnf'>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1000.25,\r
-        "y": 432,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1004.5000762939453,\r
+        "y": 268.25000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "92bfd5f6.6a14f8"\r
+                "b63fd635.c47e78"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "92bfd5f6.6a14f8",\r
+        "id": "b63fd635.c47e78",\r
         "type": "success",\r
         "name": "success",\r
         "xml": "<outcome value='success'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1158.6407470703125,\r
-        "y": 430.28399658203125,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1185.3908882141113,\r
+        "y": 267.7840003967285,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "98d72ef7.86e05"\r
+                "ed79a97b.65e818"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "5a9e7617.91c178",\r
+        "id": "457d8530.6d929c",\r
         "type": "record",\r
         "name": "record",\r
         "xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.Slf4jRecorder\"> \n\t<parameter name=\"logger\" value=\"message-log\"/> \n\t<parameter name=\"field1\" value='`$playbookname`'/>\n\t<parameter name=\"field2\" value='`$nodelist`'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 389.2498779296875,\r
-        "y": 620,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 395.24993896484375,\r
+        "y": 603.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "3899b5e2.384a4a",\r
+        "id": "3a91a794.6c88c8",\r
         "type": "switchNode",\r
-        "name": "switch pnf-flag",\r
-        "xml": "<switch test='`$payloadJson.pnf-flag`'>\n",\r
+        "name": "switch pnf-name",\r
+        "xml": "<switch test=\"`$upgrade-post-check-input.action-identifiers.pnf-name`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 446.00000762939453,\r
-        "y": 350.7500057220459,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 469.0000686645508,\r
+        "y": 314.2500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "64bc4358.92afbc",\r
-                "2ae0f373.dadc4c"\r
+                "ec14cee4.1522f",\r
+                "91fc3db3.48d8e"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "f7de272b.bbcd78",\r
+        "id": "a485bdb7.2ebc2",\r
         "type": "execute",\r
         "name": "execute jsonStringToCtx",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='jsonStringToCtx'>\n\t<parameter name='source' value='upgrade-post-check-input.payload' />\n\t<parameter name='outputPath' value='payloadJson' />\n\t<parameter name='isEscaped' value='true' />",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 474.25,\r
-        "y": 250,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 480.0000686645508,\r
+        "y": 242.00000286102295,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "64bc4358.92afbc",\r
+        "id": "ec14cee4.1522f",\r
         "type": "outcome",\r
-        "name": "true",\r
-        "xml": "<outcome value='true'>\n",\r
+        "name": "other",\r
+        "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 630.5000076293945,\r
-        "y": 294.7500057220459,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 674.750072479248,\r
+        "y": 385.7500054836273,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "e0a7ad5f.00f71"\r
+                "e0ea6cf2.aa805"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "2ae0f373.dadc4c",\r
+        "id": "91fc3db3.48d8e",\r
         "type": "outcome",\r
-        "name": "other",\r
-        "xml": "<outcome value='Other'>\n",\r
+        "name": "null",\r
+        "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 632.9999465942383,\r
-        "y": 402.5000057220459,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 679.0000114440918,\r
+        "y": 240.50001907348633,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "b6955f66.1b829"\r
+                "50ddaf2.c52105"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "b6955f66.1b829",\r
+        "id": "50ddaf2.c52105",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 787.2499504089355,\r
-        "y": 403.5000057220459,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 816.7500114440918,\r
+        "y": 240.75001907348633,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "c357a4ca.bfb1f8",\r
-                "828681ee.30745"\r
+                "649bb274.68abac",\r
+                "1e906a40.6f9a16"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "c2ca99f8.c4bfb8",\r
+        "id": "45aa522.51b58ac",\r
         "type": "set",\r
         "name": "set AnsibleReq",\r
         "xml": "<set>\n<parameter name='nodelist' value=\"`'[' + $quote + $payloadJson.ipaddress-v4-oam +  $quote + ']'`\"/>\n<parameter name='outputPayloadField' value=\"`'.' + $payloadJson.ipaddress-v4-oam + '.Output'`\"/>\n",\r
         "comments": "",\r
-        "x": 957.7500152587891,\r
-        "y": 202.75000381469727,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 993.2500762939453,\r
+        "y": 328.5000047683716,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "828681ee.30745",\r
+        "id": "1e906a40.6f9a16",\r
         "type": "execute",\r
         "name": "set playbookname",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\n\t<parameter name='outputPath' value='playbookname' />\n\t<parameter name='source' value=\"`'prop.lcm.' + $payloadJson.nf-naming-code + '.upgrade-post-check.playbookname'`\" />\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1009.25,\r
-        "y": 376,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1004.7500762939453,\r
+        "y": 203.50000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "72e148f.bd2b1b8",\r
+        "id": "abab4d63.1772e",\r
         "type": "switchNode",\r
         "name": "switch playbookname",\r
         "xml": "<switch test='`$playbookname`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 439.25,\r
-        "y": 488,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 445.25006103515625,\r
+        "y": 471.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "3583e961.20f9b6"\r
+                "f88b349b.6807a8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "3583e961.20f9b6",\r
+        "id": "f88b349b.6807a8",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 610.25,\r
-        "y": 489,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 616.2500610351562,\r
+        "y": 472.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "7bde6693.6b25d8"\r
+                "f3bc6541.44adb8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "7bde6693.6b25d8",\r
+        "id": "f3bc6541.44adb8",\r
         "type": "set",\r
         "name": "set playbookname",\r
         "xml": "<set>\n<parameter name='playbookname' value='`$prop.lcm.upgrade-post-check.playbookname`'/>",\r
         "comments": "",\r
-        "x": 800.25,\r
-        "y": 488,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 806.2500610351562,\r
+        "y": 471.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "6cd92845.9c27d8",\r
+        "id": "f1e5bbf5.b3f958",\r
         "type": "switchNode",\r
         "name": "switch nodelist",\r
         "xml": "<switch test='`$nodelist`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 429.25,\r
-        "y": 547,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 422.7500686645508,\r
+        "y": 532.0000076293945,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "8b89b139.925f3",\r
-                "8a45ae4e.0ff3c"\r
+                "a1739b46.b31628",\r
+                "62d7e3df.33dd5c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "8b89b139.925f3",\r
+        "id": "a1739b46.b31628",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 609.25,\r
-        "y": 540,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 615.2500610351562,\r
+        "y": 523.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "27015581.7c7d8a"\r
+                "2cef64f9.c5e8ec"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "27015581.7c7d8a",\r
+        "id": "2cef64f9.c5e8ec",\r
         "type": "set",\r
         "name": "set nodelist",\r
         "xml": "<set>\n<parameter name='nodelist' value=\"`$prop.ansible.nodelist`\"/>",\r
         "comments": "",\r
-        "x": 766.25,\r
-        "y": 554,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 772.2500610351562,\r
+        "y": 537.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "8a45ae4e.0ff3c",\r
+        "id": "62d7e3df.33dd5c",\r
         "type": "outcome",\r
         "name": "empty",\r
         "xml": "<outcome value=\"['']\">\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 608.25,\r
-        "y": 584,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 614.2500610351562,\r
+        "y": 567.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "27015581.7c7d8a"\r
+                "2cef64f9.c5e8ec"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "b77da834.ba8d48",\r
+        "id": "7427e274.ca5cbc",\r
         "type": "switchNode",\r
         "name": "switch playbookname",\r
         "xml": "<switch test='`$playbookname`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1484.25,\r
-        "y": 419,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1512.250144958496,\r
+        "y": 229.00000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "3d1d8601.0e200a"\r
+                "db001d9c.052e8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "3d1d8601.0e200a",\r
+        "id": "db001d9c.052e8",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1662.25,\r
-        "y": 419,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1696.5001487731934,\r
+        "y": 228.75000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "eccd491.aeea6b8"\r
+                "8e520dd.9047df"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "de4502a8.6c8e4",\r
+        "id": "8bd02c4a.6337d",\r
         "type": "set",\r
         "name": "set nodelist",\r
         "xml": "<set>\n<parameter name='nodelist' value=\"`'[' + $quote + $aai.generic-vnf.ipv4-oam-address +  $quote + ']'`\"/>\n",\r
         "comments": "",\r
-        "x": 1457.25,\r
-        "y": 472,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1482.5000686645508,\r
+        "y": 302.00000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "98d72ef7.86e05",\r
+        "id": "ed79a97b.65e818",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1287.25,\r
-        "y": 429,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1320.250144958496,\r
+        "y": 268.00000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "b77da834.ba8d48",\r
-                "de4502a8.6c8e4"\r
+                "7427e274.ca5cbc",\r
+                "8bd02c4a.6337d"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "eccd491.aeea6b8",\r
+        "id": "8e520dd.9047df",\r
         "type": "execute",\r
         "name": "set playbookname",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\n\t<parameter name='outputPath' value='playbookname' />\n\t<parameter name='source' value=\"`'prop.lcm.' + $aai.generic-vnf.nf-naming-code + '.upgrade-post-check.playbookname'`\" />\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1834.25,\r
-        "y": 417,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1877.2501487731934,\r
+        "y": 229.25000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "60d331ee.302dd",\r
+        "id": "1d4663f2.97eacc",\r
         "type": "execute",\r
         "name": "execute jsonStringToCtx",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='jsonStringToCtx'>\n\t<parameter name='source' value='org.onap.appc.adapter.ansible.results' />\n\t<parameter name='outputPath' value='resultsJson' />\n\t<parameter name='isEscaped' value='false' />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1684.25,\r
-        "y": 761,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1690.2500610351562,\r
+        "y": 744.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "89d6b5d0.08f888",\r
+        "id": "a1b67568.88c2a8",\r
         "type": "execute",\r
         "name": "execute getAttributeValue",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\n\t<parameter name='source' value=\"`'resultsJson' + $outputPayloadField`\" />\n\t<parameter name='outputPath' value='outputPayload' />",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1690.25,\r
-        "y": 806,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1696.2500610351562,\r
+        "y": 789.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "35e221ba.99c04e",\r
+        "id": "b0abd019.0685d",\r
         "type": "switchNode",\r
         "name": "switch outputPayload",\r
         "xml": "<switch test='`$outputPayload`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1676.2500228881836,\r
-        "y": 881.7500133514404,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1682.2500839233398,\r
+        "y": 865.500013589859,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "f003e098.7e521"\r
+                "94c5870c.1b9028"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "f003e098.7e521",\r
+        "id": "94c5870c.1b9028",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1850.2500267028809,\r
-        "y": 882.0000133514404,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1856.250087738037,\r
+        "y": 865.750013589859,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "75f79f60.b6817"\r
+                "f297c7ae.006d88"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "75f79f60.b6817",\r
+        "id": "f297c7ae.006d88",\r
         "type": "set",\r
         "name": "set DmaapReq with payload",\r
         "xml": "<set>\n<parameter name='lcm-dmaap.payload' value='`$outputPayload`'/>",\r
         "comments": "",\r
-        "x": 2048.500030517578,\r
-        "y": 882.5000133514404,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 2054.5000915527344,\r
+        "y": 866.250013589859,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "2277df4f.e54cc",\r
+        "id": "84168fc5.05e25",\r
         "type": "returnSuccess",\r
         "name": "return success",\r
         "xml": "<return status='success'>\n<parameter name='status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`'/>",\r
         "comments": "",\r
-        "x": 2387.25,\r
-        "y": 963.9999389648438,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 2393.2500610351562,\r
+        "y": 947.7499392032623,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "ce7bf734.28bda8",\r
+        "id": "7ba95e1a.d4b0c",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1853.250244140625,\r
-        "y": 985.9998779296875,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1859.2503051757812,\r
+        "y": 969.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "d2e205c4.4281f8"\r
+                "9599f2eb.e4f97"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "d19e0c7b.53065",\r
+        "id": "5f979340.f0e31c",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1852.250244140625,\r
-        "y": 1061.9998779296875,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1858.2503051757812,\r
+        "y": 1045.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "514b412e.93d64"\r
+                "1f06dd95.403012"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "25b31875.8826d8",\r
+        "id": "cea269d5.6aca98",\r
         "type": "switchNode",\r
         "name": "switch outputPayload",\r
         "xml": "<switch test='`$outputPayload`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1670.250244140625,\r
-        "y": 1021.9998779296875,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1676.2503051757812,\r
+        "y": 1005.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "ce7bf734.28bda8",\r
-                "d19e0c7b.53065"\r
+                "7ba95e1a.d4b0c",\r
+                "5f979340.f0e31c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "155bb7c3.d857e8",\r
+        "id": "7d7bfbd9.1f17c4",\r
         "type": "returnSuccess",\r
         "name": "return success with payload",\r
         "xml": "<return status='success'>\n<parameter name='status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`'/>\n<parameter name='payload' value='`$outputPayload`'/>",\r
         "comments": "",\r
-        "x": 2428.250244140625,\r
-        "y": 1045.9998779296875,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 2434.2503051757812,\r
+        "y": 1029.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "d2e205c4.4281f8",\r
+        "id": "9599f2eb.e4f97",\r
         "type": "switchNode",\r
         "name": "switch result code",\r
         "xml": "<switch test=\"`$org.onap.appc.adapter.ansible.result.code`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2023.250244140625,\r
-        "y": 985.9998779296875,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 2029.2503051757812,\r
+        "y": 969.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "98292b3a.f54c38",\r
-                "ca11ee2d.ab69a"\r
+                "6b0748c.2505bb8",\r
+                "408c7b86.5c50a4"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "514b412e.93d64",\r
+        "id": "1f06dd95.403012",\r
         "type": "switchNode",\r
         "name": "switch result code",\r
         "xml": "<switch test=\"`$org.onap.appc.adapter.ansible.result.code`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2023.250244140625,\r
-        "y": 1061.9998779296875,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 2029.2503051757812,\r
+        "y": 1045.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "337c58c3.55ed98",\r
-                "7cab1d0c.110394"\r
+                "284a16dd.c42b9a",\r
+                "b1e583b2.95cf8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "41ed8585.4713cc",\r
+        "id": "c7d7ae9a.c9b1a",\r
         "type": "returnFailure",\r
         "name": "return failure",\r
         "xml": "<return status='failure'>\n<parameter name='status.code' value='401' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`' />\n",\r
         "comments": "",\r
-        "x": 2381.250244140625,\r
-        "y": 1001.9998779296875,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 2387.2503051757812,\r
+        "y": 985.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "448216a9.053268",\r
+        "id": "84f220b8.c18db",\r
         "type": "returnFailure",\r
         "name": "return failure with payload",\r
         "xml": "<return status='failure'>\n<parameter name='status.code' value='401' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`' />\n<parameter name='payload' value='`$outputPayload`'/>",\r
         "comments": "",\r
-        "x": 2424.250244140625,\r
-        "y": 1083.9998779296875,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 2430.2503051757812,\r
+        "y": 1067.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "98292b3a.f54c38",\r
+        "id": "6b0748c.2505bb8",\r
         "type": "other",\r
         "name": "outcome 400",\r
         "xml": "<outcome value='400'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2211.250244140625,\r
-        "y": 963.9998779296875,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 2217.2503051757812,\r
+        "y": 947.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "2277df4f.e54cc"\r
+                "84168fc5.05e25"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "ca11ee2d.ab69a",\r
+        "id": "408c7b86.5c50a4",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2192.250244140625,\r
-        "y": 1001.9998779296875,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 2198.2503051757812,\r
+        "y": 985.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "41ed8585.4713cc"\r
+                "c7d7ae9a.c9b1a"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "337c58c3.55ed98",\r
+        "id": "284a16dd.c42b9a",\r
         "type": "other",\r
         "name": "outcome 400",\r
         "xml": "<outcome value='400'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2212.250244140625,\r
-        "y": 1045.9998779296875,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 2218.2503051757812,\r
+        "y": 1029.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "155bb7c3.d857e8"\r
+                "7d7bfbd9.1f17c4"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "7cab1d0c.110394",\r
+        "id": "b1e583b2.95cf8",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2194.250244140625,\r
-        "y": 1083.9998779296875,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 2200.2503051757812,\r
+        "y": 1067.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "448216a9.053268"\r
+                "84f220b8.c18db"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "e0a7ad5f.00f71",\r
+        "id": "e0ea6cf2.aa805",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 789.5000114440918,\r
-        "y": 253.25000381469727,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 806.750072479248,\r
+        "y": 385.25000524520874,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "c2ca99f8.c4bfb8",\r
-                "5b8c934.62b5e6c"\r
+                "45aa522.51b58ac",\r
+                "71c4da42.247694",\r
+                "c3246832.b79218"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "5b8c934.62b5e6c",\r
+        "id": "71c4da42.247694",\r
         "type": "switchNode",\r
         "name": "switch playbook-name in req",\r
         "xml": "<switch test='`$payloadJson.playbook-name`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 995.7500133514404,\r
-        "y": 297.75000381469727,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1035.2500762939453,\r
+        "y": 381.2500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "779f8f25.8993f",\r
-                "4556266f.9d5cb8"\r
+                "47ca03ae.82311c",\r
+                "3d9f5c17.e59e74"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "779f8f25.8993f",\r
+        "id": "47ca03ae.82311c",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1203.2500190734863,\r
-        "y": 261.50000381469727,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1247.7501411437988,\r
+        "y": 352.5000057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "de8d7bd8.ab0a48"\r
+                "af284dab.4b361"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "4556266f.9d5cb8",\r
+        "id": "3d9f5c17.e59e74",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1202.0000228881836,\r
-        "y": 326.50000381469727,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1247.2501411437988,\r
+        "y": 408.2500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "d0603697.a5edb8"\r
+                "753113cf.9764ec"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "de8d7bd8.ab0a48",\r
+        "id": "af284dab.4b361",\r
         "type": "set",\r
         "name": "set playbookname from prop",\r
         "xml": "<set>\n<parameter name='playbookname' value='`$prop.lcm.pnf.upgrade-post-check.playbookname`'/>\n",\r
         "comments": "",\r
-        "x": 1405.7500228881836,\r
-        "y": 261.50000381469727,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1454.750144958496,\r
+        "y": 352.7500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "d0603697.a5edb8",\r
+        "id": "753113cf.9764ec",\r
         "type": "set",\r
         "name": "set playbookname from req",\r
         "xml": "<set>\n<parameter name='playbookname' value='`$payloadJson.playbook-name`'/>\n",\r
         "comments": "",\r
-        "x": 1400.7500228881836,\r
-        "y": 326.50000381469727,\r
-        "z": "29d3492e.6e65c6",\r
+        "x": 1457.250144958496,\r
+        "y": 407.7500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
+    },\r
+    {\r
+        "id": "c3246832.b79218",\r
+        "type": "execute",\r
+        "name": "execute updateJsonObjectString",\r
+        "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='updateJsonObjectString'>\n\t<parameter name='source' value='upgrade-post-check-input.payload' />\n\t<parameter name='outputPath' value='upgrade-post-check-input.payload' />\n\t<parameter name='add.pnf-flag' value='true' />\n\t<parameter name='add.pnfName' value=\"`$upgrade-post-check-input.action-identifiers.pnf-name`\" />\n\t<parameter name='delete.ipaddress-v4-oam' value=\"\" />\n\t<parameter name='delete.playbook-name' value=\"\" />",\r
+        "comments": "",\r
+        "outputs": 1,\r
+        "x": 1047.5000762939453,\r
+        "y": 440.7500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
+        "wires": [\r
+            []\r
+        ]\r
     }\r
-]
\ No newline at end of file
+]\r
index d6a4317..f3d25fd 100644 (file)
@@ -1,22 +1,22 @@
 [\r
     {\r
-        "id": "79123894.fcdcc8",\r
+        "id": "bf535237.4809",\r
         "type": "method",\r
         "name": "upgrade-pre-check",\r
         "xml": "<method rpc='upgrade-pre-check' mode='sync'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 498.75,\r
-        "y": 41.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 527.2500610351562,\r
+        "y": 28.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "54c3a48c.9ff08c"\r
+                "37dfcf3b.f289c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "700edfe2.db0dd",\r
+        "id": "abaeb654.ecf048",\r
         "type": "service-logic",\r
         "name": "LCM ${project.version}",\r
         "module": "LCM",\r
         "comments": "",\r
         "xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='LCM' version='${project.version}'>",\r
         "outputs": 1,\r
-        "x": 286.74993896484375,\r
-        "y": 42.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 315.25,\r
+        "y": 29.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "79123894.fcdcc8"\r
+                "bf535237.4809"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "63cab8d6.48eba8",\r
+        "id": "4ca554b1.64cfac",\r
         "type": "execute",\r
         "name": "execute AnsibleA.reqExec",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.adaptors.ansible.AnsibleAdapter' method='reqExec' >\n<parameter name='AgentUrl' value='`$prop.ansible.agenturl`'/>\n<parameter name='User' value='`$prop.ansible.user`'/>\n<parameter name='Password' value='`$prop.ansible.password`'/>\n<parameter name='LocalParameters' value='`$prop.ansible.lcm.localparameters`'/>\n<parameter name='EnvParameters' value='`$upgrade-pre-check-input.payload`'/>\n<parameter name='NodeList' value=\"`$nodelist`\"/>\n<parameter name='Timeout' value='`$prop.ansible.timeout`'/>\n<parameter name='Version' value='`$prop.ansible.version`'/>\n<parameter name='Id' value='`$upgrade-pre-check-input.common-header.request-id`'/>\n<parameter name='PlaybookName' value='`$playbookname`'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 400.75001525878906,\r
-        "y": 688.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 429.2500762939453,\r
+        "y": 675.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "be544d01.a8609",\r
-                "1f309cc0.2f6233",\r
-                "cca4076a.107908"\r
+                "41993dbd.510e94",\r
+                "eb0cf86.0ae1308",\r
+                "6d276eae.f7933"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "eb1a1ff1.d1c85",\r
+        "id": "cda0d255.88e57",\r
         "type": "switchNode",\r
         "name": "switch",\r
         "xml": "<switch test=\"`$org.onap.appc.adapter.ansible.result.code`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 800.7499389648438,\r
-        "y": 796.2500305175781,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 829.25,\r
+        "y": 783.7500307559967,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "1ecad72d.159dd9",\r
-                "61406129.c065d",\r
-                "e371269b.c16e28"\r
+                "d3ad30a5.7e40b",\r
+                "5d5c8e87.4569f",\r
+                "e91d746f.ee24d8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "1ecad72d.159dd9",\r
+        "id": "d3ad30a5.7e40b",\r
         "type": "other",\r
         "name": "outcome 500",\r
         "xml": "<outcome value='500'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 945.7499389648438,\r
-        "y": 794.2500381469727,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 974.25,\r
+        "y": 781.7500383853912,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "a19523e1.35cbd"\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "61406129.c065d",\r
+        "id": "5d5c8e87.4569f",\r
         "type": "other",\r
         "name": "outcome 100",\r
         "xml": "<outcome value='100'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 942.7499389648438,\r
-        "y": 851.2500305175781,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 971.25,\r
+        "y": 838.7500307559967,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "21d794bd.98632c"\r
+                "9160ee3f.90cdf"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "21d794bd.98632c",\r
+        "id": "9160ee3f.90cdf",\r
         "type": "execute",\r
         "name": "execute reqExecResult",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.adaptors.ansible.AnsibleAdapter' method='reqExecResult' >\n    <parameter name='AgentUrl' value='`$prop.ansible.agenturl`'/>\n\t<parameter name='User' value='`$prop.ansible.user`'/>\n\t<parameter name='Password' value='`$prop.ansible.password`'/>\n\t<parameter name='Id' value='`$org.onap.appc.adapter.ansible.Id`'/>\n\t<parameter name='PlaybookName' value='`$playbookname`'/>\n\t\n\n\n\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1130.7499389648438,\r
-        "y": 850.2500305175781,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1159.25,\r
+        "y": 837.7500307559967,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "10f75364.16ad2d",\r
-                "6e5d5eb.c0cdfa"\r
+                "9f6f87a0.ed34a8",\r
+                "40d1e66e.058b58"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "1f309cc0.2f6233",\r
+        "id": "eb0cf86.0ae1308",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 659.7499389648438,\r
-        "y": 709.2500915527344,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 688.25,\r
+        "y": 696.750091791153,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "a19523e1.35cbd"\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "be544d01.a8609",\r
+        "id": "41993dbd.510e94",\r
         "type": "other",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 661.7499389648438,\r
-        "y": 761.2500610351562,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 690.25,\r
+        "y": 748.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "eb1a1ff1.d1c85"\r
+                "cda0d255.88e57"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "10f75364.16ad2d",\r
+        "id": "9f6f87a0.ed34a8",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1299.7498779296875,\r
-        "y": 832.2500610351562,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1328.2499389648438,\r
+        "y": 819.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "35aa42ce.44d35e"\r
+                "3cabde61.b46412"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "e371269b.c16e28",\r
+        "id": "e91d746f.ee24d8",\r
         "type": "other",\r
         "name": "outcome 101",\r
         "xml": "<outcome value='101'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 942.7499389648438,\r
-        "y": 752.2500686645508,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 971.25,\r
+        "y": 739.7500689029694,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "a19523e1.35cbd"\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "6e5d5eb.c0cdfa",\r
+        "id": "40d1e66e.058b58",\r
         "type": "success",\r
         "name": "success",\r
         "xml": "<outcome value='success'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1303.7498779296875,\r
-        "y": 876.2501220703125,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1332.2499389648438,\r
+        "y": 863.7501223087311,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "35aa42ce.44d35e"\r
+                "3cabde61.b46412"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "17dc23e5.79688c",\r
+        "id": "ea9b4886.c48198",\r
         "type": "dgstart",\r
         "name": "DGSTART",\r
         "outputs": 1,\r
-        "x": 101.75,\r
-        "y": 41.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 130.25006103515625,\r
+        "y": 28.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "700edfe2.db0dd"\r
+                "abaeb654.ecf048"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "54c3a48c.9ff08c",\r
+        "id": "37dfcf3b.f289c",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 146.66669082641602,\r
-        "y": 192.33334636688232,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 175.16675186157227,\r
+        "y": 179.8333466053009,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "63cab8d6.48eba8",\r
-                "e0ff5747.e0e408",\r
-                "28a0da8f.9238c6",\r
-                "9d9af3e3.66cfb",\r
-                "fb9c8e38.ca40a",\r
-                "51abfe6f.79ea7",\r
-                "97847ebc.c54a9",\r
-                "b335e1b5.94d26"\r
+                "4ca554b1.64cfac",\r
+                "b98c2ec9.d8038",\r
+                "c8196d34.a400d",\r
+                "a485bdb7.2ebc2",\r
+                "3a91a794.6c88c8",\r
+                "abab4d63.1772e",\r
+                "457d8530.6d929c",\r
+                "f1e5bbf5.b3f958"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "e0ff5747.e0e408",\r
+        "id": "b98c2ec9.d8038",\r
         "type": "execute",\r
         "name": "execute Properties",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >\n    <parameter name='fileName' value='%SDNC_CONFIG_DIR%/lcm-dg.properties' />\n    <parameter name='contextPrefix' value='prop' />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 444.7500305175781,\r
-        "y": 152.33334350585938,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 475.2500915527344,\r
+        "y": 126.83334374427795,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "a9d7923c.2ca01",\r
+        "id": "337a6d7b.201ca2",\r
         "type": "execute",\r
         "name": "execute DmaapMsg",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n    <parameter name='templateFileName' value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.lcm.dmaap.publish.templatefile`\" />\n    <parameter name='restapiUrl' value='`$prop.lcm.dmaap.url`' />\n    <parameter name='restapiUser' value='`$prop.lcm.dmaap.user`' />\n    <parameter name='restapiPassword' value='`$prop.lcm.dmaap.password`' />\n    <parameter name='format' value='json' />\n    <parameter name='httpMethod' value='POST' />\n    <parameter name='contentType' value='application/json' />\n    <parameter name=\"responsePrefix\" value=\"lcm\" />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1611.7498779296875,\r
-        "y": 658.3334045410156,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1640.2499389648438,\r
+        "y": 645.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "f8292962.0b6818"\r
+                "96c73638.cb9ab8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "f8292962.0b6818",\r
+        "id": "96c73638.cb9ab8",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1781.7498168945312,\r
-        "y": 657.3334045410156,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1810.2498779296875,\r
+        "y": 644.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "2356f9f0.a42e76"\r
+                "84cae955.c44a18"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "a19523e1.35cbd",\r
+        "id": "83b77a4c.913068",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1414.7498168945312,\r
-        "y": 682.3334045410156,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1443.2498779296875,\r
+        "y": 669.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "a9d7923c.2ca01",\r
-                "f3ee8743.36d458",\r
-                "f66a0341.fd891"\r
+                "337a6d7b.201ca2",\r
+                "f844550d.858858",\r
+                "71d833e9.bcb87c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "a59867f8.a2eaa8",\r
+        "id": "d45e1182.8850c",\r
         "type": "execute",\r
         "name": "execute DmaapMsg",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n    <parameter name='templateFileName' value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.lcm.dmaap.publish.templatefile`\" />\n    <parameter name='restapiUrl' value='`$prop.lcm.dmaap.url`' />\n    <parameter name='restapiUser' value='`$prop.lcm.dmaap.user`' />\n    <parameter name='restapiPassword' value='`$prop.lcm.dmaap.password`' />\n    <parameter name='format' value='json' />\n    <parameter name='httpMethod' value='POST' />\n    <parameter name='contentType' value='application/json' />\n    <parameter name=\"responsePrefix\" value=\"lcm\" />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1647.2498779296875,\r
-        "y": 924.3333740234375,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1675.7499389648438,\r
+        "y": 911.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "712d36ea.cfb478"\r
+                "fa30655b.b81a38"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "712d36ea.cfb478",\r
+        "id": "fa30655b.b81a38",\r
         "type": "failure",\r
         "name": "failure",\r
         "xml": "<outcome value='failure'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1832.2498779296875,\r
-        "y": 924.3333740234375,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1860.7499389648438,\r
+        "y": 911.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "a57d56eb.e502e8"\r
+                "7d0b6c03.8ed0d4"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "2356f9f0.a42e76",\r
+        "id": "84cae955.c44a18",\r
         "type": "record",\r
         "name": "record",\r
         "xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.Slf4jRecorder\"> \n\t<parameter name=\"logger\" value=\"message-log\"/> \n\t<parameter name=\"field1\" value='Failed to Publish to DMaap'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1901.7498779296875,\r
-        "y": 656.3333740234375,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1930.2499389648438,\r
+        "y": 643.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "f3ee8743.36d458",\r
+        "id": "f844550d.858858",\r
         "type": "returnFailure",\r
         "name": "return failure",\r
         "xml": "<return status='failure'>\n<parameter name='status.code' value='401' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`' />\n",\r
         "comments": "",\r
-        "x": 1593.66650390625,\r
-        "y": 709.3334045410156,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1622.1665649414062,\r
+        "y": 696.8334047794342,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "a57d56eb.e502e8",\r
+        "id": "7d0b6c03.8ed0d4",\r
         "type": "record",\r
         "name": "record",\r
         "xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.Slf4jRecorder\"> \n\t<parameter name=\"logger\" value=\"message-log\"/> \n\t<parameter name=\"field1\" value='Failed to Publish to DMaap'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1964.6666259765625,\r
-        "y": 924.3333740234375,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1993.1666870117188,\r
+        "y": 911.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "f66a0341.fd891",\r
+        "id": "71d833e9.bcb87c",\r
         "type": "set",\r
         "name": "set DmaapReq",\r
         "xml": "<set>\n<parameter name='lcm-dmaap.version' value='`$prop.lcm.dmaap.version`'/>\n<parameter name='lcm-dmaap.correlation-id' value=\"`$upgrade-pre-check-input.common-header.request-id + '-' + $upgrade-pre-check-input.common-header.sub-request-id`\"/>\n<parameter name='lcm-dmaap.partition' value='`$prop.lcm.dmaap.partition`'/>\n<parameter name='lcm-dmaap.rpc-name' value='upgrade-pre-check'/>\n<parameter name='lcm-dmaap.type' value='`$prop.lcm.dmaap.type`'/>\n<parameter name='lcm-dmaap.timestamp' value='`$upgrade-pre-check-input.common-header.timestamp`'/>\n<parameter name='lcm-dmaap.api-ver' value='`$upgrade-pre-check-input.common-header.api-ver`'/>\n<parameter name='lcm-dmaap.originator-id' value='`$upgrade-pre-check-input.common-header.originator-id`'/>\n<parameter name='lcm-dmaap.request-id' value='`$upgrade-pre-check-input.common-header.request-id`'/>\n<parameter name='lcm-dmaap.sub-request-id' value='`$upgrade-pre-check-input.common-header.sub-request-id`'/>\n<parameter name='lcm-dmaap.flags.mode' value='`$upgrade-pre-check-input.common-header.flags.mode`'/>\n<parameter name='lcm-dmaap.flags.force' value='`$upgrade-pre-check-input.common-header.flags.force`'/>\n<parameter name='lcm-dmaap.flags.ttl' value='`$upgrade-pre-check-input.common-header.flags.ttl`'/>\n<parameter name='lcm-dmaap.status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='lcm-dmaap.status.message' value='`$org.onap.appc.adapter.ansible.message`'/>\n",\r
         "comments": "",\r
-        "x": 1598.7498779296875,\r
-        "y": 605.3333740234375,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1627.2499389648438,\r
+        "y": 592.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "35aa42ce.44d35e",\r
+        "id": "3cabde61.b46412",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1435.7498779296875,\r
-        "y": 851.3333740234375,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1464.2499389648438,\r
+        "y": 838.8333742618561,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "a59867f8.a2eaa8",\r
-                "556a3910.4bdad8",\r
-                "e92cf733.30ba38",\r
-                "e3dfd6bf.4ead58",\r
-                "ce2a6d93.154ee",\r
-                "4de0f71c.f3cdf8"\r
+                "d45e1182.8850c",\r
+                "1d4663f2.97eacc",\r
+                "a1b67568.88c2a8",\r
+                "b0abd019.0685d",\r
+                "cea269d5.6aca98",\r
+                "6bef098.93b85f8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "4de0f71c.f3cdf8",\r
+        "id": "6bef098.93b85f8",\r
         "type": "set",\r
         "name": "set DmaapReq",\r
         "xml": "<set>\n<parameter name='lcm-dmaap.version' value='`$prop.lcm.dmaap.version`'/>\n<parameter name='lcm-dmaap.correlation-id' value=\"`$upgrade-pre-check-input.common-header.request-id + '-' + $upgrade-pre-check-input.common-header.sub-request-id`\"/>\n<parameter name='lcm-dmaap.partition' value='`$prop.lcm.dmaap.partition`'/>\n<parameter name='lcm-dmaap.rpc-name' value='upgrade-pre-check'/>\n<parameter name='lcm-dmaap.type' value='`$prop.lcm.dmaap.type`'/>\n<parameter name='lcm-dmaap.timestamp' value='`$upgrade-pre-check-input.common-header.timestamp`'/>\n<parameter name='lcm-dmaap.api-ver' value='`$upgrade-pre-check-input.common-header.api-ver`'/>\n<parameter name='lcm-dmaap.originator-id' value='`$upgrade-pre-check-input.common-header.originator-id`'/>\n<parameter name='lcm-dmaap.request-id' value='`$upgrade-pre-check-input.common-header.request-id`'/>\n<parameter name='lcm-dmaap.sub-request-id' value='`$upgrade-pre-check-input.common-header.sub-request-id`'/>\n<parameter name='lcm-dmaap.flags.mode' value='`$upgrade-pre-check-input.common-header.flags.mode`'/>\n<parameter name='lcm-dmaap.flags.force' value='`$upgrade-pre-check-input.common-header.flags.force`'/>\n<parameter name='lcm-dmaap.flags.ttl' value='`$upgrade-pre-check-input.common-header.flags.ttl`'/>\n<parameter name='lcm-dmaap.status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='lcm-dmaap.status.message' value='`$org.onap.appc.adapter.ansible.message`'/>\n",\r
         "comments": "",\r
-        "x": 1633.9166564941406,\r
-        "y": 838.0833864212036,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1662.4167175292969,\r
+        "y": 825.5833866596222,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "cca4076a.107908",\r
+        "id": "6d276eae.f7933",\r
         "type": "not-found",\r
         "name": "not-found",\r
         "xml": "<outcome value='not-found'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 668.7499389648438,\r
-        "y": 661.2500610351562,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 697.25,\r
+        "y": 648.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "8e5e5147.24c25"\r
+                "9564527e.7b80c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "e1a3d0c1.ed1c7",\r
+        "id": "c74b1b59.de1648",\r
         "type": "set",\r
         "name": "set Defaults",\r
         "xml": "<set>\n<parameter name='org.onap.appc.adapter.ansible.result.code' value='401'/>\n<parameter name='org.onap.appc.adapter.ansible.message' value='Ansible Adapter was not found'/>\n",\r
         "comments": "",\r
-        "x": 959.7499389648438,\r
-        "y": 620.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 988.25,\r
+        "y": 607.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "8e5e5147.24c25",\r
+        "id": "9564527e.7b80c",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 805.7499389648438,\r
-        "y": 655.2500610351562,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 834.25,\r
+        "y": 642.7500612735748,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "e1a3d0c1.ed1c7",\r
-                "a19523e1.35cbd"\r
+                "c74b1b59.de1648",\r
+                "83b77a4c.913068"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "28a0da8f.9238c6",\r
+        "id": "c8196d34.a400d",\r
         "type": "set",\r
         "name": "set default values",\r
         "xml": "<set>\n<parameter name='status.code' value='200' />\n<parameter name='status.message' value='unexpected return from DG' />\n<parameter name='quote' value=\"'\" />\n<parameter name='outputPayloadField' value='.Output' />\n",\r
         "comments": "",\r
-        "x": 437.75,\r
-        "y": 199.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 471.25006103515625,\r
+        "y": 182.75000023841858,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "b9d0103e.a3c0f",\r
+        "id": "649bb274.68abac",\r
         "type": "get-resource",\r
         "name": "get aai.generic-vnf ",\r
         "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"generic-vnf\" \n\t\tkey=\"generic-vnf.vnf-id = $upgrade-pre-check-input.action-identifiers.vnf-id\" \n\t\tlocal-only=\"false\" \n\t\tpfx='aai.generic-vnf'>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 977.75,\r
-        "y": 428.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1004.5000762939453,\r
+        "y": 268.25000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "707a6dc2.a56554"\r
+                "b63fd635.c47e78"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "707a6dc2.a56554",\r
+        "id": "b63fd635.c47e78",\r
         "type": "success",\r
         "name": "success",\r
         "xml": "<outcome value='success'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1136.1407470703125,\r
-        "y": 426.53399658203125,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1185.3908882141113,\r
+        "y": 267.7840003967285,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "f770f730.800e58"\r
+                "ed79a97b.65e818"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "97847ebc.c54a9",\r
+        "id": "457d8530.6d929c",\r
         "type": "record",\r
         "name": "record",\r
         "xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.Slf4jRecorder\"> \n\t<parameter name=\"logger\" value=\"message-log\"/> \n\t<parameter name=\"field1\" value='`$playbookname`'/>\n\t<parameter name=\"field2\" value='`$nodelist`'/>",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 366.7498779296875,\r
-        "y": 616.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 395.24993896484375,\r
+        "y": 603.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "fb9c8e38.ca40a",\r
+        "id": "3a91a794.6c88c8",\r
         "type": "switchNode",\r
-        "name": "switch pnf-flag",\r
-        "xml": "<switch test='`$payloadJson.pnf-flag`'>\n",\r
+        "name": "switch pnf-name",\r
+        "xml": "<switch test=\"`$upgrade-pre-check-input.action-identifiers.pnf-name`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 423.50000762939453,\r
-        "y": 347.0000057220459,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 469.0000686645508,\r
+        "y": 314.2500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "335af4ab.8619ac",\r
-                "deac08e0.fa0578"\r
+                "ec14cee4.1522f",\r
+                "91fc3db3.48d8e"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "9d9af3e3.66cfb",\r
+        "id": "a485bdb7.2ebc2",\r
         "type": "execute",\r
         "name": "execute jsonStringToCtx",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='jsonStringToCtx'>\n\t<parameter name='source' value='upgrade-pre-check-input.payload' />\n\t<parameter name='outputPath' value='payloadJson' />\n\t<parameter name='isEscaped' value='true' />",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 451.75,\r
-        "y": 246.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 480.0000686645508,\r
+        "y": 242.00000286102295,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "335af4ab.8619ac",\r
+        "id": "ec14cee4.1522f",\r
         "type": "outcome",\r
-        "name": "true",\r
-        "xml": "<outcome value='true'>\n",\r
+        "name": "other",\r
+        "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 608.0000076293945,\r
-        "y": 291.0000057220459,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 674.750072479248,\r
+        "y": 385.7500054836273,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "7ba201ed.e5e12"\r
+                "e0ea6cf2.aa805"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "deac08e0.fa0578",\r
+        "id": "91fc3db3.48d8e",\r
         "type": "outcome",\r
-        "name": "other",\r
-        "xml": "<outcome value='Other'>\n",\r
+        "name": "null",\r
+        "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 610.4999465942383,\r
-        "y": 398.7500057220459,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 679.0000114440918,\r
+        "y": 240.50001907348633,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "b91d48aa.1e6708"\r
+                "50ddaf2.c52105"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "b91d48aa.1e6708",\r
+        "id": "50ddaf2.c52105",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 764.7499504089355,\r
-        "y": 399.7500057220459,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 816.7500114440918,\r
+        "y": 240.75001907348633,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "b9d0103e.a3c0f",\r
-                "df4c69bf.c75128"\r
+                "649bb274.68abac",\r
+                "1e906a40.6f9a16"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "b9826fbc.acb59",\r
+        "id": "45aa522.51b58ac",\r
         "type": "set",\r
         "name": "set AnsibleReq",\r
         "xml": "<set>\n<parameter name='nodelist' value=\"`'[' + $quote + $payloadJson.ipaddress-v4-oam +  $quote + ']'`\"/>\n<parameter name='outputPayloadField' value=\"`'.' + $payloadJson.ipaddress-v4-oam + '.Output'`\"/>\n",\r
         "comments": "",\r
-        "x": 935.2500152587891,\r
-        "y": 199.00000381469727,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 993.2500762939453,\r
+        "y": 328.5000047683716,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "df4c69bf.c75128",\r
+        "id": "1e906a40.6f9a16",\r
         "type": "execute",\r
         "name": "set playbookname",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\n\t<parameter name='outputPath' value='playbookname' />\n\t<parameter name='source' value=\"`'prop.lcm.' + $payloadJson.nf-naming-code + '.upgrade-pre-check.playbookname'`\" />\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 986.75,\r
-        "y": 372.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1004.7500762939453,\r
+        "y": 203.50000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "51abfe6f.79ea7",\r
+        "id": "abab4d63.1772e",\r
         "type": "switchNode",\r
         "name": "switch playbookname",\r
         "xml": "<switch test='`$playbookname`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 416.75,\r
-        "y": 484.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 445.25006103515625,\r
+        "y": 471.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "159a0737.e614f9"\r
+                "f88b349b.6807a8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "159a0737.e614f9",\r
+        "id": "f88b349b.6807a8",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 587.75,\r
-        "y": 485.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 616.2500610351562,\r
+        "y": 472.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "7c0bd670.f80e88"\r
+                "f3bc6541.44adb8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "7c0bd670.f80e88",\r
+        "id": "f3bc6541.44adb8",\r
         "type": "set",\r
         "name": "set playbookname",\r
         "xml": "<set>\n<parameter name='playbookname' value='`$prop.lcm.upgrade-pre-check.playbookname`'/>",\r
         "comments": "",\r
-        "x": 777.75,\r
-        "y": 484.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 806.2500610351562,\r
+        "y": 471.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "b335e1b5.94d26",\r
+        "id": "f1e5bbf5.b3f958",\r
         "type": "switchNode",\r
         "name": "switch nodelist",\r
         "xml": "<switch test='`$nodelist`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 406.75,\r
-        "y": 543.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 422.7500686645508,\r
+        "y": 532.0000076293945,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "bcd038e8.2000e8",\r
-                "438394.8dcf2c6c"\r
+                "a1739b46.b31628",\r
+                "62d7e3df.33dd5c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "bcd038e8.2000e8",\r
+        "id": "a1739b46.b31628",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 586.75,\r
-        "y": 536.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 615.2500610351562,\r
+        "y": 523.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "7554d6f5.ecbc18"\r
+                "2cef64f9.c5e8ec"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "7554d6f5.ecbc18",\r
+        "id": "2cef64f9.c5e8ec",\r
         "type": "set",\r
         "name": "set nodelist",\r
         "xml": "<set>\n<parameter name='nodelist' value=\"`$prop.ansible.nodelist`\"/>",\r
         "comments": "",\r
-        "x": 743.75,\r
-        "y": 550.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 772.2500610351562,\r
+        "y": 537.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "438394.8dcf2c6c",\r
+        "id": "62d7e3df.33dd5c",\r
         "type": "outcome",\r
         "name": "empty",\r
         "xml": "<outcome value=\"['']\">\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 585.75,\r
-        "y": 580.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 614.2500610351562,\r
+        "y": 567.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "7554d6f5.ecbc18"\r
+                "2cef64f9.c5e8ec"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "81ee25ea.70a5d8",\r
+        "id": "7427e274.ca5cbc",\r
         "type": "switchNode",\r
         "name": "switch playbookname",\r
         "xml": "<switch test='`$playbookname`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1461.75,\r
-        "y": 415.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1512.250144958496,\r
+        "y": 229.00000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "aa8d4256.96bc7"\r
+                "db001d9c.052e8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "aa8d4256.96bc7",\r
+        "id": "db001d9c.052e8",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1639.75,\r
-        "y": 415.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1696.5001487731934,\r
+        "y": 228.75000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "25ca05e6.56319a"\r
+                "8e520dd.9047df"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "e6663d9a.24393",\r
+        "id": "8bd02c4a.6337d",\r
         "type": "set",\r
         "name": "set nodelist",\r
         "xml": "<set>\n<parameter name='nodelist' value=\"`'[' + $quote + $aai.generic-vnf.ipv4-oam-address +  $quote + ']'`\"/>\n",\r
         "comments": "",\r
-        "x": 1434.75,\r
-        "y": 468.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1482.5000686645508,\r
+        "y": 302.00000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "f770f730.800e58",\r
+        "id": "ed79a97b.65e818",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1264.75,\r
-        "y": 425.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1320.250144958496,\r
+        "y": 268.00000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "81ee25ea.70a5d8",\r
-                "e6663d9a.24393"\r
+                "7427e274.ca5cbc",\r
+                "8bd02c4a.6337d"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "25ca05e6.56319a",\r
+        "id": "8e520dd.9047df",\r
         "type": "execute",\r
         "name": "set playbookname",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\n\t<parameter name='outputPath' value='playbookname' />\n\t<parameter name='source' value=\"`'prop.lcm.' + $aai.generic-vnf.nf-naming-code + '.upgrade-pre-check.playbookname'`\" />\n\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1811.75,\r
-        "y": 413.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1877.2501487731934,\r
+        "y": 229.25000381469727,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "556a3910.4bdad8",\r
+        "id": "1d4663f2.97eacc",\r
         "type": "execute",\r
         "name": "execute jsonStringToCtx",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='jsonStringToCtx'>\n\t<parameter name='source' value='org.onap.appc.adapter.ansible.results' />\n\t<parameter name='outputPath' value='resultsJson' />\n\t<parameter name='isEscaped' value='false' />\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1661.75,\r
-        "y": 757.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1690.2500610351562,\r
+        "y": 744.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "e92cf733.30ba38",\r
+        "id": "a1b67568.88c2a8",\r
         "type": "execute",\r
         "name": "execute getAttributeValue",\r
         "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\n\t<parameter name='source' value=\"`'resultsJson' + $outputPayloadField`\" />\n\t<parameter name='outputPath' value='outputPayload' />",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1667.75,\r
-        "y": 802.25,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1696.2500610351562,\r
+        "y": 789.7500002384186,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             []\r
         ]\r
     },\r
     {\r
-        "id": "e3dfd6bf.4ead58",\r
+        "id": "b0abd019.0685d",\r
         "type": "switchNode",\r
         "name": "switch outputPayload",\r
         "xml": "<switch test='`$outputPayload`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1653.7500228881836,\r
-        "y": 878.0000133514404,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1682.2500839233398,\r
+        "y": 865.500013589859,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "2d71184f.d707e8"\r
+                "94c5870c.1b9028"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "2d71184f.d707e8",\r
+        "id": "94c5870c.1b9028",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1827.7500267028809,\r
-        "y": 878.2500133514404,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1856.250087738037,\r
+        "y": 865.750013589859,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "17ec9bb3.6c7794"\r
+                "f297c7ae.006d88"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "17ec9bb3.6c7794",\r
+        "id": "f297c7ae.006d88",\r
         "type": "set",\r
         "name": "set DmaapReq with payload",\r
         "xml": "<set>\n<parameter name='lcm-dmaap.payload' value='`$outputPayload`'/>",\r
         "comments": "",\r
-        "x": 2026.0000305175781,\r
-        "y": 878.7500133514404,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 2054.5000915527344,\r
+        "y": 866.250013589859,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "421baef1.ca44d",\r
+        "id": "84168fc5.05e25",\r
         "type": "returnSuccess",\r
         "name": "return success",\r
         "xml": "<return status='success'>\n<parameter name='status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`'/>",\r
         "comments": "",\r
-        "x": 2364.75,\r
-        "y": 960.2499389648438,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 2393.2500610351562,\r
+        "y": 947.7499392032623,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "52010210.9a3a3c",\r
+        "id": "7ba95e1a.d4b0c",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1830.750244140625,\r
-        "y": 982.2498779296875,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1859.2503051757812,\r
+        "y": 969.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "86cbc6a0.b5d6e8"\r
+                "9599f2eb.e4f97"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "555ad08b.2b8e",\r
+        "id": "5f979340.f0e31c",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1829.750244140625,\r
-        "y": 1058.2498779296875,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1858.2503051757812,\r
+        "y": 1045.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "4f3f37a2.c71f38"\r
+                "1f06dd95.403012"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "ce2a6d93.154ee",\r
+        "id": "cea269d5.6aca98",\r
         "type": "switchNode",\r
         "name": "switch outputPayload",\r
         "xml": "<switch test='`$outputPayload`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1647.750244140625,\r
-        "y": 1018.2498779296875,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1676.2503051757812,\r
+        "y": 1005.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "52010210.9a3a3c",\r
-                "555ad08b.2b8e"\r
+                "7ba95e1a.d4b0c",\r
+                "5f979340.f0e31c"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "18ff9108.05c38f",\r
+        "id": "7d7bfbd9.1f17c4",\r
         "type": "returnSuccess",\r
         "name": "return success with payload",\r
         "xml": "<return status='success'>\n<parameter name='status.code' value='`$org.onap.appc.adapter.ansible.result.code`' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`'/>\n<parameter name='payload' value='`$outputPayload`'/>",\r
         "comments": "",\r
-        "x": 2405.750244140625,\r
-        "y": 1042.2498779296875,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 2434.2503051757812,\r
+        "y": 1029.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "86cbc6a0.b5d6e8",\r
+        "id": "9599f2eb.e4f97",\r
         "type": "switchNode",\r
         "name": "switch result code",\r
         "xml": "<switch test=\"`$org.onap.appc.adapter.ansible.result.code`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2000.750244140625,\r
-        "y": 982.2498779296875,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 2029.2503051757812,\r
+        "y": 969.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "1e14d58a.ceb40a",\r
-                "1771d8c.468b627"\r
+                "6b0748c.2505bb8",\r
+                "408c7b86.5c50a4"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "4f3f37a2.c71f38",\r
+        "id": "1f06dd95.403012",\r
         "type": "switchNode",\r
         "name": "switch result code",\r
         "xml": "<switch test=\"`$org.onap.appc.adapter.ansible.result.code`\">\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2000.750244140625,\r
-        "y": 1058.2498779296875,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 2029.2503051757812,\r
+        "y": 1045.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "e5846df5.e9d01",\r
-                "6896eb19.633b54"\r
+                "284a16dd.c42b9a",\r
+                "b1e583b2.95cf8"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "257794.a39f786c",\r
+        "id": "c7d7ae9a.c9b1a",\r
         "type": "returnFailure",\r
         "name": "return failure",\r
         "xml": "<return status='failure'>\n<parameter name='status.code' value='401' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`' />\n",\r
         "comments": "",\r
-        "x": 2358.750244140625,\r
-        "y": 998.2498779296875,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 2387.2503051757812,\r
+        "y": 985.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "dac7ab2b.e0d178",\r
+        "id": "84f220b8.c18db",\r
         "type": "returnFailure",\r
         "name": "return failure with payload",\r
         "xml": "<return status='failure'>\n<parameter name='status.code' value='401' />\n<parameter name='status.message' value='`$org.onap.appc.adapter.ansible.message`' />\n<parameter name='payload' value='`$outputPayload`'/>",\r
         "comments": "",\r
-        "x": 2401.750244140625,\r
-        "y": 1080.2498779296875,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 2430.2503051757812,\r
+        "y": 1067.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "1e14d58a.ceb40a",\r
+        "id": "6b0748c.2505bb8",\r
         "type": "other",\r
         "name": "outcome 400",\r
         "xml": "<outcome value='400'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2188.750244140625,\r
-        "y": 960.2498779296875,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 2217.2503051757812,\r
+        "y": 947.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "421baef1.ca44d"\r
+                "84168fc5.05e25"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "1771d8c.468b627",\r
+        "id": "408c7b86.5c50a4",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2169.750244140625,\r
-        "y": 998.2498779296875,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 2198.2503051757812,\r
+        "y": 985.7498781681061,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "257794.a39f786c"\r
+                "c7d7ae9a.c9b1a"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "e5846df5.e9d01",\r
+        "id": "284a16dd.c42b9a",\r
         "type": "other",\r
         "name": "outcome 400",\r
         "xml": "<outcome value='400'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2189.750244140625,\r
-        "y": 1042.2498779296875,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 2218.2503051757812,\r
+        "y": 1029.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "18ff9108.05c38f"\r
+                "7d7bfbd9.1f17c4"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "6896eb19.633b54",\r
+        "id": "b1e583b2.95cf8",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 2171.750244140625,\r
-        "y": 1080.2498779296875,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 2200.2503051757812,\r
+        "y": 1067.749878168106,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "dac7ab2b.e0d178"\r
+                "84f220b8.c18db"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "7ba201ed.e5e12",\r
+        "id": "e0ea6cf2.aa805",\r
         "type": "block",\r
         "name": "block",\r
         "xml": "<block>\n",\r
         "atomic": "false",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 767.0000114440918,\r
-        "y": 249.50000381469727,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 806.750072479248,\r
+        "y": 385.25000524520874,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "b9826fbc.acb59",\r
-                "c9d057b5.ff9928"\r
+                "45aa522.51b58ac",\r
+                "71c4da42.247694",\r
+                "c3246832.b79218"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "c9d057b5.ff9928",\r
+        "id": "71c4da42.247694",\r
         "type": "switchNode",\r
         "name": "switch playbook-name in req",\r
         "xml": "<switch test='`$payloadJson.playbook-name`'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 973.2500133514404,\r
-        "y": 294.00000381469727,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1035.2500762939453,\r
+        "y": 381.2500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "b044a404.bd11f8",\r
-                "a1cad1b1.1a72f"\r
+                "47ca03ae.82311c",\r
+                "3d9f5c17.e59e74"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "b044a404.bd11f8",\r
+        "id": "47ca03ae.82311c",\r
         "type": "outcome",\r
         "name": "null",\r
         "xml": "<outcome value=''>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1180.7500190734863,\r
-        "y": 257.75000381469727,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1247.7501411437988,\r
+        "y": 352.5000057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "c89043b.0269bc"\r
+                "af284dab.4b361"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "a1cad1b1.1a72f",\r
+        "id": "3d9f5c17.e59e74",\r
         "type": "outcome",\r
         "name": "other",\r
         "xml": "<outcome value='Other'>\n",\r
         "comments": "",\r
         "outputs": 1,\r
-        "x": 1179.5000228881836,\r
-        "y": 322.75000381469727,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1247.2501411437988,\r
+        "y": 408.2500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": [\r
             [\r
-                "b3960e3d.f7841"\r
+                "753113cf.9764ec"\r
             ]\r
         ]\r
     },\r
     {\r
-        "id": "c89043b.0269bc",\r
+        "id": "af284dab.4b361",\r
         "type": "set",\r
         "name": "set playbookname from prop",\r
         "xml": "<set>\n<parameter name='playbookname' value='`$prop.lcm.pnf.upgrade-pre-check.playbookname`'/>\n",\r
         "comments": "",\r
-        "x": 1383.2500228881836,\r
-        "y": 257.75000381469727,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1454.750144958496,\r
+        "y": 352.7500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
     },\r
     {\r
-        "id": "b3960e3d.f7841",\r
+        "id": "753113cf.9764ec",\r
         "type": "set",\r
         "name": "set playbookname from req",\r
         "xml": "<set>\n<parameter name='playbookname' value='`$payloadJson.playbook-name`'/>\n",\r
         "comments": "",\r
-        "x": 1378.2500228881836,\r
-        "y": 322.75000381469727,\r
-        "z": "98ab1d2d.2aba2",\r
+        "x": 1457.250144958496,\r
+        "y": 407.7500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
         "wires": []\r
+    },\r
+    {\r
+        "id": "c3246832.b79218",\r
+        "type": "execute",\r
+        "name": "execute updateJsonObjectString",\r
+        "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='updateJsonObjectString'>\n\t<parameter name='source' value='upgrade-pre-check-input.payload' />\n\t<parameter name='outputPath' value='upgrade-pre-check-input.payload' />\n\t<parameter name='add.pnf-flag' value='true' />\n\t<parameter name='add.pnfName' value=\"`$upgrade-pre-check-input.action-identifiers.pnf-name`\" />\n\t<parameter name='delete.ipaddress-v4-oam' value=\"\" />\n\t<parameter name='delete.playbook-name' value=\"\" />",\r
+        "comments": "",\r
+        "outputs": 1,\r
+        "x": 1047.5000762939453,\r
+        "y": 440.7500057220459,\r
+        "z": "3eb1eb3a.4e4dd4",\r
+        "wires": [\r
+            []\r
+        ]\r
     }\r
-]
\ No newline at end of file
+]\r
index 319581c..9ccab07 100644 (file)
                 <parameter name='outputPath' value='payloadJson' />\r
                 <parameter name='isEscaped' value='true' />\r
             </execute>\r
-            <switch test='`$payloadJson.pnf-flag`'>\r
-                <outcome value='true'>\r
-                    <block>\r
-                        <set>\r
-                            <parameter name='nodelist' value="`'[' + $quote + $payloadJson.ipaddress-v4-oam +  $quote + ']'`"/>\r
-                            <parameter name='outputPayloadField' value="`'.' + $payloadJson.ipaddress-v4-oam + '.Output'`"/>\r
-                        </set>\r
-                        <switch test='`$payloadJson.playbook-name`'>\r
-                            <outcome value=''>\r
-                                <set>\r
-                                    <parameter name='playbookname' value='`$prop.lcm.pnf.activate-n-e-sw.playbookname`'/>\r
-                                </set>\r
-                            </outcome>\r
-                            <outcome value='Other'>\r
-                                <set>\r
-                                    <parameter name='playbookname' value='`$payloadJson.playbook-name`'/>\r
-                                </set>\r
-                            </outcome>\r
-                        </switch>\r
-                    </block>\r
-                </outcome>\r
-                <outcome value='Other'>\r
+            <switch test="`$activate-n-e-sw-input.action-identifiers.pnf-name`">\r
+                <outcome value=''>\r
                     <block>\r
                         <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\r
                             <parameter name='outputPath' value='playbookname' />\r
                         </get-resource>\r
                     </block>\r
                 </outcome>\r
+                <outcome value='Other'>\r
+                    <block>\r
+                        <set>\r
+                            <parameter name='nodelist' value="`'[' + $quote + $payloadJson.ipaddress-v4-oam +  $quote + ']'`"/>\r
+                            <parameter name='outputPayloadField' value="`'.' + $payloadJson.ipaddress-v4-oam + '.Output'`"/>\r
+                        </set>\r
+                        <switch test='`$payloadJson.playbook-name`'>\r
+                            <outcome value=''>\r
+                                <set>\r
+                                    <parameter name='playbookname' value='`$prop.lcm.pnf.activate-n-e-sw.playbookname`'/>\r
+                                </set>\r
+                            </outcome>\r
+                            <outcome value='Other'>\r
+                                <set>\r
+                                    <parameter name='playbookname' value='`$payloadJson.playbook-name`'/>\r
+                                </set>\r
+                            </outcome>\r
+                        </switch>\r
+                        <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='updateJsonObjectString'>\r
+                            <parameter name='source' value='activate-n-e-sw-input.payload' />\r
+                            <parameter name='outputPath' value='activate-n-e-sw-input.payload' />\r
+                            <parameter name='add.pnf-flag' value='true' />\r
+                            <parameter name='add.pnfName' value="`$activate-n-e-sw-input.action-identifiers.pnf-name`" />\r
+                            <parameter name='delete.ipaddress-v4-oam' value="" />\r
+                            <parameter name='delete.playbook-name' value="" />\r
+                        </execute>\r
+                    </block>\r
+                </outcome>\r
             </switch>\r
             <switch test='`$playbookname`'>\r
                 <outcome value=''>\r
             </execute>\r
         </block>\r
     </method>\r
-</service-logic>\r
+</service-logic>
\ No newline at end of file
index 20844c3..b949247 100644 (file)
                 <parameter name='outputPath' value='payloadJson' />\r
                 <parameter name='isEscaped' value='true' />\r
             </execute>\r
-            <switch test='`$payloadJson.pnf-flag`'>\r
-                <outcome value='true'>\r
-                    <block>\r
-                        <set>\r
-                            <parameter name='nodelist' value="`'[' + $quote + $payloadJson.ipaddress-v4-oam +  $quote + ']'`"/>\r
-                            <parameter name='outputPayloadField' value="`'.' + $payloadJson.ipaddress-v4-oam + '.Output'`"/>\r
-                        </set>\r
-                        <switch test='`$payloadJson.playbook-name`'>\r
-                            <outcome value=''>\r
-                                <set>\r
-                                    <parameter name='playbookname' value='`$prop.lcm.pnf.download-n-e-sw.playbookname`'/>\r
-                                </set>\r
-                            </outcome>\r
-                            <outcome value='Other'>\r
-                                <set>\r
-                                    <parameter name='playbookname' value='`$payloadJson.playbook-name`'/>\r
-                                </set>\r
-                            </outcome>\r
-                        </switch>\r
-                    </block>\r
-                </outcome>\r
-                <outcome value='Other'>\r
+            <switch test="`$download-n-e-sw-input.action-identifiers.pnf-name`">\r
+                <outcome value=''>\r
                     <block>\r
                         <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\r
                             <parameter name='outputPath' value='playbookname' />\r
                         </get-resource>\r
                     </block>\r
                 </outcome>\r
+                <outcome value='Other'>\r
+                    <block>\r
+                        <set>\r
+                            <parameter name='nodelist' value="`'[' + $quote + $payloadJson.ipaddress-v4-oam +  $quote + ']'`"/>\r
+                            <parameter name='outputPayloadField' value="`'.' + $payloadJson.ipaddress-v4-oam + '.Output'`"/>\r
+                        </set>\r
+                        <switch test='`$payloadJson.playbook-name`'>\r
+                            <outcome value=''>\r
+                                <set>\r
+                                    <parameter name='playbookname' value='`$prop.lcm.pnf.download-n-e-sw.playbookname`'/>\r
+                                </set>\r
+                            </outcome>\r
+                            <outcome value='Other'>\r
+                                <set>\r
+                                    <parameter name='playbookname' value='`$payloadJson.playbook-name`'/>\r
+                                </set>\r
+                            </outcome>\r
+                        </switch>\r
+                        <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='updateJsonObjectString'>\r
+                            <parameter name='source' value='download-n-e-sw-input.payload' />\r
+                            <parameter name='outputPath' value='download-n-e-sw-input.payload' />\r
+                            <parameter name='add.pnf-flag' value='true' />\r
+                            <parameter name='add.pnfName' value="`$download-n-e-sw-input.action-identifiers.pnf-name`" />\r
+                            <parameter name='delete.ipaddress-v4-oam' value="" />\r
+                            <parameter name='delete.playbook-name' value="" />\r
+                        </execute>\r
+                    </block>\r
+                </outcome>\r
             </switch>\r
             <switch test='`$playbookname`'>\r
                 <outcome value=''>\r
             </execute>\r
         </block>\r
     </method>\r
-</service-logic>\r
+</service-logic>
\ No newline at end of file
index fd1c8b2..3b088c0 100644 (file)
                 <parameter name='outputPath' value='payloadJson' />\r
                 <parameter name='isEscaped' value='true' />\r
             </execute>\r
-            <switch test='`$payloadJson.pnf-flag`'>\r
-                <outcome value='true'>\r
-                    <block>\r
-                        <set>\r
-                            <parameter name='nodelist' value="`'[' + $quote + $payloadJson.ipaddress-v4-oam +  $quote + ']'`"/>\r
-                            <parameter name='outputPayloadField' value="`'.' + $payloadJson.ipaddress-v4-oam + '.Output'`"/>\r
-                        </set>\r
-                        <switch test='`$payloadJson.playbook-name`'>\r
-                            <outcome value=''>\r
-                                <set>\r
-                                    <parameter name='playbookname' value='`$prop.lcm.pnf.upgrade-post-check.playbookname`'/>\r
-                                </set>\r
-                            </outcome>\r
-                            <outcome value='Other'>\r
-                                <set>\r
-                                    <parameter name='playbookname' value='`$payloadJson.playbook-name`'/>\r
-                                </set>\r
-                            </outcome>\r
-                        </switch>\r
-                    </block>\r
-                </outcome>\r
-                <outcome value='Other'>\r
+            <switch test="`$upgrade-post-check-input.action-identifiers.pnf-name`">\r
+                <outcome value=''>\r
                     <block>\r
                         <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\r
                             <parameter name='outputPath' value='playbookname' />\r
                         </get-resource>\r
                     </block>\r
                 </outcome>\r
+                <outcome value='Other'>\r
+                    <block>\r
+                        <set>\r
+                            <parameter name='nodelist' value="`'[' + $quote + $payloadJson.ipaddress-v4-oam +  $quote + ']'`"/>\r
+                            <parameter name='outputPayloadField' value="`'.' + $payloadJson.ipaddress-v4-oam + '.Output'`"/>\r
+                        </set>\r
+                        <switch test='`$payloadJson.playbook-name`'>\r
+                            <outcome value=''>\r
+                                <set>\r
+                                    <parameter name='playbookname' value='`$prop.lcm.pnf.upgrade-post-check.playbookname`'/>\r
+                                </set>\r
+                            </outcome>\r
+                            <outcome value='Other'>\r
+                                <set>\r
+                                    <parameter name='playbookname' value='`$payloadJson.playbook-name`'/>\r
+                                </set>\r
+                            </outcome>\r
+                        </switch>\r
+                        <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='updateJsonObjectString'>\r
+                            <parameter name='source' value='upgrade-post-check-input.payload' />\r
+                            <parameter name='outputPath' value='upgrade-post-check-input.payload' />\r
+                            <parameter name='add.pnf-flag' value='true' />\r
+                            <parameter name='add.pnfName' value="`$upgrade-post-check-input.action-identifiers.pnf-name`" />\r
+                            <parameter name='delete.ipaddress-v4-oam' value="" />\r
+                            <parameter name='delete.playbook-name' value="" />\r
+                        </execute>\r
+                    </block>\r
+                </outcome>\r
             </switch>\r
             <switch test='`$playbookname`'>\r
                 <outcome value=''>\r
index 3976fb9..16b9d31 100644 (file)
                 <parameter name='outputPath' value='payloadJson' />\r
                 <parameter name='isEscaped' value='true' />\r
             </execute>\r
-            <switch test='`$payloadJson.pnf-flag`'>\r
-                <outcome value='true'>\r
-                    <block>\r
-                        <set>\r
-                            <parameter name='nodelist' value="`'[' + $quote + $payloadJson.ipaddress-v4-oam +  $quote + ']'`"/>\r
-                            <parameter name='outputPayloadField' value="`'.' + $payloadJson.ipaddress-v4-oam + '.Output'`"/>\r
-                        </set>\r
-                        <switch test='`$payloadJson.playbook-name`'>\r
-                            <outcome value=''>\r
-                                <set>\r
-                                    <parameter name='playbookname' value='`$prop.lcm.pnf.upgrade-pre-check.playbookname`'/>\r
-                                </set>\r
-                            </outcome>\r
-                            <outcome value='Other'>\r
-                                <set>\r
-                                    <parameter name='playbookname' value='`$payloadJson.playbook-name`'/>\r
-                                </set>\r
-                            </outcome>\r
-                        </switch>\r
-                    </block>\r
-                </outcome>\r
-                <outcome value='Other'>\r
+            <switch test="`$upgrade-pre-check-input.action-identifiers.pnf-name`">\r
+                <outcome value=''>\r
                     <block>\r
                         <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='getAttributeValue'>\r
                             <parameter name='outputPath' value='playbookname' />\r
                         </get-resource>\r
                     </block>\r
                 </outcome>\r
+                <outcome value='Other'>\r
+                    <block>\r
+                        <set>\r
+                            <parameter name='nodelist' value="`'[' + $quote + $payloadJson.ipaddress-v4-oam +  $quote + ']'`"/>\r
+                            <parameter name='outputPayloadField' value="`'.' + $payloadJson.ipaddress-v4-oam + '.Output'`"/>\r
+                        </set>\r
+                        <switch test='`$payloadJson.playbook-name`'>\r
+                            <outcome value=''>\r
+                                <set>\r
+                                    <parameter name='playbookname' value='`$prop.lcm.pnf.upgrade-pre-check.playbookname`'/>\r
+                                </set>\r
+                            </outcome>\r
+                            <outcome value='Other'>\r
+                                <set>\r
+                                    <parameter name='playbookname' value='`$payloadJson.playbook-name`'/>\r
+                                </set>\r
+                            </outcome>\r
+                        </switch>\r
+                        <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='updateJsonObjectString'>\r
+                            <parameter name='source' value='upgrade-pre-check-input.payload' />\r
+                            <parameter name='outputPath' value='upgrade-pre-check-input.payload' />\r
+                            <parameter name='add.pnf-flag' value='true' />\r
+                            <parameter name='add.pnfName' value="`$upgrade-pre-check-input.action-identifiers.pnf-name`" />\r
+                            <parameter name='delete.ipaddress-v4-oam' value="" />\r
+                            <parameter name='delete.playbook-name' value="" />\r
+                        </execute>\r
+                    </block>\r
+                </outcome>\r
             </switch>\r
             <switch test='`$playbookname`'>\r
                 <outcome value=''>\r