diff options
author | Taka Cho <takamune.cho@att.com> | 2018-12-14 11:22:25 -0500 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2018-12-14 22:01:59 +0000 |
commit | 6306c267967ad2e93d4f9d933d383005356439c1 (patch) | |
tree | 8fd47e779914cddfaeb29c64ecfbe678034b050a /docs/APPC LCM API Guide | |
parent | 0c9c3008ac34fbf908c62ff5c99a0d844583b908 (diff) |
add config modify LCM sample request
per user request, adding one LCM:config-modify
request sample
Change-Id: I9902c19feae704b4b97838b71bab691154b3f68f
Issue-ID: APPC-1273
Signed-off-by: Taka Cho <takamune.cho@att.com>
Diffstat (limited to 'docs/APPC LCM API Guide')
-rw-r--r-- | docs/APPC LCM API Guide/APPC LCM API Guide.rst | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/APPC LCM API Guide/APPC LCM API Guide.rst b/docs/APPC LCM API Guide/APPC LCM API Guide.rst index 73d558edc..c742dd168 100644 --- a/docs/APPC LCM API Guide/APPC LCM API Guide.rst +++ b/docs/APPC LCM API Guide/APPC LCM API Guide.rst @@ -980,6 +980,40 @@ Request Payload Parameters: | | be specified. | | | +-------------------------+----------------------------------------+-----------------+-------------------------------------------------------+ +ConfigModify Request +^^^^^^^^^^^^^^^^^^^^ + + Examples:: + + { + "input": { + "common-header": { + "timestamp": "2017-10-25T11:10:04.244Z", + "api-ver": "2.00", + "originator-id": "664be3d2-6c12-4f4b-a3e7-c349acced200", + "request-id": "664be3d2-6c12-4f4b-a3e7-c349acced200", + "sub-request-id": "1", + "flags": { + "force": "TRUE", + "ttl": 60000 + } + }, + "action": "ConfigModify", + "action-identifiers": { + "vnf-id": "<VNF_ID>" + }, + "payload": "{ \"config-url\":\"5f517fd4-bf3d-43bc-8147-1b61776d7ded\", + \"config-json\": \"{\"pg-streams\":{ + \"pg-stream\": [{ \"id\":\"fw_udp1\", \"is-enabled\": \"true\" }, + {\"id\": \"fw_udp2\", \"is-enabled\":\"true\" }, + { \"id\": \"fw_udp3\",\"is-enabled\": \"true\" }, + { \"id\":\"fw_udp4\", \"is-enabled\": \"true\" }, + {\"id\": \"fw_udp5\", \"is-enabled\":\"true\" }]}}" + } + } + } + + ConfigModify Response ^^^^^^^^^^^^^^^^^^^^^ |