Update swagger for 5G slicing usecase APIs 75/111275/2
authorPriyadharshini <priyadharshini.b96@wipro.com>
Fri, 14 Aug 2020 11:41:49 +0000 (17:11 +0530)
committerPriyadharshini <priyadharshini.b96@wipro.com>
Fri, 14 Aug 2020 11:55:25 +0000 (17:25 +0530)
Issue-ID: SO-3125
Signed-off-by: Priyadharshini <priyadharshini.b96@wipro.com>
Change-Id: I9d779c8010ebebc83aab1d899a1e48aff9df8290

docs/api/swagger/swagger.html
docs/api/swagger/swagger.json
docs/api/swagger/swagger.yaml

index 3c577b7..5d7c963 100644 (file)
@@ -2,7 +2,7 @@
 <html>
 <head>
   <meta http-equiv="X-UA-Compatible" content="IE=edge" />
-  <title>SO Casablanca APIs</title>
+  <title>SO Guilin APIs</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   <meta charset="UTF-8" />
@@ -696,6 +696,158 @@ margin-bottom: 20px;
   <script>
     // Script section to load models into a JS Var
     var defs = {}
+        defs["3gppServiceActivation"] = {
+  "type" : "object",
+  "properties" : {
+    "serviceInstanceID" : {
+      "type" : "string",
+      "description" : "ID of the service to be activated/deactivated"
+    },
+    "globalSubscriberId" : {
+      "type" : "string"
+    },
+    "subscriptionServiceType" : {
+      "type" : "string",
+      "description" : "Service type for the subscription. For E.G :5G"
+    },
+    "networkType" : {
+      "type" : "string",
+      "description" : "Network type. For E.G :AN/CN/TN"
+    },
+    "additionalProperties" : {
+      "type" : "object",
+      "description" : "Map of additional properties required for service activation/deactivation",
+      "properties" : { }
+    }
+  },
+  "description" : "This describes the request body for 3gpp service activation/deactivation"
+};
+        defs["3gppServiceResponse"] = {
+  "type" : "object",
+  "properties" : {
+    "jobId" : {
+      "type" : "string",
+      "description" : "Job ID to be used to identify the status of the job"
+    },
+    "status" : {
+      "type" : "string",
+      "description" : "status of the job"
+    },
+    "statusDescription" : {
+      "type" : "object",
+      "description" : "Description on status in case of erroneous response",
+      "properties" : { }
+    }
+  },
+  "description" : "This describes the response for 3gpp services"
+};
+        defs["Allocate3gppService"] = {
+  "type" : "object",
+  "properties" : {
+    "name" : {
+      "type" : "string",
+      "description" : "Name of the service to allocate"
+    },
+    "modelInvariantUuid" : {
+      "type" : "string",
+      "description" : "Model Invariant UUID corresponding to the service. For E.g :  NSST Model invariant uuid in case of NSSI creation"
+    },
+    "modelUuid" : {
+      "type" : "string",
+      "description" : "Model UUID corresponding to the service. For E.g :  NSST Model uuid in case of NSSI creation"
+    },
+    "globalSubscriberId" : {
+      "type" : "string"
+    },
+    "subscriptionServiceType" : {
+      "type" : "string",
+      "description" : "Service type for the subscription. For E.G :5G"
+    },
+    "networkType" : {
+      "type" : "string",
+      "description" : "Network type. For E.G :AN/CN/TN"
+    },
+    "additionalProperties" : {
+      "type" : "object",
+      "description" : "Map of additional properties required for service allocation",
+      "properties" : { }
+    }
+  },
+  "description" : "This describes the request body for 3gpp service allocation"
+};
+        defs["DeAllocate3gppService"] = {
+  "type" : "object",
+  "properties" : {
+    "serviceInstanceID" : {
+      "type" : "string",
+      "description" : "ID of the service to terminate"
+    },
+    "globalSubscriberId" : {
+      "type" : "string"
+    },
+    "subscriptionServiceType" : {
+      "type" : "string",
+      "description" : "Service type for the subscription. For E.G :5G"
+    },
+    "networkType" : {
+      "type" : "string",
+      "description" : "Network type. For E.G :AN/CN/TN"
+    },
+    "additionalProperties" : {
+      "type" : "object",
+      "description" : "Map of additional properties required for service deallocation",
+      "properties" : { }
+    }
+  },
+  "description" : "This describes the request body for 3gpp service Termination/Deallocation"
+};
+        defs["Modify3gppService"] = {
+  "type" : "object",
+  "properties" : {
+    "name" : {
+      "type" : "string",
+      "description" : "Name of the service to modify"
+    },
+    "serviceInstanceID" : {
+      "type" : "string",
+      "description" : "ID of the service to modify"
+    },
+    "globalSubscriberId" : {
+      "type" : "string"
+    },
+    "subscriptionServiceType" : {
+      "type" : "string",
+      "description" : "Service type for the subscription. For E.G :5G"
+    },
+    "networkType" : {
+      "type" : "string",
+      "description" : "Network type. For E.G :AN/CN/TN"
+    },
+    "additionalProperties" : {
+      "type" : "object",
+      "description" : "Map of additional properties required for service modification",
+      "properties" : { }
+    }
+  },
+  "description" : "This describes the request body for 3gpp service modification"
+};
+        defs["QuerySubnetCapability"] = {
+  "type" : "object",
+  "properties" : {
+    "subnetTypes" : {
+      "type" : "array",
+      "items" : {
+        "$ref" : "#/definitions/SubnetTypes"
+      }
+    }
+  },
+  "description" : "This describes the subnet capabilities that can be queried"
+};
+        defs["SubnetTypes"] = {
+  "type" : "string",
+  "description" : "This describes allowed subnet types",
+  "enum" : [ "AN", "AN_NF", "CN", "TN_FH", "TN_MH", "TN_BH" ]
+};
   </script>
 
   <div class="container-fluid">
@@ -713,6 +865,9 @@ margin-bottom: 20px;
             <li class="nav-fixed nav-header active" data-group="_"><a href="#api-_">API Summary</a></li>
 
                   <li class="nav-header" data-group="E2eServiceInstances"><a href="#api-E2eServiceInstances">API Methods - E2eServiceInstances</a></li>
+                    <li data-group="E2eServiceInstances" data-name="activateE2EServiceInstances" class="">
+                      <a href="#api-E2eServiceInstances-activateE2EServiceInstances">activateE2EServiceInstances</a>
+                    </li>
                     <li data-group="E2eServiceInstances" data-name="compareModelwithTargetVersion" class="">
                       <a href="#api-E2eServiceInstances-compareModelwithTargetVersion">compareModelwithTargetVersion</a>
                     </li>
@@ -739,6 +894,25 @@ margin-bottom: 20px;
                     <li data-group="Nodehealthcheck" data-name="nodeHealthcheck" class="">
                       <a href="#api-Nodehealthcheck-nodeHealthcheck">nodeHealthcheck</a>
                     </li>
+                  <li class="nav-header" data-group="Onap3gppServiceInstances"><a href="#api-Onap3gppServiceInstances">API Methods - Onap3gppServiceInstances</a></li>
+                    <li data-group="Onap3gppServiceInstances" data-name="activate3gppService" class="">
+                      <a href="#api-Onap3gppServiceInstances-activate3gppService">activate3gppService</a>
+                    </li>
+                    <li data-group="Onap3gppServiceInstances" data-name="allocate3gppService" class="">
+                      <a href="#api-Onap3gppServiceInstances-allocate3gppService">allocate3gppService</a>
+                    </li>
+                    <li data-group="Onap3gppServiceInstances" data-name="deactivate3gppService" class="">
+                      <a href="#api-Onap3gppServiceInstances-deactivate3gppService">deactivate3gppService</a>
+                    </li>
+                    <li data-group="Onap3gppServiceInstances" data-name="deallocate3gppService" class="">
+                      <a href="#api-Onap3gppServiceInstances-deallocate3gppService">deallocate3gppService</a>
+                    </li>
+                    <li data-group="Onap3gppServiceInstances" data-name="modify3gppService" class="">
+                      <a href="#api-Onap3gppServiceInstances-modify3gppService">modify3gppService</a>
+                    </li>
+                    <li data-group="Onap3gppServiceInstances" data-name="querySubnetCapability" class="">
+                      <a href="#api-Onap3gppServiceInstances-querySubnetCapability">querySubnetCapability</a>
+                    </li>
                   <li class="nav-header" data-group="OnapsoinfracloudResources"><a href="#api-OnapsoinfracloudResources">API Methods - OnapsoinfracloudResources</a></li>
                     <li data-group="OnapsoinfracloudResources" data-name="activateOperationEnvironment" class="">
                       <a href="#api-OnapsoinfracloudResources-activateOperationEnvironment">activateOperationEnvironment</a>
@@ -770,6 +944,28 @@ margin-bottom: 20px;
                     <li data-group="OnapsoinfraorchestrationRequests" data-name="unlockOrchestrationRequest" class="">
                       <a href="#api-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest">unlockOrchestrationRequest</a>
                     </li>
+                  <li class="nav-header" data-group="OnapsoinfraorchestrationTasks"><a href="#api-OnapsoinfraorchestrationTasks">API Methods - OnapsoinfraorchestrationTasks</a></li>
+                    <li data-group="OnapsoinfraorchestrationTasks" data-name="abortOrchestrationTask" class="">
+                      <a href="#api-OnapsoinfraorchestrationTasks-abortOrchestrationTask">abortOrchestrationTask</a>
+                    </li>
+                    <li data-group="OnapsoinfraorchestrationTasks" data-name="commitOrchestrationTask" class="">
+                      <a href="#api-OnapsoinfraorchestrationTasks-commitOrchestrationTask">commitOrchestrationTask</a>
+                    </li>
+                    <li data-group="OnapsoinfraorchestrationTasks" data-name="createOrchestrationTask" class="">
+                      <a href="#api-OnapsoinfraorchestrationTasks-createOrchestrationTask">createOrchestrationTask</a>
+                    </li>
+                    <li data-group="OnapsoinfraorchestrationTasks" data-name="deleteOrchestrationTask" class="">
+                      <a href="#api-OnapsoinfraorchestrationTasks-deleteOrchestrationTask">deleteOrchestrationTask</a>
+                    </li>
+                    <li data-group="OnapsoinfraorchestrationTasks" data-name="getAllOrchestrationTasks" class="">
+                      <a href="#api-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks">getAllOrchestrationTasks</a>
+                    </li>
+                    <li data-group="OnapsoinfraorchestrationTasks" data-name="getOrchestrationTask" class="">
+                      <a href="#api-OnapsoinfraorchestrationTasks-getOrchestrationTask">getOrchestrationTask</a>
+                    </li>
+                    <li data-group="OnapsoinfraorchestrationTasks" data-name="updateOrchestrationTask" class="">
+                      <a href="#api-OnapsoinfraorchestrationTasks-updateOrchestrationTask">updateOrchestrationTask</a>
+                    </li>
                   <li class="nav-header" data-group="OnapsoinfraserviceInstantiation"><a href="#api-OnapsoinfraserviceInstantiation">API Methods - OnapsoinfraserviceInstantiation</a></li>
                     <li data-group="OnapsoinfraserviceInstantiation" data-name="activatePort" class="">
                       <a href="#api-OnapsoinfraserviceInstantiation-activatePort">activatePort</a>
@@ -877,7 +1073,7 @@ margin-bottom: 20px;
       <div id="content">
         <div id="project">
           <div class="pull-left">
-            <h1>SO Casablanca APIs</h1>
+            <h1>SO Guilin APIs</h1>
           </div>
           <div class="clearfix"></div>
         </div>
@@ -892,11 +1088,11 @@ margin-bottom: 20px;
         <div id="sections">
                 <section id="api-E2eServiceInstances">
                   <h1>E2eServiceInstances</h1>
-                    <div id="api-E2eServiceInstances-compareModelwithTargetVersion">
-                      <article id="api-E2eServiceInstances-compareModelwithTargetVersion-0" data-group="User" data-name="compareModelwithTargetVersion" data-version="0">
+                    <div id="api-E2eServiceInstances-activateE2EServiceInstances">
+                      <article id="api-E2eServiceInstances-activateE2EServiceInstances-0" data-group="User" data-name="activateE2EServiceInstances" data-version="0">
                         <div class="pull-left">
-                          <h1>compareModelwithTargetVersion</h1>
-                          <p>Find added and deleted resources of target model for the e2eserviceInstance on a given serviceId </p>
+                          <h1>activateE2EServiceInstances</h1>
+                          <p>Activate/Deactivate 5G slice Service on a specified version and serviceId</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -904,29 +1100,29 @@ margin-bottom: 20px;
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/modeldifferences</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/{operationType}</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-java">Java</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-E2eServiceInstances-activateE2EServiceInstances-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-activateE2EServiceInstances-0-java">Java</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-activateE2EServiceInstances-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-activateE2EServiceInstances-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-activateE2EServiceInstances-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-activateE2EServiceInstances-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-activateE2EServiceInstances-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-activateE2EServiceInstances-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-activateE2EServiceInstances-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-activateE2EServiceInstances-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-activateE2EServiceInstances-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/modeldifferences"</code></pre>
+                          <div class="tab-pane active" id="examples-E2eServiceInstances-activateE2EServiceInstances-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/{operationType}"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-java">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-activateE2EServiceInstances-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
@@ -940,52 +1136,56 @@ public class E2eServiceInstancesApiExample {
     public static void main(String[] args) {
         
         E2eServiceInstancesApi apiInstance = new E2eServiceInstancesApi();
-        String serviceId = serviceId_example; // String | 
         String version = version_example; // String | 
+        String serviceId = serviceId_example; // String | 
+        String operationType = operationType_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.compareModelwithTargetVersion(serviceId, version, body);
+            apiInstance.activateE2EServiceInstances(version, serviceId, operationType, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling E2eServiceInstancesApi#compareModelwithTargetVersion");
+            System.err.println("Exception when calling E2eServiceInstancesApi#activateE2EServiceInstances");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-android">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-activateE2EServiceInstances-0-android">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.E2eServiceInstancesApi;
 
 public class E2eServiceInstancesApiExample {
 
     public static void main(String[] args) {
         E2eServiceInstancesApi apiInstance = new E2eServiceInstancesApi();
-        String serviceId = serviceId_example; // String | 
         String version = version_example; // String | 
+        String serviceId = serviceId_example; // String | 
+        String operationType = operationType_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.compareModelwithTargetVersion(serviceId, version, body);
+            apiInstance.activateE2EServiceInstances(version, serviceId, operationType, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling E2eServiceInstancesApi#compareModelwithTargetVersion");
+            System.err.println("Exception when calling E2eServiceInstancesApi#activateE2EServiceInstances");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-groovy">
+  <div class="tab-pane" id="examples-E2eServiceInstances-activateE2EServiceInstances-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">String *serviceId = serviceId_example; // 
-String *version = version_example; // 
+                            <div class="tab-pane" id="examples-E2eServiceInstances-activateE2EServiceInstances-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
+String *serviceId = serviceId_example; // 
+String *operationType = operationType_example; // 
 String *body = body_example; //  (optional)
 
 E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 
-// Find added and deleted resources of target model for the e2eserviceInstance on a given serviceId 
-[apiInstance compareModelwithTargetVersionWith:serviceId
-    version:version
+// Activate/Deactivate 5G slice Service on a specified version and serviceId
+[apiInstance activateE2EServiceInstancesWith:version
+    serviceId:serviceId
+    operationType:operationType
     body:body
               completionHandler: ^(NSError* error) {
                             if (error) {
@@ -995,14 +1195,16 @@ E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-E2eServiceInstances-activateE2EServiceInstances-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.E2eServiceInstancesApi()
 
-var api = new SoCasablancaApIs.E2eServiceInstancesApi()
+var version = version_example; // {String} 
 
 var serviceId = serviceId_example; // {String} 
 
-var version = version_example; // {String} 
+var operationType = operationType_example; // {String} 
 
 var opts = { 
   'body': body_example // {String} 
@@ -1015,14 +1217,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.compareModelwithTargetVersion(serviceId, version, opts, callback);
+api.activateE2EServiceInstances(version, serviceId, operationType, opts, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-angular">
+                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-activateE2EServiceInstances-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-csharp">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-activateE2EServiceInstances-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -1031,24 +1233,25 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class compareModelwithTargetVersionExample
+    public class activateE2EServiceInstancesExample
     {
         public void main()
         {
             
             var apiInstance = new E2eServiceInstancesApi();
-            var serviceId = serviceId_example;  // String | 
             var version = version_example;  // String | 
+            var serviceId = serviceId_example;  // String | 
+            var operationType = operationType_example;  // String | 
             var body = body_example;  // String |  (optional) 
 
             try
             {
-                // Find added and deleted resources of target model for the e2eserviceInstance on a given serviceId 
-                apiInstance.compareModelwithTargetVersion(serviceId, version, body);
+                // Activate/Deactivate 5G slice Service on a specified version and serviceId
+                apiInstance.activateE2EServiceInstances(version, serviceId, operationType, body);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling E2eServiceInstancesApi.compareModelwithTargetVersion: " + e.Message );
+                Debug.Print("Exception when calling E2eServiceInstancesApi.activateE2EServiceInstances: " + e.Message );
             }
         }
     }
@@ -1056,42 +1259,44 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-php">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-activateE2EServiceInstances-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
 $api_instance = new Swagger\Client\Api\E2eServiceInstancesApi();
-$serviceId = serviceId_example; // String | 
 $version = version_example; // String | 
+$serviceId = serviceId_example; // String | 
+$operationType = operationType_example; // String | 
 $body = body_example; // String | 
 
 try {
-    $api_instance->compareModelwithTargetVersion($serviceId, $version, $body);
+    $api_instance->activateE2EServiceInstances($version, $serviceId, $operationType, $body);
 } catch (Exception $e) {
-    echo 'Exception when calling E2eServiceInstancesApi->compareModelwithTargetVersion: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling E2eServiceInstancesApi->activateE2EServiceInstances: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-perl">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-activateE2EServiceInstances-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
 use WWW::SwaggerClient::E2eServiceInstancesApi;
 
 my $api_instance = WWW::SwaggerClient::E2eServiceInstancesApi->new();
-my $serviceId = serviceId_example; # String | 
 my $version = version_example; # String | 
+my $serviceId = serviceId_example; # String | 
+my $operationType = operationType_example; # String | 
 my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->compareModelwithTargetVersion(serviceId => $serviceId, version => $version, body => $body);
+    $api_instance->activateE2EServiceInstances(version => $version, serviceId => $serviceId, operationType => $operationType, body => $body);
 };
 if ($@) {
-    warn "Exception when calling E2eServiceInstancesApi->compareModelwithTargetVersion: $@\n";
+    warn "Exception when calling E2eServiceInstancesApi->activateE2EServiceInstances: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-python">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-activateE2EServiceInstances-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -1100,15 +1305,16 @@ from pprint import pprint
 
 # create an instance of the API class
 api_instance = swagger_client.E2eServiceInstancesApi()
-serviceId = serviceId_example # String | 
 version = version_example # String | 
+serviceId = serviceId_example # String | 
+operationType = operationType_example # String | 
 body = body_example # String |  (optional)
 
 try: 
-    # Find added and deleted resources of target model for the e2eserviceInstance on a given serviceId 
-    api_instance.compare_modelwith_target_version(serviceId, version, body=body)
+    # Activate/Deactivate 5G slice Service on a specified version and serviceId
+    api_instance.activate_e2_e_service_instances(version, serviceId, operationType, body=body)
 except ApiException as e:
-    print("Exception when calling E2eServiceInstancesApi->compareModelwithTargetVersion: %s\n" % e)</code></pre>
+    print("Exception when calling E2eServiceInstancesApi->activateE2EServiceInstances: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -1120,11 +1326,31 @@ except ApiException as e:
                                   <th width="150px">Name</th>
                                   <th>Description</th>
                                 </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_activateE2EServiceInstances_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
                                   <tr><td style="width:150px;">serviceId*</td>
 <td>
 
 
-    <div id="d2e199_compareModelwithTargetVersion_serviceId">
+    <div id="d2e199_activateE2EServiceInstances_serviceId">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -1140,11 +1366,11 @@ except ApiException as e:
 </td>
 </tr>
 
-                                  <tr><td style="width:150px;">version*</td>
+                                  <tr><td style="width:150px;">operationType*</td>
 <td>
 
 
-    <div id="d2e199_compareModelwithTargetVersion_version">
+    <div id="d2e199_activateE2EServiceInstances_operationType">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -1194,12 +1420,12 @@ $(document).ready(function() {
   }
 
   var view = new JSONSchemaView(schema,2,{isBodyParam: true});
-  var result = $('#d2e199_compareModelwithTargetVersion_body');
+  var result = $('#d2e199_activateE2EServiceInstances_body');
   result.empty();
   result.append(view.render());
 });
 </script>
-<div id="d2e199_compareModelwithTargetVersion_body"></div>
+<div id="d2e199_activateE2EServiceInstances_body"></div>
 </td>
 </tr>
 
@@ -1219,11 +1445,11 @@ $(document).ready(function() {
                         </article>
                       </div>
                       <hr>
-                    <div id="api-E2eServiceInstances-createE2EServiceInstance">
-                      <article id="api-E2eServiceInstances-createE2EServiceInstance-0" data-group="User" data-name="createE2EServiceInstance" data-version="0">
+                    <div id="api-E2eServiceInstances-compareModelwithTargetVersion">
+                      <article id="api-E2eServiceInstances-compareModelwithTargetVersion-0" data-group="User" data-name="compareModelwithTargetVersion" data-version="0">
                         <div class="pull-left">
-                          <h1>createE2EServiceInstance</h1>
-                          <p>Create an E2E Service Instance on a version provided</p>
+                          <h1>compareModelwithTargetVersion</h1>
+                          <p>Find added and deleted resources of target model for the e2eserviceInstance on a given serviceId </p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -1231,29 +1457,29 @@ $(document).ready(function() {
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/modeldifferences</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-java">Java</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-java">Java</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-compareModelwithTargetVersion-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-E2eServiceInstances-createE2EServiceInstance-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/e2eServiceInstances/{version}"</code></pre>
+                          <div class="tab-pane active" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/modeldifferences"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-java">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
@@ -1267,48 +1493,52 @@ public class E2eServiceInstancesApiExample {
     public static void main(String[] args) {
         
         E2eServiceInstancesApi apiInstance = new E2eServiceInstancesApi();
+        String serviceId = serviceId_example; // String | 
         String version = version_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.createE2EServiceInstance(version, body);
+            apiInstance.compareModelwithTargetVersion(serviceId, version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling E2eServiceInstancesApi#createE2EServiceInstance");
+            System.err.println("Exception when calling E2eServiceInstancesApi#compareModelwithTargetVersion");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-android">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-android">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.E2eServiceInstancesApi;
 
 public class E2eServiceInstancesApiExample {
 
     public static void main(String[] args) {
         E2eServiceInstancesApi apiInstance = new E2eServiceInstancesApi();
+        String serviceId = serviceId_example; // String | 
         String version = version_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.createE2EServiceInstance(version, body);
+            apiInstance.compareModelwithTargetVersion(serviceId, version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling E2eServiceInstancesApi#createE2EServiceInstance");
+            System.err.println("Exception when calling E2eServiceInstancesApi#compareModelwithTargetVersion");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-groovy">
+  <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
+                            <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *serviceId = serviceId_example; // 
+String *version = version_example; // 
 String *body = body_example; //  (optional)
 
 E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 
-// Create an E2E Service Instance on a version provided
-[apiInstance createE2EServiceInstanceWith:version
+// Find added and deleted resources of target model for the e2eserviceInstance on a given serviceId 
+[apiInstance compareModelwithTargetVersionWith:serviceId
+    version:version
     body:body
               completionHandler: ^(NSError* error) {
                             if (error) {
@@ -1318,10 +1548,12 @@ E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.E2eServiceInstancesApi()
 
-var api = new SoCasablancaApIs.E2eServiceInstancesApi()
+var serviceId = serviceId_example; // {String} 
 
 var version = version_example; // {String} 
 
@@ -1336,14 +1568,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.createE2EServiceInstance(version, opts, callback);
+api.compareModelwithTargetVersion(serviceId, version, opts, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-angular">
+                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-csharp">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -1352,23 +1584,24 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class createE2EServiceInstanceExample
+    public class compareModelwithTargetVersionExample
     {
         public void main()
         {
             
             var apiInstance = new E2eServiceInstancesApi();
+            var serviceId = serviceId_example;  // String | 
             var version = version_example;  // String | 
             var body = body_example;  // String |  (optional) 
 
             try
             {
-                // Create an E2E Service Instance on a version provided
-                apiInstance.createE2EServiceInstance(version, body);
+                // Find added and deleted resources of target model for the e2eserviceInstance on a given serviceId 
+                apiInstance.compareModelwithTargetVersion(serviceId, version, body);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling E2eServiceInstancesApi.createE2EServiceInstance: " + e.Message );
+                Debug.Print("Exception when calling E2eServiceInstancesApi.compareModelwithTargetVersion: " + e.Message );
             }
         }
     }
@@ -1376,40 +1609,42 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-php">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
 $api_instance = new Swagger\Client\Api\E2eServiceInstancesApi();
+$serviceId = serviceId_example; // String | 
 $version = version_example; // String | 
 $body = body_example; // String | 
 
 try {
-    $api_instance->createE2EServiceInstance($version, $body);
+    $api_instance->compareModelwithTargetVersion($serviceId, $version, $body);
 } catch (Exception $e) {
-    echo 'Exception when calling E2eServiceInstancesApi->createE2EServiceInstance: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling E2eServiceInstancesApi->compareModelwithTargetVersion: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-perl">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
 use WWW::SwaggerClient::E2eServiceInstancesApi;
 
 my $api_instance = WWW::SwaggerClient::E2eServiceInstancesApi->new();
+my $serviceId = serviceId_example; # String | 
 my $version = version_example; # String | 
 my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->createE2EServiceInstance(version => $version, body => $body);
+    $api_instance->compareModelwithTargetVersion(serviceId => $serviceId, version => $version, body => $body);
 };
 if ($@) {
-    warn "Exception when calling E2eServiceInstancesApi->createE2EServiceInstance: $@\n";
+    warn "Exception when calling E2eServiceInstancesApi->compareModelwithTargetVersion: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-python">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-compareModelwithTargetVersion-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -1418,14 +1653,15 @@ from pprint import pprint
 
 # create an instance of the API class
 api_instance = swagger_client.E2eServiceInstancesApi()
+serviceId = serviceId_example # String | 
 version = version_example # String | 
 body = body_example # String |  (optional)
 
 try: 
-    # Create an E2E Service Instance on a version provided
-    api_instance.create_e2_e_service_instance(version, body=body)
+    # Find added and deleted resources of target model for the e2eserviceInstance on a given serviceId 
+    api_instance.compare_modelwith_target_version(serviceId, version, body=body)
 except ApiException as e:
-    print("Exception when calling E2eServiceInstancesApi->createE2EServiceInstance: %s\n" % e)</code></pre>
+    print("Exception when calling E2eServiceInstancesApi->compareModelwithTargetVersion: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -1437,11 +1673,31 @@ except ApiException as e:
                                   <th width="150px">Name</th>
                                   <th>Description</th>
                                 </tr>
+                                  <tr><td style="width:150px;">serviceId*</td>
+<td>
+
+
+    <div id="d2e199_compareModelwithTargetVersion_serviceId">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
                                   <tr><td style="width:150px;">version*</td>
 <td>
 
 
-    <div id="d2e199_createE2EServiceInstance_version">
+    <div id="d2e199_compareModelwithTargetVersion_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -1491,12 +1747,12 @@ $(document).ready(function() {
   }
 
   var view = new JSONSchemaView(schema,2,{isBodyParam: true});
-  var result = $('#d2e199_createE2EServiceInstance_body');
+  var result = $('#d2e199_compareModelwithTargetVersion_body');
   result.empty();
   result.append(view.render());
 });
 </script>
-<div id="d2e199_createE2EServiceInstance_body"></div>
+<div id="d2e199_compareModelwithTargetVersion_body"></div>
 </td>
 </tr>
 
@@ -1516,41 +1772,41 @@ $(document).ready(function() {
                         </article>
                       </div>
                       <hr>
-                    <div id="api-E2eServiceInstances-deleteE2EServiceInstance">
-                      <article id="api-E2eServiceInstances-deleteE2EServiceInstance-0" data-group="User" data-name="deleteE2EServiceInstance" data-version="0">
+                    <div id="api-E2eServiceInstances-createE2EServiceInstance">
+                      <article id="api-E2eServiceInstances-createE2EServiceInstance-0" data-group="User" data-name="createE2EServiceInstance" data-version="0">
                         <div class="pull-left">
-                          <h1>deleteE2EServiceInstance</h1>
-                          <p>Delete E2E Service Instance on a specified version and serviceId</p>
-                        </div>
+                          <h1>createE2EServiceInstance</h1>
+                          <p>Create an E2E Service Instance on a version provided</p>
+                        </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
                         <p></p>
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="delete"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}/{serviceId}</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-java">Java</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-java">Java</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-createE2EServiceInstance-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X DELETE "http://localhost/onap/so/infra/e2eServiceInstances/{version}/{serviceId}"</code></pre>
+                          <div class="tab-pane active" id="examples-E2eServiceInstances-createE2EServiceInstance-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/e2eServiceInstances/{version}"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-java">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
@@ -1565,19 +1821,18 @@ public class E2eServiceInstancesApiExample {
         
         E2eServiceInstancesApi apiInstance = new E2eServiceInstancesApi();
         String version = version_example; // String | 
-        String serviceId = serviceId_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.deleteE2EServiceInstance(version, serviceId, body);
+            apiInstance.createE2EServiceInstance(version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling E2eServiceInstancesApi#deleteE2EServiceInstance");
+            System.err.println("Exception when calling E2eServiceInstancesApi#createE2EServiceInstance");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-android">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-android">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.E2eServiceInstancesApi;
 
 public class E2eServiceInstancesApiExample {
@@ -1585,31 +1840,28 @@ public class E2eServiceInstancesApiExample {
     public static void main(String[] args) {
         E2eServiceInstancesApi apiInstance = new E2eServiceInstancesApi();
         String version = version_example; // String | 
-        String serviceId = serviceId_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.deleteE2EServiceInstance(version, serviceId, body);
+            apiInstance.createE2EServiceInstance(version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling E2eServiceInstancesApi#deleteE2EServiceInstance");
+            System.err.println("Exception when calling E2eServiceInstancesApi#createE2EServiceInstance");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-groovy">
+  <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-objc">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-objc">
                               <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
-String *serviceId = serviceId_example; // 
 String *body = body_example; //  (optional)
 
 E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 
-// Delete E2E Service Instance on a specified version and serviceId
-[apiInstance deleteE2EServiceInstanceWith:version
-    serviceId:serviceId
+// Create an E2E Service Instance on a version provided
+[apiInstance createE2EServiceInstanceWith:version
     body:body
               completionHandler: ^(NSError* error) {
                             if (error) {
@@ -1619,15 +1871,13 @@ E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.E2eServiceInstancesApi()
+var api = new SoGuilinApIs.E2eServiceInstancesApi()
 
 var version = version_example; // {String} 
 
-var serviceId = serviceId_example; // {String} 
-
 var opts = { 
   'body': body_example // {String} 
 };
@@ -1639,14 +1889,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.deleteE2EServiceInstance(version, serviceId, opts, callback);
+api.createE2EServiceInstance(version, opts, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-angular">
+                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-csharp">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -1655,24 +1905,23 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class deleteE2EServiceInstanceExample
+    public class createE2EServiceInstanceExample
     {
         public void main()
         {
             
             var apiInstance = new E2eServiceInstancesApi();
             var version = version_example;  // String | 
-            var serviceId = serviceId_example;  // String | 
             var body = body_example;  // String |  (optional) 
 
             try
             {
-                // Delete E2E Service Instance on a specified version and serviceId
-                apiInstance.deleteE2EServiceInstance(version, serviceId, body);
+                // Create an E2E Service Instance on a version provided
+                apiInstance.createE2EServiceInstance(version, body);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling E2eServiceInstancesApi.deleteE2EServiceInstance: " + e.Message );
+                Debug.Print("Exception when calling E2eServiceInstancesApi.createE2EServiceInstance: " + e.Message );
             }
         }
     }
@@ -1680,42 +1929,40 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-php">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
 $api_instance = new Swagger\Client\Api\E2eServiceInstancesApi();
 $version = version_example; // String | 
-$serviceId = serviceId_example; // String | 
 $body = body_example; // String | 
 
 try {
-    $api_instance->deleteE2EServiceInstance($version, $serviceId, $body);
+    $api_instance->createE2EServiceInstance($version, $body);
 } catch (Exception $e) {
-    echo 'Exception when calling E2eServiceInstancesApi->deleteE2EServiceInstance: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling E2eServiceInstancesApi->createE2EServiceInstance: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-perl">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
 use WWW::SwaggerClient::E2eServiceInstancesApi;
 
 my $api_instance = WWW::SwaggerClient::E2eServiceInstancesApi->new();
 my $version = version_example; # String | 
-my $serviceId = serviceId_example; # String | 
 my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->deleteE2EServiceInstance(version => $version, serviceId => $serviceId, body => $body);
+    $api_instance->createE2EServiceInstance(version => $version, body => $body);
 };
 if ($@) {
-    warn "Exception when calling E2eServiceInstancesApi->deleteE2EServiceInstance: $@\n";
+    warn "Exception when calling E2eServiceInstancesApi->createE2EServiceInstance: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-python">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-createE2EServiceInstance-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -1725,14 +1972,13 @@ from pprint import pprint
 # create an instance of the API class
 api_instance = swagger_client.E2eServiceInstancesApi()
 version = version_example # String | 
-serviceId = serviceId_example # String | 
 body = body_example # String |  (optional)
 
 try: 
-    # Delete E2E Service Instance on a specified version and serviceId
-    api_instance.delete_e2_e_service_instance(version, serviceId, body=body)
+    # Create an E2E Service Instance on a version provided
+    api_instance.create_e2_e_service_instance(version, body=body)
 except ApiException as e:
-    print("Exception when calling E2eServiceInstancesApi->deleteE2EServiceInstance: %s\n" % e)</code></pre>
+    print("Exception when calling E2eServiceInstancesApi->createE2EServiceInstance: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -1748,27 +1994,7 @@ except ApiException as e:
 <td>
 
 
-    <div id="d2e199_deleteE2EServiceInstance_version">
-        <div class="json-schema-view">
-            <div class="primitive">
-                <span class="type">
-                    String
-                </span>
-
-            </div>
-                <div class="inner required">
-                    Required
-                </div>
-        </div>
-    </div>
-</td>
-</tr>
-
-                                  <tr><td style="width:150px;">serviceId*</td>
-<td>
-
-
-    <div id="d2e199_deleteE2EServiceInstance_serviceId">
+    <div id="d2e199_createE2EServiceInstance_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -1818,12 +2044,12 @@ $(document).ready(function() {
   }
 
   var view = new JSONSchemaView(schema,2,{isBodyParam: true});
-  var result = $('#d2e199_deleteE2EServiceInstance_body');
+  var result = $('#d2e199_createE2EServiceInstance_body');
   result.empty();
   result.append(view.render());
 });
 </script>
-<div id="d2e199_deleteE2EServiceInstance_body"></div>
+<div id="d2e199_createE2EServiceInstance_body"></div>
 </td>
 </tr>
 
@@ -1843,11 +2069,11 @@ $(document).ready(function() {
                         </article>
                       </div>
                       <hr>
-                    <div id="api-E2eServiceInstances-getE2EServiceInstances">
-                      <article id="api-E2eServiceInstances-getE2EServiceInstances-0" data-group="User" data-name="getE2EServiceInstances" data-version="0">
+                    <div id="api-E2eServiceInstances-deleteE2EServiceInstance">
+                      <article id="api-E2eServiceInstances-deleteE2EServiceInstance-0" data-group="User" data-name="deleteE2EServiceInstance" data-version="0">
                         <div class="pull-left">
-                          <h1>getE2EServiceInstances</h1>
-                          <p>Find e2eServiceInstances Requests for a given serviceId and operationId</p>
+                          <h1>deleteE2EServiceInstance</h1>
+                          <p>Delete E2E Service Instance on a specified version and serviceId</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -1855,29 +2081,29 @@ $(document).ready(function() {
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/operations/{operationId}</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="delete"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}/{serviceId}</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-java">Java</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-java">Java</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-deleteE2EServiceInstance-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-E2eServiceInstances-getE2EServiceInstances-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/operations/{operationId}"</code></pre>
+                          <div class="tab-pane active" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X DELETE "http://localhost/onap/so/infra/e2eServiceInstances/{version}/{serviceId}"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-java">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
@@ -1891,53 +2117,53 @@ public class E2eServiceInstancesApiExample {
     public static void main(String[] args) {
         
         E2eServiceInstancesApi apiInstance = new E2eServiceInstancesApi();
-        String serviceId = serviceId_example; // String | 
         String version = version_example; // String | 
-        String operationId = operationId_example; // String | 
+        String serviceId = serviceId_example; // String | 
+        String body = body_example; // String | 
         try {
-            apiInstance.getE2EServiceInstances(serviceId, version, operationId);
+            apiInstance.deleteE2EServiceInstance(version, serviceId, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling E2eServiceInstancesApi#getE2EServiceInstances");
+            System.err.println("Exception when calling E2eServiceInstancesApi#deleteE2EServiceInstance");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-android">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-android">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.E2eServiceInstancesApi;
 
 public class E2eServiceInstancesApiExample {
 
     public static void main(String[] args) {
         E2eServiceInstancesApi apiInstance = new E2eServiceInstancesApi();
-        String serviceId = serviceId_example; // String | 
         String version = version_example; // String | 
-        String operationId = operationId_example; // String | 
+        String serviceId = serviceId_example; // String | 
+        String body = body_example; // String | 
         try {
-            apiInstance.getE2EServiceInstances(serviceId, version, operationId);
+            apiInstance.deleteE2EServiceInstance(version, serviceId, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling E2eServiceInstancesApi#getE2EServiceInstances");
+            System.err.println("Exception when calling E2eServiceInstancesApi#deleteE2EServiceInstance");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-groovy">
+  <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">String *serviceId = serviceId_example; // 
-String *version = version_example; // 
-String *operationId = operationId_example; // 
+                            <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
+String *serviceId = serviceId_example; // 
+String *body = body_example; //  (optional)
 
 E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 
-// Find e2eServiceInstances Requests for a given serviceId and operationId
-[apiInstance getE2EServiceInstancesWith:serviceId
-    version:version
-    operationId:operationId
+// Delete E2E Service Instance on a specified version and serviceId
+[apiInstance deleteE2EServiceInstanceWith:version
+    serviceId:serviceId
+    body:body
               completionHandler: ^(NSError* error) {
                             if (error) {
                                 NSLog(@"Error: %@", error);
@@ -1946,17 +2172,18 @@ E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
-
-var api = new SoCasablancaApIs.E2eServiceInstancesApi()
+                            <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var serviceId = serviceId_example; // {String} 
+var api = new SoGuilinApIs.E2eServiceInstancesApi()
 
 var version = version_example; // {String} 
 
-var operationId = operationId_example; // {String} 
+var serviceId = serviceId_example; // {String} 
 
+var opts = { 
+  'body': body_example // {String} 
+};
 
 var callback = function(error, data, response) {
   if (error) {
@@ -1965,14 +2192,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.getE2EServiceInstances(serviceId, version, operationId, callback);
+api.deleteE2EServiceInstance(version, serviceId, opts, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-angular">
+                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-csharp">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -1981,24 +2208,24 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class getE2EServiceInstancesExample
+    public class deleteE2EServiceInstanceExample
     {
         public void main()
         {
             
             var apiInstance = new E2eServiceInstancesApi();
-            var serviceId = serviceId_example;  // String | 
             var version = version_example;  // String | 
-            var operationId = operationId_example;  // String | 
+            var serviceId = serviceId_example;  // String | 
+            var body = body_example;  // String |  (optional) 
 
             try
             {
-                // Find e2eServiceInstances Requests for a given serviceId and operationId
-                apiInstance.getE2EServiceInstances(serviceId, version, operationId);
+                // Delete E2E Service Instance on a specified version and serviceId
+                apiInstance.deleteE2EServiceInstance(version, serviceId, body);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling E2eServiceInstancesApi.getE2EServiceInstances: " + e.Message );
+                Debug.Print("Exception when calling E2eServiceInstancesApi.deleteE2EServiceInstance: " + e.Message );
             }
         }
     }
@@ -2006,42 +2233,42 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-php">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
 $api_instance = new Swagger\Client\Api\E2eServiceInstancesApi();
-$serviceId = serviceId_example; // String | 
 $version = version_example; // String | 
-$operationId = operationId_example; // String | 
+$serviceId = serviceId_example; // String | 
+$body = body_example; // String | 
 
 try {
-    $api_instance->getE2EServiceInstances($serviceId, $version, $operationId);
+    $api_instance->deleteE2EServiceInstance($version, $serviceId, $body);
 } catch (Exception $e) {
-    echo 'Exception when calling E2eServiceInstancesApi->getE2EServiceInstances: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling E2eServiceInstancesApi->deleteE2EServiceInstance: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-perl">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
 use WWW::SwaggerClient::E2eServiceInstancesApi;
 
 my $api_instance = WWW::SwaggerClient::E2eServiceInstancesApi->new();
-my $serviceId = serviceId_example; # String | 
 my $version = version_example; # String | 
-my $operationId = operationId_example; # String | 
+my $serviceId = serviceId_example; # String | 
+my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->getE2EServiceInstances(serviceId => $serviceId, version => $version, operationId => $operationId);
+    $api_instance->deleteE2EServiceInstance(version => $version, serviceId => $serviceId, body => $body);
 };
 if ($@) {
-    warn "Exception when calling E2eServiceInstancesApi->getE2EServiceInstances: $@\n";
+    warn "Exception when calling E2eServiceInstancesApi->deleteE2EServiceInstance: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-python">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-deleteE2EServiceInstance-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -2050,15 +2277,15 @@ from pprint import pprint
 
 # create an instance of the API class
 api_instance = swagger_client.E2eServiceInstancesApi()
-serviceId = serviceId_example # String | 
 version = version_example # String | 
-operationId = operationId_example # String | 
+serviceId = serviceId_example # String | 
+body = body_example # String |  (optional)
 
 try: 
-    # Find e2eServiceInstances Requests for a given serviceId and operationId
-    api_instance.get_e2_e_service_instances(serviceId, version, operationId)
+    # Delete E2E Service Instance on a specified version and serviceId
+    api_instance.delete_e2_e_service_instance(version, serviceId, body=body)
 except ApiException as e:
-    print("Exception when calling E2eServiceInstancesApi->getE2EServiceInstances: %s\n" % e)</code></pre>
+    print("Exception when calling E2eServiceInstancesApi->deleteE2EServiceInstance: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -2070,11 +2297,11 @@ except ApiException as e:
                                   <th width="150px">Name</th>
                                   <th>Description</th>
                                 </tr>
-                                  <tr><td style="width:150px;">serviceId*</td>
+                                  <tr><td style="width:150px;">version*</td>
 <td>
 
 
-    <div id="d2e199_getE2EServiceInstances_serviceId">
+    <div id="d2e199_deleteE2EServiceInstance_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -2090,11 +2317,11 @@ except ApiException as e:
 </td>
 </tr>
 
-                                  <tr><td style="width:150px;">version*</td>
+                                  <tr><td style="width:150px;">serviceId*</td>
 <td>
 
 
-    <div id="d2e199_getE2EServiceInstances_version">
+    <div id="d2e199_deleteE2EServiceInstance_serviceId">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -2110,23 +2337,46 @@ except ApiException as e:
 </td>
 </tr>
 
-                                  <tr><td style="width:150px;">operationId*</td>
+                            </table>
+
+
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body </td>
 <td>
 
 
-    <div id="d2e199_getE2EServiceInstances_operationId">
-        <div class="json-schema-view">
-            <div class="primitive">
-                <span class="type">
-                    String
-                </span>
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : false,
+  "schema" : {
+    "type" : "string"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
 
-            </div>
-                <div class="inner required">
-                    Required
-                </div>
-        </div>
-    </div>
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_deleteE2EServiceInstance_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_deleteE2EServiceInstance_body"></div>
 </td>
 </tr>
 
@@ -2134,8 +2384,6 @@ except ApiException as e:
 
 
 
-
-
                           <h2>Responses</h2>
                             <h3> Status: default - successful operation </h3>
 
@@ -2148,11 +2396,11 @@ except ApiException as e:
                         </article>
                       </div>
                       <hr>
-                    <div id="api-E2eServiceInstances-scaleE2EServiceInstance">
-                      <article id="api-E2eServiceInstances-scaleE2EServiceInstance-0" data-group="User" data-name="scaleE2EServiceInstance" data-version="0">
+                    <div id="api-E2eServiceInstances-getE2EServiceInstances">
+                      <article id="api-E2eServiceInstances-getE2EServiceInstances-0" data-group="User" data-name="getE2EServiceInstances" data-version="0">
                         <div class="pull-left">
-                          <h1>scaleE2EServiceInstance</h1>
-                          <p>Scale E2E Service Instance on a specified version</p>
+                          <h1>getE2EServiceInstances</h1>
+                          <p>Find e2eServiceInstances Requests for a given serviceId and operationId</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -2160,29 +2408,29 @@ except ApiException as e:
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/scale</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/operations/{operationId}</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-java">Java</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-java">Java</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-getE2EServiceInstances-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/scale"</code></pre>
+                          <div class="tab-pane active" id="examples-E2eServiceInstances-getE2EServiceInstances-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/operations/{operationId}"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-java">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
@@ -2196,53 +2444,53 @@ public class E2eServiceInstancesApiExample {
     public static void main(String[] args) {
         
         E2eServiceInstancesApi apiInstance = new E2eServiceInstancesApi();
-        String version = version_example; // String | 
         String serviceId = serviceId_example; // String | 
-        String body = body_example; // String | 
+        String version = version_example; // String | 
+        String operationId = operationId_example; // String | 
         try {
-            apiInstance.scaleE2EServiceInstance(version, serviceId, body);
+            apiInstance.getE2EServiceInstances(serviceId, version, operationId);
         } catch (ApiException e) {
-            System.err.println("Exception when calling E2eServiceInstancesApi#scaleE2EServiceInstance");
+            System.err.println("Exception when calling E2eServiceInstancesApi#getE2EServiceInstances");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-android">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-android">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.E2eServiceInstancesApi;
 
 public class E2eServiceInstancesApiExample {
 
     public static void main(String[] args) {
         E2eServiceInstancesApi apiInstance = new E2eServiceInstancesApi();
-        String version = version_example; // String | 
         String serviceId = serviceId_example; // String | 
-        String body = body_example; // String | 
+        String version = version_example; // String | 
+        String operationId = operationId_example; // String | 
         try {
-            apiInstance.scaleE2EServiceInstance(version, serviceId, body);
+            apiInstance.getE2EServiceInstances(serviceId, version, operationId);
         } catch (ApiException e) {
-            System.err.println("Exception when calling E2eServiceInstancesApi#scaleE2EServiceInstance");
+            System.err.println("Exception when calling E2eServiceInstancesApi#getE2EServiceInstances");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-groovy">
+  <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
-String *serviceId = serviceId_example; // 
-String *body = body_example; //  (optional)
+                            <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *serviceId = serviceId_example; // 
+String *version = version_example; // 
+String *operationId = operationId_example; // 
 
 E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 
-// Scale E2E Service Instance on a specified version
-[apiInstance scaleE2EServiceInstanceWith:version
-    serviceId:serviceId
-    body:body
+// Find e2eServiceInstances Requests for a given serviceId and operationId
+[apiInstance getE2EServiceInstancesWith:serviceId
+    version:version
+    operationId:operationId
               completionHandler: ^(NSError* error) {
                             if (error) {
                                 NSLog(@"Error: %@", error);
@@ -2251,18 +2499,17 @@ E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.E2eServiceInstancesApi()
 
-var api = new SoCasablancaApIs.E2eServiceInstancesApi()
+var serviceId = serviceId_example; // {String} 
 
 var version = version_example; // {String} 
 
-var serviceId = serviceId_example; // {String} 
+var operationId = operationId_example; // {String} 
 
-var opts = { 
-  'body': body_example // {String} 
-};
 
 var callback = function(error, data, response) {
   if (error) {
@@ -2271,14 +2518,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.scaleE2EServiceInstance(version, serviceId, opts, callback);
+api.getE2EServiceInstances(serviceId, version, operationId, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-angular">
+                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-csharp">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -2287,24 +2534,24 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class scaleE2EServiceInstanceExample
+    public class getE2EServiceInstancesExample
     {
         public void main()
         {
             
             var apiInstance = new E2eServiceInstancesApi();
-            var version = version_example;  // String | 
             var serviceId = serviceId_example;  // String | 
-            var body = body_example;  // String |  (optional) 
+            var version = version_example;  // String | 
+            var operationId = operationId_example;  // String | 
 
             try
             {
-                // Scale E2E Service Instance on a specified version
-                apiInstance.scaleE2EServiceInstance(version, serviceId, body);
+                // Find e2eServiceInstances Requests for a given serviceId and operationId
+                apiInstance.getE2EServiceInstances(serviceId, version, operationId);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling E2eServiceInstancesApi.scaleE2EServiceInstance: " + e.Message );
+                Debug.Print("Exception when calling E2eServiceInstancesApi.getE2EServiceInstances: " + e.Message );
             }
         }
     }
@@ -2312,42 +2559,42 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-php">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
 $api_instance = new Swagger\Client\Api\E2eServiceInstancesApi();
-$version = version_example; // String | 
 $serviceId = serviceId_example; // String | 
-$body = body_example; // String | 
+$version = version_example; // String | 
+$operationId = operationId_example; // String | 
 
 try {
-    $api_instance->scaleE2EServiceInstance($version, $serviceId, $body);
+    $api_instance->getE2EServiceInstances($serviceId, $version, $operationId);
 } catch (Exception $e) {
-    echo 'Exception when calling E2eServiceInstancesApi->scaleE2EServiceInstance: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling E2eServiceInstancesApi->getE2EServiceInstances: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-perl">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
 use WWW::SwaggerClient::E2eServiceInstancesApi;
 
 my $api_instance = WWW::SwaggerClient::E2eServiceInstancesApi->new();
-my $version = version_example; # String | 
 my $serviceId = serviceId_example; # String | 
-my $body = WWW::SwaggerClient::Object::String->new(); # String | 
+my $version = version_example; # String | 
+my $operationId = operationId_example; # String | 
 
 eval { 
-    $api_instance->scaleE2EServiceInstance(version => $version, serviceId => $serviceId, body => $body);
+    $api_instance->getE2EServiceInstances(serviceId => $serviceId, version => $version, operationId => $operationId);
 };
 if ($@) {
-    warn "Exception when calling E2eServiceInstancesApi->scaleE2EServiceInstance: $@\n";
+    warn "Exception when calling E2eServiceInstancesApi->getE2EServiceInstances: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-python">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-getE2EServiceInstances-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -2356,15 +2603,15 @@ from pprint import pprint
 
 # create an instance of the API class
 api_instance = swagger_client.E2eServiceInstancesApi()
-version = version_example # String | 
 serviceId = serviceId_example # String | 
-body = body_example # String |  (optional)
+version = version_example # String | 
+operationId = operationId_example # String | 
 
 try: 
-    # Scale E2E Service Instance on a specified version
-    api_instance.scale_e2_e_service_instance(version, serviceId, body=body)
+    # Find e2eServiceInstances Requests for a given serviceId and operationId
+    api_instance.get_e2_e_service_instances(serviceId, version, operationId)
 except ApiException as e:
-    print("Exception when calling E2eServiceInstancesApi->scaleE2EServiceInstance: %s\n" % e)</code></pre>
+    print("Exception when calling E2eServiceInstancesApi->getE2EServiceInstances: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -2376,11 +2623,11 @@ except ApiException as e:
                                   <th width="150px">Name</th>
                                   <th>Description</th>
                                 </tr>
-                                  <tr><td style="width:150px;">version*</td>
+                                  <tr><td style="width:150px;">serviceId*</td>
 <td>
 
 
-    <div id="d2e199_scaleE2EServiceInstance_version">
+    <div id="d2e199_getE2EServiceInstances_serviceId">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -2396,11 +2643,11 @@ except ApiException as e:
 </td>
 </tr>
 
-                                  <tr><td style="width:150px;">serviceId*</td>
+                                  <tr><td style="width:150px;">version*</td>
 <td>
 
 
-    <div id="d2e199_scaleE2EServiceInstance_serviceId">
+    <div id="d2e199_getE2EServiceInstances_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -2416,46 +2663,23 @@ except ApiException as e:
 </td>
 </tr>
 
-                            </table>
-
-
-                            <div class="methodsubtabletitle">Body parameters</div>
-                            <table id="methodsubtable">
-                              <tr>
-                                <th width="150px">Name</th>
-                                <th>Description</th>
-                              </tr>
-                                <tr><td style="width:150px;">body </td>
+                                  <tr><td style="width:150px;">operationId*</td>
 <td>
 
 
-<script>
-$(document).ready(function() {
-  var schemaWrapper = {
-  "in" : "body",
-  "name" : "body",
-  "required" : false,
-  "schema" : {
-    "type" : "string"
-  }
-};
-  var schema = schemaWrapper.schema;
-  if (schema.$ref != null) {
-    schema = defsParser.$refs.get(schema.$ref);
-  } else {
-    schemaWrapper.definitions = Object.assign({}, defs);
-    $RefParser.dereference(schemaWrapper).catch(function(err) {
-      console.log(err);
-    });
-  }
+    <div id="d2e199_getE2EServiceInstances_operationId">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
 
-  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
-  var result = $('#d2e199_scaleE2EServiceInstance_body');
-  result.empty();
-  result.append(view.render());
-});
-</script>
-<div id="d2e199_scaleE2EServiceInstance_body"></div>
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
 </td>
 </tr>
 
@@ -2463,6 +2687,8 @@ $(document).ready(function() {
 
 
 
+
+
                           <h2>Responses</h2>
                             <h3> Status: default - successful operation </h3>
 
@@ -2475,11 +2701,11 @@ $(document).ready(function() {
                         </article>
                       </div>
                       <hr>
-                    <div id="api-E2eServiceInstances-updateE2EServiceInstance">
-                      <article id="api-E2eServiceInstances-updateE2EServiceInstance-0" data-group="User" data-name="updateE2EServiceInstance" data-version="0">
+                    <div id="api-E2eServiceInstances-scaleE2EServiceInstance">
+                      <article id="api-E2eServiceInstances-scaleE2EServiceInstance-0" data-group="User" data-name="scaleE2EServiceInstance" data-version="0">
                         <div class="pull-left">
-                          <h1>updateE2EServiceInstance</h1>
-                          <p>Update an E2E Service Instance on a version provided and serviceId</p>
+                          <h1>scaleE2EServiceInstance</h1>
+                          <p>Scale E2E Service Instance on a specified version</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -2487,29 +2713,29 @@ $(document).ready(function() {
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="put"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}/{serviceId}</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/scale</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-java">Java</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-java">Java</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-scaleE2EServiceInstance-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X PUT "http://localhost/onap/so/infra/e2eServiceInstances/{version}/{serviceId}"</code></pre>
+                          <div class="tab-pane active" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/scale"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-java">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
@@ -2527,16 +2753,16 @@ public class E2eServiceInstancesApiExample {
         String serviceId = serviceId_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.updateE2EServiceInstance(version, serviceId, body);
+            apiInstance.scaleE2EServiceInstance(version, serviceId, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling E2eServiceInstancesApi#updateE2EServiceInstance");
+            System.err.println("Exception when calling E2eServiceInstancesApi#scaleE2EServiceInstance");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-android">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-android">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.E2eServiceInstancesApi;
 
 public class E2eServiceInstancesApiExample {
@@ -2547,27 +2773,27 @@ public class E2eServiceInstancesApiExample {
         String serviceId = serviceId_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.updateE2EServiceInstance(version, serviceId, body);
+            apiInstance.scaleE2EServiceInstance(version, serviceId, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling E2eServiceInstancesApi#updateE2EServiceInstance");
+            System.err.println("Exception when calling E2eServiceInstancesApi#scaleE2EServiceInstance");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-groovy">
+  <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-objc">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-objc">
                               <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
 String *serviceId = serviceId_example; // 
 String *body = body_example; //  (optional)
 
 E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 
-// Update an E2E Service Instance on a version provided and serviceId
-[apiInstance updateE2EServiceInstanceWith:version
+// Scale E2E Service Instance on a specified version
+[apiInstance scaleE2EServiceInstanceWith:version
     serviceId:serviceId
     body:body
               completionHandler: ^(NSError* error) {
@@ -2578,10 +2804,10 @@ E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.E2eServiceInstancesApi()
+var api = new SoGuilinApIs.E2eServiceInstancesApi()
 
 var version = version_example; // {String} 
 
@@ -2598,14 +2824,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.updateE2EServiceInstance(version, serviceId, opts, callback);
+api.scaleE2EServiceInstance(version, serviceId, opts, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-angular">
+                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-csharp">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -2614,7 +2840,7 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class updateE2EServiceInstanceExample
+    public class scaleE2EServiceInstanceExample
     {
         public void main()
         {
@@ -2626,12 +2852,12 @@ namespace Example
 
             try
             {
-                // Update an E2E Service Instance on a version provided and serviceId
-                apiInstance.updateE2EServiceInstance(version, serviceId, body);
+                // Scale E2E Service Instance on a specified version
+                apiInstance.scaleE2EServiceInstance(version, serviceId, body);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling E2eServiceInstancesApi.updateE2EServiceInstance: " + e.Message );
+                Debug.Print("Exception when calling E2eServiceInstancesApi.scaleE2EServiceInstance: " + e.Message );
             }
         }
     }
@@ -2639,7 +2865,7 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-php">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
@@ -2649,14 +2875,14 @@ $serviceId = serviceId_example; // String |
 $body = body_example; // String | 
 
 try {
-    $api_instance->updateE2EServiceInstance($version, $serviceId, $body);
+    $api_instance->scaleE2EServiceInstance($version, $serviceId, $body);
 } catch (Exception $e) {
-    echo 'Exception when calling E2eServiceInstancesApi->updateE2EServiceInstance: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling E2eServiceInstancesApi->scaleE2EServiceInstance: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-perl">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
 use WWW::SwaggerClient::E2eServiceInstancesApi;
@@ -2667,14 +2893,14 @@ my $serviceId = serviceId_example; # String |
 my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->updateE2EServiceInstance(version => $version, serviceId => $serviceId, body => $body);
+    $api_instance->scaleE2EServiceInstance(version => $version, serviceId => $serviceId, body => $body);
 };
 if ($@) {
-    warn "Exception when calling E2eServiceInstancesApi->updateE2EServiceInstance: $@\n";
+    warn "Exception when calling E2eServiceInstancesApi->scaleE2EServiceInstance: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-python">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-scaleE2EServiceInstance-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -2688,10 +2914,10 @@ serviceId = serviceId_example # String |
 body = body_example # String |  (optional)
 
 try: 
-    # Update an E2E Service Instance on a version provided and serviceId
-    api_instance.update_e2_e_service_instance(version, serviceId, body=body)
+    # Scale E2E Service Instance on a specified version
+    api_instance.scale_e2_e_service_instance(version, serviceId, body=body)
 except ApiException as e:
-    print("Exception when calling E2eServiceInstancesApi->updateE2EServiceInstance: %s\n" % e)</code></pre>
+    print("Exception when calling E2eServiceInstancesApi->scaleE2EServiceInstance: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -2707,7 +2933,7 @@ except ApiException as e:
 <td>
 
 
-    <div id="d2e199_updateE2EServiceInstance_version">
+    <div id="d2e199_scaleE2EServiceInstance_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -2727,7 +2953,7 @@ except ApiException as e:
 <td>
 
 
-    <div id="d2e199_updateE2EServiceInstance_serviceId">
+    <div id="d2e199_scaleE2EServiceInstance_serviceId">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -2777,12 +3003,12 @@ $(document).ready(function() {
   }
 
   var view = new JSONSchemaView(schema,2,{isBodyParam: true});
-  var result = $('#d2e199_updateE2EServiceInstance_body');
+  var result = $('#d2e199_scaleE2EServiceInstance_body');
   result.empty();
   result.append(view.render());
 });
 </script>
-<div id="d2e199_updateE2EServiceInstance_body"></div>
+<div id="d2e199_scaleE2EServiceInstance_body"></div>
 </td>
 </tr>
 
@@ -2802,14 +3028,11 @@ $(document).ready(function() {
                         </article>
                       </div>
                       <hr>
-                  </section>
-                <section id="api-Globalhealthcheck">
-                  <h1>Globalhealthcheck</h1>
-                    <div id="api-Globalhealthcheck-globalHealthcheck">
-                      <article id="api-Globalhealthcheck-globalHealthcheck-0" data-group="User" data-name="globalHealthcheck" data-version="0">
+                    <div id="api-E2eServiceInstances-updateE2EServiceInstance">
+                      <article id="api-E2eServiceInstances-updateE2EServiceInstance-0" data-group="User" data-name="updateE2EServiceInstance" data-version="0">
                         <div class="pull-left">
-                          <h1>globalHealthcheck</h1>
-                          <p>Performing global health check</p>
+                          <h1>updateE2EServiceInstance</h1>
+                          <p>Update an E2E Service Instance on a version provided and serviceId</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -2817,81 +3040,89 @@ $(document).ready(function() {
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/globalhealthcheck</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="put"><code><span class="pln">/onap/so/infra/e2eServiceInstances/{version}/{serviceId}</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-Globalhealthcheck-globalHealthcheck-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-java">Java</a></li>
-                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-java">Java</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-E2eServiceInstances-updateE2EServiceInstance-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-Globalhealthcheck-globalHealthcheck-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/globalhealthcheck?enableBpmn="</code></pre>
+                          <div class="tab-pane active" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X PUT "http://localhost/onap/so/infra/e2eServiceInstances/{version}/{serviceId}"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-java">
+                          <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
-import io.swagger.client.api.GlobalhealthcheckApi;
+import io.swagger.client.api.E2eServiceInstancesApi;
 
 import java.io.File;
 import java.util.*;
 
-public class GlobalhealthcheckApiExample {
+public class E2eServiceInstancesApiExample {
 
     public static void main(String[] args) {
         
-        GlobalhealthcheckApi apiInstance = new GlobalhealthcheckApi();
-        Boolean enableBpmn = true; // Boolean | 
+        E2eServiceInstancesApi apiInstance = new E2eServiceInstancesApi();
+        String version = version_example; // String | 
+        String serviceId = serviceId_example; // String | 
+        String body = body_example; // String | 
         try {
-            apiInstance.globalHealthcheck(enableBpmn);
+            apiInstance.updateE2EServiceInstance(version, serviceId, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling GlobalhealthcheckApi#globalHealthcheck");
+            System.err.println("Exception when calling E2eServiceInstancesApi#updateE2EServiceInstance");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-android">
-                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.GlobalhealthcheckApi;
+                          <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.E2eServiceInstancesApi;
 
-public class GlobalhealthcheckApiExample {
+public class E2eServiceInstancesApiExample {
 
     public static void main(String[] args) {
-        GlobalhealthcheckApi apiInstance = new GlobalhealthcheckApi();
-        Boolean enableBpmn = true; // Boolean | 
+        E2eServiceInstancesApi apiInstance = new E2eServiceInstancesApi();
+        String version = version_example; // String | 
+        String serviceId = serviceId_example; // String | 
+        String body = body_example; // String | 
         try {
-            apiInstance.globalHealthcheck(enableBpmn);
+            apiInstance.updateE2EServiceInstance(version, serviceId, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling GlobalhealthcheckApi#globalHealthcheck");
+            System.err.println("Exception when calling E2eServiceInstancesApi#updateE2EServiceInstance");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-groovy">
+  <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">Boolean *enableBpmn = true; //  (optional) (default to true)
+                            <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
+String *serviceId = serviceId_example; // 
+String *body = body_example; //  (optional)
 
-GlobalhealthcheckApi *apiInstance = [[GlobalhealthcheckApi alloc] init];
+E2eServiceInstancesApi *apiInstance = [[E2eServiceInstancesApi alloc] init];
 
-// Performing global health check
-[apiInstance globalHealthcheckWith:enableBpmn
+// Update an E2E Service Instance on a version provided and serviceId
+[apiInstance updateE2EServiceInstanceWith:version
+    serviceId:serviceId
+    body:body
               completionHandler: ^(NSError* error) {
                             if (error) {
                                 NSLog(@"Error: %@", error);
@@ -2900,13 +3131,17 @@ GlobalhealthcheckApi *apiInstance = [[GlobalhealthcheckApi alloc] init];
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.GlobalhealthcheckApi()
+var api = new SoGuilinApIs.E2eServiceInstancesApi()
+
+var version = version_example; // {String} 
+
+var serviceId = serviceId_example; // {String} 
 
 var opts = { 
-  'enableBpmn': true // {Boolean
+  'body': body_example // {String
 };
 
 var callback = function(error, data, response) {
@@ -2916,14 +3151,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.globalHealthcheck(opts, callback);
+api.updateE2EServiceInstance(version, serviceId, opts, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-angular">
+                            <!--<div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-csharp">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -2932,22 +3167,24 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class globalHealthcheckExample
+    public class updateE2EServiceInstanceExample
     {
         public void main()
         {
             
-            var apiInstance = new GlobalhealthcheckApi();
-            var enableBpmn = true;  // Boolean |  (optional)  (default to true)
+            var apiInstance = new E2eServiceInstancesApi();
+            var version = version_example;  // String | 
+            var serviceId = serviceId_example;  // String | 
+            var body = body_example;  // String |  (optional) 
 
             try
             {
-                // Performing global health check
-                apiInstance.globalHealthcheck(enableBpmn);
+                // Update an E2E Service Instance on a version provided and serviceId
+                apiInstance.updateE2EServiceInstance(version, serviceId, body);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling GlobalhealthcheckApi.globalHealthcheck: " + e.Message );
+                Debug.Print("Exception when calling E2eServiceInstancesApi.updateE2EServiceInstance: " + e.Message );
             }
         }
     }
@@ -2955,38 +3192,42 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-php">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
-$api_instance = new Swagger\Client\Api\GlobalhealthcheckApi();
-$enableBpmn = true; // Boolean | 
+$api_instance = new Swagger\Client\Api\E2eServiceInstancesApi();
+$version = version_example; // String | 
+$serviceId = serviceId_example; // String | 
+$body = body_example; // String | 
 
 try {
-    $api_instance->globalHealthcheck($enableBpmn);
+    $api_instance->updateE2EServiceInstance($version, $serviceId, $body);
 } catch (Exception $e) {
-    echo 'Exception when calling GlobalhealthcheckApi->globalHealthcheck: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling E2eServiceInstancesApi->updateE2EServiceInstance: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-perl">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
-use WWW::SwaggerClient::GlobalhealthcheckApi;
+use WWW::SwaggerClient::E2eServiceInstancesApi;
 
-my $api_instance = WWW::SwaggerClient::GlobalhealthcheckApi->new();
-my $enableBpmn = true; # Boolean | 
+my $api_instance = WWW::SwaggerClient::E2eServiceInstancesApi->new();
+my $version = version_example; # String | 
+my $serviceId = serviceId_example; # String | 
+my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->globalHealthcheck(enableBpmn => $enableBpmn);
+    $api_instance->updateE2EServiceInstance(version => $version, serviceId => $serviceId, body => $body);
 };
 if ($@) {
-    warn "Exception when calling GlobalhealthcheckApi->globalHealthcheck: $@\n";
+    warn "Exception when calling E2eServiceInstancesApi->updateE2EServiceInstance: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-python">
+                            <div class="tab-pane" id="examples-E2eServiceInstances-updateE2EServiceInstance-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -2994,41 +3235,4421 @@ from swagger_client.rest import ApiException
 from pprint import pprint
 
 # create an instance of the API class
-api_instance = swagger_client.GlobalhealthcheckApi()
-enableBpmn = true # Boolean |  (optional) (default to true)
+api_instance = swagger_client.E2eServiceInstancesApi()
+version = version_example # String | 
+serviceId = serviceId_example # String | 
+body = body_example # String |  (optional)
 
 try: 
-    # Performing global health check
-    api_instance.global_healthcheck(enableBpmn=enableBpmn)
+    # Update an E2E Service Instance on a version provided and serviceId
+    api_instance.update_e2_e_service_instance(version, serviceId, body=body)
 except ApiException as e:
-    print("Exception when calling GlobalhealthcheckApi->globalHealthcheck: %s\n" % e)</code></pre>
+    print("Exception when calling E2eServiceInstancesApi->updateE2EServiceInstance: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
                           <h2>Parameters</h2>
 
-
-
-
-
-                            <div class="methodsubtabletitle">Query parameters</div>
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_updateE2EServiceInstance_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                                  <tr><td style="width:150px;">serviceId*</td>
+<td>
+
+
+    <div id="d2e199_updateE2EServiceInstance_serviceId">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body </td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : false,
+  "schema" : {
+    "type" : "string"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_updateE2EServiceInstance_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_updateE2EServiceInstance_body"></div>
+</td>
+</tr>
+
+                            </table>
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                  </section>
+                <section id="api-Globalhealthcheck">
+                  <h1>Globalhealthcheck</h1>
+                    <div id="api-Globalhealthcheck-globalHealthcheck">
+                      <article id="api-Globalhealthcheck-globalHealthcheck-0" data-group="User" data-name="globalHealthcheck" data-version="0">
+                        <div class="pull-left">
+                          <h1>globalHealthcheck</h1>
+                          <p>Performing global health check</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/globalhealthcheck</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-Globalhealthcheck-globalHealthcheck-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-java">Java</a></li>
+                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-Globalhealthcheck-globalHealthcheck-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-Globalhealthcheck-globalHealthcheck-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/globalhealthcheck?enableBpmn="</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.GlobalhealthcheckApi;
+
+import java.io.File;
+import java.util.*;
+
+public class GlobalhealthcheckApiExample {
+
+    public static void main(String[] args) {
+        
+        GlobalhealthcheckApi apiInstance = new GlobalhealthcheckApi();
+        Boolean enableBpmn = true; // Boolean | 
+        try {
+            apiInstance.globalHealthcheck(enableBpmn);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling GlobalhealthcheckApi#globalHealthcheck");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.GlobalhealthcheckApi;
+
+public class GlobalhealthcheckApiExample {
+
+    public static void main(String[] args) {
+        GlobalhealthcheckApi apiInstance = new GlobalhealthcheckApi();
+        Boolean enableBpmn = true; // Boolean | 
+        try {
+            apiInstance.globalHealthcheck(enableBpmn);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling GlobalhealthcheckApi#globalHealthcheck");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">Boolean *enableBpmn = true; //  (optional) (default to true)
+
+GlobalhealthcheckApi *apiInstance = [[GlobalhealthcheckApi alloc] init];
+
+// Performing global health check
+[apiInstance globalHealthcheckWith:enableBpmn
+              completionHandler: ^(NSError* error) {
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.GlobalhealthcheckApi()
+
+var opts = { 
+  'enableBpmn': true // {Boolean} 
+};
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully.');
+  }
+};
+api.globalHealthcheck(opts, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class globalHealthcheckExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new GlobalhealthcheckApi();
+            var enableBpmn = true;  // Boolean |  (optional)  (default to true)
+
+            try
+            {
+                // Performing global health check
+                apiInstance.globalHealthcheck(enableBpmn);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling GlobalhealthcheckApi.globalHealthcheck: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\GlobalhealthcheckApi();
+$enableBpmn = true; // Boolean | 
+
+try {
+    $api_instance->globalHealthcheck($enableBpmn);
+} catch (Exception $e) {
+    echo 'Exception when calling GlobalhealthcheckApi->globalHealthcheck: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::GlobalhealthcheckApi;
+
+my $api_instance = WWW::SwaggerClient::GlobalhealthcheckApi->new();
+my $enableBpmn = true; # Boolean | 
+
+eval { 
+    $api_instance->globalHealthcheck(enableBpmn => $enableBpmn);
+};
+if ($@) {
+    warn "Exception when calling GlobalhealthcheckApi->globalHealthcheck: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Globalhealthcheck-globalHealthcheck-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.GlobalhealthcheckApi()
+enableBpmn = true # Boolean |  (optional) (default to true)
+
+try: 
+    # Performing global health check
+    api_instance.global_healthcheck(enableBpmn=enableBpmn)
+except ApiException as e:
+    print("Exception when calling GlobalhealthcheckApi->globalHealthcheck: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+
+
+
+
+                            <div class="methodsubtabletitle">Query parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">enableBpmn</td>
+<td>
+
+
+    <div id="d2e199_globalHealthcheck_enableBpmn">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    Boolean
+                </span>
+
+            </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                  </section>
+                <section id="api-Nodehealthcheck">
+                  <h1>Nodehealthcheck</h1>
+                    <div id="api-Nodehealthcheck-nodeHealthcheck">
+                      <article id="api-Nodehealthcheck-nodeHealthcheck-0" data-group="User" data-name="nodeHealthcheck" data-version="0">
+                        <div class="pull-left">
+                          <h1>nodeHealthcheck</h1>
+                          <p>Performing node health check</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/nodehealthcheck</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-java">Java</a></li>
+                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-Nodehealthcheck-nodeHealthcheck-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/nodehealthcheck"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.NodehealthcheckApi;
+
+import java.io.File;
+import java.util.*;
+
+public class NodehealthcheckApiExample {
+
+    public static void main(String[] args) {
+        
+        NodehealthcheckApi apiInstance = new NodehealthcheckApi();
+        try {
+            apiInstance.nodeHealthcheck();
+        } catch (ApiException e) {
+            System.err.println("Exception when calling NodehealthcheckApi#nodeHealthcheck");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.NodehealthcheckApi;
+
+public class NodehealthcheckApiExample {
+
+    public static void main(String[] args) {
+        NodehealthcheckApi apiInstance = new NodehealthcheckApi();
+        try {
+            apiInstance.nodeHealthcheck();
+        } catch (ApiException e) {
+            System.err.println("Exception when calling NodehealthcheckApi#nodeHealthcheck");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">
+NodehealthcheckApi *apiInstance = [[NodehealthcheckApi alloc] init];
+
+// Performing node health check
+[apiInstance nodeHealthcheckWithCompletionHandler: 
+              ^(NSError* error) {
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.NodehealthcheckApi()
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully.');
+  }
+};
+api.nodeHealthcheck(callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class nodeHealthcheckExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new NodehealthcheckApi();
+
+            try
+            {
+                // Performing node health check
+                apiInstance.nodeHealthcheck();
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling NodehealthcheckApi.nodeHealthcheck: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\NodehealthcheckApi();
+
+try {
+    $api_instance->nodeHealthcheck();
+} catch (Exception $e) {
+    echo 'Exception when calling NodehealthcheckApi->nodeHealthcheck: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::NodehealthcheckApi;
+
+my $api_instance = WWW::SwaggerClient::NodehealthcheckApi->new();
+
+eval { 
+    $api_instance->nodeHealthcheck();
+};
+if ($@) {
+    warn "Exception when calling NodehealthcheckApi->nodeHealthcheck: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.NodehealthcheckApi()
+
+try: 
+    # Performing node health check
+    api_instance.node_healthcheck()
+except ApiException as e:
+    print("Exception when calling NodehealthcheckApi->nodeHealthcheck: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+
+
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                  </section>
+                <section id="api-Onap3gppServiceInstances">
+                  <h1>Onap3gppServiceInstances</h1>
+                    <div id="api-Onap3gppServiceInstances-activate3gppService">
+                      <article id="api-Onap3gppServiceInstances-activate3gppService-0" data-group="User" data-name="activate3gppService" data-version="0">
+                        <div class="pull-left">
+                          <h1>activate3gppService</h1>
+                          <p>Activate a 3GPP Service Instance on a version provided</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/3gppservices/{version}/activate</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-Onap3gppServiceInstances-activate3gppService-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-activate3gppService-0-java">Java</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-activate3gppService-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-Onap3gppServiceInstances-activate3gppService-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-activate3gppService-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-activate3gppService-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-Onap3gppServiceInstances-activate3gppService-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-activate3gppService-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-activate3gppService-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-activate3gppService-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-activate3gppService-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-Onap3gppServiceInstances-activate3gppService-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/3gppservices/{version}/activate"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-Onap3gppServiceInstances-activate3gppService-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.Onap3gppServiceInstancesApi;
+
+import java.io.File;
+import java.util.*;
+
+public class Onap3gppServiceInstancesApiExample {
+
+    public static void main(String[] args) {
+        
+        Onap3gppServiceInstancesApi apiInstance = new Onap3gppServiceInstancesApi();
+        3gppServiceActivation body = ; // 3gppServiceActivation | 
+        String version = version_example; // String | 
+        try {
+            3gppServiceResponse result = apiInstance.activate3gppService(body, version);
+            System.out.println(result);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling Onap3gppServiceInstancesApi#activate3gppService");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-Onap3gppServiceInstances-activate3gppService-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.Onap3gppServiceInstancesApi;
+
+public class Onap3gppServiceInstancesApiExample {
+
+    public static void main(String[] args) {
+        Onap3gppServiceInstancesApi apiInstance = new Onap3gppServiceInstancesApi();
+        3gppServiceActivation body = ; // 3gppServiceActivation | 
+        String version = version_example; // String | 
+        try {
+            3gppServiceResponse result = apiInstance.activate3gppService(body, version);
+            System.out.println(result);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling Onap3gppServiceInstancesApi#activate3gppService");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-Onap3gppServiceInstances-activate3gppService-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-activate3gppService-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">3gppServiceActivation *body = ; // 
+String *version = version_example; // 
+
+Onap3gppServiceInstancesApi *apiInstance = [[Onap3gppServiceInstancesApi alloc] init];
+
+// Activate a 3GPP Service Instance on a version provided
+[apiInstance activate3gppServiceWith:body
+    version:version
+              completionHandler: ^(3gppServiceResponse output, NSError* error) {
+                            if (output) {
+                                NSLog(@"%@", output);
+                            }
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-activate3gppService-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.Onap3gppServiceInstancesApi()
+
+var body = ; // {3gppServiceActivation} 
+
+var version = version_example; // {String} 
+
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully. Returned data: ' + data);
+  }
+};
+api.activate3gppService(body, version, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-Onap3gppServiceInstances-activate3gppService-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-activate3gppService-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class activate3gppServiceExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new Onap3gppServiceInstancesApi();
+            var body = new 3gppServiceActivation(); // 3gppServiceActivation | 
+            var version = version_example;  // String | 
+
+            try
+            {
+                // Activate a 3GPP Service Instance on a version provided
+                3gppServiceResponse result = apiInstance.activate3gppService(body, version);
+                Debug.WriteLine(result);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling Onap3gppServiceInstancesApi.activate3gppService: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-activate3gppService-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\Onap3gppServiceInstancesApi();
+$body = ; // 3gppServiceActivation | 
+$version = version_example; // String | 
+
+try {
+    $result = $api_instance->activate3gppService($body, $version);
+    print_r($result);
+} catch (Exception $e) {
+    echo 'Exception when calling Onap3gppServiceInstancesApi->activate3gppService: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-activate3gppService-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::Onap3gppServiceInstancesApi;
+
+my $api_instance = WWW::SwaggerClient::Onap3gppServiceInstancesApi->new();
+my $body = WWW::SwaggerClient::Object::3gppServiceActivation->new(); # 3gppServiceActivation | 
+my $version = version_example; # String | 
+
+eval { 
+    my $result = $api_instance->activate3gppService(body => $body, version => $version);
+    print Dumper($result);
+};
+if ($@) {
+    warn "Exception when calling Onap3gppServiceInstancesApi->activate3gppService: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-activate3gppService-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.Onap3gppServiceInstancesApi()
+body =  # 3gppServiceActivation | 
+version = version_example # String | 
+
+try: 
+    # Activate a 3GPP Service Instance on a version provided
+    api_response = api_instance.activate3gpp_service(body, version)
+    pprint(api_response)
+except ApiException as e:
+    print("Exception when calling Onap3gppServiceInstancesApi->activate3gppService: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_activate3gppService_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body <span style="color:red;">*</span></td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : true,
+  "schema" : {
+    "$ref" : "#/definitions/3gppServiceActivation"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_activate3gppService_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_activate3gppService_body"></div>
+</td>
+</tr>
+
+                            </table>
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                                <li class="active">
+                                  <a data-toggle="tab" href="#responses-activate3gppService-default-schema">Schema</a>
+                                </li>
+
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                                <div class="tab-pane active" id="responses-activate3gppService-default-schema">
+                                  <div id='responses-activate3gppService-default-schema-default' style="padding: 30px; border-left: 1px solid #eee; border-right: 1px solid #eee; border-bottom: 1px solid #eee;">
+                                    <script>
+                                      $(document).ready(function() {
+                                        var schemaWrapper = {
+  "description" : "successful operation",
+  "schema" : {
+    "$ref" : "#/definitions/3gppServiceResponse"
+  }
+};
+                                        var schema = schemaWrapper.schema;
+                                        if (schema.$ref != null) {
+                                          schema = defsParser.$refs.get(schema.$ref);
+                                        } else {
+                                          schemaWrapper.definitions = defs;
+                                          $RefParser.dereference(schemaWrapper).catch(function(err) {
+                                            console.log(err);
+                                          });
+                                        }
+
+                                        //console.log(JSON.stringify(schema));
+                                        var view = new JSONSchemaView(schema, 3);
+                                        $('#responses-activate3gppService-default-schema-data').val(stringify(schema));
+                                        var result = $('#responses-activate3gppService-default-schema-default');
+                                        result.empty();
+                                        result.append(view.render());
+                                      });
+                                    </script>
+                                  </div>
+                                  <input id='responses-activate3gppService-default-schema-data' type='hidden' value=''></input>
+                                </div>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                    <div id="api-Onap3gppServiceInstances-allocate3gppService">
+                      <article id="api-Onap3gppServiceInstances-allocate3gppService-0" data-group="User" data-name="allocate3gppService" data-version="0">
+                        <div class="pull-left">
+                          <h1>allocate3gppService</h1>
+                          <p>Create a 3GPP Service Instance on a version provided</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/3gppservices/{version}/allocate</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-Onap3gppServiceInstances-allocate3gppService-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-allocate3gppService-0-java">Java</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-allocate3gppService-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-Onap3gppServiceInstances-allocate3gppService-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-allocate3gppService-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-allocate3gppService-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-Onap3gppServiceInstances-allocate3gppService-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-allocate3gppService-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-allocate3gppService-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-allocate3gppService-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-allocate3gppService-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-Onap3gppServiceInstances-allocate3gppService-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/3gppservices/{version}/allocate"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-Onap3gppServiceInstances-allocate3gppService-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.Onap3gppServiceInstancesApi;
+
+import java.io.File;
+import java.util.*;
+
+public class Onap3gppServiceInstancesApiExample {
+
+    public static void main(String[] args) {
+        
+        Onap3gppServiceInstancesApi apiInstance = new Onap3gppServiceInstancesApi();
+        Allocate3gppService body = ; // Allocate3gppService | 
+        String version = version_example; // String | 
+        try {
+            3gppServiceResponse result = apiInstance.allocate3gppService(body, version);
+            System.out.println(result);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling Onap3gppServiceInstancesApi#allocate3gppService");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-Onap3gppServiceInstances-allocate3gppService-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.Onap3gppServiceInstancesApi;
+
+public class Onap3gppServiceInstancesApiExample {
+
+    public static void main(String[] args) {
+        Onap3gppServiceInstancesApi apiInstance = new Onap3gppServiceInstancesApi();
+        Allocate3gppService body = ; // Allocate3gppService | 
+        String version = version_example; // String | 
+        try {
+            3gppServiceResponse result = apiInstance.allocate3gppService(body, version);
+            System.out.println(result);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling Onap3gppServiceInstancesApi#allocate3gppService");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-Onap3gppServiceInstances-allocate3gppService-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-allocate3gppService-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">Allocate3gppService *body = ; // 
+String *version = version_example; // 
+
+Onap3gppServiceInstancesApi *apiInstance = [[Onap3gppServiceInstancesApi alloc] init];
+
+// Create a 3GPP Service Instance on a version provided
+[apiInstance allocate3gppServiceWith:body
+    version:version
+              completionHandler: ^(3gppServiceResponse output, NSError* error) {
+                            if (output) {
+                                NSLog(@"%@", output);
+                            }
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-allocate3gppService-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.Onap3gppServiceInstancesApi()
+
+var body = ; // {Allocate3gppService} 
+
+var version = version_example; // {String} 
+
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully. Returned data: ' + data);
+  }
+};
+api.allocate3gppService(body, version, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-Onap3gppServiceInstances-allocate3gppService-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-allocate3gppService-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class allocate3gppServiceExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new Onap3gppServiceInstancesApi();
+            var body = new Allocate3gppService(); // Allocate3gppService | 
+            var version = version_example;  // String | 
+
+            try
+            {
+                // Create a 3GPP Service Instance on a version provided
+                3gppServiceResponse result = apiInstance.allocate3gppService(body, version);
+                Debug.WriteLine(result);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling Onap3gppServiceInstancesApi.allocate3gppService: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-allocate3gppService-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\Onap3gppServiceInstancesApi();
+$body = ; // Allocate3gppService | 
+$version = version_example; // String | 
+
+try {
+    $result = $api_instance->allocate3gppService($body, $version);
+    print_r($result);
+} catch (Exception $e) {
+    echo 'Exception when calling Onap3gppServiceInstancesApi->allocate3gppService: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-allocate3gppService-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::Onap3gppServiceInstancesApi;
+
+my $api_instance = WWW::SwaggerClient::Onap3gppServiceInstancesApi->new();
+my $body = WWW::SwaggerClient::Object::Allocate3gppService->new(); # Allocate3gppService | 
+my $version = version_example; # String | 
+
+eval { 
+    my $result = $api_instance->allocate3gppService(body => $body, version => $version);
+    print Dumper($result);
+};
+if ($@) {
+    warn "Exception when calling Onap3gppServiceInstancesApi->allocate3gppService: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-allocate3gppService-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.Onap3gppServiceInstancesApi()
+body =  # Allocate3gppService | 
+version = version_example # String | 
+
+try: 
+    # Create a 3GPP Service Instance on a version provided
+    api_response = api_instance.allocate3gpp_service(body, version)
+    pprint(api_response)
+except ApiException as e:
+    print("Exception when calling Onap3gppServiceInstancesApi->allocate3gppService: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_allocate3gppService_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body <span style="color:red;">*</span></td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : true,
+  "schema" : {
+    "$ref" : "#/definitions/Allocate3gppService"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_allocate3gppService_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_allocate3gppService_body"></div>
+</td>
+</tr>
+
+                            </table>
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                                <li class="active">
+                                  <a data-toggle="tab" href="#responses-allocate3gppService-default-schema">Schema</a>
+                                </li>
+
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                                <div class="tab-pane active" id="responses-allocate3gppService-default-schema">
+                                  <div id='responses-allocate3gppService-default-schema-default' style="padding: 30px; border-left: 1px solid #eee; border-right: 1px solid #eee; border-bottom: 1px solid #eee;">
+                                    <script>
+                                      $(document).ready(function() {
+                                        var schemaWrapper = {
+  "description" : "successful operation",
+  "schema" : {
+    "$ref" : "#/definitions/3gppServiceResponse"
+  }
+};
+                                        var schema = schemaWrapper.schema;
+                                        if (schema.$ref != null) {
+                                          schema = defsParser.$refs.get(schema.$ref);
+                                        } else {
+                                          schemaWrapper.definitions = defs;
+                                          $RefParser.dereference(schemaWrapper).catch(function(err) {
+                                            console.log(err);
+                                          });
+                                        }
+
+                                        //console.log(JSON.stringify(schema));
+                                        var view = new JSONSchemaView(schema, 3);
+                                        $('#responses-allocate3gppService-default-schema-data').val(stringify(schema));
+                                        var result = $('#responses-allocate3gppService-default-schema-default');
+                                        result.empty();
+                                        result.append(view.render());
+                                      });
+                                    </script>
+                                  </div>
+                                  <input id='responses-allocate3gppService-default-schema-data' type='hidden' value=''></input>
+                                </div>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                    <div id="api-Onap3gppServiceInstances-deactivate3gppService">
+                      <article id="api-Onap3gppServiceInstances-deactivate3gppService-0" data-group="User" data-name="deactivate3gppService" data-version="0">
+                        <div class="pull-left">
+                          <h1>deactivate3gppService</h1>
+                          <p>Deactivate a 3GPP Service Instance on a version provided</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/3gppservices/{version}/deActivate</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-Onap3gppServiceInstances-deactivate3gppService-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deactivate3gppService-0-java">Java</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deactivate3gppService-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-Onap3gppServiceInstances-deactivate3gppService-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deactivate3gppService-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deactivate3gppService-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-Onap3gppServiceInstances-deactivate3gppService-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deactivate3gppService-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deactivate3gppService-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deactivate3gppService-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deactivate3gppService-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-Onap3gppServiceInstances-deactivate3gppService-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/3gppservices/{version}/deActivate"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-Onap3gppServiceInstances-deactivate3gppService-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.Onap3gppServiceInstancesApi;
+
+import java.io.File;
+import java.util.*;
+
+public class Onap3gppServiceInstancesApiExample {
+
+    public static void main(String[] args) {
+        
+        Onap3gppServiceInstancesApi apiInstance = new Onap3gppServiceInstancesApi();
+        3gppServiceActivation body = ; // 3gppServiceActivation | 
+        String version = version_example; // String | 
+        try {
+            3gppServiceResponse result = apiInstance.deactivate3gppService(body, version);
+            System.out.println(result);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling Onap3gppServiceInstancesApi#deactivate3gppService");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-Onap3gppServiceInstances-deactivate3gppService-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.Onap3gppServiceInstancesApi;
+
+public class Onap3gppServiceInstancesApiExample {
+
+    public static void main(String[] args) {
+        Onap3gppServiceInstancesApi apiInstance = new Onap3gppServiceInstancesApi();
+        3gppServiceActivation body = ; // 3gppServiceActivation | 
+        String version = version_example; // String | 
+        try {
+            3gppServiceResponse result = apiInstance.deactivate3gppService(body, version);
+            System.out.println(result);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling Onap3gppServiceInstancesApi#deactivate3gppService");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-Onap3gppServiceInstances-deactivate3gppService-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-deactivate3gppService-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">3gppServiceActivation *body = ; // 
+String *version = version_example; // 
+
+Onap3gppServiceInstancesApi *apiInstance = [[Onap3gppServiceInstancesApi alloc] init];
+
+// Deactivate a 3GPP Service Instance on a version provided
+[apiInstance deactivate3gppServiceWith:body
+    version:version
+              completionHandler: ^(3gppServiceResponse output, NSError* error) {
+                            if (output) {
+                                NSLog(@"%@", output);
+                            }
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-deactivate3gppService-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.Onap3gppServiceInstancesApi()
+
+var body = ; // {3gppServiceActivation} 
+
+var version = version_example; // {String} 
+
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully. Returned data: ' + data);
+  }
+};
+api.deactivate3gppService(body, version, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-Onap3gppServiceInstances-deactivate3gppService-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-deactivate3gppService-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class deactivate3gppServiceExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new Onap3gppServiceInstancesApi();
+            var body = new 3gppServiceActivation(); // 3gppServiceActivation | 
+            var version = version_example;  // String | 
+
+            try
+            {
+                // Deactivate a 3GPP Service Instance on a version provided
+                3gppServiceResponse result = apiInstance.deactivate3gppService(body, version);
+                Debug.WriteLine(result);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling Onap3gppServiceInstancesApi.deactivate3gppService: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-deactivate3gppService-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\Onap3gppServiceInstancesApi();
+$body = ; // 3gppServiceActivation | 
+$version = version_example; // String | 
+
+try {
+    $result = $api_instance->deactivate3gppService($body, $version);
+    print_r($result);
+} catch (Exception $e) {
+    echo 'Exception when calling Onap3gppServiceInstancesApi->deactivate3gppService: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-deactivate3gppService-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::Onap3gppServiceInstancesApi;
+
+my $api_instance = WWW::SwaggerClient::Onap3gppServiceInstancesApi->new();
+my $body = WWW::SwaggerClient::Object::3gppServiceActivation->new(); # 3gppServiceActivation | 
+my $version = version_example; # String | 
+
+eval { 
+    my $result = $api_instance->deactivate3gppService(body => $body, version => $version);
+    print Dumper($result);
+};
+if ($@) {
+    warn "Exception when calling Onap3gppServiceInstancesApi->deactivate3gppService: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-deactivate3gppService-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.Onap3gppServiceInstancesApi()
+body =  # 3gppServiceActivation | 
+version = version_example # String | 
+
+try: 
+    # Deactivate a 3GPP Service Instance on a version provided
+    api_response = api_instance.deactivate3gpp_service(body, version)
+    pprint(api_response)
+except ApiException as e:
+    print("Exception when calling Onap3gppServiceInstancesApi->deactivate3gppService: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_deactivate3gppService_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body <span style="color:red;">*</span></td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : true,
+  "schema" : {
+    "$ref" : "#/definitions/3gppServiceActivation"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_deactivate3gppService_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_deactivate3gppService_body"></div>
+</td>
+</tr>
+
+                            </table>
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                                <li class="active">
+                                  <a data-toggle="tab" href="#responses-deactivate3gppService-default-schema">Schema</a>
+                                </li>
+
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                                <div class="tab-pane active" id="responses-deactivate3gppService-default-schema">
+                                  <div id='responses-deactivate3gppService-default-schema-default' style="padding: 30px; border-left: 1px solid #eee; border-right: 1px solid #eee; border-bottom: 1px solid #eee;">
+                                    <script>
+                                      $(document).ready(function() {
+                                        var schemaWrapper = {
+  "description" : "successful operation",
+  "schema" : {
+    "$ref" : "#/definitions/3gppServiceResponse"
+  }
+};
+                                        var schema = schemaWrapper.schema;
+                                        if (schema.$ref != null) {
+                                          schema = defsParser.$refs.get(schema.$ref);
+                                        } else {
+                                          schemaWrapper.definitions = defs;
+                                          $RefParser.dereference(schemaWrapper).catch(function(err) {
+                                            console.log(err);
+                                          });
+                                        }
+
+                                        //console.log(JSON.stringify(schema));
+                                        var view = new JSONSchemaView(schema, 3);
+                                        $('#responses-deactivate3gppService-default-schema-data').val(stringify(schema));
+                                        var result = $('#responses-deactivate3gppService-default-schema-default');
+                                        result.empty();
+                                        result.append(view.render());
+                                      });
+                                    </script>
+                                  </div>
+                                  <input id='responses-deactivate3gppService-default-schema-data' type='hidden' value=''></input>
+                                </div>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                    <div id="api-Onap3gppServiceInstances-deallocate3gppService">
+                      <article id="api-Onap3gppServiceInstances-deallocate3gppService-0" data-group="User" data-name="deallocate3gppService" data-version="0">
+                        <div class="pull-left">
+                          <h1>deallocate3gppService</h1>
+                          <p>Terminate/Deallocate a 3GPP Service Instance on a version provided</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="delete"><code><span class="pln">/onap/so/infra/3gppservices/{version}/deAllocate</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-Onap3gppServiceInstances-deallocate3gppService-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deallocate3gppService-0-java">Java</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deallocate3gppService-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-Onap3gppServiceInstances-deallocate3gppService-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deallocate3gppService-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deallocate3gppService-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-Onap3gppServiceInstances-deallocate3gppService-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deallocate3gppService-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deallocate3gppService-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deallocate3gppService-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-deallocate3gppService-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-Onap3gppServiceInstances-deallocate3gppService-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X DELETE "http://localhost/onap/so/infra/3gppservices/{version}/deAllocate"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-Onap3gppServiceInstances-deallocate3gppService-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.Onap3gppServiceInstancesApi;
+
+import java.io.File;
+import java.util.*;
+
+public class Onap3gppServiceInstancesApiExample {
+
+    public static void main(String[] args) {
+        
+        Onap3gppServiceInstancesApi apiInstance = new Onap3gppServiceInstancesApi();
+        DeAllocate3gppService body = ; // DeAllocate3gppService | 
+        String version = version_example; // String | 
+        try {
+            3gppServiceResponse result = apiInstance.deallocate3gppService(body, version);
+            System.out.println(result);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling Onap3gppServiceInstancesApi#deallocate3gppService");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-Onap3gppServiceInstances-deallocate3gppService-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.Onap3gppServiceInstancesApi;
+
+public class Onap3gppServiceInstancesApiExample {
+
+    public static void main(String[] args) {
+        Onap3gppServiceInstancesApi apiInstance = new Onap3gppServiceInstancesApi();
+        DeAllocate3gppService body = ; // DeAllocate3gppService | 
+        String version = version_example; // String | 
+        try {
+            3gppServiceResponse result = apiInstance.deallocate3gppService(body, version);
+            System.out.println(result);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling Onap3gppServiceInstancesApi#deallocate3gppService");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-Onap3gppServiceInstances-deallocate3gppService-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-deallocate3gppService-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">DeAllocate3gppService *body = ; // 
+String *version = version_example; // 
+
+Onap3gppServiceInstancesApi *apiInstance = [[Onap3gppServiceInstancesApi alloc] init];
+
+// Terminate/Deallocate a 3GPP Service Instance on a version provided
+[apiInstance deallocate3gppServiceWith:body
+    version:version
+              completionHandler: ^(3gppServiceResponse output, NSError* error) {
+                            if (output) {
+                                NSLog(@"%@", output);
+                            }
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-deallocate3gppService-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.Onap3gppServiceInstancesApi()
+
+var body = ; // {DeAllocate3gppService} 
+
+var version = version_example; // {String} 
+
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully. Returned data: ' + data);
+  }
+};
+api.deallocate3gppService(body, version, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-Onap3gppServiceInstances-deallocate3gppService-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-deallocate3gppService-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class deallocate3gppServiceExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new Onap3gppServiceInstancesApi();
+            var body = new DeAllocate3gppService(); // DeAllocate3gppService | 
+            var version = version_example;  // String | 
+
+            try
+            {
+                // Terminate/Deallocate a 3GPP Service Instance on a version provided
+                3gppServiceResponse result = apiInstance.deallocate3gppService(body, version);
+                Debug.WriteLine(result);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling Onap3gppServiceInstancesApi.deallocate3gppService: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-deallocate3gppService-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\Onap3gppServiceInstancesApi();
+$body = ; // DeAllocate3gppService | 
+$version = version_example; // String | 
+
+try {
+    $result = $api_instance->deallocate3gppService($body, $version);
+    print_r($result);
+} catch (Exception $e) {
+    echo 'Exception when calling Onap3gppServiceInstancesApi->deallocate3gppService: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-deallocate3gppService-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::Onap3gppServiceInstancesApi;
+
+my $api_instance = WWW::SwaggerClient::Onap3gppServiceInstancesApi->new();
+my $body = WWW::SwaggerClient::Object::DeAllocate3gppService->new(); # DeAllocate3gppService | 
+my $version = version_example; # String | 
+
+eval { 
+    my $result = $api_instance->deallocate3gppService(body => $body, version => $version);
+    print Dumper($result);
+};
+if ($@) {
+    warn "Exception when calling Onap3gppServiceInstancesApi->deallocate3gppService: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-deallocate3gppService-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.Onap3gppServiceInstancesApi()
+body =  # DeAllocate3gppService | 
+version = version_example # String | 
+
+try: 
+    # Terminate/Deallocate a 3GPP Service Instance on a version provided
+    api_response = api_instance.deallocate3gpp_service(body, version)
+    pprint(api_response)
+except ApiException as e:
+    print("Exception when calling Onap3gppServiceInstancesApi->deallocate3gppService: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_deallocate3gppService_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body <span style="color:red;">*</span></td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : true,
+  "schema" : {
+    "$ref" : "#/definitions/DeAllocate3gppService"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_deallocate3gppService_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_deallocate3gppService_body"></div>
+</td>
+</tr>
+
+                            </table>
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                                <li class="active">
+                                  <a data-toggle="tab" href="#responses-deallocate3gppService-default-schema">Schema</a>
+                                </li>
+
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                                <div class="tab-pane active" id="responses-deallocate3gppService-default-schema">
+                                  <div id='responses-deallocate3gppService-default-schema-default' style="padding: 30px; border-left: 1px solid #eee; border-right: 1px solid #eee; border-bottom: 1px solid #eee;">
+                                    <script>
+                                      $(document).ready(function() {
+                                        var schemaWrapper = {
+  "description" : "successful operation",
+  "schema" : {
+    "$ref" : "#/definitions/3gppServiceResponse"
+  }
+};
+                                        var schema = schemaWrapper.schema;
+                                        if (schema.$ref != null) {
+                                          schema = defsParser.$refs.get(schema.$ref);
+                                        } else {
+                                          schemaWrapper.definitions = defs;
+                                          $RefParser.dereference(schemaWrapper).catch(function(err) {
+                                            console.log(err);
+                                          });
+                                        }
+
+                                        //console.log(JSON.stringify(schema));
+                                        var view = new JSONSchemaView(schema, 3);
+                                        $('#responses-deallocate3gppService-default-schema-data').val(stringify(schema));
+                                        var result = $('#responses-deallocate3gppService-default-schema-default');
+                                        result.empty();
+                                        result.append(view.render());
+                                      });
+                                    </script>
+                                  </div>
+                                  <input id='responses-deallocate3gppService-default-schema-data' type='hidden' value=''></input>
+                                </div>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                    <div id="api-Onap3gppServiceInstances-modify3gppService">
+                      <article id="api-Onap3gppServiceInstances-modify3gppService-0" data-group="User" data-name="modify3gppService" data-version="0">
+                        <div class="pull-left">
+                          <h1>modify3gppService</h1>
+                          <p>Modify a 3GPP Service Instance on a version provided</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="put"><code><span class="pln">/onap/so/infra/3gppservices/{version}/modify</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-Onap3gppServiceInstances-modify3gppService-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-modify3gppService-0-java">Java</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-modify3gppService-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-Onap3gppServiceInstances-modify3gppService-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-modify3gppService-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-modify3gppService-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-Onap3gppServiceInstances-modify3gppService-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-modify3gppService-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-modify3gppService-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-modify3gppService-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-modify3gppService-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-Onap3gppServiceInstances-modify3gppService-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X PUT "http://localhost/onap/so/infra/3gppservices/{version}/modify"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-Onap3gppServiceInstances-modify3gppService-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.Onap3gppServiceInstancesApi;
+
+import java.io.File;
+import java.util.*;
+
+public class Onap3gppServiceInstancesApiExample {
+
+    public static void main(String[] args) {
+        
+        Onap3gppServiceInstancesApi apiInstance = new Onap3gppServiceInstancesApi();
+        Modify3gppService body = ; // Modify3gppService | 
+        String version = version_example; // String | 
+        try {
+            3gppServiceResponse result = apiInstance.modify3gppService(body, version);
+            System.out.println(result);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling Onap3gppServiceInstancesApi#modify3gppService");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-Onap3gppServiceInstances-modify3gppService-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.Onap3gppServiceInstancesApi;
+
+public class Onap3gppServiceInstancesApiExample {
+
+    public static void main(String[] args) {
+        Onap3gppServiceInstancesApi apiInstance = new Onap3gppServiceInstancesApi();
+        Modify3gppService body = ; // Modify3gppService | 
+        String version = version_example; // String | 
+        try {
+            3gppServiceResponse result = apiInstance.modify3gppService(body, version);
+            System.out.println(result);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling Onap3gppServiceInstancesApi#modify3gppService");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-Onap3gppServiceInstances-modify3gppService-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-modify3gppService-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">Modify3gppService *body = ; // 
+String *version = version_example; // 
+
+Onap3gppServiceInstancesApi *apiInstance = [[Onap3gppServiceInstancesApi alloc] init];
+
+// Modify a 3GPP Service Instance on a version provided
+[apiInstance modify3gppServiceWith:body
+    version:version
+              completionHandler: ^(3gppServiceResponse output, NSError* error) {
+                            if (output) {
+                                NSLog(@"%@", output);
+                            }
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-modify3gppService-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.Onap3gppServiceInstancesApi()
+
+var body = ; // {Modify3gppService} 
+
+var version = version_example; // {String} 
+
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully. Returned data: ' + data);
+  }
+};
+api.modify3gppService(body, version, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-Onap3gppServiceInstances-modify3gppService-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-modify3gppService-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class modify3gppServiceExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new Onap3gppServiceInstancesApi();
+            var body = new Modify3gppService(); // Modify3gppService | 
+            var version = version_example;  // String | 
+
+            try
+            {
+                // Modify a 3GPP Service Instance on a version provided
+                3gppServiceResponse result = apiInstance.modify3gppService(body, version);
+                Debug.WriteLine(result);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling Onap3gppServiceInstancesApi.modify3gppService: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-modify3gppService-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\Onap3gppServiceInstancesApi();
+$body = ; // Modify3gppService | 
+$version = version_example; // String | 
+
+try {
+    $result = $api_instance->modify3gppService($body, $version);
+    print_r($result);
+} catch (Exception $e) {
+    echo 'Exception when calling Onap3gppServiceInstancesApi->modify3gppService: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-modify3gppService-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::Onap3gppServiceInstancesApi;
+
+my $api_instance = WWW::SwaggerClient::Onap3gppServiceInstancesApi->new();
+my $body = WWW::SwaggerClient::Object::Modify3gppService->new(); # Modify3gppService | 
+my $version = version_example; # String | 
+
+eval { 
+    my $result = $api_instance->modify3gppService(body => $body, version => $version);
+    print Dumper($result);
+};
+if ($@) {
+    warn "Exception when calling Onap3gppServiceInstancesApi->modify3gppService: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-modify3gppService-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.Onap3gppServiceInstancesApi()
+body =  # Modify3gppService | 
+version = version_example # String | 
+
+try: 
+    # Modify a 3GPP Service Instance on a version provided
+    api_response = api_instance.modify3gpp_service(body, version)
+    pprint(api_response)
+except ApiException as e:
+    print("Exception when calling Onap3gppServiceInstancesApi->modify3gppService: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_modify3gppService_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body <span style="color:red;">*</span></td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : true,
+  "schema" : {
+    "$ref" : "#/definitions/Modify3gppService"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_modify3gppService_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_modify3gppService_body"></div>
+</td>
+</tr>
+
+                            </table>
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                                <li class="active">
+                                  <a data-toggle="tab" href="#responses-modify3gppService-default-schema">Schema</a>
+                                </li>
+
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                                <div class="tab-pane active" id="responses-modify3gppService-default-schema">
+                                  <div id='responses-modify3gppService-default-schema-default' style="padding: 30px; border-left: 1px solid #eee; border-right: 1px solid #eee; border-bottom: 1px solid #eee;">
+                                    <script>
+                                      $(document).ready(function() {
+                                        var schemaWrapper = {
+  "description" : "successful operation",
+  "schema" : {
+    "$ref" : "#/definitions/3gppServiceResponse"
+  }
+};
+                                        var schema = schemaWrapper.schema;
+                                        if (schema.$ref != null) {
+                                          schema = defsParser.$refs.get(schema.$ref);
+                                        } else {
+                                          schemaWrapper.definitions = defs;
+                                          $RefParser.dereference(schemaWrapper).catch(function(err) {
+                                            console.log(err);
+                                          });
+                                        }
+
+                                        //console.log(JSON.stringify(schema));
+                                        var view = new JSONSchemaView(schema, 3);
+                                        $('#responses-modify3gppService-default-schema-data').val(stringify(schema));
+                                        var result = $('#responses-modify3gppService-default-schema-default');
+                                        result.empty();
+                                        result.append(view.render());
+                                      });
+                                    </script>
+                                  </div>
+                                  <input id='responses-modify3gppService-default-schema-data' type='hidden' value=''></input>
+                                </div>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                    <div id="api-Onap3gppServiceInstances-querySubnetCapability">
+                      <article id="api-Onap3gppServiceInstances-querySubnetCapability-0" data-group="User" data-name="querySubnetCapability" data-version="0">
+                        <div class="pull-left">
+                          <h1>querySubnetCapability</h1>
+                          <p>Provides subnet capability based on subnet types</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/onap/so/infra/3gppservices/{version}/subnetCapabilityQuery</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-Onap3gppServiceInstances-querySubnetCapability-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-querySubnetCapability-0-java">Java</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-querySubnetCapability-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-Onap3gppServiceInstances-querySubnetCapability-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-querySubnetCapability-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-querySubnetCapability-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-Onap3gppServiceInstances-querySubnetCapability-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-querySubnetCapability-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-querySubnetCapability-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-querySubnetCapability-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-Onap3gppServiceInstances-querySubnetCapability-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-Onap3gppServiceInstances-querySubnetCapability-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/onap/so/infra/3gppservices/{version}/subnetCapabilityQuery"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-Onap3gppServiceInstances-querySubnetCapability-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.Onap3gppServiceInstancesApi;
+
+import java.io.File;
+import java.util.*;
+
+public class Onap3gppServiceInstancesApiExample {
+
+    public static void main(String[] args) {
+        
+        Onap3gppServiceInstancesApi apiInstance = new Onap3gppServiceInstancesApi();
+        QuerySubnetCapability body = ; // QuerySubnetCapability | 
+        String version = version_example; // String | 
+        try {
+            Object result = apiInstance.querySubnetCapability(body, version);
+            System.out.println(result);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling Onap3gppServiceInstancesApi#querySubnetCapability");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-Onap3gppServiceInstances-querySubnetCapability-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.Onap3gppServiceInstancesApi;
+
+public class Onap3gppServiceInstancesApiExample {
+
+    public static void main(String[] args) {
+        Onap3gppServiceInstancesApi apiInstance = new Onap3gppServiceInstancesApi();
+        QuerySubnetCapability body = ; // QuerySubnetCapability | 
+        String version = version_example; // String | 
+        try {
+            Object result = apiInstance.querySubnetCapability(body, version);
+            System.out.println(result);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling Onap3gppServiceInstancesApi#querySubnetCapability");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-Onap3gppServiceInstances-querySubnetCapability-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-querySubnetCapability-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">QuerySubnetCapability *body = ; // 
+String *version = version_example; // 
+
+Onap3gppServiceInstancesApi *apiInstance = [[Onap3gppServiceInstancesApi alloc] init];
+
+// Provides subnet capability based on subnet types
+[apiInstance querySubnetCapabilityWith:body
+    version:version
+              completionHandler: ^(Object output, NSError* error) {
+                            if (output) {
+                                NSLog(@"%@", output);
+                            }
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-querySubnetCapability-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.Onap3gppServiceInstancesApi()
+
+var body = ; // {QuerySubnetCapability} 
+
+var version = version_example; // {String} 
+
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully. Returned data: ' + data);
+  }
+};
+api.querySubnetCapability(body, version, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-Onap3gppServiceInstances-querySubnetCapability-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-querySubnetCapability-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class querySubnetCapabilityExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new Onap3gppServiceInstancesApi();
+            var body = new QuerySubnetCapability(); // QuerySubnetCapability | 
+            var version = version_example;  // String | 
+
+            try
+            {
+                // Provides subnet capability based on subnet types
+                Object result = apiInstance.querySubnetCapability(body, version);
+                Debug.WriteLine(result);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling Onap3gppServiceInstancesApi.querySubnetCapability: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-querySubnetCapability-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\Onap3gppServiceInstancesApi();
+$body = ; // QuerySubnetCapability | 
+$version = version_example; // String | 
+
+try {
+    $result = $api_instance->querySubnetCapability($body, $version);
+    print_r($result);
+} catch (Exception $e) {
+    echo 'Exception when calling Onap3gppServiceInstancesApi->querySubnetCapability: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-querySubnetCapability-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::Onap3gppServiceInstancesApi;
+
+my $api_instance = WWW::SwaggerClient::Onap3gppServiceInstancesApi->new();
+my $body = WWW::SwaggerClient::Object::QuerySubnetCapability->new(); # QuerySubnetCapability | 
+my $version = version_example; # String | 
+
+eval { 
+    my $result = $api_instance->querySubnetCapability(body => $body, version => $version);
+    print Dumper($result);
+};
+if ($@) {
+    warn "Exception when calling Onap3gppServiceInstancesApi->querySubnetCapability: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-Onap3gppServiceInstances-querySubnetCapability-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.Onap3gppServiceInstancesApi()
+body =  # QuerySubnetCapability | 
+version = version_example # String | 
+
+try: 
+    # Provides subnet capability based on subnet types
+    api_response = api_instance.query_subnet_capability(body, version)
+    pprint(api_response)
+except ApiException as e:
+    print("Exception when calling Onap3gppServiceInstancesApi->querySubnetCapability: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_querySubnetCapability_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body <span style="color:red;">*</span></td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : true,
+  "schema" : {
+    "$ref" : "#/definitions/QuerySubnetCapability"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_querySubnetCapability_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_querySubnetCapability_body"></div>
+</td>
+</tr>
+
+                            </table>
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation with capabilities for the queried subnetTypes </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                                <li class="active">
+                                  <a data-toggle="tab" href="#responses-querySubnetCapability-default-schema">Schema</a>
+                                </li>
+
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                                <div class="tab-pane active" id="responses-querySubnetCapability-default-schema">
+                                  <div id='responses-querySubnetCapability-default-schema-default' style="padding: 30px; border-left: 1px solid #eee; border-right: 1px solid #eee; border-bottom: 1px solid #eee;">
+                                    <script>
+                                      $(document).ready(function() {
+                                        var schemaWrapper = {
+  "description" : "successful operation with capabilities for the queried subnetTypes",
+  "schema" : {
+    "type" : "object"
+  }
+};
+                                        var schema = schemaWrapper.schema;
+                                        if (schema.$ref != null) {
+                                          schema = defsParser.$refs.get(schema.$ref);
+                                        } else {
+                                          schemaWrapper.definitions = defs;
+                                          $RefParser.dereference(schemaWrapper).catch(function(err) {
+                                            console.log(err);
+                                          });
+                                        }
+
+                                        //console.log(JSON.stringify(schema));
+                                        var view = new JSONSchemaView(schema, 3);
+                                        $('#responses-querySubnetCapability-default-schema-data').val(stringify(schema));
+                                        var result = $('#responses-querySubnetCapability-default-schema-default');
+                                        result.empty();
+                                        result.append(view.render());
+                                      });
+                                    </script>
+                                  </div>
+                                  <input id='responses-querySubnetCapability-default-schema-data' type='hidden' value=''></input>
+                                </div>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                  </section>
+                <section id="api-OnapsoinfracloudResources">
+                  <h1>OnapsoinfracloudResources</h1>
+                    <div id="api-OnapsoinfracloudResources-activateOperationEnvironment">
+                      <article id="api-OnapsoinfracloudResources-activateOperationEnvironment-0" data-group="User" data-name="activateOperationEnvironment" data-version="0">
+                        <div class="pull-left">
+                          <h1>activateOperationEnvironment</h1>
+                          <p>Activate an Operational Environment</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/cloudResources/{version}/operationalEnvironments/{operationalEnvironmentId}/activate</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/cloudResources/{version}/operationalEnvironments/{operationalEnvironmentId}/activate"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.OnapsoinfracloudResourcesApi;
+
+import java.io.File;
+import java.util.*;
+
+public class OnapsoinfracloudResourcesApiExample {
+
+    public static void main(String[] args) {
+        
+        OnapsoinfracloudResourcesApi apiInstance = new OnapsoinfracloudResourcesApi();
+        String version = version_example; // String | 
+        String operationalEnvironmentId = operationalEnvironmentId_example; // String | 
+        String body = body_example; // String | 
+        try {
+            apiInstance.activateOperationEnvironment(version, operationalEnvironmentId, body);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling OnapsoinfracloudResourcesApi#activateOperationEnvironment");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfracloudResourcesApi;
+
+public class OnapsoinfracloudResourcesApiExample {
+
+    public static void main(String[] args) {
+        OnapsoinfracloudResourcesApi apiInstance = new OnapsoinfracloudResourcesApi();
+        String version = version_example; // String | 
+        String operationalEnvironmentId = operationalEnvironmentId_example; // String | 
+        String body = body_example; // String | 
+        try {
+            apiInstance.activateOperationEnvironment(version, operationalEnvironmentId, body);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling OnapsoinfracloudResourcesApi#activateOperationEnvironment");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
+String *operationalEnvironmentId = operationalEnvironmentId_example; // 
+String *body = body_example; //  (optional)
+
+OnapsoinfracloudResourcesApi *apiInstance = [[OnapsoinfracloudResourcesApi alloc] init];
+
+// Activate an Operational Environment
+[apiInstance activateOperationEnvironmentWith:version
+    operationalEnvironmentId:operationalEnvironmentId
+    body:body
+              completionHandler: ^(NSError* error) {
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.OnapsoinfracloudResourcesApi()
+
+var version = version_example; // {String} 
+
+var operationalEnvironmentId = operationalEnvironmentId_example; // {String} 
+
+var opts = { 
+  'body': body_example // {String} 
+};
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully.');
+  }
+};
+api.activateOperationEnvironment(version, operationalEnvironmentId, opts, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class activateOperationEnvironmentExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new OnapsoinfracloudResourcesApi();
+            var version = version_example;  // String | 
+            var operationalEnvironmentId = operationalEnvironmentId_example;  // String | 
+            var body = body_example;  // String |  (optional) 
+
+            try
+            {
+                // Activate an Operational Environment
+                apiInstance.activateOperationEnvironment(version, operationalEnvironmentId, body);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling OnapsoinfracloudResourcesApi.activateOperationEnvironment: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\OnapsoinfracloudResourcesApi();
+$version = version_example; // String | 
+$operationalEnvironmentId = operationalEnvironmentId_example; // String | 
+$body = body_example; // String | 
+
+try {
+    $api_instance->activateOperationEnvironment($version, $operationalEnvironmentId, $body);
+} catch (Exception $e) {
+    echo 'Exception when calling OnapsoinfracloudResourcesApi->activateOperationEnvironment: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::OnapsoinfracloudResourcesApi;
+
+my $api_instance = WWW::SwaggerClient::OnapsoinfracloudResourcesApi->new();
+my $version = version_example; # String | 
+my $operationalEnvironmentId = operationalEnvironmentId_example; # String | 
+my $body = WWW::SwaggerClient::Object::String->new(); # String | 
+
+eval { 
+    $api_instance->activateOperationEnvironment(version => $version, operationalEnvironmentId => $operationalEnvironmentId, body => $body);
+};
+if ($@) {
+    warn "Exception when calling OnapsoinfracloudResourcesApi->activateOperationEnvironment: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.OnapsoinfracloudResourcesApi()
+version = version_example # String | 
+operationalEnvironmentId = operationalEnvironmentId_example # String | 
+body = body_example # String |  (optional)
+
+try: 
+    # Activate an Operational Environment
+    api_instance.activate_operation_environment(version, operationalEnvironmentId, body=body)
+except ApiException as e:
+    print("Exception when calling OnapsoinfracloudResourcesApi->activateOperationEnvironment: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_activateOperationEnvironment_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                                  <tr><td style="width:150px;">operationalEnvironmentId*</td>
+<td>
+
+
+    <div id="d2e199_activateOperationEnvironment_operationalEnvironmentId">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body </td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : false,
+  "schema" : {
+    "type" : "string"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_activateOperationEnvironment_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_activateOperationEnvironment_body"></div>
+</td>
+</tr>
+
+                            </table>
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                    <div id="api-OnapsoinfracloudResources-createOperationEnvironment">
+                      <article id="api-OnapsoinfracloudResources-createOperationEnvironment-0" data-group="User" data-name="createOperationEnvironment" data-version="0">
+                        <div class="pull-left">
+                          <h1>createOperationEnvironment</h1>
+                          <p>Create an Operational Environment</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/cloudResources/{version}/operationalEnvironments</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/cloudResources/{version}/operationalEnvironments"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.OnapsoinfracloudResourcesApi;
+
+import java.io.File;
+import java.util.*;
+
+public class OnapsoinfracloudResourcesApiExample {
+
+    public static void main(String[] args) {
+        
+        OnapsoinfracloudResourcesApi apiInstance = new OnapsoinfracloudResourcesApi();
+        String version = version_example; // String | 
+        String body = body_example; // String | 
+        try {
+            apiInstance.createOperationEnvironment(version, body);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling OnapsoinfracloudResourcesApi#createOperationEnvironment");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfracloudResourcesApi;
+
+public class OnapsoinfracloudResourcesApiExample {
+
+    public static void main(String[] args) {
+        OnapsoinfracloudResourcesApi apiInstance = new OnapsoinfracloudResourcesApi();
+        String version = version_example; // String | 
+        String body = body_example; // String | 
+        try {
+            apiInstance.createOperationEnvironment(version, body);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling OnapsoinfracloudResourcesApi#createOperationEnvironment");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
+String *body = body_example; //  (optional)
+
+OnapsoinfracloudResourcesApi *apiInstance = [[OnapsoinfracloudResourcesApi alloc] init];
+
+// Create an Operational Environment
+[apiInstance createOperationEnvironmentWith:version
+    body:body
+              completionHandler: ^(NSError* error) {
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.OnapsoinfracloudResourcesApi()
+
+var version = version_example; // {String} 
+
+var opts = { 
+  'body': body_example // {String} 
+};
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully.');
+  }
+};
+api.createOperationEnvironment(version, opts, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class createOperationEnvironmentExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new OnapsoinfracloudResourcesApi();
+            var version = version_example;  // String | 
+            var body = body_example;  // String |  (optional) 
+
+            try
+            {
+                // Create an Operational Environment
+                apiInstance.createOperationEnvironment(version, body);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling OnapsoinfracloudResourcesApi.createOperationEnvironment: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\OnapsoinfracloudResourcesApi();
+$version = version_example; // String | 
+$body = body_example; // String | 
+
+try {
+    $api_instance->createOperationEnvironment($version, $body);
+} catch (Exception $e) {
+    echo 'Exception when calling OnapsoinfracloudResourcesApi->createOperationEnvironment: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::OnapsoinfracloudResourcesApi;
+
+my $api_instance = WWW::SwaggerClient::OnapsoinfracloudResourcesApi->new();
+my $version = version_example; # String | 
+my $body = WWW::SwaggerClient::Object::String->new(); # String | 
+
+eval { 
+    $api_instance->createOperationEnvironment(version => $version, body => $body);
+};
+if ($@) {
+    warn "Exception when calling OnapsoinfracloudResourcesApi->createOperationEnvironment: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.OnapsoinfracloudResourcesApi()
+version = version_example # String | 
+body = body_example # String |  (optional)
+
+try: 
+    # Create an Operational Environment
+    api_instance.create_operation_environment(version, body=body)
+except ApiException as e:
+    print("Exception when calling OnapsoinfracloudResourcesApi->createOperationEnvironment: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_createOperationEnvironment_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body </td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : false,
+  "schema" : {
+    "type" : "string"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_createOperationEnvironment_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_createOperationEnvironment_body"></div>
+</td>
+</tr>
+
+                            </table>
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                    <div id="api-OnapsoinfracloudResources-deactivateOperationEnvironment">
+                      <article id="api-OnapsoinfracloudResources-deactivateOperationEnvironment-0" data-group="User" data-name="deactivateOperationEnvironment" data-version="0">
+                        <div class="pull-left">
+                          <h1>deactivateOperationEnvironment</h1>
+                          <p>Deactivate an Operational Environment</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/cloudResources/{version}/operationalEnvironments/{operationalEnvironmentId}/deactivate</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/cloudResources/{version}/operationalEnvironments/{operationalEnvironmentId}/deactivate"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.OnapsoinfracloudResourcesApi;
+
+import java.io.File;
+import java.util.*;
+
+public class OnapsoinfracloudResourcesApiExample {
+
+    public static void main(String[] args) {
+        
+        OnapsoinfracloudResourcesApi apiInstance = new OnapsoinfracloudResourcesApi();
+        String version = version_example; // String | 
+        String operationalEnvironmentId = operationalEnvironmentId_example; // String | 
+        String body = body_example; // String | 
+        try {
+            apiInstance.deactivateOperationEnvironment(version, operationalEnvironmentId, body);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling OnapsoinfracloudResourcesApi#deactivateOperationEnvironment");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfracloudResourcesApi;
+
+public class OnapsoinfracloudResourcesApiExample {
+
+    public static void main(String[] args) {
+        OnapsoinfracloudResourcesApi apiInstance = new OnapsoinfracloudResourcesApi();
+        String version = version_example; // String | 
+        String operationalEnvironmentId = operationalEnvironmentId_example; // String | 
+        String body = body_example; // String | 
+        try {
+            apiInstance.deactivateOperationEnvironment(version, operationalEnvironmentId, body);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling OnapsoinfracloudResourcesApi#deactivateOperationEnvironment");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
+String *operationalEnvironmentId = operationalEnvironmentId_example; // 
+String *body = body_example; //  (optional)
+
+OnapsoinfracloudResourcesApi *apiInstance = [[OnapsoinfracloudResourcesApi alloc] init];
+
+// Deactivate an Operational Environment
+[apiInstance deactivateOperationEnvironmentWith:version
+    operationalEnvironmentId:operationalEnvironmentId
+    body:body
+              completionHandler: ^(NSError* error) {
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.OnapsoinfracloudResourcesApi()
+
+var version = version_example; // {String} 
+
+var operationalEnvironmentId = operationalEnvironmentId_example; // {String} 
+
+var opts = { 
+  'body': body_example // {String} 
+};
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully.');
+  }
+};
+api.deactivateOperationEnvironment(version, operationalEnvironmentId, opts, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class deactivateOperationEnvironmentExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new OnapsoinfracloudResourcesApi();
+            var version = version_example;  // String | 
+            var operationalEnvironmentId = operationalEnvironmentId_example;  // String | 
+            var body = body_example;  // String |  (optional) 
+
+            try
+            {
+                // Deactivate an Operational Environment
+                apiInstance.deactivateOperationEnvironment(version, operationalEnvironmentId, body);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling OnapsoinfracloudResourcesApi.deactivateOperationEnvironment: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\OnapsoinfracloudResourcesApi();
+$version = version_example; // String | 
+$operationalEnvironmentId = operationalEnvironmentId_example; // String | 
+$body = body_example; // String | 
+
+try {
+    $api_instance->deactivateOperationEnvironment($version, $operationalEnvironmentId, $body);
+} catch (Exception $e) {
+    echo 'Exception when calling OnapsoinfracloudResourcesApi->deactivateOperationEnvironment: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::OnapsoinfracloudResourcesApi;
+
+my $api_instance = WWW::SwaggerClient::OnapsoinfracloudResourcesApi->new();
+my $version = version_example; # String | 
+my $operationalEnvironmentId = operationalEnvironmentId_example; # String | 
+my $body = WWW::SwaggerClient::Object::String->new(); # String | 
+
+eval { 
+    $api_instance->deactivateOperationEnvironment(version => $version, operationalEnvironmentId => $operationalEnvironmentId, body => $body);
+};
+if ($@) {
+    warn "Exception when calling OnapsoinfracloudResourcesApi->deactivateOperationEnvironment: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.OnapsoinfracloudResourcesApi()
+version = version_example # String | 
+operationalEnvironmentId = operationalEnvironmentId_example # String | 
+body = body_example # String |  (optional)
+
+try: 
+    # Deactivate an Operational Environment
+    api_instance.deactivate_operation_environment(version, operationalEnvironmentId, body=body)
+except ApiException as e:
+    print("Exception when calling OnapsoinfracloudResourcesApi->deactivateOperationEnvironment: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_deactivateOperationEnvironment_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                                  <tr><td style="width:150px;">operationalEnvironmentId*</td>
+<td>
+
+
+    <div id="d2e199_deactivateOperationEnvironment_operationalEnvironmentId">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body </td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : false,
+  "schema" : {
+    "type" : "string"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_deactivateOperationEnvironment_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_deactivateOperationEnvironment_body"></div>
+</td>
+</tr>
+
+                            </table>
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                  </section>
+                <section id="api-OnapsoinfracloudResourcesRequests">
+                  <h1>OnapsoinfracloudResourcesRequests</h1>
+                    <div id="api-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter">
+                      <article id="api-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0" data-group="User" data-name="getOperationEnvironmentStatusFilter" data-version="0">
+                        <div class="pull-left">
+                          <h1>getOperationEnvironmentStatusFilter</h1>
+                          <p>Get status of an Operational Environment based on filter criteria</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/onap/so/infra/cloudResourcesRequests/{version}</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/onap/so/infra/cloudResourcesRequests/{version}"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.OnapsoinfracloudResourcesRequestsApi;
+
+import java.io.File;
+import java.util.*;
+
+public class OnapsoinfracloudResourcesRequestsApiExample {
+
+    public static void main(String[] args) {
+        
+        OnapsoinfracloudResourcesRequestsApi apiInstance = new OnapsoinfracloudResourcesRequestsApi();
+        String version = version_example; // String | 
+        try {
+            apiInstance.getOperationEnvironmentStatusFilter(version);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling OnapsoinfracloudResourcesRequestsApi#getOperationEnvironmentStatusFilter");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfracloudResourcesRequestsApi;
+
+public class OnapsoinfracloudResourcesRequestsApiExample {
+
+    public static void main(String[] args) {
+        OnapsoinfracloudResourcesRequestsApi apiInstance = new OnapsoinfracloudResourcesRequestsApi();
+        String version = version_example; // String | 
+        try {
+            apiInstance.getOperationEnvironmentStatusFilter(version);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling OnapsoinfracloudResourcesRequestsApi#getOperationEnvironmentStatusFilter");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
+
+OnapsoinfracloudResourcesRequestsApi *apiInstance = [[OnapsoinfracloudResourcesRequestsApi alloc] init];
+
+// Get status of an Operational Environment based on filter criteria
+[apiInstance getOperationEnvironmentStatusFilterWith:version
+              completionHandler: ^(NSError* error) {
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.OnapsoinfracloudResourcesRequestsApi()
+
+var version = version_example; // {String} 
+
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully.');
+  }
+};
+api.getOperationEnvironmentStatusFilter(version, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class getOperationEnvironmentStatusFilterExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new OnapsoinfracloudResourcesRequestsApi();
+            var version = version_example;  // String | 
+
+            try
+            {
+                // Get status of an Operational Environment based on filter criteria
+                apiInstance.getOperationEnvironmentStatusFilter(version);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling OnapsoinfracloudResourcesRequestsApi.getOperationEnvironmentStatusFilter: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\OnapsoinfracloudResourcesRequestsApi();
+$version = version_example; // String | 
+
+try {
+    $api_instance->getOperationEnvironmentStatusFilter($version);
+} catch (Exception $e) {
+    echo 'Exception when calling OnapsoinfracloudResourcesRequestsApi->getOperationEnvironmentStatusFilter: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::OnapsoinfracloudResourcesRequestsApi;
+
+my $api_instance = WWW::SwaggerClient::OnapsoinfracloudResourcesRequestsApi->new();
+my $version = version_example; # String | 
+
+eval { 
+    $api_instance->getOperationEnvironmentStatusFilter(version => $version);
+};
+if ($@) {
+    warn "Exception when calling OnapsoinfracloudResourcesRequestsApi->getOperationEnvironmentStatusFilter: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.OnapsoinfracloudResourcesRequestsApi()
+version = version_example # String | 
+
+try: 
+    # Get status of an Operational Environment based on filter criteria
+    api_instance.get_operation_environment_status_filter(version)
+except ApiException as e:
+    print("Exception when calling OnapsoinfracloudResourcesRequestsApi->getOperationEnvironmentStatusFilter: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_getOperationEnvironmentStatusFilter_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                    <div id="api-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId">
+                      <article id="api-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0" data-group="User" data-name="unlockOrchestrationRequestForReqId" data-version="0">
+                        <div class="pull-left">
+                          <h1>unlockOrchestrationRequestForReqId</h1>
+                          <p>Unlock CloudOrchestration requests for a specified requestId</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/cloudResourcesRequests/{version}/{requestId}/unlock</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/cloudResourcesRequests/{version}/{requestId}/unlock"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.OnapsoinfracloudResourcesRequestsApi;
+
+import java.io.File;
+import java.util.*;
+
+public class OnapsoinfracloudResourcesRequestsApiExample {
+
+    public static void main(String[] args) {
+        
+        OnapsoinfracloudResourcesRequestsApi apiInstance = new OnapsoinfracloudResourcesRequestsApi();
+        String requestId = requestId_example; // String | 
+        String version = version_example; // String | 
+        String body = body_example; // String | 
+        try {
+            apiInstance.unlockOrchestrationRequestForReqId(requestId, version, body);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling OnapsoinfracloudResourcesRequestsApi#unlockOrchestrationRequestForReqId");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfracloudResourcesRequestsApi;
+
+public class OnapsoinfracloudResourcesRequestsApiExample {
+
+    public static void main(String[] args) {
+        OnapsoinfracloudResourcesRequestsApi apiInstance = new OnapsoinfracloudResourcesRequestsApi();
+        String requestId = requestId_example; // String | 
+        String version = version_example; // String | 
+        String body = body_example; // String | 
+        try {
+            apiInstance.unlockOrchestrationRequestForReqId(requestId, version, body);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling OnapsoinfracloudResourcesRequestsApi#unlockOrchestrationRequestForReqId");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *requestId = requestId_example; // 
+String *version = version_example; // 
+String *body = body_example; //  (optional)
+
+OnapsoinfracloudResourcesRequestsApi *apiInstance = [[OnapsoinfracloudResourcesRequestsApi alloc] init];
+
+// Unlock CloudOrchestration requests for a specified requestId
+[apiInstance unlockOrchestrationRequestForReqIdWith:requestId
+    version:version
+    body:body
+              completionHandler: ^(NSError* error) {
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.OnapsoinfracloudResourcesRequestsApi()
+
+var requestId = requestId_example; // {String} 
+
+var version = version_example; // {String} 
+
+var opts = { 
+  'body': body_example // {String} 
+};
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully.');
+  }
+};
+api.unlockOrchestrationRequestForReqId(requestId, version, opts, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class unlockOrchestrationRequestForReqIdExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new OnapsoinfracloudResourcesRequestsApi();
+            var requestId = requestId_example;  // String | 
+            var version = version_example;  // String | 
+            var body = body_example;  // String |  (optional) 
+
+            try
+            {
+                // Unlock CloudOrchestration requests for a specified requestId
+                apiInstance.unlockOrchestrationRequestForReqId(requestId, version, body);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling OnapsoinfracloudResourcesRequestsApi.unlockOrchestrationRequestForReqId: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\OnapsoinfracloudResourcesRequestsApi();
+$requestId = requestId_example; // String | 
+$version = version_example; // String | 
+$body = body_example; // String | 
+
+try {
+    $api_instance->unlockOrchestrationRequestForReqId($requestId, $version, $body);
+} catch (Exception $e) {
+    echo 'Exception when calling OnapsoinfracloudResourcesRequestsApi->unlockOrchestrationRequestForReqId: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::OnapsoinfracloudResourcesRequestsApi;
+
+my $api_instance = WWW::SwaggerClient::OnapsoinfracloudResourcesRequestsApi->new();
+my $requestId = requestId_example; # String | 
+my $version = version_example; # String | 
+my $body = WWW::SwaggerClient::Object::String->new(); # String | 
+
+eval { 
+    $api_instance->unlockOrchestrationRequestForReqId(requestId => $requestId, version => $version, body => $body);
+};
+if ($@) {
+    warn "Exception when calling OnapsoinfracloudResourcesRequestsApi->unlockOrchestrationRequestForReqId: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.OnapsoinfracloudResourcesRequestsApi()
+requestId = requestId_example # String | 
+version = version_example # String | 
+body = body_example # String |  (optional)
+
+try: 
+    # Unlock CloudOrchestration requests for a specified requestId
+    api_instance.unlock_orchestration_request_for_req_id(requestId, version, body=body)
+except ApiException as e:
+    print("Exception when calling OnapsoinfracloudResourcesRequestsApi->unlockOrchestrationRequestForReqId: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">requestId*</td>
+<td>
+
+
+    <div id="d2e199_unlockOrchestrationRequestForReqId_requestId">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_unlockOrchestrationRequestForReqId_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
+
+
+                            <div class="methodsubtabletitle">Body parameters</div>
                             <table id="methodsubtable">
                               <tr>
                                 <th width="150px">Name</th>
                                 <th>Description</th>
                               </tr>
-                                <tr><td style="width:150px;">enableBpmn</td>
+                                <tr><td style="width:150px;">body </td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : false,
+  "schema" : {
+    "type" : "string"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_unlockOrchestrationRequestForReqId_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_unlockOrchestrationRequestForReqId_body"></div>
+</td>
+</tr>
+
+                            </table>
+
+
+
+                          <h2>Responses</h2>
+                            <h3> Status: default - successful operation </h3>
+
+                            <ul class="nav nav-tabs nav-tabs-examples" >
+                            </ul>
+
+                            <div class="tab-content" style='margin-bottom: 10px;'>
+                            </div>
+
+                        </article>
+                      </div>
+                      <hr>
+                  </section>
+                <section id="api-OnapsoinframodelDistributions">
+                  <h1>OnapsoinframodelDistributions</h1>
+                    <div id="api-OnapsoinframodelDistributions-updateModelDistributionStatus">
+                      <article id="api-OnapsoinframodelDistributions-updateModelDistributionStatus-0" data-group="User" data-name="updateModelDistributionStatus" data-version="0">
+                        <div class="pull-left">
+                          <h1>updateModelDistributionStatus</h1>
+                          <p>Update model distribution status</p>
+                        </div>
+                        <div class="pull-right"></div>
+                        <div class="clearfix"></div>
+                        <p></p>
+                        <p class="marked"></p>
+                        <p></p>
+                        <br />
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/modelDistributions/{version}/distributions/{distributionId}</span></code></pre>
+                        <p>
+                          <h3>Usage and SDK Samples</h3>
+                        </p>
+                        <ul class="nav nav-tabs nav-tabs-examples">
+                          <li class="active"><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-python">Python</a></li>
+                        </ul>
+
+                        <div class="tab-content">
+                          <div class="tab-pane active" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/modelDistributions/{version}/distributions/{distributionId}"</code></pre>
+                          </div>
+                          <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-java">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.OnapsoinframodelDistributionsApi;
+
+import java.io.File;
+import java.util.*;
+
+public class OnapsoinframodelDistributionsApiExample {
+
+    public static void main(String[] args) {
+        
+        OnapsoinframodelDistributionsApi apiInstance = new OnapsoinframodelDistributionsApi();
+        String version = version_example; // String | 
+        String distributionId = distributionId_example; // String | 
+        String body = body_example; // String | 
+        try {
+            apiInstance.updateModelDistributionStatus(version, distributionId, body);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling OnapsoinframodelDistributionsApi#updateModelDistributionStatus");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+
+                          <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinframodelDistributionsApi;
+
+public class OnapsoinframodelDistributionsApiExample {
+
+    public static void main(String[] args) {
+        OnapsoinframodelDistributionsApi apiInstance = new OnapsoinframodelDistributionsApi();
+        String version = version_example; // String | 
+        String distributionId = distributionId_example; // String | 
+        String body = body_example; // String | 
+        try {
+            apiInstance.updateModelDistributionStatus(version, distributionId, body);
+        } catch (ApiException e) {
+            System.err.println("Exception when calling OnapsoinframodelDistributionsApi#updateModelDistributionStatus");
+            e.printStackTrace();
+        }
+    }
+}</code></pre>
+                          </div>
+  <!--
+  <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-groovy">
+  <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+  </div> -->
+                            <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
+String *distributionId = distributionId_example; // 
+String *body = body_example; //  (optional)
+
+OnapsoinframodelDistributionsApi *apiInstance = [[OnapsoinframodelDistributionsApi alloc] init];
+
+// Update model distribution status
+[apiInstance updateModelDistributionStatusWith:version
+    distributionId:distributionId
+    body:body
+              completionHandler: ^(NSError* error) {
+                            if (error) {
+                                NSLog(@"Error: %@", error);
+                            }
+                        }];
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.OnapsoinframodelDistributionsApi()
+
+var version = version_example; // {String} 
+
+var distributionId = distributionId_example; // {String} 
+
+var opts = { 
+  'body': body_example // {String} 
+};
+
+var callback = function(error, data, response) {
+  if (error) {
+    console.error(error);
+  } else {
+    console.log('API called successfully.');
+  }
+};
+api.updateModelDistributionStatus(version, distributionId, opts, callback);
+</code></pre>
+                            </div>
+
+                            <!--<div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-angular">
+              <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
+            </div>-->
+                            <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-csharp">
+                              <pre class="prettyprint"><code class="language-cs">using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+    public class updateModelDistributionStatusExample
+    {
+        public void main()
+        {
+            
+            var apiInstance = new OnapsoinframodelDistributionsApi();
+            var version = version_example;  // String | 
+            var distributionId = distributionId_example;  // String | 
+            var body = body_example;  // String |  (optional) 
+
+            try
+            {
+                // Update model distribution status
+                apiInstance.updateModelDistributionStatus(version, distributionId, body);
+            }
+            catch (Exception e)
+            {
+                Debug.Print("Exception when calling OnapsoinframodelDistributionsApi.updateModelDistributionStatus: " + e.Message );
+            }
+        }
+    }
+}
+</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-php">
+                              <pre class="prettyprint"><code class="language-php"><&#63;php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\Api\OnapsoinframodelDistributionsApi();
+$version = version_example; // String | 
+$distributionId = distributionId_example; // String | 
+$body = body_example; // String | 
+
+try {
+    $api_instance->updateModelDistributionStatus($version, $distributionId, $body);
+} catch (Exception $e) {
+    echo 'Exception when calling OnapsoinframodelDistributionsApi->updateModelDistributionStatus: ', $e->getMessage(), PHP_EOL;
+}
+?></code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-perl">
+                              <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::OnapsoinframodelDistributionsApi;
+
+my $api_instance = WWW::SwaggerClient::OnapsoinframodelDistributionsApi->new();
+my $version = version_example; # String | 
+my $distributionId = distributionId_example; # String | 
+my $body = WWW::SwaggerClient::Object::String->new(); # String | 
+
+eval { 
+    $api_instance->updateModelDistributionStatus(version => $version, distributionId => $distributionId, body => $body);
+};
+if ($@) {
+    warn "Exception when calling OnapsoinframodelDistributionsApi->updateModelDistributionStatus: $@\n";
+}</code></pre>
+                            </div>
+
+                            <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-python">
+                              <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.OnapsoinframodelDistributionsApi()
+version = version_example # String | 
+distributionId = distributionId_example # String | 
+body = body_example # String |  (optional)
+
+try: 
+    # Update model distribution status
+    api_instance.update_model_distribution_status(version, distributionId, body=body)
+except ApiException as e:
+    print("Exception when calling OnapsoinframodelDistributionsApi->updateModelDistributionStatus: %s\n" % e)</code></pre>
+                            </div>
+                          </div>
+
+                          <h2>Parameters</h2>
+
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
 <td>
 
 
-    <div id="d2e199_globalHealthcheck_enableBpmn">
+    <div id="d2e199_updateModelDistributionStatus_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
-                    Boolean
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                                  <tr><td style="width:150px;">distributionId*</td>
+<td>
+
+
+    <div id="d2e199_updateModelDistributionStatus_distributionId">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
                 </span>
 
             </div>
+                <div class="inner required">
+                    Required
+                </div>
         </div>
     </div>
 </td>
@@ -3036,6 +7657,51 @@ except ApiException as e:
 
                             </table>
 
+
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body </td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : false,
+  "schema" : {
+    "type" : "string"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_updateModelDistributionStatus_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_updateModelDistributionStatus_body"></div>
+</td>
+</tr>
+
+                            </table>
+
+
+
                           <h2>Responses</h2>
                             <h3> Status: default - successful operation </h3>
 
@@ -3049,13 +7715,13 @@ except ApiException as e:
                       </div>
                       <hr>
                   </section>
-                <section id="api-Nodehealthcheck">
-                  <h1>Nodehealthcheck</h1>
-                    <div id="api-Nodehealthcheck-nodeHealthcheck">
-                      <article id="api-Nodehealthcheck-nodeHealthcheck-0" data-group="User" data-name="nodeHealthcheck" data-version="0">
+                <section id="api-OnapsoinfraorchestrationRequests">
+                  <h1>OnapsoinfraorchestrationRequests</h1>
+                    <div id="api-OnapsoinfraorchestrationRequests-getOrchestrationRequest">
+                      <article id="api-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0" data-group="User" data-name="getOrchestrationRequest" data-version="0">
                         <div class="pull-left">
-                          <h1>nodeHealthcheck</h1>
-                          <p>Performing node health check</p>
+                          <h1>getOrchestrationRequest</h1>
+                          <p>Find Orchestrated Requests for a URI Information</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -3063,79 +7729,82 @@ except ApiException as e:
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/nodehealthcheck</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/onap/so/infra/orchestrationRequests/{version}</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-java">Java</a></li>
-                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-Nodehealthcheck-nodeHealthcheck-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-Nodehealthcheck-nodeHealthcheck-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/nodehealthcheck"</code></pre>
+                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/onap/so/infra/orchestrationRequests/{version}"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-java">
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
-import io.swagger.client.api.NodehealthcheckApi;
+import io.swagger.client.api.OnapsoinfraorchestrationRequestsApi;
 
 import java.io.File;
 import java.util.*;
 
-public class NodehealthcheckApiExample {
+public class OnapsoinfraorchestrationRequestsApiExample {
 
     public static void main(String[] args) {
         
-        NodehealthcheckApi apiInstance = new NodehealthcheckApi();
+        OnapsoinfraorchestrationRequestsApi apiInstance = new OnapsoinfraorchestrationRequestsApi();
+        String version = version_example; // String | 
         try {
-            apiInstance.nodeHealthcheck();
+            apiInstance.getOrchestrationRequest(version);
         } catch (ApiException e) {
-            System.err.println("Exception when calling NodehealthcheckApi#nodeHealthcheck");
+            System.err.println("Exception when calling OnapsoinfraorchestrationRequestsApi#getOrchestrationRequest");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-android">
-                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.NodehealthcheckApi;
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationRequestsApi;
 
-public class NodehealthcheckApiExample {
+public class OnapsoinfraorchestrationRequestsApiExample {
 
     public static void main(String[] args) {
-        NodehealthcheckApi apiInstance = new NodehealthcheckApi();
+        OnapsoinfraorchestrationRequestsApi apiInstance = new OnapsoinfraorchestrationRequestsApi();
+        String version = version_example; // String | 
         try {
-            apiInstance.nodeHealthcheck();
+            apiInstance.getOrchestrationRequest(version);
         } catch (ApiException e) {
-            System.err.println("Exception when calling NodehealthcheckApi#nodeHealthcheck");
+            System.err.println("Exception when calling OnapsoinfraorchestrationRequestsApi#getOrchestrationRequest");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-groovy">
+  <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">
-NodehealthcheckApi *apiInstance = [[NodehealthcheckApi alloc] init];
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
 
-// Performing node health check
-[apiInstance nodeHealthcheckWithCompletionHandler: 
-              ^(NSError* error) {
+OnapsoinfraorchestrationRequestsApi *apiInstance = [[OnapsoinfraorchestrationRequestsApi alloc] init];
+
+// Find Orchestrated Requests for a URI Information
+[apiInstance getOrchestrationRequestWith:version
+              completionHandler: ^(NSError* error) {
                             if (error) {
                                 NSLog(@"Error: %@", error);
                             }
@@ -3143,10 +7812,13 @@ NodehealthcheckApi *apiInstance = [[NodehealthcheckApi alloc] init];
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
+
+var api = new SoGuilinApIs.OnapsoinfraorchestrationRequestsApi()
+
+var version = version_example; // {String} 
 
-var api = new SoCasablancaApIs.NodehealthcheckApi()
 
 var callback = function(error, data, response) {
   if (error) {
@@ -3155,14 +7827,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.nodeHealthcheck(callback);
+api.getOrchestrationRequest(version, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-angular">
+                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-csharp">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -3171,21 +7843,22 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class nodeHealthcheckExample
+    public class getOrchestrationRequestExample
     {
         public void main()
         {
             
-            var apiInstance = new NodehealthcheckApi();
+            var apiInstance = new OnapsoinfraorchestrationRequestsApi();
+            var version = version_example;  // String | 
 
             try
             {
-                // Performing node health check
-                apiInstance.nodeHealthcheck();
+                // Find Orchestrated Requests for a URI Information
+                apiInstance.getOrchestrationRequest(version);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling NodehealthcheckApi.nodeHealthcheck: " + e.Message );
+                Debug.Print("Exception when calling OnapsoinfraorchestrationRequestsApi.getOrchestrationRequest: " + e.Message );
             }
         }
     }
@@ -3193,36 +7866,38 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-php">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
-$api_instance = new Swagger\Client\Api\NodehealthcheckApi();
+$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationRequestsApi();
+$version = version_example; // String | 
 
 try {
-    $api_instance->nodeHealthcheck();
+    $api_instance->getOrchestrationRequest($version);
 } catch (Exception $e) {
-    echo 'Exception when calling NodehealthcheckApi->nodeHealthcheck: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling OnapsoinfraorchestrationRequestsApi->getOrchestrationRequest: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-perl">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
-use WWW::SwaggerClient::NodehealthcheckApi;
+use WWW::SwaggerClient::OnapsoinfraorchestrationRequestsApi;
 
-my $api_instance = WWW::SwaggerClient::NodehealthcheckApi->new();
+my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationRequestsApi->new();
+my $version = version_example; # String | 
 
 eval { 
-    $api_instance->nodeHealthcheck();
+    $api_instance->getOrchestrationRequest(version => $version);
 };
 if ($@) {
-    warn "Exception when calling NodehealthcheckApi->nodeHealthcheck: $@\n";
+    warn "Exception when calling OnapsoinfraorchestrationRequestsApi->getOrchestrationRequest: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-Nodehealthcheck-nodeHealthcheck-0-python">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -3230,18 +7905,46 @@ from swagger_client.rest import ApiException
 from pprint import pprint
 
 # create an instance of the API class
-api_instance = swagger_client.NodehealthcheckApi()
+api_instance = swagger_client.OnapsoinfraorchestrationRequestsApi()
+version = version_example # String | 
 
 try: 
-    # Performing node health check
-    api_instance.node_healthcheck()
+    # Find Orchestrated Requests for a URI Information
+    api_instance.get_orchestration_request(version)
 except ApiException as e:
-    print("Exception when calling NodehealthcheckApi->nodeHealthcheck: %s\n" % e)</code></pre>
+    print("Exception when calling OnapsoinfraorchestrationRequestsApi->getOrchestrationRequest: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
                           <h2>Parameters</h2>
 
+                            <div class="methodsubtabletitle">Path parameters</div>
+                            <table id="methodsubtable">
+                                <tr>
+                                  <th width="150px">Name</th>
+                                  <th>Description</th>
+                                </tr>
+                                  <tr><td style="width:150px;">version*</td>
+<td>
+
+
+    <div id="d2e199_getOrchestrationRequest_version">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
+                            </table>
 
 
 
@@ -3259,14 +7962,11 @@ except ApiException as e:
                         </article>
                       </div>
                       <hr>
-                  </section>
-                <section id="api-OnapsoinfracloudResources">
-                  <h1>OnapsoinfracloudResources</h1>
-                    <div id="api-OnapsoinfracloudResources-activateOperationEnvironment">
-                      <article id="api-OnapsoinfracloudResources-activateOperationEnvironment-0" data-group="User" data-name="activateOperationEnvironment" data-version="0">
+                    <div id="api-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId">
+                      <article id="api-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0" data-group="User" data-name="getOrchestrationRequestForReqId" data-version="0">
                         <div class="pull-left">
-                          <h1>activateOperationEnvironment</h1>
-                          <p>Activate an Operational Environment</p>
+                          <h1>getOrchestrationRequestForReqId</h1>
+                          <p>Find Orchestrated Requests for a given requestId</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -3274,89 +7974,85 @@ except ApiException as e:
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/cloudResources/{version}/operationalEnvironments/{operationalEnvironmentId}/activate</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/onap/so/infra/orchestrationRequests/{version}/{requestId}</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-java">Java</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-activateOperationEnvironment-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/cloudResources/{version}/operationalEnvironments/{operationalEnvironmentId}/activate"</code></pre>
+                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/onap/so/infra/orchestrationRequests/{version}/{requestId}"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-java">
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
-import io.swagger.client.api.OnapsoinfracloudResourcesApi;
+import io.swagger.client.api.OnapsoinfraorchestrationRequestsApi;
 
 import java.io.File;
 import java.util.*;
 
-public class OnapsoinfracloudResourcesApiExample {
+public class OnapsoinfraorchestrationRequestsApiExample {
 
     public static void main(String[] args) {
         
-        OnapsoinfracloudResourcesApi apiInstance = new OnapsoinfracloudResourcesApi();
+        OnapsoinfraorchestrationRequestsApi apiInstance = new OnapsoinfraorchestrationRequestsApi();
+        String requestId = requestId_example; // String | 
         String version = version_example; // String | 
-        String operationalEnvironmentId = operationalEnvironmentId_example; // String | 
-        String body = body_example; // String | 
         try {
-            apiInstance.activateOperationEnvironment(version, operationalEnvironmentId, body);
+            apiInstance.getOrchestrationRequestForReqId(requestId, version);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfracloudResourcesApi#activateOperationEnvironment");
+            System.err.println("Exception when calling OnapsoinfraorchestrationRequestsApi#getOrchestrationRequestForReqId");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-android">
-                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfracloudResourcesApi;
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationRequestsApi;
 
-public class OnapsoinfracloudResourcesApiExample {
+public class OnapsoinfraorchestrationRequestsApiExample {
 
     public static void main(String[] args) {
-        OnapsoinfracloudResourcesApi apiInstance = new OnapsoinfracloudResourcesApi();
+        OnapsoinfraorchestrationRequestsApi apiInstance = new OnapsoinfraorchestrationRequestsApi();
+        String requestId = requestId_example; // String | 
         String version = version_example; // String | 
-        String operationalEnvironmentId = operationalEnvironmentId_example; // String | 
-        String body = body_example; // String | 
         try {
-            apiInstance.activateOperationEnvironment(version, operationalEnvironmentId, body);
+            apiInstance.getOrchestrationRequestForReqId(requestId, version);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfracloudResourcesApi#activateOperationEnvironment");
+            System.err.println("Exception when calling OnapsoinfraorchestrationRequestsApi#getOrchestrationRequestForReqId");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-groovy">
+  <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
-String *operationalEnvironmentId = operationalEnvironmentId_example; // 
-String *body = body_example; //  (optional)
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *requestId = requestId_example; // 
+String *version = version_example; // 
 
-OnapsoinfracloudResourcesApi *apiInstance = [[OnapsoinfracloudResourcesApi alloc] init];
+OnapsoinfraorchestrationRequestsApi *apiInstance = [[OnapsoinfraorchestrationRequestsApi alloc] init];
 
-// Activate an Operational Environment
-[apiInstance activateOperationEnvironmentWith:version
-    operationalEnvironmentId:operationalEnvironmentId
-    body:body
+// Find Orchestrated Requests for a given requestId
+[apiInstance getOrchestrationRequestForReqIdWith:requestId
+    version:version
               completionHandler: ^(NSError* error) {
                             if (error) {
                                 NSLog(@"Error: %@", error);
@@ -3365,18 +8061,15 @@ OnapsoinfracloudResourcesApi *apiInstance = [[OnapsoinfracloudResourcesApi alloc
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfracloudResourcesApi()
+var api = new SoGuilinApIs.OnapsoinfraorchestrationRequestsApi()
 
-var version = version_example; // {String} 
+var requestId = requestId_example; // {String} 
 
-var operationalEnvironmentId = operationalEnvironmentId_example; // {String} 
+var version = version_example; // {String} 
 
-var opts = { 
-  'body': body_example // {String} 
-};
 
 var callback = function(error, data, response) {
   if (error) {
@@ -3385,14 +8078,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.activateOperationEnvironment(version, operationalEnvironmentId, opts, callback);
+api.getOrchestrationRequestForReqId(requestId, version, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-angular">
+                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-csharp">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -3401,24 +8094,23 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class activateOperationEnvironmentExample
+    public class getOrchestrationRequestForReqIdExample
     {
         public void main()
         {
             
-            var apiInstance = new OnapsoinfracloudResourcesApi();
+            var apiInstance = new OnapsoinfraorchestrationRequestsApi();
+            var requestId = requestId_example;  // String | 
             var version = version_example;  // String | 
-            var operationalEnvironmentId = operationalEnvironmentId_example;  // String | 
-            var body = body_example;  // String |  (optional) 
 
             try
             {
-                // Activate an Operational Environment
-                apiInstance.activateOperationEnvironment(version, operationalEnvironmentId, body);
+                // Find Orchestrated Requests for a given requestId
+                apiInstance.getOrchestrationRequestForReqId(requestId, version);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling OnapsoinfracloudResourcesApi.activateOperationEnvironment: " + e.Message );
+                Debug.Print("Exception when calling OnapsoinfraorchestrationRequestsApi.getOrchestrationRequestForReqId: " + e.Message );
             }
         }
     }
@@ -3426,42 +8118,40 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-php">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
-$api_instance = new Swagger\Client\Api\OnapsoinfracloudResourcesApi();
+$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationRequestsApi();
+$requestId = requestId_example; // String | 
 $version = version_example; // String | 
-$operationalEnvironmentId = operationalEnvironmentId_example; // String | 
-$body = body_example; // String | 
 
 try {
-    $api_instance->activateOperationEnvironment($version, $operationalEnvironmentId, $body);
+    $api_instance->getOrchestrationRequestForReqId($requestId, $version);
 } catch (Exception $e) {
-    echo 'Exception when calling OnapsoinfracloudResourcesApi->activateOperationEnvironment: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling OnapsoinfraorchestrationRequestsApi->getOrchestrationRequestForReqId: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-perl">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
-use WWW::SwaggerClient::OnapsoinfracloudResourcesApi;
+use WWW::SwaggerClient::OnapsoinfraorchestrationRequestsApi;
 
-my $api_instance = WWW::SwaggerClient::OnapsoinfracloudResourcesApi->new();
+my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationRequestsApi->new();
+my $requestId = requestId_example; # String | 
 my $version = version_example; # String | 
-my $operationalEnvironmentId = operationalEnvironmentId_example; # String | 
-my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->activateOperationEnvironment(version => $version, operationalEnvironmentId => $operationalEnvironmentId, body => $body);
+    $api_instance->getOrchestrationRequestForReqId(requestId => $requestId, version => $version);
 };
 if ($@) {
-    warn "Exception when calling OnapsoinfracloudResourcesApi->activateOperationEnvironment: $@\n";
+    warn "Exception when calling OnapsoinfraorchestrationRequestsApi->getOrchestrationRequestForReqId: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-activateOperationEnvironment-0-python">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -3469,16 +8159,15 @@ from swagger_client.rest import ApiException
 from pprint import pprint
 
 # create an instance of the API class
-api_instance = swagger_client.OnapsoinfracloudResourcesApi()
+api_instance = swagger_client.OnapsoinfraorchestrationRequestsApi()
+requestId = requestId_example # String | 
 version = version_example # String | 
-operationalEnvironmentId = operationalEnvironmentId_example # String | 
-body = body_example # String |  (optional)
 
 try: 
-    # Activate an Operational Environment
-    api_instance.activate_operation_environment(version, operationalEnvironmentId, body=body)
+    # Find Orchestrated Requests for a given requestId
+    api_instance.get_orchestration_request_for_req_id(requestId, version)
 except ApiException as e:
-    print("Exception when calling OnapsoinfracloudResourcesApi->activateOperationEnvironment: %s\n" % e)</code></pre>
+    print("Exception when calling OnapsoinfraorchestrationRequestsApi->getOrchestrationRequestForReqId: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -3490,11 +8179,11 @@ except ApiException as e:
                                   <th width="150px">Name</th>
                                   <th>Description</th>
                                 </tr>
-                                  <tr><td style="width:150px;">version*</td>
+                                  <tr><td style="width:150px;">requestId*</td>
 <td>
 
 
-    <div id="d2e199_activateOperationEnvironment_version">
+    <div id="d2e199_getOrchestrationRequestForReqId_requestId">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -3510,11 +8199,11 @@ except ApiException as e:
 </td>
 </tr>
 
-                                  <tr><td style="width:150px;">operationalEnvironmentId*</td>
+                                  <tr><td style="width:150px;">version*</td>
 <td>
 
 
-    <div id="d2e199_activateOperationEnvironment_operationalEnvironmentId">
+    <div id="d2e199_getOrchestrationRequestForReqId_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -3533,47 +8222,6 @@ except ApiException as e:
                             </table>
 
 
-                            <div class="methodsubtabletitle">Body parameters</div>
-                            <table id="methodsubtable">
-                              <tr>
-                                <th width="150px">Name</th>
-                                <th>Description</th>
-                              </tr>
-                                <tr><td style="width:150px;">body </td>
-<td>
-
-
-<script>
-$(document).ready(function() {
-  var schemaWrapper = {
-  "in" : "body",
-  "name" : "body",
-  "required" : false,
-  "schema" : {
-    "type" : "string"
-  }
-};
-  var schema = schemaWrapper.schema;
-  if (schema.$ref != null) {
-    schema = defsParser.$refs.get(schema.$ref);
-  } else {
-    schemaWrapper.definitions = Object.assign({}, defs);
-    $RefParser.dereference(schemaWrapper).catch(function(err) {
-      console.log(err);
-    });
-  }
-
-  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
-  var result = $('#d2e199_activateOperationEnvironment_body');
-  result.empty();
-  result.append(view.render());
-});
-</script>
-<div id="d2e199_activateOperationEnvironment_body"></div>
-</td>
-</tr>
-
-                            </table>
 
 
 
@@ -3589,11 +8237,11 @@ $(document).ready(function() {
                         </article>
                       </div>
                       <hr>
-                    <div id="api-OnapsoinfracloudResources-createOperationEnvironment">
-                      <article id="api-OnapsoinfracloudResources-createOperationEnvironment-0" data-group="User" data-name="createOperationEnvironment" data-version="0">
+                    <div id="api-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest">
+                      <article id="api-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0" data-group="User" data-name="unlockOrchestrationRequest" data-version="0">
                         <div class="pull-left">
-                          <h1>createOperationEnvironment</h1>
-                          <p>Create an Operational Environment</p>
+                          <h1>unlockOrchestrationRequest</h1>
+                          <p>Unlock Orchestrated Requests for a given requestId</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -3601,84 +8249,88 @@ $(document).ready(function() {
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/cloudResources/{version}/operationalEnvironments</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/orchestrationRequests/{version}/{requestId}/unlock</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-java">Java</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-createOperationEnvironment-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/cloudResources/{version}/operationalEnvironments"</code></pre>
+                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/orchestrationRequests/{version}/{requestId}/unlock"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-java">
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
-import io.swagger.client.api.OnapsoinfracloudResourcesApi;
+import io.swagger.client.api.OnapsoinfraorchestrationRequestsApi;
 
 import java.io.File;
 import java.util.*;
 
-public class OnapsoinfracloudResourcesApiExample {
+public class OnapsoinfraorchestrationRequestsApiExample {
 
     public static void main(String[] args) {
         
-        OnapsoinfracloudResourcesApi apiInstance = new OnapsoinfracloudResourcesApi();
+        OnapsoinfraorchestrationRequestsApi apiInstance = new OnapsoinfraorchestrationRequestsApi();
+        String requestId = requestId_example; // String | 
         String version = version_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.createOperationEnvironment(version, body);
+            apiInstance.unlockOrchestrationRequest(requestId, version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfracloudResourcesApi#createOperationEnvironment");
+            System.err.println("Exception when calling OnapsoinfraorchestrationRequestsApi#unlockOrchestrationRequest");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-android">
-                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfracloudResourcesApi;
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationRequestsApi;
 
-public class OnapsoinfracloudResourcesApiExample {
+public class OnapsoinfraorchestrationRequestsApiExample {
 
     public static void main(String[] args) {
-        OnapsoinfracloudResourcesApi apiInstance = new OnapsoinfracloudResourcesApi();
+        OnapsoinfraorchestrationRequestsApi apiInstance = new OnapsoinfraorchestrationRequestsApi();
+        String requestId = requestId_example; // String | 
         String version = version_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.createOperationEnvironment(version, body);
+            apiInstance.unlockOrchestrationRequest(requestId, version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfracloudResourcesApi#createOperationEnvironment");
+            System.err.println("Exception when calling OnapsoinfraorchestrationRequestsApi#unlockOrchestrationRequest");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-groovy">
+  <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *requestId = requestId_example; // 
+String *version = version_example; // 
 String *body = body_example; //  (optional)
 
-OnapsoinfracloudResourcesApi *apiInstance = [[OnapsoinfracloudResourcesApi alloc] init];
+OnapsoinfraorchestrationRequestsApi *apiInstance = [[OnapsoinfraorchestrationRequestsApi alloc] init];
 
-// Create an Operational Environment
-[apiInstance createOperationEnvironmentWith:version
+// Unlock Orchestrated Requests for a given requestId
+[apiInstance unlockOrchestrationRequestWith:requestId
+    version:version
     body:body
               completionHandler: ^(NSError* error) {
                             if (error) {
@@ -3688,10 +8340,12 @@ OnapsoinfracloudResourcesApi *apiInstance = [[OnapsoinfracloudResourcesApi alloc
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfracloudResourcesApi()
+var api = new SoGuilinApIs.OnapsoinfraorchestrationRequestsApi()
+
+var requestId = requestId_example; // {String} 
 
 var version = version_example; // {String} 
 
@@ -3706,14 +8360,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.createOperationEnvironment(version, opts, callback);
+api.unlockOrchestrationRequest(requestId, version, opts, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-angular">
+                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-csharp">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -3722,23 +8376,24 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class createOperationEnvironmentExample
+    public class unlockOrchestrationRequestExample
     {
         public void main()
         {
             
-            var apiInstance = new OnapsoinfracloudResourcesApi();
+            var apiInstance = new OnapsoinfraorchestrationRequestsApi();
+            var requestId = requestId_example;  // String | 
             var version = version_example;  // String | 
             var body = body_example;  // String |  (optional) 
 
             try
             {
-                // Create an Operational Environment
-                apiInstance.createOperationEnvironment(version, body);
+                // Unlock Orchestrated Requests for a given requestId
+                apiInstance.unlockOrchestrationRequest(requestId, version, body);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling OnapsoinfracloudResourcesApi.createOperationEnvironment: " + e.Message );
+                Debug.Print("Exception when calling OnapsoinfraorchestrationRequestsApi.unlockOrchestrationRequest: " + e.Message );
             }
         }
     }
@@ -3746,40 +8401,42 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-php">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
-$api_instance = new Swagger\Client\Api\OnapsoinfracloudResourcesApi();
+$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationRequestsApi();
+$requestId = requestId_example; // String | 
 $version = version_example; // String | 
 $body = body_example; // String | 
 
 try {
-    $api_instance->createOperationEnvironment($version, $body);
+    $api_instance->unlockOrchestrationRequest($requestId, $version, $body);
 } catch (Exception $e) {
-    echo 'Exception when calling OnapsoinfracloudResourcesApi->createOperationEnvironment: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling OnapsoinfraorchestrationRequestsApi->unlockOrchestrationRequest: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-perl">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
-use WWW::SwaggerClient::OnapsoinfracloudResourcesApi;
+use WWW::SwaggerClient::OnapsoinfraorchestrationRequestsApi;
 
-my $api_instance = WWW::SwaggerClient::OnapsoinfracloudResourcesApi->new();
+my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationRequestsApi->new();
+my $requestId = requestId_example; # String | 
 my $version = version_example; # String | 
 my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->createOperationEnvironment(version => $version, body => $body);
+    $api_instance->unlockOrchestrationRequest(requestId => $requestId, version => $version, body => $body);
 };
 if ($@) {
-    warn "Exception when calling OnapsoinfracloudResourcesApi->createOperationEnvironment: $@\n";
+    warn "Exception when calling OnapsoinfraorchestrationRequestsApi->unlockOrchestrationRequest: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-createOperationEnvironment-0-python">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -3787,15 +8444,16 @@ from swagger_client.rest import ApiException
 from pprint import pprint
 
 # create an instance of the API class
-api_instance = swagger_client.OnapsoinfracloudResourcesApi()
+api_instance = swagger_client.OnapsoinfraorchestrationRequestsApi()
+requestId = requestId_example # String | 
 version = version_example # String | 
 body = body_example # String |  (optional)
 
 try: 
-    # Create an Operational Environment
-    api_instance.create_operation_environment(version, body=body)
+    # Unlock Orchestrated Requests for a given requestId
+    api_instance.unlock_orchestration_request(requestId, version, body=body)
 except ApiException as e:
-    print("Exception when calling OnapsoinfracloudResourcesApi->createOperationEnvironment: %s\n" % e)</code></pre>
+    print("Exception when calling OnapsoinfraorchestrationRequestsApi->unlockOrchestrationRequest: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -3807,11 +8465,31 @@ except ApiException as e:
                                   <th width="150px">Name</th>
                                   <th>Description</th>
                                 </tr>
+                                  <tr><td style="width:150px;">requestId*</td>
+<td>
+
+
+    <div id="d2e199_unlockOrchestrationRequest_requestId">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
                                   <tr><td style="width:150px;">version*</td>
 <td>
 
 
-    <div id="d2e199_createOperationEnvironment_version">
+    <div id="d2e199_unlockOrchestrationRequest_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -3861,12 +8539,12 @@ $(document).ready(function() {
   }
 
   var view = new JSONSchemaView(schema,2,{isBodyParam: true});
-  var result = $('#d2e199_createOperationEnvironment_body');
+  var result = $('#d2e199_unlockOrchestrationRequest_body');
   result.empty();
   result.append(view.render());
 });
 </script>
-<div id="d2e199_createOperationEnvironment_body"></div>
+<div id="d2e199_unlockOrchestrationRequest_body"></div>
 </td>
 </tr>
 
@@ -3886,11 +8564,14 @@ $(document).ready(function() {
                         </article>
                       </div>
                       <hr>
-                    <div id="api-OnapsoinfracloudResources-deactivateOperationEnvironment">
-                      <article id="api-OnapsoinfracloudResources-deactivateOperationEnvironment-0" data-group="User" data-name="deactivateOperationEnvironment" data-version="0">
+                  </section>
+                <section id="api-OnapsoinfraorchestrationTasks">
+                  <h1>OnapsoinfraorchestrationTasks</h1>
+                    <div id="api-OnapsoinfraorchestrationTasks-abortOrchestrationTask">
+                      <article id="api-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0" data-group="User" data-name="abortOrchestrationTask" data-version="0">
                         <div class="pull-left">
-                          <h1>deactivateOperationEnvironment</h1>
-                          <p>Deactivate an Operational Environment</p>
+                          <h1>abortOrchestrationTask</h1>
+                          <p>abort orchestrationTask for a given taskId</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -3898,88 +8579,88 @@ $(document).ready(function() {
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/cloudResources/{version}/operationalEnvironments/{operationalEnvironmentId}/deactivate</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/orchestrationTasks/{version}/{taskId}/abort</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-java">Java</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/cloudResources/{version}/operationalEnvironments/{operationalEnvironmentId}/deactivate"</code></pre>
+                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/orchestrationTasks/{version}/{taskId}/abort"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-java">
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
-import io.swagger.client.api.OnapsoinfracloudResourcesApi;
+import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
 import java.io.File;
 import java.util.*;
 
-public class OnapsoinfracloudResourcesApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
         
-        OnapsoinfracloudResourcesApi apiInstance = new OnapsoinfracloudResourcesApi();
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
+        String taskId = taskId_example; // String | 
         String version = version_example; // String | 
-        String operationalEnvironmentId = operationalEnvironmentId_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.deactivateOperationEnvironment(version, operationalEnvironmentId, body);
+            apiInstance.abortOrchestrationTask(taskId, version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfracloudResourcesApi#deactivateOperationEnvironment");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#abortOrchestrationTask");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-android">
-                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfracloudResourcesApi;
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
-public class OnapsoinfracloudResourcesApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
-        OnapsoinfracloudResourcesApi apiInstance = new OnapsoinfracloudResourcesApi();
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
+        String taskId = taskId_example; // String | 
         String version = version_example; // String | 
-        String operationalEnvironmentId = operationalEnvironmentId_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.deactivateOperationEnvironment(version, operationalEnvironmentId, body);
+            apiInstance.abortOrchestrationTask(taskId, version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfracloudResourcesApi#deactivateOperationEnvironment");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#abortOrchestrationTask");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-groovy">
+  <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
-String *operationalEnvironmentId = operationalEnvironmentId_example; // 
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *taskId = taskId_example; // 
+String *version = version_example; // 
 String *body = body_example; //  (optional)
 
-OnapsoinfracloudResourcesApi *apiInstance = [[OnapsoinfracloudResourcesApi alloc] init];
+OnapsoinfraorchestrationTasksApi *apiInstance = [[OnapsoinfraorchestrationTasksApi alloc] init];
 
-// Deactivate an Operational Environment
-[apiInstance deactivateOperationEnvironmentWith:version
-    operationalEnvironmentId:operationalEnvironmentId
+// abort orchestrationTask for a given taskId
+[apiInstance abortOrchestrationTaskWith:taskId
+    version:version
     body:body
               completionHandler: ^(NSError* error) {
                             if (error) {
@@ -3989,14 +8670,14 @@ OnapsoinfracloudResourcesApi *apiInstance = [[OnapsoinfracloudResourcesApi alloc
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfracloudResourcesApi()
+var api = new SoGuilinApIs.OnapsoinfraorchestrationTasksApi()
 
-var version = version_example; // {String} 
+var taskId = taskId_example; // {String} 
 
-var operationalEnvironmentId = operationalEnvironmentId_example; // {String} 
+var version = version_example; // {String} 
 
 var opts = { 
   'body': body_example // {String} 
@@ -4009,14 +8690,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.deactivateOperationEnvironment(version, operationalEnvironmentId, opts, callback);
+api.abortOrchestrationTask(taskId, version, opts, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-angular">
+                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-csharp">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -4025,24 +8706,24 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class deactivateOperationEnvironmentExample
+    public class abortOrchestrationTaskExample
     {
         public void main()
         {
             
-            var apiInstance = new OnapsoinfracloudResourcesApi();
+            var apiInstance = new OnapsoinfraorchestrationTasksApi();
+            var taskId = taskId_example;  // String | 
             var version = version_example;  // String | 
-            var operationalEnvironmentId = operationalEnvironmentId_example;  // String | 
             var body = body_example;  // String |  (optional) 
 
             try
             {
-                // Deactivate an Operational Environment
-                apiInstance.deactivateOperationEnvironment(version, operationalEnvironmentId, body);
+                // abort orchestrationTask for a given taskId
+                apiInstance.abortOrchestrationTask(taskId, version, body);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling OnapsoinfracloudResourcesApi.deactivateOperationEnvironment: " + e.Message );
+                Debug.Print("Exception when calling OnapsoinfraorchestrationTasksApi.abortOrchestrationTask: " + e.Message );
             }
         }
     }
@@ -4050,42 +8731,42 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-php">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
-$api_instance = new Swagger\Client\Api\OnapsoinfracloudResourcesApi();
+$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationTasksApi();
+$taskId = taskId_example; // String | 
 $version = version_example; // String | 
-$operationalEnvironmentId = operationalEnvironmentId_example; // String | 
 $body = body_example; // String | 
 
 try {
-    $api_instance->deactivateOperationEnvironment($version, $operationalEnvironmentId, $body);
+    $api_instance->abortOrchestrationTask($taskId, $version, $body);
 } catch (Exception $e) {
-    echo 'Exception when calling OnapsoinfracloudResourcesApi->deactivateOperationEnvironment: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling OnapsoinfraorchestrationTasksApi->abortOrchestrationTask: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-perl">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
-use WWW::SwaggerClient::OnapsoinfracloudResourcesApi;
+use WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi;
 
-my $api_instance = WWW::SwaggerClient::OnapsoinfracloudResourcesApi->new();
+my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi->new();
+my $taskId = taskId_example; # String | 
 my $version = version_example; # String | 
-my $operationalEnvironmentId = operationalEnvironmentId_example; # String | 
 my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->deactivateOperationEnvironment(version => $version, operationalEnvironmentId => $operationalEnvironmentId, body => $body);
+    $api_instance->abortOrchestrationTask(taskId => $taskId, version => $version, body => $body);
 };
 if ($@) {
-    warn "Exception when calling OnapsoinfracloudResourcesApi->deactivateOperationEnvironment: $@\n";
+    warn "Exception when calling OnapsoinfraorchestrationTasksApi->abortOrchestrationTask: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResources-deactivateOperationEnvironment-0-python">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-abortOrchestrationTask-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -4093,16 +8774,16 @@ from swagger_client.rest import ApiException
 from pprint import pprint
 
 # create an instance of the API class
-api_instance = swagger_client.OnapsoinfracloudResourcesApi()
+api_instance = swagger_client.OnapsoinfraorchestrationTasksApi()
+taskId = taskId_example # String | 
 version = version_example # String | 
-operationalEnvironmentId = operationalEnvironmentId_example # String | 
 body = body_example # String |  (optional)
 
 try: 
-    # Deactivate an Operational Environment
-    api_instance.deactivate_operation_environment(version, operationalEnvironmentId, body=body)
+    # abort orchestrationTask for a given taskId
+    api_instance.abort_orchestration_task(taskId, version, body=body)
 except ApiException as e:
-    print("Exception when calling OnapsoinfracloudResourcesApi->deactivateOperationEnvironment: %s\n" % e)</code></pre>
+    print("Exception when calling OnapsoinfraorchestrationTasksApi->abortOrchestrationTask: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -4114,11 +8795,11 @@ except ApiException as e:
                                   <th width="150px">Name</th>
                                   <th>Description</th>
                                 </tr>
-                                  <tr><td style="width:150px;">version*</td>
+                                  <tr><td style="width:150px;">taskId*</td>
 <td>
 
 
-    <div id="d2e199_deactivateOperationEnvironment_version">
+    <div id="d2e199_abortOrchestrationTask_taskId">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -4134,11 +8815,11 @@ except ApiException as e:
 </td>
 </tr>
 
-                                  <tr><td style="width:150px;">operationalEnvironmentId*</td>
+                                  <tr><td style="width:150px;">version*</td>
 <td>
 
 
-    <div id="d2e199_deactivateOperationEnvironment_operationalEnvironmentId">
+    <div id="d2e199_abortOrchestrationTask_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -4188,12 +8869,12 @@ $(document).ready(function() {
   }
 
   var view = new JSONSchemaView(schema,2,{isBodyParam: true});
-  var result = $('#d2e199_deactivateOperationEnvironment_body');
+  var result = $('#d2e199_abortOrchestrationTask_body');
   result.empty();
   result.append(view.render());
 });
 </script>
-<div id="d2e199_deactivateOperationEnvironment_body"></div>
+<div id="d2e199_abortOrchestrationTask_body"></div>
 </td>
 </tr>
 
@@ -4213,14 +8894,11 @@ $(document).ready(function() {
                         </article>
                       </div>
                       <hr>
-                  </section>
-                <section id="api-OnapsoinfracloudResourcesRequests">
-                  <h1>OnapsoinfracloudResourcesRequests</h1>
-                    <div id="api-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter">
-                      <article id="api-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0" data-group="User" data-name="getOperationEnvironmentStatusFilter" data-version="0">
+                    <div id="api-OnapsoinfraorchestrationTasks-commitOrchestrationTask">
+                      <article id="api-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0" data-group="User" data-name="commitOrchestrationTask" data-version="0">
                         <div class="pull-left">
-                          <h1>getOperationEnvironmentStatusFilter</h1>
-                          <p>Get status of an Operational Environment based on filter criteria</p>
+                          <h1>commitOrchestrationTask</h1>
+                          <p>commit orchestrationTask for a given taskId</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -4228,81 +8906,89 @@ $(document).ready(function() {
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/onap/so/infra/cloudResourcesRequests/{version}</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/orchestrationTasks/{version}/{taskId}/commit</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-java">Java</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/onap/so/infra/cloudResourcesRequests/{version}"</code></pre>
+                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/orchestrationTasks/{version}/{taskId}/commit"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-java">
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
-import io.swagger.client.api.OnapsoinfracloudResourcesRequestsApi;
+import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
 import java.io.File;
 import java.util.*;
 
-public class OnapsoinfracloudResourcesRequestsApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
         
-        OnapsoinfracloudResourcesRequestsApi apiInstance = new OnapsoinfracloudResourcesRequestsApi();
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
+        String taskId = taskId_example; // String | 
         String version = version_example; // String | 
+        String body = body_example; // String | 
         try {
-            apiInstance.getOperationEnvironmentStatusFilter(version);
+            apiInstance.commitOrchestrationTask(taskId, version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfracloudResourcesRequestsApi#getOperationEnvironmentStatusFilter");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#commitOrchestrationTask");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-android">
-                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfracloudResourcesRequestsApi;
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
-public class OnapsoinfracloudResourcesRequestsApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
-        OnapsoinfracloudResourcesRequestsApi apiInstance = new OnapsoinfracloudResourcesRequestsApi();
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
+        String taskId = taskId_example; // String | 
         String version = version_example; // String | 
+        String body = body_example; // String | 
         try {
-            apiInstance.getOperationEnvironmentStatusFilter(version);
+            apiInstance.commitOrchestrationTask(taskId, version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfracloudResourcesRequestsApi#getOperationEnvironmentStatusFilter");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#commitOrchestrationTask");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-groovy">
+  <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *taskId = taskId_example; // 
+String *version = version_example; // 
+String *body = body_example; //  (optional)
 
-OnapsoinfracloudResourcesRequestsApi *apiInstance = [[OnapsoinfracloudResourcesRequestsApi alloc] init];
+OnapsoinfraorchestrationTasksApi *apiInstance = [[OnapsoinfraorchestrationTasksApi alloc] init];
 
-// Get status of an Operational Environment based on filter criteria
-[apiInstance getOperationEnvironmentStatusFilterWith:version
+// commit orchestrationTask for a given taskId
+[apiInstance commitOrchestrationTaskWith:taskId
+    version:version
+    body:body
               completionHandler: ^(NSError* error) {
                             if (error) {
                                 NSLog(@"Error: %@", error);
@@ -4311,13 +8997,18 @@ OnapsoinfracloudResourcesRequestsApi *apiInstance = [[OnapsoinfracloudResourcesR
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfracloudResourcesRequestsApi()
+var api = new SoGuilinApIs.OnapsoinfraorchestrationTasksApi()
+
+var taskId = taskId_example; // {String} 
 
 var version = version_example; // {String} 
 
+var opts = { 
+  'body': body_example // {String} 
+};
 
 var callback = function(error, data, response) {
   if (error) {
@@ -4326,14 +9017,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.getOperationEnvironmentStatusFilter(version, callback);
+api.commitOrchestrationTask(taskId, version, opts, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-angular">
+                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-csharp">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -4342,22 +9033,24 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class getOperationEnvironmentStatusFilterExample
+    public class commitOrchestrationTaskExample
     {
         public void main()
         {
             
-            var apiInstance = new OnapsoinfracloudResourcesRequestsApi();
+            var apiInstance = new OnapsoinfraorchestrationTasksApi();
+            var taskId = taskId_example;  // String | 
             var version = version_example;  // String | 
+            var body = body_example;  // String |  (optional) 
 
             try
             {
-                // Get status of an Operational Environment based on filter criteria
-                apiInstance.getOperationEnvironmentStatusFilter(version);
+                // commit orchestrationTask for a given taskId
+                apiInstance.commitOrchestrationTask(taskId, version, body);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling OnapsoinfracloudResourcesRequestsApi.getOperationEnvironmentStatusFilter: " + e.Message );
+                Debug.Print("Exception when calling OnapsoinfraorchestrationTasksApi.commitOrchestrationTask: " + e.Message );
             }
         }
     }
@@ -4365,38 +9058,42 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-php">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
-$api_instance = new Swagger\Client\Api\OnapsoinfracloudResourcesRequestsApi();
+$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationTasksApi();
+$taskId = taskId_example; // String | 
 $version = version_example; // String | 
+$body = body_example; // String | 
 
 try {
-    $api_instance->getOperationEnvironmentStatusFilter($version);
+    $api_instance->commitOrchestrationTask($taskId, $version, $body);
 } catch (Exception $e) {
-    echo 'Exception when calling OnapsoinfracloudResourcesRequestsApi->getOperationEnvironmentStatusFilter: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling OnapsoinfraorchestrationTasksApi->commitOrchestrationTask: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-perl">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
-use WWW::SwaggerClient::OnapsoinfracloudResourcesRequestsApi;
+use WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi;
 
-my $api_instance = WWW::SwaggerClient::OnapsoinfracloudResourcesRequestsApi->new();
+my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi->new();
+my $taskId = taskId_example; # String | 
 my $version = version_example; # String | 
+my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->getOperationEnvironmentStatusFilter(version => $version);
+    $api_instance->commitOrchestrationTask(taskId => $taskId, version => $version, body => $body);
 };
 if ($@) {
-    warn "Exception when calling OnapsoinfracloudResourcesRequestsApi->getOperationEnvironmentStatusFilter: $@\n";
+    warn "Exception when calling OnapsoinfraorchestrationTasksApi->commitOrchestrationTask: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-getOperationEnvironmentStatusFilter-0-python">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-commitOrchestrationTask-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -4404,14 +9101,16 @@ from swagger_client.rest import ApiException
 from pprint import pprint
 
 # create an instance of the API class
-api_instance = swagger_client.OnapsoinfracloudResourcesRequestsApi()
+api_instance = swagger_client.OnapsoinfraorchestrationTasksApi()
+taskId = taskId_example # String | 
 version = version_example # String | 
+body = body_example # String |  (optional)
 
 try: 
-    # Get status of an Operational Environment based on filter criteria
-    api_instance.get_operation_environment_status_filter(version)
+    # commit orchestrationTask for a given taskId
+    api_instance.commit_orchestration_task(taskId, version, body=body)
 except ApiException as e:
-    print("Exception when calling OnapsoinfracloudResourcesRequestsApi->getOperationEnvironmentStatusFilter: %s\n" % e)</code></pre>
+    print("Exception when calling OnapsoinfraorchestrationTasksApi->commitOrchestrationTask: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -4423,11 +9122,31 @@ except ApiException as e:
                                   <th width="150px">Name</th>
                                   <th>Description</th>
                                 </tr>
+                                  <tr><td style="width:150px;">taskId*</td>
+<td>
+
+
+    <div id="d2e199_commitOrchestrationTask_taskId">
+        <div class="json-schema-view">
+            <div class="primitive">
+                <span class="type">
+                    String
+                </span>
+
+            </div>
+                <div class="inner required">
+                    Required
+                </div>
+        </div>
+    </div>
+</td>
+</tr>
+
                                   <tr><td style="width:150px;">version*</td>
 <td>
 
 
-    <div id="d2e199_getOperationEnvironmentStatusFilter_version">
+    <div id="d2e199_commitOrchestrationTask_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -4446,6 +9165,47 @@ except ApiException as e:
                             </table>
 
 
+                            <div class="methodsubtabletitle">Body parameters</div>
+                            <table id="methodsubtable">
+                              <tr>
+                                <th width="150px">Name</th>
+                                <th>Description</th>
+                              </tr>
+                                <tr><td style="width:150px;">body </td>
+<td>
+
+
+<script>
+$(document).ready(function() {
+  var schemaWrapper = {
+  "in" : "body",
+  "name" : "body",
+  "required" : false,
+  "schema" : {
+    "type" : "string"
+  }
+};
+  var schema = schemaWrapper.schema;
+  if (schema.$ref != null) {
+    schema = defsParser.$refs.get(schema.$ref);
+  } else {
+    schemaWrapper.definitions = Object.assign({}, defs);
+    $RefParser.dereference(schemaWrapper).catch(function(err) {
+      console.log(err);
+    });
+  }
+
+  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
+  var result = $('#d2e199_commitOrchestrationTask_body');
+  result.empty();
+  result.append(view.render());
+});
+</script>
+<div id="d2e199_commitOrchestrationTask_body"></div>
+</td>
+</tr>
+
+                            </table>
 
 
 
@@ -4461,11 +9221,11 @@ except ApiException as e:
                         </article>
                       </div>
                       <hr>
-                    <div id="api-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId">
-                      <article id="api-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0" data-group="User" data-name="unlockOrchestrationRequestForReqId" data-version="0">
+                    <div id="api-OnapsoinfraorchestrationTasks-createOrchestrationTask">
+                      <article id="api-OnapsoinfraorchestrationTasks-createOrchestrationTask-0" data-group="User" data-name="createOrchestrationTask" data-version="0">
                         <div class="pull-left">
-                          <h1>unlockOrchestrationRequestForReqId</h1>
-                          <p>Unlock CloudOrchestration requests for a specified requestId</p>
+                          <h1>createOrchestrationTask</h1>
+                          <p>Create an orchestrationTask</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -4473,88 +9233,84 @@ except ApiException as e:
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/cloudResourcesRequests/{version}/{requestId}/unlock</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/orchestrationTasks/{version}</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-java">Java</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/cloudResourcesRequests/{version}/{requestId}/unlock"</code></pre>
+                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/orchestrationTasks/{version}"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-java">
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
-import io.swagger.client.api.OnapsoinfracloudResourcesRequestsApi;
+import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
 import java.io.File;
 import java.util.*;
 
-public class OnapsoinfracloudResourcesRequestsApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
         
-        OnapsoinfracloudResourcesRequestsApi apiInstance = new OnapsoinfracloudResourcesRequestsApi();
-        String requestId = requestId_example; // String | 
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
         String version = version_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.unlockOrchestrationRequestForReqId(requestId, version, body);
+            apiInstance.createOrchestrationTask(version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfracloudResourcesRequestsApi#unlockOrchestrationRequestForReqId");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#createOrchestrationTask");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-android">
-                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfracloudResourcesRequestsApi;
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
-public class OnapsoinfracloudResourcesRequestsApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
-        OnapsoinfracloudResourcesRequestsApi apiInstance = new OnapsoinfracloudResourcesRequestsApi();
-        String requestId = requestId_example; // String | 
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
         String version = version_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.unlockOrchestrationRequestForReqId(requestId, version, body);
+            apiInstance.createOrchestrationTask(version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfracloudResourcesRequestsApi#unlockOrchestrationRequestForReqId");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#createOrchestrationTask");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-groovy">
+  <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">String *requestId = requestId_example; // 
-String *version = version_example; // 
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
 String *body = body_example; //  (optional)
 
-OnapsoinfracloudResourcesRequestsApi *apiInstance = [[OnapsoinfracloudResourcesRequestsApi alloc] init];
+OnapsoinfraorchestrationTasksApi *apiInstance = [[OnapsoinfraorchestrationTasksApi alloc] init];
 
-// Unlock CloudOrchestration requests for a specified requestId
-[apiInstance unlockOrchestrationRequestForReqIdWith:requestId
-    version:version
+// Create an orchestrationTask
+[apiInstance createOrchestrationTaskWith:version
     body:body
               completionHandler: ^(NSError* error) {
                             if (error) {
@@ -4564,12 +9320,10 @@ OnapsoinfracloudResourcesRequestsApi *apiInstance = [[OnapsoinfracloudResourcesR
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
-
-var api = new SoCasablancaApIs.OnapsoinfracloudResourcesRequestsApi()
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var requestId = requestId_example; // {String} 
+var api = new SoGuilinApIs.OnapsoinfraorchestrationTasksApi()
 
 var version = version_example; // {String} 
 
@@ -4584,14 +9338,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.unlockOrchestrationRequestForReqId(requestId, version, opts, callback);
+api.createOrchestrationTask(version, opts, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-angular">
+                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-csharp">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -4600,24 +9354,23 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class unlockOrchestrationRequestForReqIdExample
+    public class createOrchestrationTaskExample
     {
         public void main()
         {
             
-            var apiInstance = new OnapsoinfracloudResourcesRequestsApi();
-            var requestId = requestId_example;  // String | 
+            var apiInstance = new OnapsoinfraorchestrationTasksApi();
             var version = version_example;  // String | 
             var body = body_example;  // String |  (optional) 
 
             try
             {
-                // Unlock CloudOrchestration requests for a specified requestId
-                apiInstance.unlockOrchestrationRequestForReqId(requestId, version, body);
+                // Create an orchestrationTask
+                apiInstance.createOrchestrationTask(version, body);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling OnapsoinfracloudResourcesRequestsApi.unlockOrchestrationRequestForReqId: " + e.Message );
+                Debug.Print("Exception when calling OnapsoinfraorchestrationTasksApi.createOrchestrationTask: " + e.Message );
             }
         }
     }
@@ -4625,42 +9378,40 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-php">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
-$api_instance = new Swagger\Client\Api\OnapsoinfracloudResourcesRequestsApi();
-$requestId = requestId_example; // String | 
+$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationTasksApi();
 $version = version_example; // String | 
 $body = body_example; // String | 
 
 try {
-    $api_instance->unlockOrchestrationRequestForReqId($requestId, $version, $body);
+    $api_instance->createOrchestrationTask($version, $body);
 } catch (Exception $e) {
-    echo 'Exception when calling OnapsoinfracloudResourcesRequestsApi->unlockOrchestrationRequestForReqId: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling OnapsoinfraorchestrationTasksApi->createOrchestrationTask: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-perl">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
-use WWW::SwaggerClient::OnapsoinfracloudResourcesRequestsApi;
+use WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi;
 
-my $api_instance = WWW::SwaggerClient::OnapsoinfracloudResourcesRequestsApi->new();
-my $requestId = requestId_example; # String | 
+my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi->new();
 my $version = version_example; # String | 
 my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->unlockOrchestrationRequestForReqId(requestId => $requestId, version => $version, body => $body);
+    $api_instance->createOrchestrationTask(version => $version, body => $body);
 };
 if ($@) {
-    warn "Exception when calling OnapsoinfracloudResourcesRequestsApi->unlockOrchestrationRequestForReqId: $@\n";
+    warn "Exception when calling OnapsoinfraorchestrationTasksApi->createOrchestrationTask: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfracloudResourcesRequests-unlockOrchestrationRequestForReqId-0-python">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-createOrchestrationTask-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -4668,16 +9419,15 @@ from swagger_client.rest import ApiException
 from pprint import pprint
 
 # create an instance of the API class
-api_instance = swagger_client.OnapsoinfracloudResourcesRequestsApi()
-requestId = requestId_example # String | 
+api_instance = swagger_client.OnapsoinfraorchestrationTasksApi()
 version = version_example # String | 
 body = body_example # String |  (optional)
 
 try: 
-    # Unlock CloudOrchestration requests for a specified requestId
-    api_instance.unlock_orchestration_request_for_req_id(requestId, version, body=body)
+    # Create an orchestrationTask
+    api_instance.create_orchestration_task(version, body=body)
 except ApiException as e:
-    print("Exception when calling OnapsoinfracloudResourcesRequestsApi->unlockOrchestrationRequestForReqId: %s\n" % e)</code></pre>
+    print("Exception when calling OnapsoinfraorchestrationTasksApi->createOrchestrationTask: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -4689,31 +9439,11 @@ except ApiException as e:
                                   <th width="150px">Name</th>
                                   <th>Description</th>
                                 </tr>
-                                  <tr><td style="width:150px;">requestId*</td>
-<td>
-
-
-    <div id="d2e199_unlockOrchestrationRequestForReqId_requestId">
-        <div class="json-schema-view">
-            <div class="primitive">
-                <span class="type">
-                    String
-                </span>
-
-            </div>
-                <div class="inner required">
-                    Required
-                </div>
-        </div>
-    </div>
-</td>
-</tr>
-
                                   <tr><td style="width:150px;">version*</td>
 <td>
 
 
-    <div id="d2e199_unlockOrchestrationRequestForReqId_version">
+    <div id="d2e199_createOrchestrationTask_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -4763,12 +9493,12 @@ $(document).ready(function() {
   }
 
   var view = new JSONSchemaView(schema,2,{isBodyParam: true});
-  var result = $('#d2e199_unlockOrchestrationRequestForReqId_body');
+  var result = $('#d2e199_createOrchestrationTask_body');
   result.empty();
   result.append(view.render());
 });
 </script>
-<div id="d2e199_unlockOrchestrationRequestForReqId_body"></div>
+<div id="d2e199_createOrchestrationTask_body"></div>
 </td>
 </tr>
 
@@ -4788,14 +9518,11 @@ $(document).ready(function() {
                         </article>
                       </div>
                       <hr>
-                  </section>
-                <section id="api-OnapsoinframodelDistributions">
-                  <h1>OnapsoinframodelDistributions</h1>
-                    <div id="api-OnapsoinframodelDistributions-updateModelDistributionStatus">
-                      <article id="api-OnapsoinframodelDistributions-updateModelDistributionStatus-0" data-group="User" data-name="updateModelDistributionStatus" data-version="0">
+                    <div id="api-OnapsoinfraorchestrationTasks-deleteOrchestrationTask">
+                      <article id="api-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0" data-group="User" data-name="deleteOrchestrationTask" data-version="0">
                         <div class="pull-left">
-                          <h1>updateModelDistributionStatus</h1>
-                          <p>Update model distribution status</p>
+                          <h1>deleteOrchestrationTask</h1>
+                          <p>delete orchestrationTask for a given taskId</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -4803,89 +9530,85 @@ $(document).ready(function() {
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/modelDistributions/{version}/distributions/{distributionId}</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="delete"><code><span class="pln">/onap/so/infra/orchestrationTasks/{version}/{taskId}</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-java">Java</a></li>
-                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/modelDistributions/{version}/distributions/{distributionId}"</code></pre>
+                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X DELETE "http://localhost/onap/so/infra/orchestrationTasks/{version}/{taskId}"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-java">
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
-import io.swagger.client.api.OnapsoinframodelDistributionsApi;
+import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
 import java.io.File;
 import java.util.*;
 
-public class OnapsoinframodelDistributionsApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
         
-        OnapsoinframodelDistributionsApi apiInstance = new OnapsoinframodelDistributionsApi();
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
+        String taskId = taskId_example; // String | 
         String version = version_example; // String | 
-        String distributionId = distributionId_example; // String | 
-        String body = body_example; // String | 
         try {
-            apiInstance.updateModelDistributionStatus(version, distributionId, body);
+            apiInstance.deleteOrchestrationTask(taskId, version);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinframodelDistributionsApi#updateModelDistributionStatus");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#deleteOrchestrationTask");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-android">
-                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinframodelDistributionsApi;
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
-public class OnapsoinframodelDistributionsApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
-        OnapsoinframodelDistributionsApi apiInstance = new OnapsoinframodelDistributionsApi();
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
+        String taskId = taskId_example; // String | 
         String version = version_example; // String | 
-        String distributionId = distributionId_example; // String | 
-        String body = body_example; // String | 
         try {
-            apiInstance.updateModelDistributionStatus(version, distributionId, body);
+            apiInstance.deleteOrchestrationTask(taskId, version);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinframodelDistributionsApi#updateModelDistributionStatus");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#deleteOrchestrationTask");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-groovy">
+  <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
-String *distributionId = distributionId_example; // 
-String *body = body_example; //  (optional)
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *taskId = taskId_example; // 
+String *version = version_example; // 
 
-OnapsoinframodelDistributionsApi *apiInstance = [[OnapsoinframodelDistributionsApi alloc] init];
+OnapsoinfraorchestrationTasksApi *apiInstance = [[OnapsoinfraorchestrationTasksApi alloc] init];
 
-// Update model distribution status
-[apiInstance updateModelDistributionStatusWith:version
-    distributionId:distributionId
-    body:body
+// delete orchestrationTask for a given taskId
+[apiInstance deleteOrchestrationTaskWith:taskId
+    version:version
               completionHandler: ^(NSError* error) {
                             if (error) {
                                 NSLog(@"Error: %@", error);
@@ -4894,18 +9617,15 @@ OnapsoinframodelDistributionsApi *apiInstance = [[OnapsoinframodelDistributionsA
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinframodelDistributionsApi()
+var api = new SoGuilinApIs.OnapsoinfraorchestrationTasksApi()
 
-var version = version_example; // {String} 
+var taskId = taskId_example; // {String} 
 
-var distributionId = distributionId_example; // {String} 
+var version = version_example; // {String} 
 
-var opts = { 
-  'body': body_example // {String} 
-};
 
 var callback = function(error, data, response) {
   if (error) {
@@ -4914,14 +9634,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.updateModelDistributionStatus(version, distributionId, opts, callback);
+api.deleteOrchestrationTask(taskId, version, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-angular">
+                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-csharp">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -4930,24 +9650,23 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class updateModelDistributionStatusExample
+    public class deleteOrchestrationTaskExample
     {
         public void main()
         {
             
-            var apiInstance = new OnapsoinframodelDistributionsApi();
+            var apiInstance = new OnapsoinfraorchestrationTasksApi();
+            var taskId = taskId_example;  // String | 
             var version = version_example;  // String | 
-            var distributionId = distributionId_example;  // String | 
-            var body = body_example;  // String |  (optional) 
 
             try
             {
-                // Update model distribution status
-                apiInstance.updateModelDistributionStatus(version, distributionId, body);
+                // delete orchestrationTask for a given taskId
+                apiInstance.deleteOrchestrationTask(taskId, version);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling OnapsoinframodelDistributionsApi.updateModelDistributionStatus: " + e.Message );
+                Debug.Print("Exception when calling OnapsoinfraorchestrationTasksApi.deleteOrchestrationTask: " + e.Message );
             }
         }
     }
@@ -4955,42 +9674,40 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-php">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
-$api_instance = new Swagger\Client\Api\OnapsoinframodelDistributionsApi();
+$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationTasksApi();
+$taskId = taskId_example; // String | 
 $version = version_example; // String | 
-$distributionId = distributionId_example; // String | 
-$body = body_example; // String | 
 
 try {
-    $api_instance->updateModelDistributionStatus($version, $distributionId, $body);
+    $api_instance->deleteOrchestrationTask($taskId, $version);
 } catch (Exception $e) {
-    echo 'Exception when calling OnapsoinframodelDistributionsApi->updateModelDistributionStatus: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling OnapsoinfraorchestrationTasksApi->deleteOrchestrationTask: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-perl">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
-use WWW::SwaggerClient::OnapsoinframodelDistributionsApi;
+use WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi;
 
-my $api_instance = WWW::SwaggerClient::OnapsoinframodelDistributionsApi->new();
+my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi->new();
+my $taskId = taskId_example; # String | 
 my $version = version_example; # String | 
-my $distributionId = distributionId_example; # String | 
-my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->updateModelDistributionStatus(version => $version, distributionId => $distributionId, body => $body);
+    $api_instance->deleteOrchestrationTask(taskId => $taskId, version => $version);
 };
 if ($@) {
-    warn "Exception when calling OnapsoinframodelDistributionsApi->updateModelDistributionStatus: $@\n";
+    warn "Exception when calling OnapsoinfraorchestrationTasksApi->deleteOrchestrationTask: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinframodelDistributions-updateModelDistributionStatus-0-python">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-deleteOrchestrationTask-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -4998,16 +9715,15 @@ from swagger_client.rest import ApiException
 from pprint import pprint
 
 # create an instance of the API class
-api_instance = swagger_client.OnapsoinframodelDistributionsApi()
+api_instance = swagger_client.OnapsoinfraorchestrationTasksApi()
+taskId = taskId_example # String | 
 version = version_example # String | 
-distributionId = distributionId_example # String | 
-body = body_example # String |  (optional)
 
 try: 
-    # Update model distribution status
-    api_instance.update_model_distribution_status(version, distributionId, body=body)
+    # delete orchestrationTask for a given taskId
+    api_instance.delete_orchestration_task(taskId, version)
 except ApiException as e:
-    print("Exception when calling OnapsoinframodelDistributionsApi->updateModelDistributionStatus: %s\n" % e)</code></pre>
+    print("Exception when calling OnapsoinfraorchestrationTasksApi->deleteOrchestrationTask: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -5019,11 +9735,11 @@ except ApiException as e:
                                   <th width="150px">Name</th>
                                   <th>Description</th>
                                 </tr>
-                                  <tr><td style="width:150px;">version*</td>
+                                  <tr><td style="width:150px;">taskId*</td>
 <td>
 
 
-    <div id="d2e199_updateModelDistributionStatus_version">
+    <div id="d2e199_deleteOrchestrationTask_taskId">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -5039,11 +9755,11 @@ except ApiException as e:
 </td>
 </tr>
 
-                                  <tr><td style="width:150px;">distributionId*</td>
+                                  <tr><td style="width:150px;">version*</td>
 <td>
 
 
-    <div id="d2e199_updateModelDistributionStatus_distributionId">
+    <div id="d2e199_deleteOrchestrationTask_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -5062,47 +9778,6 @@ except ApiException as e:
                             </table>
 
 
-                            <div class="methodsubtabletitle">Body parameters</div>
-                            <table id="methodsubtable">
-                              <tr>
-                                <th width="150px">Name</th>
-                                <th>Description</th>
-                              </tr>
-                                <tr><td style="width:150px;">body </td>
-<td>
-
-
-<script>
-$(document).ready(function() {
-  var schemaWrapper = {
-  "in" : "body",
-  "name" : "body",
-  "required" : false,
-  "schema" : {
-    "type" : "string"
-  }
-};
-  var schema = schemaWrapper.schema;
-  if (schema.$ref != null) {
-    schema = defsParser.$refs.get(schema.$ref);
-  } else {
-    schemaWrapper.definitions = Object.assign({}, defs);
-    $RefParser.dereference(schemaWrapper).catch(function(err) {
-      console.log(err);
-    });
-  }
-
-  var view = new JSONSchemaView(schema,2,{isBodyParam: true});
-  var result = $('#d2e199_updateModelDistributionStatus_body');
-  result.empty();
-  result.append(view.render());
-});
-</script>
-<div id="d2e199_updateModelDistributionStatus_body"></div>
-</td>
-</tr>
-
-                            </table>
 
 
 
@@ -5118,14 +9793,11 @@ $(document).ready(function() {
                         </article>
                       </div>
                       <hr>
-                  </section>
-                <section id="api-OnapsoinfraorchestrationRequests">
-                  <h1>OnapsoinfraorchestrationRequests</h1>
-                    <div id="api-OnapsoinfraorchestrationRequests-getOrchestrationRequest">
-                      <article id="api-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0" data-group="User" data-name="getOrchestrationRequest" data-version="0">
+                    <div id="api-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks">
+                      <article id="api-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0" data-group="User" data-name="getAllOrchestrationTasks" data-version="0">
                         <div class="pull-left">
-                          <h1>getOrchestrationRequest</h1>
-                          <p>Find Orchestrated Requests for a URI Information</p>
+                          <h1>getAllOrchestrationTasks</h1>
+                          <p>Get all orchestrationTasks</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -5133,81 +9805,81 @@ $(document).ready(function() {
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/onap/so/infra/orchestrationRequests/{version}</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/onap/so/infra/orchestrationTasks/{version}</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-java">Java</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/onap/so/infra/orchestrationRequests/{version}"</code></pre>
+                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/onap/so/infra/orchestrationTasks/{version}"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-java">
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
-import io.swagger.client.api.OnapsoinfraorchestrationRequestsApi;
+import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
 import java.io.File;
 import java.util.*;
 
-public class OnapsoinfraorchestrationRequestsApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
         
-        OnapsoinfraorchestrationRequestsApi apiInstance = new OnapsoinfraorchestrationRequestsApi();
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
         String version = version_example; // String | 
         try {
-            apiInstance.getOrchestrationRequest(version);
+            apiInstance.getAllOrchestrationTasks(version);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfraorchestrationRequestsApi#getOrchestrationRequest");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#getAllOrchestrationTasks");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-android">
-                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationRequestsApi;
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
-public class OnapsoinfraorchestrationRequestsApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
-        OnapsoinfraorchestrationRequestsApi apiInstance = new OnapsoinfraorchestrationRequestsApi();
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
         String version = version_example; // String | 
         try {
-            apiInstance.getOrchestrationRequest(version);
+            apiInstance.getAllOrchestrationTasks(version);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfraorchestrationRequestsApi#getOrchestrationRequest");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#getAllOrchestrationTasks");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-groovy">
+  <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-objc">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-objc">
                               <pre class="prettyprint"><code class="language-cpp">String *version = version_example; // 
 
-OnapsoinfraorchestrationRequestsApi *apiInstance = [[OnapsoinfraorchestrationRequestsApi alloc] init];
+OnapsoinfraorchestrationTasksApi *apiInstance = [[OnapsoinfraorchestrationTasksApi alloc] init];
 
-// Find Orchestrated Requests for a URI Information
-[apiInstance getOrchestrationRequestWith:version
+// Get all orchestrationTasks
+[apiInstance getAllOrchestrationTasksWith:version
               completionHandler: ^(NSError* error) {
                             if (error) {
                                 NSLog(@"Error: %@", error);
@@ -5216,10 +9888,10 @@ OnapsoinfraorchestrationRequestsApi *apiInstance = [[OnapsoinfraorchestrationReq
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraorchestrationRequestsApi()
+var api = new SoGuilinApIs.OnapsoinfraorchestrationTasksApi()
 
 var version = version_example; // {String} 
 
@@ -5231,14 +9903,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.getOrchestrationRequest(version, callback);
+api.getAllOrchestrationTasks(version, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-angular">
+                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-csharp">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -5247,22 +9919,22 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class getOrchestrationRequestExample
+    public class getAllOrchestrationTasksExample
     {
         public void main()
         {
             
-            var apiInstance = new OnapsoinfraorchestrationRequestsApi();
+            var apiInstance = new OnapsoinfraorchestrationTasksApi();
             var version = version_example;  // String | 
 
             try
             {
-                // Find Orchestrated Requests for a URI Information
-                apiInstance.getOrchestrationRequest(version);
+                // Get all orchestrationTasks
+                apiInstance.getAllOrchestrationTasks(version);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling OnapsoinfraorchestrationRequestsApi.getOrchestrationRequest: " + e.Message );
+                Debug.Print("Exception when calling OnapsoinfraorchestrationTasksApi.getAllOrchestrationTasks: " + e.Message );
             }
         }
     }
@@ -5270,38 +9942,38 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-php">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
-$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationRequestsApi();
+$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationTasksApi();
 $version = version_example; // String | 
 
 try {
-    $api_instance->getOrchestrationRequest($version);
+    $api_instance->getAllOrchestrationTasks($version);
 } catch (Exception $e) {
-    echo 'Exception when calling OnapsoinfraorchestrationRequestsApi->getOrchestrationRequest: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling OnapsoinfraorchestrationTasksApi->getAllOrchestrationTasks: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-perl">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
-use WWW::SwaggerClient::OnapsoinfraorchestrationRequestsApi;
+use WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi;
 
-my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationRequestsApi->new();
+my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi->new();
 my $version = version_example; # String | 
 
 eval { 
-    $api_instance->getOrchestrationRequest(version => $version);
+    $api_instance->getAllOrchestrationTasks(version => $version);
 };
 if ($@) {
-    warn "Exception when calling OnapsoinfraorchestrationRequestsApi->getOrchestrationRequest: $@\n";
+    warn "Exception when calling OnapsoinfraorchestrationTasksApi->getAllOrchestrationTasks: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequest-0-python">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getAllOrchestrationTasks-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -5309,14 +9981,14 @@ from swagger_client.rest import ApiException
 from pprint import pprint
 
 # create an instance of the API class
-api_instance = swagger_client.OnapsoinfraorchestrationRequestsApi()
+api_instance = swagger_client.OnapsoinfraorchestrationTasksApi()
 version = version_example # String | 
 
 try: 
-    # Find Orchestrated Requests for a URI Information
-    api_instance.get_orchestration_request(version)
+    # Get all orchestrationTasks
+    api_instance.get_all_orchestration_tasks(version)
 except ApiException as e:
-    print("Exception when calling OnapsoinfraorchestrationRequestsApi->getOrchestrationRequest: %s\n" % e)</code></pre>
+    print("Exception when calling OnapsoinfraorchestrationTasksApi->getAllOrchestrationTasks: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -5332,7 +10004,7 @@ except ApiException as e:
 <td>
 
 
-    <div id="d2e199_getOrchestrationRequest_version">
+    <div id="d2e199_getAllOrchestrationTasks_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -5366,11 +10038,11 @@ except ApiException as e:
                         </article>
                       </div>
                       <hr>
-                    <div id="api-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId">
-                      <article id="api-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0" data-group="User" data-name="getOrchestrationRequestForReqId" data-version="0">
+                    <div id="api-OnapsoinfraorchestrationTasks-getOrchestrationTask">
+                      <article id="api-OnapsoinfraorchestrationTasks-getOrchestrationTask-0" data-group="User" data-name="getOrchestrationTask" data-version="0">
                         <div class="pull-left">
-                          <h1>getOrchestrationRequestForReqId</h1>
-                          <p>Find Orchestrated Requests for a given requestId</p>
+                          <h1>getOrchestrationTask</h1>
+                          <p>Get orchestrationTask for a given taskId</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -5378,84 +10050,84 @@ except ApiException as e:
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/onap/so/infra/orchestrationRequests/{version}/{requestId}</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="get"><code><span class="pln">/onap/so/infra/orchestrationTasks/{version}/{taskId}</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-java">Java</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/onap/so/infra/orchestrationRequests/{version}/{requestId}"</code></pre>
+                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X GET "http://localhost/onap/so/infra/orchestrationTasks/{version}/{taskId}"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-java">
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
-import io.swagger.client.api.OnapsoinfraorchestrationRequestsApi;
+import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
 import java.io.File;
 import java.util.*;
 
-public class OnapsoinfraorchestrationRequestsApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
         
-        OnapsoinfraorchestrationRequestsApi apiInstance = new OnapsoinfraorchestrationRequestsApi();
-        String requestId = requestId_example; // String | 
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
+        String taskId = taskId_example; // String | 
         String version = version_example; // String | 
         try {
-            apiInstance.getOrchestrationRequestForReqId(requestId, version);
+            apiInstance.getOrchestrationTask(taskId, version);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfraorchestrationRequestsApi#getOrchestrationRequestForReqId");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#getOrchestrationTask");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-android">
-                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationRequestsApi;
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
-public class OnapsoinfraorchestrationRequestsApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
-        OnapsoinfraorchestrationRequestsApi apiInstance = new OnapsoinfraorchestrationRequestsApi();
-        String requestId = requestId_example; // String | 
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
+        String taskId = taskId_example; // String | 
         String version = version_example; // String | 
         try {
-            apiInstance.getOrchestrationRequestForReqId(requestId, version);
+            apiInstance.getOrchestrationTask(taskId, version);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfraorchestrationRequestsApi#getOrchestrationRequestForReqId");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#getOrchestrationTask");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-groovy">
+  <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">String *requestId = requestId_example; // 
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *taskId = taskId_example; // 
 String *version = version_example; // 
 
-OnapsoinfraorchestrationRequestsApi *apiInstance = [[OnapsoinfraorchestrationRequestsApi alloc] init];
+OnapsoinfraorchestrationTasksApi *apiInstance = [[OnapsoinfraorchestrationTasksApi alloc] init];
 
-// Find Orchestrated Requests for a given requestId
-[apiInstance getOrchestrationRequestForReqIdWith:requestId
+// Get orchestrationTask for a given taskId
+[apiInstance getOrchestrationTaskWith:taskId
     version:version
               completionHandler: ^(NSError* error) {
                             if (error) {
@@ -5465,12 +10137,12 @@ OnapsoinfraorchestrationRequestsApi *apiInstance = [[OnapsoinfraorchestrationReq
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraorchestrationRequestsApi()
+var api = new SoGuilinApIs.OnapsoinfraorchestrationTasksApi()
 
-var requestId = requestId_example; // {String} 
+var taskId = taskId_example; // {String} 
 
 var version = version_example; // {String} 
 
@@ -5482,14 +10154,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.getOrchestrationRequestForReqId(requestId, version, callback);
+api.getOrchestrationTask(taskId, version, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-angular">
+                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-csharp">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -5498,23 +10170,23 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class getOrchestrationRequestForReqIdExample
+    public class getOrchestrationTaskExample
     {
         public void main()
         {
             
-            var apiInstance = new OnapsoinfraorchestrationRequestsApi();
-            var requestId = requestId_example;  // String | 
+            var apiInstance = new OnapsoinfraorchestrationTasksApi();
+            var taskId = taskId_example;  // String | 
             var version = version_example;  // String | 
 
             try
             {
-                // Find Orchestrated Requests for a given requestId
-                apiInstance.getOrchestrationRequestForReqId(requestId, version);
+                // Get orchestrationTask for a given taskId
+                apiInstance.getOrchestrationTask(taskId, version);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling OnapsoinfraorchestrationRequestsApi.getOrchestrationRequestForReqId: " + e.Message );
+                Debug.Print("Exception when calling OnapsoinfraorchestrationTasksApi.getOrchestrationTask: " + e.Message );
             }
         }
     }
@@ -5522,40 +10194,40 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-php">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
-$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationRequestsApi();
-$requestId = requestId_example; // String | 
+$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationTasksApi();
+$taskId = taskId_example; // String | 
 $version = version_example; // String | 
 
 try {
-    $api_instance->getOrchestrationRequestForReqId($requestId, $version);
+    $api_instance->getOrchestrationTask($taskId, $version);
 } catch (Exception $e) {
-    echo 'Exception when calling OnapsoinfraorchestrationRequestsApi->getOrchestrationRequestForReqId: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling OnapsoinfraorchestrationTasksApi->getOrchestrationTask: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-perl">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
-use WWW::SwaggerClient::OnapsoinfraorchestrationRequestsApi;
+use WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi;
 
-my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationRequestsApi->new();
-my $requestId = requestId_example; # String | 
+my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi->new();
+my $taskId = taskId_example; # String | 
 my $version = version_example; # String | 
 
 eval { 
-    $api_instance->getOrchestrationRequestForReqId(requestId => $requestId, version => $version);
+    $api_instance->getOrchestrationTask(taskId => $taskId, version => $version);
 };
 if ($@) {
-    warn "Exception when calling OnapsoinfraorchestrationRequestsApi->getOrchestrationRequestForReqId: $@\n";
+    warn "Exception when calling OnapsoinfraorchestrationTasksApi->getOrchestrationTask: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-getOrchestrationRequestForReqId-0-python">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-getOrchestrationTask-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -5563,15 +10235,15 @@ from swagger_client.rest import ApiException
 from pprint import pprint
 
 # create an instance of the API class
-api_instance = swagger_client.OnapsoinfraorchestrationRequestsApi()
-requestId = requestId_example # String | 
+api_instance = swagger_client.OnapsoinfraorchestrationTasksApi()
+taskId = taskId_example # String | 
 version = version_example # String | 
 
 try: 
-    # Find Orchestrated Requests for a given requestId
-    api_instance.get_orchestration_request_for_req_id(requestId, version)
+    # Get orchestrationTask for a given taskId
+    api_instance.get_orchestration_task(taskId, version)
 except ApiException as e:
-    print("Exception when calling OnapsoinfraorchestrationRequestsApi->getOrchestrationRequestForReqId: %s\n" % e)</code></pre>
+    print("Exception when calling OnapsoinfraorchestrationTasksApi->getOrchestrationTask: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -5583,11 +10255,11 @@ except ApiException as e:
                                   <th width="150px">Name</th>
                                   <th>Description</th>
                                 </tr>
-                                  <tr><td style="width:150px;">requestId*</td>
+                                  <tr><td style="width:150px;">taskId*</td>
 <td>
 
 
-    <div id="d2e199_getOrchestrationRequestForReqId_requestId">
+    <div id="d2e199_getOrchestrationTask_taskId">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -5607,7 +10279,7 @@ except ApiException as e:
 <td>
 
 
-    <div id="d2e199_getOrchestrationRequestForReqId_version">
+    <div id="d2e199_getOrchestrationTask_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -5641,11 +10313,11 @@ except ApiException as e:
                         </article>
                       </div>
                       <hr>
-                    <div id="api-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest">
-                      <article id="api-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0" data-group="User" data-name="unlockOrchestrationRequest" data-version="0">
+                    <div id="api-OnapsoinfraorchestrationTasks-updateOrchestrationTask">
+                      <article id="api-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0" data-group="User" data-name="updateOrchestrationTask" data-version="0">
                         <div class="pull-left">
-                          <h1>unlockOrchestrationRequest</h1>
-                          <p>Unlock Orchestrated Requests for a given requestId</p>
+                          <h1>updateOrchestrationTask</h1>
+                          <p>update orchestrationTask for a given taskId</p>
                         </div>
                         <div class="pull-right"></div>
                         <div class="clearfix"></div>
@@ -5653,87 +10325,87 @@ except ApiException as e:
                         <p class="marked"></p>
                         <p></p>
                         <br />
-                        <pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/onap/so/infra/orchestrationRequests/{version}/{requestId}/unlock</span></code></pre>
+                        <pre class="prettyprint language-html prettyprinted" data-type="put"><code><span class="pln">/onap/so/infra/orchestrationTasks/{version}/{taskId}</span></code></pre>
                         <p>
                           <h3>Usage and SDK Samples</h3>
                         </p>
                         <ul class="nav nav-tabs nav-tabs-examples">
-                          <li class="active"><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-curl">Curl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-java">Java</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-android">Android</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-groovy">Groovy</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-objc">Obj-C</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-javascript">JavaScript</a></li>
-                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-angular">Angular</a></li>-->
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-csharp">C#</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-php">PHP</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-perl">Perl</a></li>
-                          <li class=""><a href="#examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-python">Python</a></li>
+                          <li class="active"><a href="#examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-curl">Curl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-java">Java</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-android">Android</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-groovy">Groovy</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-objc">Obj-C</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-javascript">JavaScript</a></li>
+                          <!--<li class=""><a href="#examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-angular">Angular</a></li>-->
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-csharp">C#</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-php">PHP</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-perl">Perl</a></li>
+                          <li class=""><a href="#examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-python">Python</a></li>
                         </ul>
 
                         <div class="tab-content">
-                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-curl">
-                            <pre class="prettyprint"><code class="language-bsh">curl -X POST "http://localhost/onap/so/infra/orchestrationRequests/{version}/{requestId}/unlock"</code></pre>
+                          <div class="tab-pane active" id="examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-curl">
+                            <pre class="prettyprint"><code class="language-bsh">curl -X PUT "http://localhost/onap/so/infra/orchestrationTasks/{version}/{taskId}"</code></pre>
                           </div>
-                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-java">
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-java">
                             <pre class="prettyprint"><code class="language-java">import io.swagger.client.*;
 import io.swagger.client.auth.*;
 import io.swagger.client.model.*;
-import io.swagger.client.api.OnapsoinfraorchestrationRequestsApi;
+import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
 import java.io.File;
 import java.util.*;
 
-public class OnapsoinfraorchestrationRequestsApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
         
-        OnapsoinfraorchestrationRequestsApi apiInstance = new OnapsoinfraorchestrationRequestsApi();
-        String requestId = requestId_example; // String | 
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
+        String taskId = taskId_example; // String | 
         String version = version_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.unlockOrchestrationRequest(requestId, version, body);
+            apiInstance.updateOrchestrationTask(taskId, version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfraorchestrationRequestsApi#unlockOrchestrationRequest");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#updateOrchestrationTask");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
 
-                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-android">
-                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationRequestsApi;
+                          <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-android">
+                            <pre class="prettyprint"><code class="language-java">import io.swagger.client.api.OnapsoinfraorchestrationTasksApi;
 
-public class OnapsoinfraorchestrationRequestsApiExample {
+public class OnapsoinfraorchestrationTasksApiExample {
 
     public static void main(String[] args) {
-        OnapsoinfraorchestrationRequestsApi apiInstance = new OnapsoinfraorchestrationRequestsApi();
-        String requestId = requestId_example; // String | 
+        OnapsoinfraorchestrationTasksApi apiInstance = new OnapsoinfraorchestrationTasksApi();
+        String taskId = taskId_example; // String | 
         String version = version_example; // String | 
         String body = body_example; // String | 
         try {
-            apiInstance.unlockOrchestrationRequest(requestId, version, body);
+            apiInstance.updateOrchestrationTask(taskId, version, body);
         } catch (ApiException e) {
-            System.err.println("Exception when calling OnapsoinfraorchestrationRequestsApi#unlockOrchestrationRequest");
+            System.err.println("Exception when calling OnapsoinfraorchestrationTasksApi#updateOrchestrationTask");
             e.printStackTrace();
         }
     }
 }</code></pre>
                           </div>
   <!--
-  <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-groovy">
+  <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-groovy">
   <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
   </div> -->
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-objc">
-                              <pre class="prettyprint"><code class="language-cpp">String *requestId = requestId_example; // 
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-objc">
+                              <pre class="prettyprint"><code class="language-cpp">String *taskId = taskId_example; // 
 String *version = version_example; // 
 String *body = body_example; //  (optional)
 
-OnapsoinfraorchestrationRequestsApi *apiInstance = [[OnapsoinfraorchestrationRequestsApi alloc] init];
+OnapsoinfraorchestrationTasksApi *apiInstance = [[OnapsoinfraorchestrationTasksApi alloc] init];
 
-// Unlock Orchestrated Requests for a given requestId
-[apiInstance unlockOrchestrationRequestWith:requestId
+// update orchestrationTask for a given taskId
+[apiInstance updateOrchestrationTaskWith:taskId
     version:version
     body:body
               completionHandler: ^(NSError* error) {
@@ -5744,12 +10416,12 @@ OnapsoinfraorchestrationRequestsApi *apiInstance = [[OnapsoinfraorchestrationReq
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-javascript">
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraorchestrationRequestsApi()
+var api = new SoGuilinApIs.OnapsoinfraorchestrationTasksApi()
 
-var requestId = requestId_example; // {String} 
+var taskId = taskId_example; // {String} 
 
 var version = version_example; // {String} 
 
@@ -5764,14 +10436,14 @@ var callback = function(error, data, response) {
     console.log('API called successfully.');
   }
 };
-api.unlockOrchestrationRequest(requestId, version, opts, callback);
+api.updateOrchestrationTask(taskId, version, opts, callback);
 </code></pre>
                             </div>
 
-                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-angular">
+                            <!--<div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-angular">
               <pre class="prettyprint language-json prettyprinted" data-type="json"><code>Coming Soon!</code></pre>
             </div>-->
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-csharp">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-csharp">
                               <pre class="prettyprint"><code class="language-cs">using System;
 using System.Diagnostics;
 using IO.Swagger.Api;
@@ -5780,24 +10452,24 @@ using IO.Swagger.Model;
 
 namespace Example
 {
-    public class unlockOrchestrationRequestExample
+    public class updateOrchestrationTaskExample
     {
         public void main()
         {
             
-            var apiInstance = new OnapsoinfraorchestrationRequestsApi();
-            var requestId = requestId_example;  // String | 
+            var apiInstance = new OnapsoinfraorchestrationTasksApi();
+            var taskId = taskId_example;  // String | 
             var version = version_example;  // String | 
             var body = body_example;  // String |  (optional) 
 
             try
             {
-                // Unlock Orchestrated Requests for a given requestId
-                apiInstance.unlockOrchestrationRequest(requestId, version, body);
+                // update orchestrationTask for a given taskId
+                apiInstance.updateOrchestrationTask(taskId, version, body);
             }
             catch (Exception e)
             {
-                Debug.Print("Exception when calling OnapsoinfraorchestrationRequestsApi.unlockOrchestrationRequest: " + e.Message );
+                Debug.Print("Exception when calling OnapsoinfraorchestrationTasksApi.updateOrchestrationTask: " + e.Message );
             }
         }
     }
@@ -5805,42 +10477,42 @@ namespace Example
 </code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-php">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-php">
                               <pre class="prettyprint"><code class="language-php"><&#63;php
 require_once(__DIR__ . '/vendor/autoload.php');
 
-$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationRequestsApi();
-$requestId = requestId_example; // String | 
+$api_instance = new Swagger\Client\Api\OnapsoinfraorchestrationTasksApi();
+$taskId = taskId_example; // String | 
 $version = version_example; // String | 
 $body = body_example; // String | 
 
 try {
-    $api_instance->unlockOrchestrationRequest($requestId, $version, $body);
+    $api_instance->updateOrchestrationTask($taskId, $version, $body);
 } catch (Exception $e) {
-    echo 'Exception when calling OnapsoinfraorchestrationRequestsApi->unlockOrchestrationRequest: ', $e->getMessage(), PHP_EOL;
+    echo 'Exception when calling OnapsoinfraorchestrationTasksApi->updateOrchestrationTask: ', $e->getMessage(), PHP_EOL;
 }
 ?></code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-perl">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-perl">
                               <pre class="prettyprint"><code class="language-perl">use Data::Dumper;
 use WWW::SwaggerClient::Configuration;
-use WWW::SwaggerClient::OnapsoinfraorchestrationRequestsApi;
+use WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi;
 
-my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationRequestsApi->new();
-my $requestId = requestId_example; # String | 
+my $api_instance = WWW::SwaggerClient::OnapsoinfraorchestrationTasksApi->new();
+my $taskId = taskId_example; # String | 
 my $version = version_example; # String | 
 my $body = WWW::SwaggerClient::Object::String->new(); # String | 
 
 eval { 
-    $api_instance->unlockOrchestrationRequest(requestId => $requestId, version => $version, body => $body);
+    $api_instance->updateOrchestrationTask(taskId => $taskId, version => $version, body => $body);
 };
 if ($@) {
-    warn "Exception when calling OnapsoinfraorchestrationRequestsApi->unlockOrchestrationRequest: $@\n";
+    warn "Exception when calling OnapsoinfraorchestrationTasksApi->updateOrchestrationTask: $@\n";
 }</code></pre>
                             </div>
 
-                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationRequests-unlockOrchestrationRequest-0-python">
+                            <div class="tab-pane" id="examples-OnapsoinfraorchestrationTasks-updateOrchestrationTask-0-python">
                               <pre class="prettyprint"><code class="language-python">from __future__ import print_statement
 import time
 import swagger_client
@@ -5848,16 +10520,16 @@ from swagger_client.rest import ApiException
 from pprint import pprint
 
 # create an instance of the API class
-api_instance = swagger_client.OnapsoinfraorchestrationRequestsApi()
-requestId = requestId_example # String | 
+api_instance = swagger_client.OnapsoinfraorchestrationTasksApi()
+taskId = taskId_example # String | 
 version = version_example # String | 
 body = body_example # String |  (optional)
 
 try: 
-    # Unlock Orchestrated Requests for a given requestId
-    api_instance.unlock_orchestration_request(requestId, version, body=body)
+    # update orchestrationTask for a given taskId
+    api_instance.update_orchestration_task(taskId, version, body=body)
 except ApiException as e:
-    print("Exception when calling OnapsoinfraorchestrationRequestsApi->unlockOrchestrationRequest: %s\n" % e)</code></pre>
+    print("Exception when calling OnapsoinfraorchestrationTasksApi->updateOrchestrationTask: %s\n" % e)</code></pre>
                             </div>
                           </div>
 
@@ -5869,11 +10541,11 @@ except ApiException as e:
                                   <th width="150px">Name</th>
                                   <th>Description</th>
                                 </tr>
-                                  <tr><td style="width:150px;">requestId*</td>
+                                  <tr><td style="width:150px;">taskId*</td>
 <td>
 
 
-    <div id="d2e199_unlockOrchestrationRequest_requestId">
+    <div id="d2e199_updateOrchestrationTask_taskId">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -5893,7 +10565,7 @@ except ApiException as e:
 <td>
 
 
-    <div id="d2e199_unlockOrchestrationRequest_version">
+    <div id="d2e199_updateOrchestrationTask_version">
         <div class="json-schema-view">
             <div class="primitive">
                 <span class="type">
@@ -5943,12 +10615,12 @@ $(document).ready(function() {
   }
 
   var view = new JSONSchemaView(schema,2,{isBodyParam: true});
-  var result = $('#d2e199_unlockOrchestrationRequest_body');
+  var result = $('#d2e199_updateOrchestrationTask_body');
   result.empty();
   result.append(view.render());
 });
 </script>
-<div id="d2e199_unlockOrchestrationRequest_body"></div>
+<div id="d2e199_updateOrchestrationTask_body"></div>
 </td>
 </tr>
 
@@ -6079,9 +10751,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-activatePort-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -6432,9 +11104,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-activateServiceInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -6759,9 +11431,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-addRelationships-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -7090,9 +11762,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-applyUpdatedConfig-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -7439,9 +12111,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-assignServiceInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -7740,9 +12412,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-createNetworkInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -8067,9 +12739,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-createPortConfiguration-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -8390,9 +13062,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-createServiceInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -8695,9 +13367,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-createVfModuleInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -9048,9 +13720,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-createVnfInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -9379,9 +14051,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-createVolumeGroupInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -9740,9 +14412,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-deactivateAndCloudDeleteVfModuleInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -10123,9 +14795,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-deactivatePort-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -10476,9 +15148,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-deactivateServiceInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -10807,9 +15479,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-deleteNetworkInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -11164,9 +15836,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-deletePortConfiguration-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -11517,9 +16189,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-deleteServiceInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -11852,9 +16524,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-deleteVfModuleInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -12235,9 +16907,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-deleteVnfInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -12596,9 +17268,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-deleteVolumeGroupInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -12979,9 +17651,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-disablePort-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -13336,9 +18008,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-enablePort-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -13693,9 +18365,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-inPlaceSoftwareUpdate-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -14046,9 +18718,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-removeRelationships-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -14381,9 +19053,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-replaceVfModuleInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -14764,9 +19436,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-replaceVnfInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -15121,9 +19793,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-scaleOutVfModule-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -15474,9 +20146,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-unassignServiceInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -15805,9 +20477,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-updateNetworkInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -16166,9 +20838,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-updateVfModuleInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -16549,9 +21221,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-updateVnfInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -16910,9 +21582,9 @@ OnapsoinfraserviceInstantiationApi *apiInstance = [[OnapsoinfraserviceInstantiat
                             </div>
 
                             <div class="tab-pane" id="examples-OnapsoinfraserviceInstantiation-updateVolumeGroupInstance-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfraserviceInstantiationApi()
+var api = new SoGuilinApIs.OnapsoinfraserviceInstantiationApi()
 
 var version = version_example; // {String} 
 
@@ -17312,9 +21984,9 @@ OnapsoinfratasksApi *apiInstance = [[OnapsoinfratasksApi alloc] init];
                             </div>
 
                             <div class="tab-pane" id="examples-Onapsoinfratasks-queryFilters-0-javascript">
-                              <pre class="prettyprint"><code class="language-js">var SoCasablancaApIs = require('so_casablanca_ap_is');
+                              <pre class="prettyprint"><code class="language-js">var SoGuilinApIs = require('so_guilin_ap_is');
 
-var api = new SoCasablancaApIs.OnapsoinfratasksApi()
+var api = new SoGuilinApIs.OnapsoinfratasksApi()
 
 var version = version_example; // {String} 
 
@@ -17636,11 +22308,6 @@ except ApiException as e:
                 <div class="license-url">http://apache.org/licenses/LICENSE-2.0.html</div>
             </div>
           </div>
-          <div id="generator">
-            <div class="content">
-              Generated 2018-11-19T03:11:19.743Z
-            </div>
-          </div>
       </div>
     </div>
   </div>
@@ -18835,6 +23502,12 @@ var JSONSchemaView = (function () {
         return this.element;
       }
 
+        if (this.schema && this.schema.example) {
+            var exampleDiv = document.createElement('div');
+            exampleDiv.innerHTML = '<div style="display: block" class="example">\n          <span style="color: #808080" class="name">example: ' + this.schema.example + '</span>\n        </div>';
+            this.element.appendChild(exampleDiv.querySelector('.example'));
+        }
+
       if (!this.isCollapsed) {
         this.appendChildren(this.element);
       }
@@ -19361,7 +24034,7 @@ g,0<c.length&&(c=Aa[c[0]])&&(a.c[e]=c))}a.c[e]||(c=Aa[e])&&(a.c[e]=c);for(c=0;c<
 
   <script>
     var schemaWrapper = {};
-    schemaWrapper.definitions = Object.assign({}, defs);
+    schemaWrapper.definitions = defs;
     defsParser = new $RefParser();
     defsParser.dereference(schemaWrapper).catch(function(err) {
       console.log(err);
index 5051ba1..bee195c 100644 (file)
@@ -9,7 +9,7 @@
       "name": "e2eServiceInstances"
     },
     {
-      "name": "3gppservices"
+      "name": "Onap3gppServiceInstances"
     },
     {
       "name": "globalhealthcheck"
@@ -20,6 +20,9 @@
     {
       "name": "onapsoinfraorchestrationRequests"
     },
+    {
+      "name": "onapsoinfraorchestrationTasks"
+    },
     {
       "name": "onapsoinfraserviceInstantiation"
     },
         }
       }
     },
+    "/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/{operationType}": {
+      "post": {
+        "tags": [
+          "e2eServiceInstances"
+        ],
+        "summary": "Activate/Deactivate 5G slice Service on a specified version and serviceId",
+        "description": "",
+        "operationId": "activateE2EServiceInstances",
+        "consumes": [
+          "application/json"
+        ],
+        "produces": [
+          "application/json"
+        ],
+        "parameters": [
+          {
+            "in": "body",
+            "name": "body",
+            "required": false,
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "name": "version",
+            "in": "path",
+            "required": true,
+            "type": "string",
+            "pattern": "[vV][3-5]"
+          },
+          {
+            "name": "serviceId",
+            "in": "path",
+            "required": true,
+            "type": "string"
+          },
+          {
+            "name": "operationType",
+            "in": "path",
+            "required": true,
+            "type": "string",
+            "pattern": "activate/deactivate"
+          }
+        ],
+        "responses": {
+          "default": {
+            "description": "successful operation"
+          }
+        }
+      }
+    },
     "/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/operations/{operationId}": {
       "get": {
         "tags": [
     "/onap/so/infra/3gppservices/{version}/allocate": {
       "post": {
         "tags": [
-          "3gppservices"
+          "Onap3gppServiceInstances"
         ],
         "summary": "Create a 3GPP Service Instance on a version provided",
         "description": "",
     "/onap/so/infra/3gppservices/{version}/deAllocate": {
       "delete": {
         "tags": [
-          "3gppservices"
+          "Onap3gppServiceInstances"
         ],
         "summary": "Terminate/Deallocate a 3GPP Service Instance on a version provided",
         "description": "",
     "/onap/so/infra/3gppservices/{version}/modify": {
       "put": {
         "tags": [
-          "3gppservices"
+          "Onap3gppServiceInstances"
         ],
         "summary": "Modify a 3GPP Service Instance on a version provided",
         "description": "",
     "/onap/so/infra/3gppservices/{version}/activate": {
       "post": {
         "tags": [
-          "3gppservices"
+          "Onap3gppServiceInstances"
         ],
         "summary": "Activate a 3GPP Service Instance on a version provided",
         "description": "",
     "/onap/so/infra/3gppservices/{version}/deActivate": {
       "post": {
         "tags": [
-          "3gppservices"
+          "Onap3gppServiceInstances"
         ],
         "summary": "Deactivate a 3GPP Service Instance on a version provided",
         "description": "",
     "/onap/so/infra/3gppservices/{version}/subnetCapabilityQuery": {
       "get": {
         "tags": [
-          "3gppservices"
+          "Onap3gppServiceInstances"
         ],
         "summary": "Provides subnet capability based on subnet types",
         "description": "",
         }
       }
     },
+    "/onap/so/infra/orchestrationTasks/{version}": {
+      "get": {
+        "tags": [
+          "onapsoinfraorchestrationTasks"
+        ],
+        "summary": "Get all orchestrationTasks",
+        "description": "",
+        "operationId": "getAllOrchestrationTasks",
+        "produces": [
+          "application/json"
+        ],
+        "parameters": [
+          {
+            "name": "version",
+            "in": "path",
+            "required": true,
+            "type": "string",
+            "pattern": "[vV][4-7]"
+          }
+        ],
+        "responses": {
+          "default": {
+            "description": "successful operation"
+          }
+        }
+      },
+      "post": {
+        "tags": [
+          "onapsoinfraorchestrationTasks"
+        ],
+        "summary": "Create an orchestrationTask",
+        "description": "",
+        "operationId": "createOrchestrationTask",
+        "produces": [
+          "application/json"
+        ],
+        "parameters": [
+          {
+            "in": "body",
+            "name": "body",
+            "required": false,
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "name": "version",
+            "in": "path",
+            "required": true,
+            "type": "string",
+            "pattern": "[vV][4-7]"
+          }
+        ],
+        "responses": {
+          "default": {
+            "description": "successful operation"
+          }
+        }
+      }
+    },
+    "/onap/so/infra/orchestrationTasks/{version}/{taskId}": {
+      "get": {
+        "tags": [
+          "onapsoinfraorchestrationTasks"
+        ],
+        "summary": "Get orchestrationTask for a given taskId",
+        "description": "",
+        "operationId": "getOrchestrationTask",
+        "produces": [
+          "application/json"
+        ],
+        "parameters": [
+          {
+            "name": "taskId",
+            "in": "path",
+            "required": true,
+            "type": "string"
+          },
+          {
+            "name": "version",
+            "in": "path",
+            "required": true,
+            "type": "string",
+            "pattern": "[vV][4-7]"
+          }
+        ],
+        "responses": {
+          "default": {
+            "description": "successful operation"
+          }
+        }
+      },
+      "put": {
+        "tags": [
+          "onapsoinfraorchestrationTasks"
+        ],
+        "summary": "update orchestrationTask for a given taskId",
+        "description": "",
+        "operationId": "updateOrchestrationTask",
+        "produces": [
+          "application/json"
+        ],
+        "parameters": [
+          {
+            "name": "taskId",
+            "in": "path",
+            "required": true,
+            "type": "string"
+          },
+          {
+            "name": "version",
+            "in": "path",
+            "required": true,
+            "type": "string",
+            "pattern": "[vV][4-7]"
+          },
+          {
+            "in": "body",
+            "name": "body",
+            "required": false,
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
+        "responses": {
+          "default": {
+            "description": "successful operation"
+          }
+        }
+      },
+      "delete": {
+        "tags": [
+          "onapsoinfraorchestrationTasks"
+        ],
+        "summary": "delete orchestrationTask for a given taskId",
+        "description": "",
+        "operationId": "deleteOrchestrationTask",
+        "produces": [
+          "application/json"
+        ],
+        "parameters": [
+          {
+            "name": "taskId",
+            "in": "path",
+            "required": true,
+            "type": "string"
+          },
+          {
+            "name": "version",
+            "in": "path",
+            "required": true,
+            "type": "string",
+            "pattern": "[vV][4-7]"
+          }
+        ],
+        "responses": {
+          "default": {
+            "description": "successful operation"
+          }
+        }
+      }
+    },
+    "/onap/so/infra/orchestrationTasks/{version}/{taskId}/commit": {
+      "post": {
+        "tags": [
+          "onapsoinfraorchestrationTasks"
+        ],
+        "summary": "commit orchestrationTask for a given taskId",
+        "description": "",
+        "operationId": "commitOrchestrationTask",
+        "produces": [
+          "application/json"
+        ],
+        "parameters": [
+          {
+            "in": "body",
+            "name": "body",
+            "required": false,
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "name": "taskId",
+            "in": "path",
+            "required": true,
+            "type": "string"
+          },
+          {
+            "name": "version",
+            "in": "path",
+            "required": true,
+            "type": "string",
+            "pattern": "[vV][4-7]"
+          }
+        ],
+        "responses": {
+          "default": {
+            "description": "successful operation"
+          }
+        }
+      }
+    },
+    "/onap/so/infra/orchestrationTasks/{version}/{taskId}/abort": {
+      "post": {
+        "tags": [
+          "onapsoinfraorchestrationTasks"
+        ],
+        "summary": "abort orchestrationTask for a given taskId",
+        "description": "",
+        "operationId": "abortOrchestrationTask",
+        "produces": [
+          "application/json"
+        ],
+        "parameters": [
+          {
+            "in": "body",
+            "name": "body",
+            "required": false,
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "name": "taskId",
+            "in": "path",
+            "required": true,
+            "type": "string"
+          },
+          {
+            "name": "version",
+            "in": "path",
+            "required": true,
+            "type": "string",
+            "pattern": "[vV][4-7]"
+          }
+        ],
+        "responses": {
+          "default": {
+            "description": "successful operation"
+          }
+        }
+      }
+    },
     "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModules/{vfmoduleInstanceId}/deactivateAndCloudDelete": {
       "post": {
         "tags": [
       "type": "string",
       "enum": [
         "AN",
-        "AN-NF",
+        "AN_NF",
         "CN",
-        "TN-FH",
-        "TN-MH",
-        "TN-BH"
+        "TN_FH",
+        "TN_MH",
+        "TN_BH"
       ]
     },
     "3gppServiceResponse": {
         },
         "statusDescription": {
           "description": "Description on status in case of erroneous response",
-          "type": "string"
+          "type": "object"
         }
       }
     }
   }
-}
+}
\ No newline at end of file
index 049436f..f0f3a87 100644 (file)
@@ -4,10 +4,11 @@ info:
   title: SO Guilin APIs
 tags:
   - name: e2eServiceInstances
-  - name: 3gppservices
+  - name: Onap3gppServiceInstances
   - name: globalhealthcheck
   - name: nodehealthcheck
   - name: onapsoinfraorchestrationRequests
+  - name: onapsoinfraorchestrationTasks
   - name: onapsoinfraserviceInstantiation
   - name: onapsoinfratasks
   - name: onapsoinfracloudResources
@@ -98,6 +99,42 @@ paths:
       responses:
         default:
           description: successful operation
+  '/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/{operationType}':
+    post:
+      tags:
+        - e2eServiceInstances
+      summary: >-
+        Activate/Deactivate 5G slice Service on a specified version and
+        serviceId
+      description: ''
+      operationId: activateE2EServiceInstances
+      consumes:
+        - application/json
+      produces:
+        - application/json
+      parameters:
+        - in: body
+          name: body
+          required: false
+          schema:
+            type: string
+        - name: version
+          in: path
+          required: true
+          type: string
+          pattern: '[vV][3-5]'
+        - name: serviceId
+          in: path
+          required: true
+          type: string
+        - name: operationType
+          in: path
+          required: true
+          type: string
+          pattern: activate/deactivate
+      responses:
+        default:
+          description: successful operation
   '/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/operations/{operationId}':
     get:
       tags:
@@ -187,7 +224,7 @@ paths:
   '/onap/so/infra/3gppservices/{version}/allocate':
     post:
       tags:
-        - 3gppservices
+        - Onap3gppServiceInstances
       summary: Create a 3GPP Service Instance on a version provided
       description: ''
       operationId: allocate3gppService
@@ -214,7 +251,7 @@ paths:
   '/onap/so/infra/3gppservices/{version}/deAllocate':
     delete:
       tags:
-        - 3gppservices
+        - Onap3gppServiceInstances
       summary: Terminate/Deallocate a 3GPP Service Instance on a version provided
       description: ''
       operationId: deallocate3gppService
@@ -241,7 +278,7 @@ paths:
   '/onap/so/infra/3gppservices/{version}/modify':
     put:
       tags:
-        - 3gppservices
+        - Onap3gppServiceInstances
       summary: Modify a 3GPP Service Instance on a version provided
       description: ''
       operationId: modify3gppService
@@ -268,7 +305,7 @@ paths:
   '/onap/so/infra/3gppservices/{version}/activate':
     post:
       tags:
-        - 3gppservices
+        - Onap3gppServiceInstances
       summary: Activate a 3GPP Service Instance on a version provided
       description: ''
       operationId: activate3gppService
@@ -295,7 +332,7 @@ paths:
   '/onap/so/infra/3gppservices/{version}/deActivate':
     post:
       tags:
-        - 3gppservices
+        - Onap3gppServiceInstances
       summary: Deactivate a 3GPP Service Instance on a version provided
       description: ''
       operationId: deactivate3gppService
@@ -322,7 +359,7 @@ paths:
   '/onap/so/infra/3gppservices/{version}/subnetCapabilityQuery':
     get:
       tags:
-        - 3gppservices
+        - Onap3gppServiceInstances
       summary: Provides subnet capability based on subnet types
       description: ''
       operationId: querySubnetCapability
@@ -446,6 +483,169 @@ paths:
       responses:
         default:
           description: successful operation
+  '/onap/so/infra/orchestrationTasks/{version}':
+    get:
+      tags:
+        - onapsoinfraorchestrationTasks
+      summary: Get all orchestrationTasks
+      description: ''
+      operationId: getAllOrchestrationTasks
+      produces:
+        - application/json
+      parameters:
+        - name: version
+          in: path
+          required: true
+          type: string
+          pattern: '[vV][4-7]'
+      responses:
+        default:
+          description: successful operation
+    post:
+      tags:
+        - onapsoinfraorchestrationTasks
+      summary: Create an orchestrationTask
+      description: ''
+      operationId: createOrchestrationTask
+      produces:
+        - application/json
+      parameters:
+        - in: body
+          name: body
+          required: false
+          schema:
+            type: string
+        - name: version
+          in: path
+          required: true
+          type: string
+          pattern: '[vV][4-7]'
+      responses:
+        default:
+          description: successful operation
+  '/onap/so/infra/orchestrationTasks/{version}/{taskId}':
+    get:
+      tags:
+        - onapsoinfraorchestrationTasks
+      summary: Get orchestrationTask for a given taskId
+      description: ''
+      operationId: getOrchestrationTask
+      produces:
+        - application/json
+      parameters:
+        - name: taskId
+          in: path
+          required: true
+          type: string
+        - name: version
+          in: path
+          required: true
+          type: string
+          pattern: '[vV][4-7]'
+      responses:
+        default:
+          description: successful operation
+    put:
+      tags:
+        - onapsoinfraorchestrationTasks
+      summary: update orchestrationTask for a given taskId
+      description: ''
+      operationId: updateOrchestrationTask
+      produces:
+        - application/json
+      parameters:
+        - name: taskId
+          in: path
+          required: true
+          type: string
+        - name: version
+          in: path
+          required: true
+          type: string
+          pattern: '[vV][4-7]'
+        - in: body
+          name: body
+          required: false
+          schema:
+            type: string
+      responses:
+        default:
+          description: successful operation
+    delete:
+      tags:
+        - onapsoinfraorchestrationTasks
+      summary: delete orchestrationTask for a given taskId
+      description: ''
+      operationId: deleteOrchestrationTask
+      produces:
+        - application/json
+      parameters:
+        - name: taskId
+          in: path
+          required: true
+          type: string
+        - name: version
+          in: path
+          required: true
+          type: string
+          pattern: '[vV][4-7]'
+      responses:
+        default:
+          description: successful operation
+  '/onap/so/infra/orchestrationTasks/{version}/{taskId}/commit':
+    post:
+      tags:
+        - onapsoinfraorchestrationTasks
+      summary: commit orchestrationTask for a given taskId
+      description: ''
+      operationId: commitOrchestrationTask
+      produces:
+        - application/json
+      parameters:
+        - in: body
+          name: body
+          required: false
+          schema:
+            type: string
+        - name: taskId
+          in: path
+          required: true
+          type: string
+        - name: version
+          in: path
+          required: true
+          type: string
+          pattern: '[vV][4-7]'
+      responses:
+        default:
+          description: successful operation
+  '/onap/so/infra/orchestrationTasks/{version}/{taskId}/abort':
+    post:
+      tags:
+        - onapsoinfraorchestrationTasks
+      summary: abort orchestrationTask for a given taskId
+      description: ''
+      operationId: abortOrchestrationTask
+      produces:
+        - application/json
+      parameters:
+        - in: body
+          name: body
+          required: false
+          schema:
+            type: string
+        - name: taskId
+          in: path
+          required: true
+          type: string
+        - name: version
+          in: path
+          required: true
+          type: string
+          pattern: '[vV][4-7]'
+      responses:
+        default:
+          description: successful operation
   '/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModules/{vfmoduleInstanceId}/deactivateAndCloudDelete':
     post:
       tags:
@@ -1782,11 +1982,11 @@ definitions:
     type: string
     enum:
       - AN
-      - AN-NF
+      - AN_NF
       - CN
-      - TN-FH
-      - TN-MH
-      - TN-BH
+      - TN_FH
+      - TN_MH
+      - TN_BH
   3gppServiceResponse:
     description: This describes the response for 3gpp services
     type: object
@@ -1799,4 +1999,4 @@ definitions:
         type: string
       statusDescription:
         description: Description on status in case of erroneous response
-        type: string
+        type: object