diff options
author | andreasgeissler <andreas-geissler@telekom.de> | 2019-07-16 18:44:23 +0200 |
---|---|---|
committer | andreasgeissler <andreas-geissler@telekom.de> | 2019-07-16 18:48:20 +0200 |
commit | 7789a22fff5a82688c96813bbcd0238bcd141f52 (patch) | |
tree | 54c7ce70adcfd449d61fb03779f721abadf40ec5 /docs/guides/onap-user/instantiate/instantiation/so1/index.rst | |
parent | 4c9975b09e187619ea3aa2c09c097ab5b55a2356 (diff) |
Updated late coming comments to Patch 91089 and added links
Issue-ID: DOC-500
Signed-off-by: andreasgeissler <andreas-geissler@telekom.de>
Change-Id: Ia97f22b9b6cfe77be18b5252789e429af02e8f79
Diffstat (limited to 'docs/guides/onap-user/instantiate/instantiation/so1/index.rst')
-rw-r--r-- | docs/guides/onap-user/instantiate/instantiation/so1/index.rst | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/guides/onap-user/instantiate/instantiation/so1/index.rst b/docs/guides/onap-user/instantiate/instantiation/so1/index.rst index 860f50295..86f03bdd3 100644 --- a/docs/guides/onap-user/instantiate/instantiation/so1/index.rst +++ b/docs/guides/onap-user/instantiate/instantiation/so1/index.rst @@ -2,13 +2,13 @@ .. International License. http://creativecommons.org/licenses/by/4.0 .. Copyright 2019 ONAP Contributors. All rights reserved. -.. _doc_guide_user_ser_inst: +.. _doc_guide_user_ser_inst_so1: -AlaCarte mode Service Instantiation via ONAP SO API -=================================================== +A La Carte mode Service Instantiation via ONAP SO API +===================================================== -Using ONAP SO API in "Alacarte" mode, you need to send several requests, +Using ONAP SO API in "A La Carte" mode, you need to send several requests, depending on the service model composition. For example, if your service model is composed of 2 VNF and a Network, @@ -121,7 +121,7 @@ generated by SDC when you defined your service model. 1st request is called a "SDNC-preload" for a VNF object and is used to store in SDNC some VNF parameters values -that will be used when instantiating +that will be needed for the instantiation :: @@ -165,13 +165,13 @@ that will be used when instantiating } }' -The 2nd request id to instantiate the VF module via ONAP SO +The 2nd request is to instantiate the VF module via ONAP SO (instance name must be identical in both requests) :: curl -X POST \ - http://so.api.simpledemo.onap.org:30277/onap/so/infra/serviceInstances/v6/95762b50-0244-4723-8fde-35f911db9263/vnfs//vfModules \ + http://so.api.simpledemo.onap.org:30277/onap/so/infra/serviceInstances/v6/95762b50-0244-4723-8fde-35f911db9263/vnfs/vfModules \ -H 'Accept: application/json' \ -H 'Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==' \ -H 'Content-Type: application/json' \ @@ -309,7 +309,7 @@ generated by SDC when you defined your service model. :: -curl -X POST \ + curl -X POST \ http://so.api.simpledemo.onap.org:30277/onap/so/infra/serviceInstances/v6/95762b50-0244-4723-8fde-35f911db9263/networks \ -H 'Accept: application/json' \ -H 'Authorization: Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA==' \ @@ -362,5 +362,5 @@ curl -X POST \ } } }] - } -}' + } + }' |